# HG changeset patch # User Dremov Kirill (Nokia-D-MSW/Tampere) # Date 1286145127 -10800 # Node ID 303757a437d3989972cdb6c4225205297441d656 # Parent 4f2f89ce4247fb3fe579989f7520553d54fdd4bc Revision: 201037 Kit: 201039 diff -r 4f2f89ce4247 -r 303757a437d3 .gitignore --- a/.gitignore Fri Sep 17 09:02:29 2010 +0300 +++ b/.gitignore Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,3 @@ -*~ *.mode* *.pbxuser *.perspective* diff -r 4f2f89ce4247 -r 303757a437d3 ChangeLog --- a/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,21 @@ +2010-08-13 Simon Hausmann + + Reviewed by Ariya Hidayat. + + [Qt] Introduce Maemo6 for mobile features + https://bugs.webkit.org/show_bug.cgi?id=43969 + + * WebKit.pri: Use maemo6 where we also use maemo5. + +2010-08-13 Simon Hausmann + + Reviewed by Ariya Hidayat. + + [Qt] Clean up mobile feature useage + https://bugs.webkit.org/show_bug.cgi?id=43968 + + * WebKit.pri: Set feature defaults here for some Nokia specific mobile platforms + 2010-07-20 Rafael Antognolli Reviewed by Antonio Gomes. diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/ChangeLog --- a/JavaScriptCore/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,58 @@ +2010-08-31 Benjamin Poulain + + Reviewed by Kenneth Rohde Christiansen. + + JSC TimeoutChecker::didTimeOut overflows on ARM + https://bugs.webkit.org/show_bug.cgi?id=38538 + + Make getCPUTime() return values relative to the first call. + The previous implementation relied on simply on currentTime(), which + return a time since epoch and not a time since the thread started. This + made the return value of getCPUTime() overflow on 32 bits. + + * runtime/TimeoutChecker.cpp: + (JSC::getCPUTime): + +2010-08-27 Kimmo Kinnunen + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] NPAPI Plugin metadata should be cached, and loading a plugin should not require loading every plugin + https://bugs.webkit.org/show_bug.cgi?id=43179 + + Add ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE flag to enable persistent + NPAPI Plugin Cache. The flag is enabled by default. + + * wtf/Platform.h: Add ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE + +2010-08-12 Gabor Loki + + Reviewed by Simon Hausmann. + + The scratch register should be saved in YARR with ARM JIT + https://bugs.webkit.org/show_bug.cgi?id=43910 + + Reported by Jocelyn Turcotte. + + * yarr/RegexJIT.cpp: + (JSC::Yarr::RegexGenerator::generateEnter): + (JSC::Yarr::RegexGenerator::generateReturn): + +2010-07-30 Luiz Agostini + + Reviewed by Simon Fraser. + + Enabling view modes to all platforms + https://bugs.webkit.org/show_bug.cgi?id=37505 + + Removing ENABLE_WIDGETS_10_SUPPORT flag. + + As view mode media feature is not part of widget 1.0 specification + any more the ENABLE_WIDGETS_10_SUPPORT flag may be removed. The only use + of this flag was related to view mode media feature implementation in Qt. + + * wtf/Platform.h: + 2009-10-30 Tor Arne Vestbø Reviewed by Kenneth Rohde Christiansen. diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/DerivedSources_0xE230558f.mmp --- a/JavaScriptCore/DerivedSources_0xE230558f.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,79 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:01:23 -// This file is generated by qmake and should not be modified by the -// user. -// Name : DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xE230558f -SECUREID 0xE230558f - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/JavaScriptCore_0xE196494c.mmp --- a/JavaScriptCore/JavaScriptCore_0xE196494c.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,302 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:02:34 -// This file is generated by qmake and should not be modified by the -// user. -// Name : JavaScriptCore.mmp -// ============================================================================== - -TARGET jscore.lib -TARGETTYPE LIB - -UID 0xE196494c -SECUREID 0xE196494c - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO BUILDING_QT__ -MACRO BUILDING_JavaScriptCore -MACRO BUILDING_WTF -MACRO QT_NO_DEBUG -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE . -SYSTEMINCLUDE .. -SYSTEMINCLUDE assembler -SYSTEMINCLUDE bytecode -SYSTEMINCLUDE bytecompiler -SYSTEMINCLUDE debugger -SYSTEMINCLUDE interpreter -SYSTEMINCLUDE jit -SYSTEMINCLUDE parser -SYSTEMINCLUDE pcre -SYSTEMINCLUDE profiler -SYSTEMINCLUDE runtime -SYSTEMINCLUDE wtf -SYSTEMINCLUDE wtf/symbian -SYSTEMINCLUDE wtf/unicode -SYSTEMINCLUDE yarr -SYSTEMINCLUDE API -SYSTEMINCLUDE ForwardingHeaders -SYSTEMINCLUDE generated -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../include/QtWebKit -SYSTEMINCLUDE ../Release/JavaScriptCore/tmp -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE wtf/qt -SYSTEMINCLUDE wtf/text -SYSTEMINCLUDE wtf/unicode/icu - -SOURCEPATH API -SOURCE JSBase.cpp -SOURCE JSCallbackConstructor.cpp -SOURCE JSCallbackFunction.cpp -SOURCE JSCallbackObject.cpp -SOURCE JSClassRef.cpp -SOURCE JSContextRef.cpp -SOURCE JSObjectRef.cpp -SOURCE JSStringRef.cpp -SOURCE JSValueRef.cpp -SOURCE OpaqueJSString.cpp - -SOURCEPATH assembler -SOURCE ARMAssembler.cpp -SOURCE MacroAssemblerARM.cpp - -SOURCEPATH bytecode -SOURCE CodeBlock.cpp -SOURCE JumpTable.cpp -SOURCE Opcode.cpp -SOURCE SamplingTool.cpp -SOURCE StructureStubInfo.cpp - -SOURCEPATH bytecompiler -SOURCE BytecodeGenerator.cpp -SOURCE NodesCodegen.cpp - -SOURCEPATH debugger -SOURCE DebuggerActivation.cpp -SOURCE DebuggerCallFrame.cpp -SOURCE Debugger.cpp - -SOURCEPATH interpreter -SOURCE CallFrame.cpp -SOURCE Interpreter.cpp -SOURCE RegisterFile.cpp - -SOURCEPATH jit -SOURCE ExecutableAllocatorFixedVMPool.cpp -SOURCE ExecutableAllocatorPosix.cpp -SOURCE ExecutableAllocatorSymbian.cpp -SOURCE ExecutableAllocatorWin.cpp -SOURCE ExecutableAllocator.cpp -SOURCE JITArithmetic.cpp -SOURCE JITArithmetic32_64.cpp -SOURCE JITCall.cpp -SOURCE JITCall32_64.cpp -SOURCE JIT.cpp -SOURCE JITOpcodes.cpp -SOURCE JITOpcodes32_64.cpp -SOURCE JITPropertyAccess.cpp -SOURCE JITPropertyAccess32_64.cpp -SOURCE JITStubs.cpp -SOURCE ThunkGenerators.cpp - -SOURCEPATH parser -SOURCE JSParser.cpp -SOURCE Lexer.cpp -SOURCE Nodes.cpp -SOURCE ParserArena.cpp -SOURCE Parser.cpp - -SOURCEPATH pcre -SOURCE pcre_compile.cpp -SOURCE pcre_exec.cpp -SOURCE pcre_tables.cpp -SOURCE pcre_ucp_searchfuncs.cpp -SOURCE pcre_xclass.cpp - -SOURCEPATH profiler -SOURCE Profile.cpp -SOURCE ProfileGenerator.cpp -SOURCE ProfileNode.cpp -SOURCE Profiler.cpp - -SOURCEPATH runtime -SOURCE ArgList.cpp -SOURCE Arguments.cpp -SOURCE ArrayConstructor.cpp -SOURCE ArrayPrototype.cpp -SOURCE BooleanConstructor.cpp -SOURCE BooleanObject.cpp -SOURCE BooleanPrototype.cpp -SOURCE CallData.cpp -SOURCE Collector.cpp -SOURCE CommonIdentifiers.cpp -SOURCE Completion.cpp -SOURCE ConstructData.cpp -SOURCE DateConstructor.cpp -SOURCE DateConversion.cpp -SOURCE DateInstance.cpp -SOURCE DatePrototype.cpp -SOURCE ErrorConstructor.cpp -SOURCE Error.cpp -SOURCE ErrorInstance.cpp -SOURCE ErrorPrototype.cpp -SOURCE ExceptionHelpers.cpp -SOURCE Executable.cpp -SOURCE FunctionConstructor.cpp -SOURCE FunctionPrototype.cpp -SOURCE GetterSetter.cpp -SOURCE GlobalEvalFunction.cpp -SOURCE Identifier.cpp -SOURCE InitializeThreading.cpp -SOURCE InternalFunction.cpp -SOURCE JSActivation.cpp -SOURCE JSAPIValueWrapper.cpp -SOURCE JSArray.cpp -SOURCE JSByteArray.cpp -SOURCE JSCell.cpp -SOURCE JSFunction.cpp -SOURCE JSGlobalData.cpp -SOURCE JSGlobalObject.cpp -SOURCE JSGlobalObjectFunctions.cpp -SOURCE JSImmediate.cpp -SOURCE JSLock.cpp -SOURCE JSNotAnObject.cpp -SOURCE JSNumberCell.cpp -SOURCE JSObject.cpp -SOURCE JSObjectWithGlobalObject.cpp -SOURCE JSONObject.cpp -SOURCE JSPropertyNameIterator.cpp -SOURCE JSStaticScopeObject.cpp -SOURCE JSString.cpp -SOURCE JSValue.cpp -SOURCE JSVariableObject.cpp -SOURCE JSWrapperObject.cpp -SOURCE LiteralParser.cpp -SOURCE Lookup.cpp -SOURCE MarkStackPosix.cpp -SOURCE MarkStackSymbian.cpp -SOURCE MarkStackWin.cpp -SOURCE MarkStack.cpp -SOURCE MathObject.cpp -SOURCE NativeErrorConstructor.cpp -SOURCE NativeErrorPrototype.cpp -SOURCE NumberConstructor.cpp -SOURCE NumberObject.cpp -SOURCE NumberPrototype.cpp -SOURCE ObjectConstructor.cpp -SOURCE ObjectPrototype.cpp -SOURCE Operations.cpp -SOURCE PropertyDescriptor.cpp -SOURCE PropertyNameArray.cpp -SOURCE PropertySlot.cpp -SOURCE PrototypeFunction.cpp -SOURCE RegExpConstructor.cpp -SOURCE RegExp.cpp -SOURCE RegExpObject.cpp -SOURCE RegExpPrototype.cpp -SOURCE RegExpCache.cpp -SOURCE RopeImpl.cpp -SOURCE ScopeChain.cpp -SOURCE SmallStrings.cpp -SOURCE StringConstructor.cpp -SOURCE StringObject.cpp -SOURCE StringPrototype.cpp -SOURCE StructureChain.cpp -SOURCE Structure.cpp -SOURCE TimeoutChecker.cpp -SOURCE UString.cpp - -SOURCEPATH wtf -SOURCE Assertions.cpp -SOURCE ByteArray.cpp -SOURCE CurrentTime.cpp -SOURCE DateMath.cpp -SOURCE dtoa.cpp -SOURCE FastMalloc.cpp -SOURCE HashTable.cpp -SOURCE MD5.cpp -SOURCE MainThread.cpp -SOURCE RandomNumber.cpp -SOURCE RefCountedLeakCounter.cpp -SOURCE ThreadingNone.cpp -SOURCE Threading.cpp -SOURCE TypeTraits.cpp -SOURCE WTFThreadData.cpp - -SOURCEPATH wtf/qt -SOURCE MainThreadQt.cpp -SOURCE StringQt.cpp -SOURCE ThreadingQt.cpp - -SOURCEPATH wtf/symbian -SOURCE BlockAllocatorSymbian.cpp - -SOURCEPATH wtf/text -SOURCE AtomicString.cpp -SOURCE CString.cpp -SOURCE StringImpl.cpp -SOURCE StringStatics.cpp -SOURCE WTFString.cpp - -SOURCEPATH wtf/unicode -SOURCE CollatorDefault.cpp -SOURCE UTF8.cpp - -SOURCEPATH wtf/unicode/icu -SOURCE CollatorICU.cpp - -SOURCEPATH yarr -SOURCE RegexCompiler.cpp -SOURCE RegexInterpreter.cpp -SOURCE RegexJIT.cpp - - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -USERINCLUDE ../JavaScriptCore/profiler - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/Makefile --- a/JavaScriptCore/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,783 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Tue 17. Aug 12:44:06 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/JavaScriptCore/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/JavaScriptCore/tmp" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "Z:/qtwebkit-symbian-qtp/JavaScriptCore/JavaScriptCore.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: MainThreadQt.moc ThreadingQt.moc -compiler_moc_source_clean: - -$(DEL_FILE) MainThreadQt.moc ThreadingQt.moc -MainThreadQt.moc: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - wtf\DisallowCType.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - wtf\MainThread.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\QCoreApplication \ - ..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\epoc32\include\mw\QtCore\QThread \ - ..\..\epoc32\include\mw\QtCore\qthread.h \ - wtf\qt\MainThreadQt.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\JavaScriptCore\wtf\qt\MainThreadQt.cpp -o z:\qtwebkit-symbian-qtp\JavaScriptCore\MainThreadQt.moc - -ThreadingQt.moc: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - wtf\DisallowCType.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - wtf\Threading.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - wtf\CurrentTime.h \ - wtf\HashMap.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - wtf\ValueCheck.h \ - wtf\HashIterators.h \ - wtf\RefPtrHashMap.h \ - wtf\RandomNumberSeed.h \ - ..\..\epoc32\include\stdapis\unistd.h \ - \epoc32\include\stdapis\sys\unistd.h \ - ..\..\epoc32\include\mw\QtCore\QCoreApplication \ - ..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\epoc32\include\mw\QtCore\QMutex \ - ..\..\epoc32\include\mw\QtCore\qmutex.h \ - ..\..\epoc32\include\mw\QtCore\QThread \ - ..\..\epoc32\include\mw\QtCore\qthread.h \ - ..\..\epoc32\include\mw\QtCore\QWaitCondition \ - ..\..\epoc32\include\mw\QtCore\qwaitcondition.h \ - wtf\qt\ThreadingQt.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\JavaScriptCore\wtf\qt\ThreadingQt.cpp -o z:\qtwebkit-symbian-qtp\JavaScriptCore\ThreadingQt.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_source_clean - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\JavaScriptCore_0xE7e8b352.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\JavaScriptCore_0xE7e8b352.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\bld.inf" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/Makefile.DerivedSources --- a/JavaScriptCore/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1207 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:47:08 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/JavaScriptCore/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/JavaScriptCore" -first: default -default: debug-winscw -all: -generated_files: compiler_lut_make_all compiler_keywordlut_make_all compiler_rvctstubs_make_all compiler_ctgen_make_all compiler_retgen_make_all - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_lut_make_all: generated\ArrayPrototype.lut.h generated\DatePrototype.lut.h generated\JSONObject.lut.h generated\MathObject.lut.h generated\NumberConstructor.lut.h generated\RegExpConstructor.lut.h generated\RegExpObject.lut.h generated\StringPrototype.lut.h -compiler_lut_clean: - -$(DEL_FILE) generated\ArrayPrototype.lut.h generated\DatePrototype.lut.h generated\JSONObject.lut.h generated\MathObject.lut.h generated\NumberConstructor.lut.h generated\RegExpConstructor.lut.h generated\RegExpObject.lut.h generated\StringPrototype.lut.h -generated\ArrayPrototype.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\ArrayPrototype.h \ - runtime\JSArray.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\JSWrapperObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\JSStringBuilder.h \ - runtime\ExceptionHelpers.h \ - runtime\ObjectPrototype.h \ - runtime\Operations.h \ - runtime\ArrayPrototype.cpp \ - runtime\ArrayPrototype.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\ArrayPrototype.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\ArrayPrototype.lut.h - -generated\DatePrototype.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\DatePrototype.h \ - runtime\DateInstance.h \ - runtime\JSWrapperObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\DateConversion.h \ - runtime\Error.h \ - runtime\JSStringBuilder.h \ - runtime\ExceptionHelpers.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSArray.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\ObjectPrototype.h \ - wtf\StringExtras.h \ - runtime\DatePrototype.cpp \ - runtime\DatePrototype.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\DatePrototype.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\DatePrototype.lut.h - -generated\JSONObject.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\JSONObject.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\BooleanObject.h \ - runtime\JSWrapperObject.h \ - runtime\Error.h \ - runtime\ExceptionHelpers.h \ - runtime\JSArray.h \ - runtime\JSGlobalObject.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\LiteralParser.h \ - runtime\JSGlobalObjectFunctions.h \ - runtime\Lookup.h \ - runtime\StringBuilder.h \ - runtime\JSONObject.cpp \ - runtime\JSONObject.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\JSONObject.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\JSONObject.lut.h - -generated\MathObject.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\MathObject.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSArray.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\JSWrapperObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\ObjectPrototype.h \ - runtime\Operations.h \ - runtime\ExceptionHelpers.h \ - wtf\RandomNumber.h \ - wtf\RandomNumberSeed.h \ - runtime\MathObject.cpp \ - runtime\MathObject.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\MathObject.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\MathObject.lut.h - -generated\NumberConstructor.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\NumberConstructor.h \ - runtime\InternalFunction.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSArray.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\JSWrapperObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\NumberConstructor.cpp \ - runtime\NumberConstructor.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\NumberConstructor.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\NumberConstructor.lut.h - -generated\RegExpConstructor.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\RegExpConstructor.h \ - runtime\InternalFunction.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\RegExp.h \ - yarr\RegexJIT.h \ - yarr\RegexPattern.h \ - yarr\RegexInterpreter.h \ - yarr\RegexParser.h \ - wtf\PassOwnPtr.h \ - runtime\ArrayPrototype.h \ - runtime\JSArray.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\JSWrapperObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\Error.h \ - runtime\ExceptionHelpers.h \ - runtime\JSFunction.h \ - runtime\ObjectPrototype.h \ - runtime\RegExpMatchesArray.h \ - runtime\RegExpObject.h \ - runtime\RegExpPrototype.h \ - runtime\RegExpCache.h \ - runtime\RegExpKey.h \ - runtime\RegExpConstructor.cpp \ - runtime\RegExpConstructor.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\RegExpConstructor.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\RegExpConstructor.lut.h - -generated\RegExpObject.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\RegExpObject.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\RegExp.h \ - yarr\RegexJIT.h \ - yarr\RegexPattern.h \ - yarr\RegexInterpreter.h \ - yarr\RegexParser.h \ - wtf\PassOwnPtr.h \ - runtime\Error.h \ - runtime\ExceptionHelpers.h \ - runtime\JSArray.h \ - runtime\JSGlobalObject.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\JSWrapperObject.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\Lookup.h \ - runtime\RegExpConstructor.h \ - runtime\InternalFunction.h \ - runtime\RegExpPrototype.h \ - runtime\RegExpObject.cpp \ - runtime\RegExpObject.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\RegExpObject.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\RegExpObject.lut.h - -generated\StringPrototype.lut.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - runtime\StringPrototype.h \ - runtime\StringObject.h \ - runtime\JSWrapperObject.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - wtf\HashSet.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\HashTable.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\AlwaysInline.h \ - wtf\PassRefPtr.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\JSValue.h \ - wtf\MathExtras.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\HashMap.h \ - wtf\RefPtrHashMap.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\CallData.h \ - runtime\NativeFunctionWrapper.h \ - runtime\ConstructData.h \ - runtime\JSImmediate.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\Error.h \ - runtime\Executable.h \ - runtime\JSFunction.h \ - runtime\JSObjectWithGlobalObject.h \ - wtf\PassOwnPtr.h \ - runtime\JSGlobalObjectFunctions.h \ - runtime\JSArray.h \ - runtime\JSStringBuilder.h \ - runtime\ExceptionHelpers.h \ - runtime\Lookup.h \ - runtime\JSGlobalObject.h \ - runtime\JSVariableObject.h \ - runtime\SymbolTable.h \ - runtime\NumberPrototype.h \ - runtime\NumberObject.h \ - runtime\ObjectPrototype.h \ - runtime\Operations.h \ - runtime\RegExpCache.h \ - runtime\RegExp.h \ - yarr\RegexJIT.h \ - yarr\RegexPattern.h \ - yarr\RegexInterpreter.h \ - yarr\RegexParser.h \ - runtime\RegExpKey.h \ - runtime\RegExpConstructor.h \ - runtime\InternalFunction.h \ - runtime\RegExpObject.h \ - wtf\unicode\Collator.h \ - runtime\StringPrototype.cpp \ - runtime\StringPrototype.cpp \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\runtime\StringPrototype.cpp -i > u:\yaels-qtwebkit\JavaScriptCore\generated\StringPrototype.lut.h - -compiler_keywordlut_make_all: generated\Lexer.lut.h -compiler_keywordlut_clean: - -$(DEL_FILE) generated\Lexer.lut.h -generated\Lexer.lut.h: parser\Keywords.table \ - parser\Keywords.table \ - create_hash_table - perl U:/yaels-qtwebkit/JavaScriptCore/create_hash_table u:\yaels-qtwebkit\JavaScriptCore\parser\Keywords.table -i > u:\yaels-qtwebkit\JavaScriptCore\generated\Lexer.lut.h - -compiler_rvctstubs_make_all: generated\GeneratedJITStubs_RVCT.h -compiler_rvctstubs_clean: - -$(DEL_FILE) generated\GeneratedJITStubs_RVCT.h -generated\GeneratedJITStubs_RVCT.h: config.h \ - wtf\Platform.h \ - wtf\FastMalloc.h \ - wtf\PossiblyNull.h \ - wtf\Assertions.h \ - wtf\DisallowCType.h \ - jit\JITStubs.h \ - runtime\CallData.h \ - runtime\JSValue.h \ - wtf\AlwaysInline.h \ - wtf\HashTraits.h \ - wtf\HashFunctions.h \ - wtf\RefPtr.h \ - wtf\FastAllocBase.h \ - wtf\TypeTraits.h \ - wtf\PassRefPtr.h \ - wtf\MathExtras.h \ - runtime\NativeFunctionWrapper.h \ - jit\ThunkGenerators.h \ - wtf\HashMap.h \ - wtf\HashTable.h \ - wtf\ValueCheck.h \ - wtf\Threading.h \ - wtf\Atomics.h \ - wtf\Locker.h \ - wtf\Noncopyable.h \ - wtf\MainThread.h \ - wtf\ThreadSafeShared.h \ - wtf\ThreadingPrimitives.h \ - wtf\HashIterators.h \ - wtf\RefPtrHashMap.h \ - runtime\Collector.h \ - wtf\FixedArray.h \ - wtf\HashCountedSet.h \ - wtf\Vector.h \ - wtf\NotFound.h \ - wtf\VectorTraits.h \ - wtf\OwnPtr.h \ - wtf\OwnPtrCommon.h \ - wtf\HashSet.h \ - wtf\StdLibExtras.h \ - wtf\symbian\BlockAllocatorSymbian.h \ - runtime\ExceptionHelpers.h \ - jit\JIT.h \ - jit\JSInterfaceJIT.h \ - jit\JITCode.h \ - runtime\JSImmediate.h \ - bytecode\SamplingTool.h \ - bytecode\Opcode.h \ - runtime\JSArray.h \ - runtime\JSObject.h \ - runtime\ArgList.h \ - runtime\ClassInfo.h \ - runtime\CommonIdentifiers.h \ - runtime\Identifier.h \ - runtime\JSGlobalData.h \ - runtime\CachedTranscendentalFunction.h \ - runtime\DateInstanceCache.h \ - wtf\DateMath.h \ - wtf\CurrentTime.h \ - wtf\UnusedParam.h \ - wtf\RefCounted.h \ - runtime\MarkStack.h \ - runtime\NumericStrings.h \ - runtime\UString.h \ - runtime\UStringImpl.h \ - wtf\text\StringImpl.h \ - wtf\ASCIICType.h \ - wtf\CrossThreadRefCounted.h \ - wtf\OwnFastMallocPtr.h \ - wtf\StringHashFunctions.h \ - wtf\unicode\Unicode.h \ - wtf\unicode\qt4\UnicodeQt4.h \ - wtf\unicode\icu\UnicodeIcu.h \ - wtf\unicode\glib\UnicodeGLib.h \ - wtf\unicode\glib\UnicodeMacrosFromICU.h \ - wtf\unicode\wince\UnicodeWince.h \ - wtf\text\StringImplBase.h \ - wtf\text\CString.h \ - runtime\SmallStrings.h \ - runtime\Terminator.h \ - runtime\TimeoutChecker.h \ - runtime\WeakRandom.h \ - wtf\Forward.h \ - wtf\ThreadSpecific.h \ - runtime\Completion.h \ - runtime\JSCell.h \ - runtime\ConstructData.h \ - runtime\Structure.h \ - runtime\JSType.h \ - runtime\PropertyMapHashTable.h \ - runtime\PropertyNameArray.h \ - wtf\OwnArrayPtr.h \ - runtime\Protect.h \ - runtime\StructureChain.h \ - runtime\StructureTransitionTable.h \ - runtime\JSTypeInfo.h \ - runtime\WeakGCPtr.h \ - runtime\JSNumberCell.h \ - runtime\PropertySlot.h \ - runtime\PutPropertySlot.h \ - runtime\ScopeChain.h \ - runtime\JSString.h \ - runtime\PropertyDescriptor.h \ - runtime\RopeImpl.h \ - runtime\JSFunction.h \ - runtime\JSObjectWithGlobalObject.h \ - runtime\ObjectPrototype.h \ - runtime\Operations.h \ - runtime\RegExpObject.h \ - runtime\RegExp.h \ - yarr\RegexJIT.h \ - yarr\RegexPattern.h \ - yarr\RegexInterpreter.h \ - yarr\RegexParser.h \ - wtf\PassOwnPtr.h \ - runtime\RegExpPrototype.h \ - jit\JITStubs.cpp \ - jit\JITStubs.cpp \ - create_jit_stubs - perl -i U:/yaels-qtwebkit/JavaScriptCore/create_jit_stubs --prefix RVCT u:\yaels-qtwebkit\JavaScriptCore\jit\JITStubs.cpp > u:\yaels-qtwebkit\JavaScriptCore\generated\GeneratedJITStubs_RVCT.h - -compiler_ctgen_make_all: generated\chartables.c -compiler_ctgen_clean: - -$(DEL_FILE) generated\chartables.c generateddftables -generated\chartables.c: pcre\dftables \ - pcre\dftables - perl U:/yaels-qtwebkit/JavaScriptCore/pcre/dftables u:\yaels-qtwebkit\JavaScriptCore\generated\chartables.c - -compiler_retgen_make_all: generated\RegExpJitTables.h -compiler_retgen_clean: - -$(DEL_FILE) generated\RegExpJitTables.h -generated\RegExpJitTables.h: create_regex_tables \ - create_regex_tables - python U:/yaels-qtwebkit/JavaScriptCore/create_regex_tables > u:\yaels-qtwebkit\JavaScriptCore\generated\RegExpJitTables.h - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_lut_clean compiler_keywordlut_clean compiler_rvctstubs_clean compiler_ctgen_clean compiler_retgen_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\JavaScriptCore\Makefile.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\JavaScriptCore\Makefile.DerivedSources" - -@ if EXIST "u:\yaels-qtwebkit\JavaScriptCore\DerivedSources_0xE364e416.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\JavaScriptCore\DerivedSources_0xE364e416.mmp" - -@ if EXIST "u:\yaels-qtwebkit\JavaScriptCore\bld.inf.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\JavaScriptCore\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/Makefile.jsc --- a/JavaScriptCore/Makefile.jsc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Tue 17. Aug 12:44:26 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/JavaScriptCore/Makefile.jsc -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.jsc -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/epoc32/include/stdapis/stlportv5" -first: default -default: debug-winscw -all: -check: first - -run: - call /epoc32/release/winscw/udeb/jsc.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis jsc.sis jsc.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard jsc_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) jsc_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard jsc_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o jsc_template.pkg $(QT_SIS_TARGET) - -jsc.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: jsc.sis - $(if $(wildcard jsc_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) jsc_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard jsc_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) jsc_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call jsc.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_template.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_template.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_stub.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_stub.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_installer.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_installer.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile.jsc" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile.jsc" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_0xE0a7370e.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_0xE0a7370e.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_reg.rss" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc_reg.rss" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.rss" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.rss" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.loc" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.loc" - -@ if EXIST "z:\qtwebkit-symbian-qtp\JavaScriptCore\bld.inf.jsc" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\JavaScriptCore\bld.inf.jsc" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/bld.inf --- a/JavaScriptCore/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: jscore -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:06 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: JavaScriptCore.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_JAVASCRIPTCORE_FFEA6B23 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -JavaScriptCore_0xE7e8b352.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/JavaScriptCore/MainThreadQt.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/JavaScriptCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/_ctype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/QCoreApplication Z:/epoc32/include/mw/QtCore/qcoreapplication.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qeventloop.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/QThread Z:/epoc32/include/mw/QtCore/qthread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt/MainThreadQt.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/JavaScriptCore/tmp" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu" -DSYMBIAN z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt/MainThreadQt.cpp -o z:/qtwebkit-symbian-qtp/JavaScriptCore/MainThreadQt.moc -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/JavaScriptCore/ThreadingQt.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/JavaScriptCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/_ctype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/epoc32/include/stdapis/stdint.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RandomNumberSeed.h Z:/epoc32/include/stdapis/unistd.h Z:/epoc32/include/stdapis/sys/unistd.h Z:/epoc32/include/mw/QtCore/QCoreApplication Z:/epoc32/include/mw/QtCore/qcoreapplication.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qeventloop.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/QMutex Z:/epoc32/include/mw/QtCore/qmutex.h Z:/epoc32/include/mw/QtCore/QThread Z:/epoc32/include/mw/QtCore/qthread.h Z:/epoc32/include/mw/QtCore/QWaitCondition Z:/epoc32/include/mw/QtCore/qwaitcondition.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt/ThreadingQt.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/JavaScriptCore/tmp" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu" -DSYMBIAN z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/qt/ThreadingQt.cpp -o z:/qtwebkit-symbian-qtp/JavaScriptCore/ThreadingQt.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/bld.inf.DerivedSources --- a/JavaScriptCore/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:47:08 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_FB9AFDE4 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xE364e416.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/bld.inf.jsc --- a/JavaScriptCore/bld.inf.jsc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: jsc -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: jsc.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_JSC_04E61F02 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -jsc_0xE0a7370e.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/create_hash_table --- a/JavaScriptCore/create_hash_table Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/create_hash_table Mon Oct 04 01:32:07 2010 +0300 @@ -24,7 +24,7 @@ use strict; -my $file = $ENV{"WEBKITDIR"} . $ARGV[0]; +my $file = $ARGV[0]; shift; my $includelookup = 0; diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/create_jit_stubs --- a/JavaScriptCore/create_jit_stubs Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/create_jit_stubs Mon Oct 04 01:32:07 2010 +0300 @@ -37,7 +37,7 @@ 'offset=i' => \$offset ); -$file = $ENV{"WEBKITDIR"} . $ARGV[0]; +$file = $ARGV[0]; die "$usage\n" unless ($prefix and $file); diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/ArrayPrototype.lut.h --- a/JavaScriptCore/generated/ArrayPrototype.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/ArrayPrototype.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\ArrayPrototype.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/ArrayPrototype.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/DatePrototype.lut.h --- a/JavaScriptCore/generated/DatePrototype.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/DatePrototype.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\DatePrototype.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/DatePrototype.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/JSONObject.lut.h --- a/JavaScriptCore/generated/JSONObject.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/JSONObject.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\JSONObject.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/JSONObject.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/Lexer.lut.h --- a/JavaScriptCore/generated/Lexer.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/Lexer.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\parser\Keywords.table using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from parser/Keywords.table using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/MathObject.lut.h --- a/JavaScriptCore/generated/MathObject.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/MathObject.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\MathObject.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/MathObject.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/NumberConstructor.lut.h --- a/JavaScriptCore/generated/NumberConstructor.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/NumberConstructor.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\NumberConstructor.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/NumberConstructor.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/RegExpConstructor.lut.h --- a/JavaScriptCore/generated/RegExpConstructor.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/RegExpConstructor.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\RegExpConstructor.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/RegExpConstructor.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/RegExpObject.lut.h --- a/JavaScriptCore/generated/RegExpObject.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/RegExpObject.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\RegExpObject.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/RegExpObject.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/generated/StringPrototype.lut.h --- a/JavaScriptCore/generated/StringPrototype.lut.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/generated/StringPrototype.lut.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -// Automatically generated from u:\yaels-qtwebkit\JavaScriptCore\runtime\StringPrototype.cpp using ../../JavaScriptCore/create_hash_table. DO NOT EDIT! +// Automatically generated from runtime/StringPrototype.cpp using /home/hg/repos/qtwebkit-rel/JavaScriptCore/create_hash_table. DO NOT EDIT! #include "Lookup.h" diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc.loc --- a/JavaScriptCore/jsc.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "jsc" -#define STRING_r_caption "jsc" -#else -#define STRING_r_short_caption "jsc" -#define STRING_r_caption "jsc" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc.rss --- a/JavaScriptCore/jsc.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc_0xE0dd3477.mmp --- a/JavaScriptCore/jsc_0xE0dd3477.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,119 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:20 -// This file is generated by qmake and should not be modified by the -// user. -// Name : jsc.mmp -// ============================================================================== - -TARGET jsc.exe -TARGETTYPE EXE - -UID 0 0xE0dd3477 -SECUREID 0xE0dd3477 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - -SOURCEPATH . -LANG SC -START RESOURCE jsc.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE jsc_reg.rss -DEPENDS jsc.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO BUILDING_QT__ -MACRO BUILDING_JavaScriptCore -MACRO BUILDING_WTF -MACRO QT_NO_DEBUG -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE . -SYSTEMINCLUDE .. -SYSTEMINCLUDE assembler -SYSTEMINCLUDE bytecode -SYSTEMINCLUDE bytecompiler -SYSTEMINCLUDE debugger -SYSTEMINCLUDE interpreter -SYSTEMINCLUDE jit -SYSTEMINCLUDE parser -SYSTEMINCLUDE pcre -SYSTEMINCLUDE profiler -SYSTEMINCLUDE runtime -SYSTEMINCLUDE wtf -SYSTEMINCLUDE wtf/symbian -SYSTEMINCLUDE wtf/unicode -SYSTEMINCLUDE yarr -SYSTEMINCLUDE API -SYSTEMINCLUDE ForwardingHeaders -SYSTEMINCLUDE generated -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 - -SOURCEPATH . -SOURCE jsc.cpp - - -LIBRARY hal.lib -STATICLIBRARY jscore.lib -LIBRARY libstdcppv5.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY libcrt0.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -USERINCLUDE ../JavaScriptCore/profiler - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc_installer.pkg --- a/JavaScriptCore/jsc_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/JavaScriptCore/jsc_installer.pkg generated by qmake at 2010-08-17T12:44:26 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"jsc installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jsc.sis" - "c:\private\2002CCCE\import\jsc.sis" -@"Z:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc_reg.rss --- a/JavaScriptCore/jsc_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE0a7370e - -RESOURCE APP_REGISTRATION_INFO - { - app_file="jsc"; - localisable_resource_file="\\resource\\apps\\jsc"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc_stub.pkg --- a/JavaScriptCore/jsc_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/JavaScriptCore/jsc_stub.pkg generated by qmake at 2010-08-17T12:44:26 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"jsc"},(0xE0a7370e),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\jsc.exe" -"" - "z:\resource\apps\jsc.rsc" -"" - "z:\private\10003a3f\import\apps\jsc_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/jsc_template.pkg --- a/JavaScriptCore/jsc_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/JavaScriptCore/jsc_template.pkg generated by qmake at 2010-08-17T12:44:26 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"jsc"},(0xE0a7370e),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/jsc.exe" - "!:\sys\bin\jsc.exe" -"/epoc32/data/z/resource/apps/jsc.rsc" - "!:\resource\apps\jsc.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/jsc_reg.rsc" - "!:\private\10003a3f\import\apps\jsc_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/runtime/TimeoutChecker.cpp --- a/JavaScriptCore/runtime/TimeoutChecker.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/runtime/TimeoutChecker.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -98,7 +98,10 @@ return GETUPTIMEMS(); #else // FIXME: We should return the time the current thread has spent executing. - return currentTime() * 1000; + + // use a relative time from first call in order to avoid an overflow + static double firstTime = currentTime(); + return (currentTime() - firstTime) * 1000; #endif } diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/wtf/Platform.h --- a/JavaScriptCore/wtf/Platform.h Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/wtf/Platform.h Mon Oct 04 01:32:07 2010 +0300 @@ -576,9 +576,6 @@ #if PLATFORM(QT) #define WTF_USE_QT4_UNICODE 1 -#if !defined(ENABLE_WIDGETS_10_SUPPORT) -#define ENABLE_WIDGETS_10_SUPPORT 1 -#endif #elif OS(WINCE) #define WTF_USE_WINCE_UNICODE 1 #elif PLATFORM(GTK) @@ -839,10 +836,6 @@ #define ENABLE_DASHBOARD_SUPPORT 0 #endif -#if !defined(ENABLE_WIDGETS_10_SUPPORT) -#define ENABLE_WIDGETS_10_SUPPORT 0 -#endif - #if !defined(ENABLE_INSPECTOR) #define ENABLE_INSPECTOR 1 #endif @@ -855,6 +848,10 @@ #define ENABLE_NETSCAPE_PLUGIN_API 1 #endif +#if !defined(ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE) +#define ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE 0 +#endif + #if !defined(WTF_USE_PLUGIN_HOST_PROCESS) #define WTF_USE_PLUGIN_HOST_PROCESS 0 #endif diff -r 4f2f89ce4247 -r 303757a437d3 JavaScriptCore/yarr/RegexJIT.cpp --- a/JavaScriptCore/yarr/RegexJIT.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/JavaScriptCore/yarr/RegexJIT.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1413,6 +1413,9 @@ push(ARMRegisters::r4); push(ARMRegisters::r5); push(ARMRegisters::r6); +#if CPU(ARM_TRADITIONAL) + push(ARMRegisters::r8); // scratch register +#endif move(ARMRegisters::r3, output); #elif CPU(MIPS) // Do nothing. @@ -1430,6 +1433,9 @@ pop(X86Registers::ebx); pop(X86Registers::ebp); #elif CPU(ARM) +#if CPU(ARM_TRADITIONAL) + pop(ARMRegisters::r8); // scratch register +#endif pop(ARMRegisters::r6); pop(ARMRegisters::r5); pop(ARMRegisters::r4); diff -r 4f2f89ce4247 -r 303757a437d3 Makefile --- a/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,156 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Tue 17. Aug 12:44:27 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : z:/qtwebkit-symbian-qtp/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "Z:/qtwebkit-symbian-qtp/WebKit.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -JavaScriptCore\$(MAKEFILE): - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\JavaScriptCore.pro -o $(MAKEFILE) -sub-JavaScriptCore-qmake_all: FORCE - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\JavaScriptCore.pro -o $(MAKEFILE) -sub-JavaScriptCore: JavaScriptCore\$(MAKEFILE) FORCE - cd JavaScriptCore\ && $(MAKE) -f $(MAKEFILE) -WebCore\$(MAKEFILE): - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebCore\WebCore.pro -o $(MAKEFILE) -sub-WebCore-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebCore\WebCore.pro -o $(MAKEFILE) -sub-WebCore: WebCore\$(MAKEFILE) FORCE - cd WebCore\ && $(MAKE) -f $(MAKEFILE) -WebKit\qt\declarative\$(MAKEFILE): - @$(CHK_DIR_EXISTS) WebKit\qt\declarative\ $(MKDIR) WebKit\qt\declarative\ - cd WebKit\qt\declarative\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\declarative.pro -o $(MAKEFILE) -sub-WebKit-qt-declarative-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebKit\qt\declarative\ $(MKDIR) WebKit\qt\declarative\ - cd WebKit\qt\declarative\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\declarative.pro -o $(MAKEFILE) -sub-WebKit-qt-declarative: WebKit\qt\declarative\$(MAKEFILE) FORCE - cd WebKit\qt\declarative\ && $(MAKE) -f $(MAKEFILE) -JavaScriptCore\$(MAKEFILE).jsc: - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.pro -o $(MAKEFILE).jsc -sub-JavaScriptCore-jsc-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\jsc.pro -o $(MAKEFILE).jsc -sub-JavaScriptCore-jsc-pro: JavaScriptCore\$(MAKEFILE).jsc FORCE - cd JavaScriptCore\ && $(MAKE) -f $(MAKEFILE).jsc - - -install: - $(MAKE) -C WebCore install - -docs: - SRCDIR=Z:/qtwebkit-symbian-qtp/WebKit/qt/docs/../../.. OUTPUT_DIR= /bin/qdoc3 Z:/qtwebkit-symbian-qtp/WebKit/qt/docs/qtwebkit.qdocconf - -sub-JavaScriptCore-check: JavaScriptCore\$(MAKEFILE) - cd JavaScriptCore\ && $(MAKE) check -sub-WebCore-check: WebCore\$(MAKEFILE) - cd WebCore\ && $(MAKE) check -sub-WebKit-qt-declarative-check: WebKit\qt\declarative\$(MAKEFILE) - cd WebKit\qt\declarative\ && $(MAKE) check -sub-JavaScriptCore-jsc-pro-check: JavaScriptCore\$(MAKEFILE).jsc - cd JavaScriptCore\ && $(MAKE) -f $(MAKEFILE).jsc check -check: sub-JavaScriptCore-check sub-WebCore-check sub-WebKit-qt-declarative-check sub-JavaScriptCore-jsc-pro-check - -sub-JavaScriptCore-sis_target: JavaScriptCore\$(MAKEFILE) - cd JavaScriptCore\ && $(MAKE) sis -sub-WebCore-sis_target: WebCore\$(MAKEFILE) - cd WebCore\ && $(MAKE) sis -sub-WebKit-qt-declarative-sis_target: WebKit\qt\declarative\$(MAKEFILE) - cd WebKit\qt\declarative\ && $(MAKE) sis -sub-JavaScriptCore-jsc-pro-sis_target: JavaScriptCore\$(MAKEFILE).jsc - cd JavaScriptCore\ && $(MAKE) -f $(MAKEFILE).jsc sis -sis: sub-JavaScriptCore-sis_target sub-WebCore-sis_target sub-WebKit-qt-declarative-sis_target sub-JavaScriptCore-jsc-pro-sis_target - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all -FORCE: - -dodistclean: - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile" dodistclean - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\WebCore\Makefile" dodistclean - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\Makefile" dodistclean - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile.jsc" dodistclean - -@ if EXIST "z:\qtwebkit-symbian-qtp\Makefile" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\Makefile" - -@ if EXIST "z:\qtwebkit-symbian-qtp\bld.inf" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 Makefile.DerivedSources --- a/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -// ============================================================================ -// * Makefile for building: DerivedSources -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:47:10 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: DerivedSources.pro -// * Template: subdirs -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_027356A0 - -#ifndef BLD_INF_DERIVEDSOURCES_FB9AFDE4 - #include "JavaScriptCore/bld.inf.DerivedSources" -#endif -#ifndef BLD_INF_DERIVEDSOURCES_FF1DA6A1 - #include "WebCore/bld.inf.DerivedSources" -#endif -#ifndef BLD_INF_DERIVEDSOURCES_036D5DEC - #include "WebKit/qt/Api/bld.inf.DerivedSources" -#endif - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 Makefile.Makefile.DerivedSources --- a/Makefile.Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,116 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:47:10 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : u:/yaels-qtwebkit/Makefile.Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit" -first: default -default: debug-winscw -all: -JavaScriptCore\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) u:\yaels-qtwebkit\JavaScriptCore\DerivedSources.pro -o Makefile.DerivedSources -sub-JavaScriptCore-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) u:\yaels-qtwebkit\JavaScriptCore\DerivedSources.pro -o Makefile.DerivedSources -sub-JavaScriptCore-DerivedSources-pro: JavaScriptCore\Makefile.DerivedSources FORCE - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources -WebCore\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) u:\yaels-qtwebkit\WebCore\DerivedSources.pro -o Makefile.DerivedSources -sub-WebCore-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) u:\yaels-qtwebkit\WebCore\DerivedSources.pro -o Makefile.DerivedSources -sub-WebCore-DerivedSources-pro: WebCore\Makefile.DerivedSources FORCE - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources -WebKit\qt\Api\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) WebKit\qt\Api\ $(MKDIR) WebKit\qt\Api\ - cd WebKit\qt\Api\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\Api\DerivedSources.pro -o Makefile.DerivedSources -sub-WebKit-qt-Api-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebKit\qt\Api\ $(MKDIR) WebKit\qt\Api\ - cd WebKit\qt\Api\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\Api\DerivedSources.pro -o Makefile.DerivedSources -sub-WebKit-qt-Api-DerivedSources-pro: WebKit\qt\Api\Makefile.DerivedSources FORCE - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources - - -generated_files-JavaScriptCore-DerivedSources-pro: - (cd JavaScriptCore && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files-WebCore-DerivedSources-pro: - (cd WebCore && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files-WebKit-qt-Api-DerivedSources-pro: - (cd WebKit/qt/Api && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files: generated_files-JavaScriptCore-DerivedSources-pro generated_files-WebCore-DerivedSources-pro generated_files-WebKit-qt-Api-DerivedSources-pro - -sub-JavaScriptCore-DerivedSources-pro-check: JavaScriptCore\Makefile.DerivedSources - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources check -sub-WebCore-DerivedSources-pro-check: WebCore\Makefile.DerivedSources - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources check -sub-WebKit-qt-Api-DerivedSources-pro-check: WebKit\qt\Api\Makefile.DerivedSources - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources check -check: sub-JavaScriptCore-DerivedSources-pro-check sub-WebCore-DerivedSources-pro-check sub-WebKit-qt-Api-DerivedSources-pro-check - -sub-JavaScriptCore-DerivedSources-pro-sis_target: JavaScriptCore\Makefile.DerivedSources - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources sis -sub-WebCore-DerivedSources-pro-sis_target: WebCore\Makefile.DerivedSources - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources sis -sub-WebKit-qt-Api-DerivedSources-pro-sis_target: WebKit\qt\Api\Makefile.DerivedSources - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources sis -sis: sub-JavaScriptCore-DerivedSources-pro-sis_target sub-WebCore-DerivedSources-pro-sis_target sub-WebKit-qt-Api-DerivedSources-pro-sis_target - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all -FORCE: - -dodistclean: - -$(MAKE) -f "u:\yaels-qtwebkit\JavaScriptCore\Makefile.DerivedSources" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebCore\Makefile.DerivedSources" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\Api\Makefile.DerivedSources" dodistclean - -@ if EXIST "u:\yaels-qtwebkit\Makefile.Makefile.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\Makefile.Makefile.DerivedSources" - -@ if EXIST "u:\yaels-qtwebkit\Makefile.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\Makefile.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 Release/lib/QtWebKit.prl --- a/Release/lib/QtWebKit.prl Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -QMAKE_PRL_BUILD_DIR = U:/yaels-qtwebkit/WebCore -QMAKE_PRO_INPUT = WebCore.pro -QMAKE_PRL_TARGET = QtWebKit -QMAKE_PRL_CONFIG = include_source_dir lex yacc uic resources qt release incremental link_prl sis_targets run_on_phone shared stl exceptions rtti def_files release building-libs depend_includepath standalone_package depend_includepath system-sqlite mobility link_pkgconfig mobility create_pc create_prl dll shared epocallowdlldata qtmain moc thread -QMAKE_PRL_VERSION = 4.8.0 diff -r 4f2f89ce4247 -r 303757a437d3 Release/lib/libQtWebKit.prl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Release/lib/libQtWebKit.prl Mon Oct 04 01:32:07 2010 +0300 @@ -0,0 +1,5 @@ +QMAKE_PRL_BUILD_DIR = /home/hg/repos/qtwebkit-rel/WebCore +QMAKE_PRO_INPUT = WebCore.pro +QMAKE_PRL_TARGET = libQtWebKit.so.4.8.0 +QMAKE_PRL_CONFIG = include_source_dir lex yacc uic resources qt release incremental link_prl exceptions no_mocdepend release stl qt_no_framework release building-libs depend_includepath standalone_package production depend_includepath include_webinspector x11 link_pkgconfig create_pc create_prl x11lib x11inc moc thread dll +QMAKE_PRL_VERSION = 4.8.0 diff -r 4f2f89ce4247 -r 303757a437d3 Release/lib/pkgconfig/QtWebKit.pc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Release/lib/pkgconfig/QtWebKit.pc Mon Oct 04 01:32:07 2010 +0300 @@ -0,0 +1,14 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=${prefix}/lib +includedir=${prefix}/include/qt4/QtWebKit +qt_config=include_source_dir lex yacc uic resources qt release incremental link_prl exceptions no_mocdepend release stl qt_no_framework release building-libs depend_includepath standalone_package production depend_includepath include_webinspector x11 link_pkgconfig create_pc create_prl x11lib x11inc moc thread dll + +Name: Qtwebkit +Description: Qtwebkit Library +Version: 4.8.0 +Libs: -L${libdir} -lQtWebKit +Libs.private: -L../JavaScriptCore/release -L/usr/X11R6/lib -L/usr/lib -ljscore -lXrender -lsqlite3 -lphonon -lQtGui -lQtNetwork -lQtCore -lpthread -lXext -lX11 -lm +Cflags: -I${includedir} +Requires: QtCore QtGui QtNetwork + diff -r 4f2f89ce4247 -r 303757a437d3 VERSION.SHA1 --- a/VERSION.SHA1 Fri Sep 17 09:02:29 2010 +0300 +++ b/VERSION.SHA1 Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -ba092bbb0d60ec19fa5368e19bae9823c14de6e7 +dbea59bd519f86acb59bbf869523ac83f6cfb496 diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/ChangeLog --- a/WebCore/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,432 @@ +2010-09-03 Girish Ramakrishnan + + Reviewed-by Simon Hausmann. + + Passing a 32-bit depth X pixmap to NPAPI windowless plugins is too inefficient. + Instead, pass a X Pixmap that has same depth as the screen depth since graphics + operations are optimized for this depth. + + https://bugs.webkit.org/show_bug.cgi?id=45167 + + * plugins/PluginPackage.cpp: + (WebCore::PluginPackage::determineQuirks): + +2010-09-01 Mahesh Kulkarni + + Reviewed by Laszlo Gombos. + + [Qt] QWebPage::allowGeolocationRequest should be async API + https://bugs.webkit.org/show_bug.cgi?id=41364 + + Adding GeolocationPermissionClientQt.cpp/h to build script + + * WebCore.pro: + +2010-08-27 Kimmo Kinnunen + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Cache plugin info to a persistent database + + https://bugs.webkit.org/show_bug.cgi?id=43179 + + Implement a cache of NPAPI plugin metadata. Write the metadata to aa + file that gets rewritten if any plugin is added / removed. Compilation + of the feature is controlled by #if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + + Currently only enabled for Qt UNIX flavors. + + * WebCore.pro: Enable NETSCAPE_PLUGIN_METADATA_CACHE for UNIX builds + * platform/qt/FileSystemQt.cpp: + (WebCore::openFile): Added. + (WebCore::readFromFile): Added. + * plugins/PluginDatabase.cpp: + (WebCore::persistentPluginMetadataCachePath): Static accessor for the path + (WebCore::PluginDatabase::PluginDatabase): Add instance variable. + (WebCore::PluginDatabase::refresh): + (WebCore::PluginDatabase::pluginForMIMEType): Ensure returned plugin is loaded. + (WebCore::PluginDatabase::MIMETypeForExtension): Ensure returned plugin is loaded. + (WebCore::PluginDatabase::clear): + (WebCore::fillBufferWithContentsOfFile): Static helper function. + (WebCore::readUTF8String): Static helper function. + (WebCore::readTime): Static helper function. + (WebCore::PluginDatabase::loadPersistentMetadataCache): + (WebCore::writeUTF8String): Static helper function. + (WebCore::writeTime): Static helper function. + (WebCore::PluginDatabase::updatePersistentMetadataCache): Added. + (WebCore::PluginDatabase::isPersistentMetadataCacheEnabled): Added. + (WebCore::PluginDatabase::setPersistentMetadataCacheEnabled):Added. + (WebCore::PluginDatabase::persistentMetadataCachePath): Added. + (WebCore::PluginDatabase::setPersistentMetadataCachePath): Added. + * plugins/PluginDatabase.h: + * plugins/PluginPackage.cpp: + (WebCore::PluginPackage::PluginPackage): Add instance variable. + (WebCore::PluginPackage::createPackageFromCache): Added. + (WebCore::PluginPackage::ensurePluginLoaded): Added. + * plugins/PluginPackage.h: + (WebCore::PluginPackage::fullMIMEDescription): Added. + * plugins/qt/PluginPackageQt.cpp: + (WebCore::PluginPackage::fetchInfo): Split mime parsing. + (WebCore::PluginPackage::setMIMEDescription): Added. Mime parsing. + +2010-08-26 Girish Ramakrishnan + + Reviewed by Simon Hausmann. + + [Qt] Set the clipRect correctly in windowed and windowless mode. + In Windowed mode, the values are in page coordinates. In Windowless + mode the values are in drawable coordinates. Setting these values is + purely academic since they are not used by Flash. However, there is a + possibility that plugins might infer a 'null' clipRect to mean 'invisible'. + + https://bugs.webkit.org/show_bug.cgi?id=44594 + + * plugins/qt/PluginViewQt.cpp: + (WebCore::PluginView::setNPWindowIfNeeded): + +2010-08-20 Girish Ramakrishnan + + Reviewed by Ariya Hidayat. + + [Qt] When using the raster graphics system on Maemo5, allow + Flash to render directly into the raster window surface. + wmode=transparent is now supported as a result of this change. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * plugins/qt/PluginViewQt.cpp: + (WebCore::PluginView::paintUsingImageSurfaceExtension): + +2010-08-18 Girish Ramakrishnan + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Implement Maemo5 local rendering NPAPI extension. See + https://wiki.mozilla.org/Plugins:NokiaMaemoImageSurface for details. + + With the local rendering extension, Flash will paint into a 16-bit surface. + For wmode=transparent, Flash expects the surface to contain the contents + beneath it. As it is tricky to implement the content propagation across all + graphics systems, transparent Flash is not supported. We just fill the surface + with white and wmode=transparent behaves the same as wmode=opaque with a white + background. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * WebCore.pro: + * plugins/PluginView.cpp: + (WebCore::PluginView::setValue): + (WebCore::PluginView::PluginView): + * plugins/PluginView.h: + * plugins/qt/PluginViewQt.cpp: + (WebCore::PluginView::updatePluginWidget): + (WebCore::PluginView::paintUsingImageSurfaceExtension): + (WebCore::PluginView::paint): + (WebCore::PluginView::platformGetValueStatic): + +2010-08-17 Girish Ramakrishnan + + Reviewed by Antonio Gomes. + + [Qt] On Maemo5, there is no libgdk-x11-2.0.so symlink. Look for + libgdk-x11-2.0.so.0 instead on X11 and Maemo5. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * plugins/qt/PluginViewQt.cpp: + (WebCore::getPluginDisplay): + +2010-08-17 Girish Ramakrishnan + + Reviewed by Kenneth Rohde Christiansen. + Set PluginQuirkRequiresDefaultScreenDepth for all Flash versions and not + just Flash 10. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * plugins/PluginPackage.cpp: + (WebCore::PluginPackage::determineQuirks): + +2010-08-18 Mahesh Kulkarni + + Reviewed by Steve Block. + + [Qt] Request for permission before starting Geolocation service + https://bugs.webkit.org/show_bug.cgi?id=42027 + + Handles starting location acquisition when request is granted for ports using + "!CLIENT_BASED_GEOLOCATION and PREEMPT_GEOLOCATION_PERMISSION" policy + Only Qt port as of today uses the above combination. Enable + PREEMPT_GEOLOCATION_PERMISSION for qt port. + + Below tests cover these changes on platform using PREEMPT_GEOLOCATION_PERMISSION + - fast/dom/Geolocation/delayed-permission-allowed.html + - fast/dom/Geolocation/delayed-permission-denied.html + - fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html + - fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html + + * WebCore.pro: + * page/Geolocation.cpp: + (WebCore::Geolocation::handlePendingPermissionNotifiers): + +2010-08-18 Sheriff Bot + + Unreviewed, rolling out r65603. + http://trac.webkit.org/changeset/65603 + https://bugs.webkit.org/show_bug.cgi?id=44179 + + 4 tests crash on Qt bot (Requested by Ossy on #webkit). + + * WebCore.pro: + * page/Geolocation.cpp: + (WebCore::Geolocation::handlePendingPermissionNotifiers): + +2010-08-18 Mahesh Kulkarni + + Reviewed by Steve Block. + + [Qt] Request for permission before starting Geolocation service + https://bugs.webkit.org/show_bug.cgi?id=42027 + + Handles starting location acquisition when request is granted for ports using + "!CLIENT_BASED_GEOLOCATION and PREEMPT_GEOLOCATION_PERMISSION" policy + Only Qt port as of today uses the above combination. Enable + PREEMPT_GEOLOCATION_PERMISSION for qt port. + + Below tests cover these changes on platform using PREEMPT_GEOLOCATION_PERMISSION + - fast/dom/Geolocation/delayed-permission-allowed.html + - fast/dom/Geolocation/delayed-permission-denied.html + - fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html + - fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html + + * WebCore.pro: + * page/Geolocation.cpp: + (WebCore::Geolocation::handlePendingPermissionNotifiers): + +2010-08-17 Mahesh Kulkarni + + Reviewed by Steve Block. + + Geolocation preemptive permissions policy is buggy + https://bugs.webkit.org/show_bug.cgi?id=42811 + + While waiting for permission, m_startRequestPermissionNotifier was + used to consider only one pending request. This patch implements a set + m_pendingForPermissionNotifiers to maintain set of pending requests. + When user grants/denies permission all listeners will be notified. + Also fixed issue with hasZeroTimeout() where startTimerIfNeeded() has + to start irrespective of permission state + + Tests: fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html + fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html + + * WebCore.pro: + * page/Geolocation.cpp: + (WebCore::Geolocation::startRequest): + (WebCore::Geolocation::setIsAllowed): + (WebCore::Geolocation::startUpdating): + (WebCore::Geolocation::handlePendingPermissionNotifiers): + * page/Geolocation.h: + +2010-07-27 Steve Block + + Reviewed by Jeremy Orlow. + + Client-based Geolocation does not pass enableHighAccuracy option to controller and client + https://bugs.webkit.org/show_bug.cgi?id=40374 + + This change passes the enableHighAccuracy request option to the GeolocationController. + The GeolocationController tracks whether this should be used by the client. + + No new tests possible as the mock provider doesn't support this feature. + + * page/Geolocation.cpp: + (WebCore::Geolocation::setIsAllowed): + (WebCore::Geolocation::startUpdating): + * page/GeolocationController.cpp: + (WebCore::GeolocationController::addObserver): + (WebCore::GeolocationController::removeObserver): + * page/GeolocationController.h: + * page/GeolocationControllerClient.h: + +2010-08-24 Laszlo Gombos + + Reviewed by Simon Hausmann. + + [Qt][Symbian] Make sure WebKit headers are included before platform headers on Symbian + https://bugs.webkit.org/show_bug.cgi?id=31273 + + On Symbian PREPEND_INCLUDEPATH is the best way to make sure that + WebKit headers are included before platform headers. On all other + platforms continue to use INCLUDEPATH (as before). + + This patch also removed the workarounds that are put in place + now that we have a better solution. + + No new tests as there is no new functionality. + + * WebCore.pro: + +2010-08-16 Andreas Kling + + Reviewed by Darin Adler. + + CSS: Add fast-path for rgba() color parsing + https://bugs.webkit.org/show_bug.cgi?id=42965 + + Test: fast/canvas/rgba-parsing.html + + * css/CSSParser.cpp: + (WebCore::CSSParser::parseColor): Extended with support for rgba(). + (WebCore::parseAlphaValue): Added, parses an alpha value using + WTF::strtod() (if necessary) and clamps between 0 and 1. + (WebCore::isTenthAlpha): + +2010-08-23 Andreas Kling + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] -webkit-text-stroke is broken due to Qt::TextBypassShaping + https://bugs.webkit.org/show_bug.cgi?id=44403 + + Don't bypass the Harfbuzz shaping if we're drawing text with a stroke. + For canvas, always use complex text shaping since stroke and fill are decoupled. + + * html/canvas/CanvasRenderingContext2D.cpp: + (WebCore::CanvasRenderingContext2D::measureText): + (WebCore::CanvasRenderingContext2D::drawTextInternal): + * platform/graphics/qt/FontQt.cpp: + (WebCore::drawTextCommon): + +2010-08-16 Andreas Kling + + Reviewed by Ariya Hidayat. + + [Qt] Path::closeSubpath() should only close the last subpath if it has >1 point + https://bugs.webkit.org/show_bug.cgi?id=44061 + + Spec link: + http://www.whatwg.org/specs/web-apps/current-work/#dom-context-2d-closepath + + Test: fast/canvas/canvas-closePath-single-point.html + + * platform/graphics/Path.h: Add a Qt-only member to track the last subpath. + * platform/graphics/qt/PathQt.cpp: + (WebCore::Path::closeSubpath): Only close the last subpath if it + has more than 1 point. Otherwise behave as moveTo(first point in last subpath) + (WebCore::Path::Path): + (WebCore::Path::operator=): + (WebCore::Path::moveTo): + (WebCore::Path::transform): + +2010-08-19 Laszlo Gombos + + Reviewed by Simon Hausmann. + + [Qt] Disable XSLT for production configuration + https://bugs.webkit.org/show_bug.cgi?id=37445 + + Introduce a new CONFIG option to maintain stable configuration for + the QtWebKit port and disable XSLT for the stable configuration + because of bug 37445. + + No new tests as there is no new functionality. + + * features.pri: + +2010-08-12 Hui Huang + + Reviewed by Eric Seidel. + + m_windowRect is not updated because parent of PluginView is not + set when updatePluginWidget is called. plugin gets wrong window + size on setwindow. + https://bugs.webkit.org/show_bug.cgi?id=43635 + + * plugins/symbian/PluginViewSymbian.cpp: + (WebCore::PluginView::setParent): + +2010-08-13 Simon Hausmann + + Reviewed by Ariya Hidayat. + + [Qt] Clean up mobile feature useage + https://bugs.webkit.org/show_bug.cgi?id=43968 + + * WebCore.pro: Replaced use of Nokia specific platform scopes with concrete + feature names. + +2010-08-12 Benjamin Poulain + + Reviewed by Simon Hausmann. + + [Qt] Decode images directly to QPixmap + https://bugs.webkit.org/show_bug.cgi?id=40797 + + Use the new API of Qt 4.7 to decode data from the image + reader directly to QPixmap. + + This allow us to use JDCT_IFAST when decoding jpeg images + to pixmap, and to decode animated GIF images, while still + using in-place conversion of color space. + + * platform/graphics/qt/ImageDecoderQt.cpp: + (WebCore::ImageDecoderQt::setData): + (WebCore::ImageDecoderQt::internalHandleCurrentImage): + +2010-08-10 Tor Arne Vestbø + + Reviewed by Simon Hausmann. + + Make sure NPAPI plugins get an initial setNPWindow on Mac + + https://bugs.webkit.org/show_bug.cgi?id=43782 + + * plugins/mac/PluginViewMac.mm: + +2010-08-04 Antonio Gomes + + Reviewed by Daniel Bates. + + Remove superfluous non-negative checks in HitTestResult:padding{Width|Height} + https://bugs.webkit.org/show_bug.cgi?id=43534 + + As pointed out by Steve Block in https://bugs.webkit.org/show_bug.cgi?id=40197#c54 , + the non-negative checks present in both paddingWidth and paddingHeight methods of + HitTestResults class are superflous, after we changed the rect based hit testing logic + of invalid padding from IntSize(-1, -1) to IntSize(0, 0). Patch addresses this issue. + + No new tests needed. + + * rendering/HitTestResult.h: + (WebCore::HitTestResult::paddingWidth): + (WebCore::HitTestResult::paddingHeight): + +2010-07-30 Luiz Agostini + + Reviewed by Simon Fraser. + + Enabling view modes to all platforms + https://bugs.webkit.org/show_bug.cgi?id=37505 + + View mode media feature implementation as specified in http://www.w3.org/TR/view-mode. + + The view mode media feature layout tests are stil skipped for all platforms except Qt + because of the lack of support of LayoutTestController in those platforms. + + Test: fast/media/view-mode-media-feature.html + + * css/MediaFeatureNames.h: + * css/MediaQueryEvaluator.cpp: + (WebCore::view_modeMediaFeatureEval): + * page/ChromeClient.h: + * page/Page.cpp: + (WebCore::Page::Page): + (WebCore::createViewModesSet): + (WebCore::Page::setViewMode): + * page/Page.h: + (WebCore::Page::viewMode): + 2010-08-05 Simon Hausmann Reviewed by Laszlo Gombos. diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/DerivedSources_0xE65b66d0.mmp --- a/WebCore/DerivedSources_0xE65b66d0.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,124 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:01:27 -// This file is generated by qmake and should not be modified by the -// user. -// Name : DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xE65b66d0 -SECUREID 0xE65b66d0 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO ENABLE_JAVASCRIPT_DEBUGGER=1 -MACRO ENABLE_DATABASE=1 -MACRO ENABLE_EVENTSOURCE=1 -MACRO ENABLE_OFFLINE_WEB_APPLICATIONS=1 -MACRO ENABLE_DOM_STORAGE=1 -MACRO ENABLE_ICONDATABASE=1 -MACRO ENABLE_CHANNEL_MESSAGING=1 -MACRO ENABLE_ORIENTATION_EVENTS=0 -MACRO ENABLE_DIRECTORY_UPLOAD=0 -MACRO ENABLE_SQLITE=1 -MACRO ENABLE_DASHBOARD_SUPPORT=0 -MACRO ENABLE_FILTERS=1 -MACRO ENABLE_XPATH=1 -MACRO ENABLE_WCSS=0 -MACRO ENABLE_WML=0 -MACRO ENABLE_SHARED_WORKERS=1 -MACRO ENABLE_WORKERS=1 -MACRO ENABLE_XHTMLMP=0 -MACRO ENABLE_DATAGRID=0 -MACRO ENABLE_RUBY=1 -MACRO ENABLE_SANDBOX=1 -MACRO ENABLE_METER_TAG=1 -MACRO ENABLE_PROGRESS_TAG=1 -MACRO ENABLE_BLOB_SLICE=0 -MACRO ENABLE_NOTIFICATIONS=1 -MACRO ENABLE_IMAGE_RESIZER=0 -MACRO ENABLE_INPUT_SPEECH=0 -MACRO ENABLE_3D_RENDERING=1 -MACRO ENABLE_SVG=1 -MACRO ENABLE_SVG_FONTS=1 -MACRO ENABLE_SVG_FOREIGN_OBJECT=1 -MACRO ENABLE_SVG_ANIMATION=1 -MACRO ENABLE_SVG_AS_IMAGE=1 -MACRO ENABLE_SVG_USE=1 -MACRO ENABLE_DATALIST=1 -MACRO ENABLE_TILED_BACKING_STORE=1 -MACRO ENABLE_NETSCAPE_PLUGIN_API=1 -MACRO ENABLE_WEB_SOCKETS=1 -MACRO ENABLE_WEB_TIMING=0 -MACRO ENABLE_XSLT=1 -MACRO ENABLE_GEOLOCATION=1 -MACRO ENABLE_QT_BEARER=1 -MACRO ENABLE_TOUCH_EVENTS=1 -MACRO ENABLE_TRANSFORMACTION_EVENTS=1 -MACRO ENABLE_VIDEO=1 -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/Makefile --- a/WebCore/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13988 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Tue 17. Aug 12:44:25 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebCore/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "Z:/qtwebkit-symbian-qtp/WebCore/WebCore.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -install: compiler_inst_headers_make_all compiler_inst_modfile_make_all - -check: first - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis QtWebKit.sis - -sis: - $(if $(wildcard QtWebKit_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) QtWebKit_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard QtWebKit_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o QtWebKit_template.pkg $(QT_SIS_TARGET) - -QtWebKit.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: QtWebKit.sis - $(if $(wildcard QtWebKit_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) QtWebKit_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard QtWebKit_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) QtWebKit_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call QtWebKit.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_inst_headers_make_all: \epoc32\include\mw\QtWebKit\qwebframe.h \epoc32\include\mw\QtWebKit\qgraphicswebview.h \epoc32\include\mw\QtWebKit\qwebkitglobal.h \epoc32\include\mw\QtWebKit\qwebkitplatformplugin.h \epoc32\include\mw\QtWebKit\qwebpage.h \epoc32\include\mw\QtWebKit\qwebview.h \epoc32\include\mw\QtWebKit\qwebsettings.h \epoc32\include\mw\QtWebKit\qwebhistoryinterface.h \epoc32\include\mw\QtWebKit\qwebdatabase.h \epoc32\include\mw\QtWebKit\qwebsecurityorigin.h \epoc32\include\mw\QtWebKit\qwebelement.h \epoc32\include\mw\QtWebKit\qwebpluginfactory.h \epoc32\include\mw\QtWebKit\qwebhistory.h \epoc32\include\mw\QtWebKit\qwebinspector.h \epoc32\include\mw\QtWebKit\qwebkitversion.h \epoc32\include\mw\QtWebKit\QtWebKit \epoc32\include\mw\QtWebKit\QWebHitTestResult \epoc32\include\mw\QtWebKit\QWebFrame \epoc32\include\mw\QtWebKit\QGraphicsWebView \epoc32\include\mw\QtWebKit\QWebPage \epoc32\include\mw\QtWebKit\QWebView \epoc32\include\mw\QtWebKit\QWebSettings \epoc32\include\mw\QtWebKit\QWebHistoryInterface \epoc32\include\mw\QtWebKit\QWebDatabase \epoc32\include\mw\QtWebKit\QWebSecurityOrigin \epoc32\include\mw\QtWebKit\QWebElement \epoc32\include\mw\QtWebKit\QWebElementCollection \epoc32\include\mw\QtWebKit\QWebPluginFactory \epoc32\include\mw\QtWebKit\QWebHistoryItem \epoc32\include\mw\QtWebKit\QWebHistory \epoc32\include\mw\QtWebKit\QWebInspector -\epoc32\include\mw\QtWebKit\qwebframe.h: \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebframe.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebframe.h \epoc32\include\mw\QtWebKit\qwebframe.h - -\epoc32\include\mw\QtWebKit\qgraphicswebview.h: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qgraphicswebview.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qgraphicswebview.h \epoc32\include\mw\QtWebKit\qgraphicswebview.h - -\epoc32\include\mw\QtWebKit\qwebkitglobal.h: \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebkitglobal.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebkitglobal.h \epoc32\include\mw\QtWebKit\qwebkitglobal.h - -\epoc32\include\mw\QtWebKit\qwebkitplatformplugin.h: ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\WebKit\qt\Api\qwebkitplatformplugin.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebkitplatformplugin.h \epoc32\include\mw\QtWebKit\qwebkitplatformplugin.h - -\epoc32\include\mw\QtWebKit\qwebpage.h: ..\WebKit\qt\Api\qwebsettings.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\WebKit\qt\Api\qwebpage.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebpage.h \epoc32\include\mw\QtWebKit\qwebpage.h - -\epoc32\include\mw\QtWebKit\qwebview.h: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebview.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebview.h \epoc32\include\mw\QtWebKit\qwebview.h - -\epoc32\include\mw\QtWebKit\qwebsettings.h: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - ..\WebKit\qt\Api\qwebsettings.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebsettings.h \epoc32\include\mw\QtWebKit\qwebsettings.h - -\epoc32\include\mw\QtWebKit\qwebhistoryinterface.h: \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebhistoryinterface.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebhistoryinterface.h \epoc32\include\mw\QtWebKit\qwebhistoryinterface.h - -\epoc32\include\mw\QtWebKit\qwebdatabase.h: \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qshareddata.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebdatabase.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebdatabase.h \epoc32\include\mw\QtWebKit\qwebdatabase.h - -\epoc32\include\mw\QtWebKit\qwebsecurityorigin.h: \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebsecurityorigin.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebsecurityorigin.h \epoc32\include\mw\QtWebKit\qwebsecurityorigin.h - -\epoc32\include\mw\QtWebKit\qwebelement.h: \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebelement.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebelement.h \epoc32\include\mw\QtWebKit\qwebelement.h - -\epoc32\include\mw\QtWebKit\qwebpluginfactory.h: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\WebKit\qt\Api\qwebpluginfactory.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebpluginfactory.h \epoc32\include\mw\QtWebKit\qwebpluginfactory.h - -\epoc32\include\mw\QtWebKit\qwebhistory.h: \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebhistory.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebhistory.h \epoc32\include\mw\QtWebKit\qwebhistory.h - -\epoc32\include\mw\QtWebKit\qwebinspector.h: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\WebKit\qt\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebinspector.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebinspector.h \epoc32\include\mw\QtWebKit\qwebinspector.h - -\epoc32\include\mw\QtWebKit\qwebkitversion.h: \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebkitversion.h - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebkitversion.h \epoc32\include\mw\QtWebKit\qwebkitversion.h - -\epoc32\include\mw\QtWebKit\QtWebKit: ..\include\QtWebKit\QtWebKit - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QtWebKit \epoc32\include\mw\QtWebKit\QtWebKit - -\epoc32\include\mw\QtWebKit\QWebHitTestResult: ..\include\QtWebKit\QWebHitTestResult - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebHitTestResult \epoc32\include\mw\QtWebKit\QWebHitTestResult - -\epoc32\include\mw\QtWebKit\QWebFrame: ..\include\QtWebKit\QWebFrame - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebFrame \epoc32\include\mw\QtWebKit\QWebFrame - -\epoc32\include\mw\QtWebKit\QGraphicsWebView: ..\include\QtWebKit\QGraphicsWebView - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QGraphicsWebView \epoc32\include\mw\QtWebKit\QGraphicsWebView - -\epoc32\include\mw\QtWebKit\QWebPage: ..\include\QtWebKit\QWebPage - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebPage \epoc32\include\mw\QtWebKit\QWebPage - -\epoc32\include\mw\QtWebKit\QWebView: ..\include\QtWebKit\QWebView - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebView \epoc32\include\mw\QtWebKit\QWebView - -\epoc32\include\mw\QtWebKit\QWebSettings: ..\include\QtWebKit\QWebSettings - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebSettings \epoc32\include\mw\QtWebKit\QWebSettings - -\epoc32\include\mw\QtWebKit\QWebHistoryInterface: ..\include\QtWebKit\QWebHistoryInterface - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebHistoryInterface \epoc32\include\mw\QtWebKit\QWebHistoryInterface - -\epoc32\include\mw\QtWebKit\QWebDatabase: ..\include\QtWebKit\QWebDatabase - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebDatabase \epoc32\include\mw\QtWebKit\QWebDatabase - -\epoc32\include\mw\QtWebKit\QWebSecurityOrigin: ..\include\QtWebKit\QWebSecurityOrigin - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebSecurityOrigin \epoc32\include\mw\QtWebKit\QWebSecurityOrigin - -\epoc32\include\mw\QtWebKit\QWebElement: ..\include\QtWebKit\QWebElement - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebElement \epoc32\include\mw\QtWebKit\QWebElement - -\epoc32\include\mw\QtWebKit\QWebElementCollection: ..\include\QtWebKit\QWebElementCollection - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebElementCollection \epoc32\include\mw\QtWebKit\QWebElementCollection - -\epoc32\include\mw\QtWebKit\QWebPluginFactory: ..\include\QtWebKit\QWebPluginFactory - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebPluginFactory \epoc32\include\mw\QtWebKit\QWebPluginFactory - -\epoc32\include\mw\QtWebKit\QWebHistoryItem: ..\include\QtWebKit\QWebHistoryItem - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebHistoryItem \epoc32\include\mw\QtWebKit\QWebHistoryItem - -\epoc32\include\mw\QtWebKit\QWebHistory: ..\include\QtWebKit\QWebHistory - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebHistory \epoc32\include\mw\QtWebKit\QWebHistory - -\epoc32\include\mw\QtWebKit\QWebInspector: ..\include\QtWebKit\QWebInspector - copy /y z:\qtwebkit-symbian-qtp\include\QtWebKit\QWebInspector \epoc32\include\mw\QtWebKit\QWebInspector - -compiler_inst_modfile_make_all: \epoc32\tools\qt\mkspecs\modules -\epoc32\tools\qt\mkspecs\modules: ..\WebKit\qt\qt_webkit_version.pri - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\qt_webkit_version.pri \epoc32\tools\qt\mkspecs\modules - -compiler_moc_header_make_all: moc_QNetworkReplyHandler.cpp moc_qwebplugindatabase_p.cpp moc_QtFallbackWebPopup.cpp moc_FrameLoaderClientQt.cpp moc_NotificationPresenterClientQt.cpp moc_QtPlatformPlugin.cpp moc_DnsPrefetchHelper.cpp moc_PluginContainerSymbian.cpp moc_MediaPlayerPrivateQt.cpp moc_NetworkStateNotifierPrivate.cpp moc_GeolocationServiceQt.cpp moc_SocketStreamHandlePrivate.cpp moc_qwebframe.cpp moc_qgraphicswebview.cpp moc_qwebkitplatformplugin.cpp moc_qwebpage.cpp moc_qwebview.cpp moc_qwebhistoryinterface.cpp moc_qwebpluginfactory.cpp moc_qwebinspector.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_QNetworkReplyHandler.cpp moc_qwebplugindatabase_p.cpp moc_QtFallbackWebPopup.cpp moc_FrameLoaderClientQt.cpp moc_NotificationPresenterClientQt.cpp moc_QtPlatformPlugin.cpp moc_DnsPrefetchHelper.cpp moc_PluginContainerSymbian.cpp moc_MediaPlayerPrivateQt.cpp moc_NetworkStateNotifierPrivate.cpp moc_GeolocationServiceQt.cpp moc_SocketStreamHandlePrivate.cpp moc_qwebframe.cpp moc_qgraphicswebview.cpp moc_qwebkitplatformplugin.cpp moc_qwebpage.cpp moc_qwebview.cpp moc_qwebhistoryinterface.cpp moc_qwebpluginfactory.cpp moc_qwebinspector.cpp -moc_QNetworkReplyHandler.cpp: ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\epoc32\include\mw\QtNetwork\QNetworkRequest \ - ..\..\epoc32\include\mw\QtNetwork\qnetworkrequest.h \ - \epoc32\include\mw\QtCore\QSharedDataPointer \ - ..\..\epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\QUrl \ - ..\..\epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\QVariant \ - ..\..\epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - ..\..\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - platform\network\FormData.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - platform\network\qt\QNetworkReplyHandler.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\network\qt\QNetworkReplyHandler.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_QNetworkReplyHandler.cpp - -moc_qwebplugindatabase_p.cpp: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpluginfactory.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\WebKit\qt\Api\qwebplugindatabase_p.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebplugindatabase_p.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebplugindatabase_p.cpp - -moc_QtFallbackWebPopup.cpp: platform\qt\QtAbstractWebPopup.h \ - platform\PopupMenuClient.h \ - platform\PopupMenuStyle.h \ - platform\graphics\Color.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - platform\graphics\Font.h \ - platform\text\CharacterNames.h \ - platform\graphics\FontDescription.h \ - platform\graphics\FontFamily.h \ - platform\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\ListRefPtr.h \ - platform\graphics\FontRenderingMode.h \ - platform\graphics\FontSmoothingMode.h \ - platform\graphics\FontTraitsMask.h \ - platform\graphics\TextRenderingMode.h \ - platform\graphics\FontFallbackList.h \ - platform\graphics\FontSelector.h \ - platform\graphics\SimpleFontData.h \ - platform\graphics\FontData.h \ - platform\graphics\qt\FontPlatformData.h \ - ..\..\epoc32\include\mw\QtGui\QFont \ - ..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\epoc32\include\mw\QtCore\QHash \ - ..\..\epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - platform\graphics\FloatRect.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - platform\graphics\IntPoint.h \ - platform\graphics\GlyphMetricsMap.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - platform\graphics\GlyphPageTreeNode.h \ - platform\graphics\TypesettingFeatures.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\JavaScriptCore\wtf\RetainPtr.h \ - ..\JavaScriptCore\wtf\Forward.h \ - platform\graphics\TextRun.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - platform\Length.h \ - platform\text\TextDirection.h \ - platform\ScrollTypes.h \ - ..\..\epoc32\include\mw\QtCore\QList \ - ..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\epoc32\include\mw\QtCore\QRect \ - ..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\epoc32\include\mw\QtGui\QWidget \ - ..\..\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\epoc32\include\mw\QtGui\QComboBox \ - ..\..\epoc32\include\mw\QtGui\qcombobox.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\WebKit\qt\WebCoreSupport\QtFallbackWebPopup.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\WebCoreSupport\QtFallbackWebPopup.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_QtFallbackWebPopup.cpp - -moc_FrameLoaderClientQt.cpp: page\Frame.h \ - page\animation\AnimationController.h \ - generated\CSSPropertyNames.h \ - ..\JavaScriptCore\wtf\Forward.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - css\CSSMutableStyleDeclaration.h \ - css\CSSStyleDeclaration.h \ - css\StyleBase.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - css\CSSPrimitiveValue.h \ - css\CSSValue.h \ - css\CSSParserValues.h \ - platform\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - platform\KURLHash.h \ - platform\KURL.h \ - platform\text\PlatformString.h \ - platform\KURLGooglePrivate.h \ - ..\JavaScriptCore\wtf\text\CString.h \ - ..\JavaScriptCore\runtime\UString.h \ - ..\JavaScriptCore\runtime\Collector.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - ..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\epoc32\include\platform\hal.h \ - ..\..\epoc32\include\platform\hal_data.h \ - ..\..\epoc32\include\e32property.h \ - ..\JavaScriptCore\runtime\UStringImpl.h \ - platform\text\StringHash.h \ - ..\JavaScriptCore\wtf\text\StringHash.h \ - ..\JavaScriptCore\wtf\ListHashSet.h \ - platform\graphics\Color.h \ - css\CSSProperty.h \ - platform\text\TextDirection.h \ - platform\DragImage.h \ - platform\graphics\IntSize.h \ - platform\graphics\FloatSize.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - ..\JavaScriptCore\wtf\RetainPtr.h \ - editing\Editor.h \ - dom\ClipboardAccessPolicy.h \ - editing\EditAction.h \ - editing\EditingBehavior.h \ - editing\EditingBehaviorTypes.h \ - editing\EditorDeleteAction.h \ - editing\EditorInsertAction.h \ - editing\SelectionController.h \ - platform\graphics\IntRect.h \ - platform\graphics\IntPoint.h \ - dom\Range.h \ - platform\graphics\FloatQuad.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatRect.h \ - dom\RangeBoundaryPoint.h \ - dom\Node.h \ - dom\EventTarget.h \ - platform\text\AtomicStringHash.h \ - dom\EventNames.h \ - platform\ThreadGlobalData.h \ - ..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\epoc32\include\mw\QtCore\QThreadStorage \ - ..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - dom\RegisteredEventListener.h \ - dom\EventListener.h \ - rendering\style\RenderStyleConstants.h \ - bindings\js\ScriptWrappable.h \ - bindings\js\JSDOMWrapper.h \ - ..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\JavaScriptCore\runtime\JSObject.h \ - ..\JavaScriptCore\runtime\ArgList.h \ - ..\JavaScriptCore\interpreter\CallFrame.h \ - ..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\JavaScriptCore\runtime\JSValue.h \ - ..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\JavaScriptCore\wtf\DateMath.h \ - ..\JavaScriptCore\wtf\CurrentTime.h \ - ..\JavaScriptCore\wtf\UnusedParam.h \ - ..\JavaScriptCore\jit\ExecutableAllocator.h \ - \epoc32\include\stdapis\sys\mman.h \ - ..\JavaScriptCore\jit\JITStubs.h \ - ..\JavaScriptCore\runtime\CallData.h \ - ..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\JavaScriptCore\assembler\MacroAssemblerCodeRef.h \ - ..\JavaScriptCore\interpreter\Register.h \ - ..\JavaScriptCore\jit\ThunkGenerators.h \ - ..\JavaScriptCore\runtime\MarkStack.h \ - ..\JavaScriptCore\runtime\NumericStrings.h \ - ..\JavaScriptCore\runtime\SmallStrings.h \ - ..\JavaScriptCore\runtime\Terminator.h \ - ..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\JavaScriptCore\runtime\WeakRandom.h \ - ..\JavaScriptCore\interpreter\RegisterFile.h \ - ..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\JavaScriptCore\wtf\VMTags.h \ - ..\JavaScriptCore\runtime\ScopeChain.h \ - ..\JavaScriptCore\runtime\ClassInfo.h \ - ..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\JavaScriptCore\runtime\Identifier.h \ - ..\JavaScriptCore\runtime\Completion.h \ - ..\JavaScriptCore\runtime\JSCell.h \ - ..\JavaScriptCore\runtime\ConstructData.h \ - ..\JavaScriptCore\runtime\JSImmediate.h \ - ..\JavaScriptCore\runtime\Structure.h \ - ..\JavaScriptCore\runtime\JSType.h \ - ..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\JavaScriptCore\runtime\Protect.h \ - ..\JavaScriptCore\runtime\StructureChain.h \ - ..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\JavaScriptCore\runtime\PropertySlot.h \ - ..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\JavaScriptCore\runtime\JSString.h \ - ..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\JavaScriptCore\runtime\RopeImpl.h \ - platform\TreeShared.h \ - dom\Position.h \ - editing\TextAffinity.h \ - platform\Timer.h \ - editing\VisibleSelection.h \ - editing\TextGranularity.h \ - editing\VisiblePosition.h \ - page\EventHandler.h \ - page\DragActions.h \ - page\FocusDirection.h \ - rendering\HitTestRequest.h \ - platform\PlatformMouseEvent.h \ - platform\ScrollTypes.h \ - page\TouchGestureHandler.h \ - platform\PlatformTouchEvent.h \ - platform\PlatformTouchPoint.h \ - ..\..\epoc32\include\mw\QtGui\QTouchEvent \ - ..\..\epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - loader\FrameLoader.h \ - loader\CachePolicy.h \ - loader\DocumentWriter.h \ - loader\FrameLoaderStateMachine.h \ - loader\FrameLoaderTypes.h \ - loader\HistoryController.h \ - loader\PolicyCallback.h \ - platform\network\qt\ResourceRequest.h \ - platform\network\ResourceRequestBase.h \ - platform\network\FormData.h \ - platform\network\HTTPHeaderMap.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - loader\PolicyChecker.h \ - loader\RedirectScheduler.h \ - dom\Event.h \ - loader\ResourceLoadNotifier.h \ - loader\SubframeLoader.h \ - loader\ThreadableLoader.h \ - page\FrameTree.h \ - bindings\js\ScriptController.h \ - bindings\js\JSDOMWindowShell.h \ - generated\JSDOMWindow.h \ - page\DOMWindow.h \ - dom\MessagePort.h \ - dom\MessagePortChannel.h \ - bindings\js\SerializedScriptValue.h \ - bindings\js\ScriptValue.h \ - bindings\js\JSDOMBinding.h \ - bindings\js\JSDOMGlobalObject.h \ - ..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\JavaScriptCore\runtime\JSArray.h \ - ..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\JavaScriptCore\runtime\SymbolTable.h \ - ..\JavaScriptCore\API\JSWeakObjectMapRefInternal.h \ - ..\JavaScriptCore\runtime\WeakGCMap.h \ - ..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\JavaScriptCore\runtime\NumberObject.h \ - ..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\JavaScriptCore\runtime\StringPrototype.h \ - ..\JavaScriptCore\runtime\StringObject.h \ - bindings\js\DOMWrapperWorld.h \ - dom\Document.h \ - loader\CachedResourceHandle.h \ - loader\CachedResource.h \ - platform\network\qt\ResourceResponse.h \ - platform\network\ResourceResponseBase.h \ - platform\network\ResourceLoadTiming.h \ - dom\CheckedRadioButtons.h \ - dom\ContainerNode.h \ - html\CollectionCache.h \ - html\CollectionType.h \ - dom\DocumentMarker.h \ - dom\QualifiedName.h \ - dom\ScriptExecutionContext.h \ - page\Console.h \ - page\MemoryInfo.h \ - bindings\js\ScriptProfile.h \ - ..\JavaScriptCore\profiler\Profile.h \ - ..\JavaScriptCore\profiler\ProfileNode.h \ - ..\JavaScriptCore\profiler\CallIdentifier.h \ - bindings\js\JSSVGContextCache.h \ - svg\SVGElement.h \ - svg\SVGDocumentExtensions.h \ - dom\StyledElement.h \ - dom\Element.h \ - dom\FragmentScriptingPermission.h \ - dom\NamedNodeMap.h \ - dom\Attribute.h \ - dom\CSSMappedAttributeDeclaration.h \ - dom\MappedAttributeEntry.h \ - dom\SpaceSplitString.h \ - svg\SVGAnimatedProperty.h \ - svg\SVGAnimatedPropertySynchronizer.h \ - svg\SVGAnimatedPropertyTraits.h \ - svg\SVGAngle.h \ - generated\SVGNames.h \ - svg\SVGLength.h \ - svg\SVGLengthList.h \ - svg\SVGList.h \ - dom\ExceptionCode.h \ - svg\SVGListTraits.h \ - svg\SVGNumberList.h \ - svg\SVGPreserveAspectRatio.h \ - svg\SVGTransformList.h \ - svg\SVGTransform.h \ - platform\graphics\transforms\AffineTransform.h \ - platform\graphics\transforms\TransformationMatrix.h \ - ..\..\epoc32\include\mw\QtGui\QTransform \ - ..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - svg\SVGAnimatedTemplate.h \ - ..\JavaScriptCore\runtime\Lookup.h \ - bindings\js\ScriptState.h \ - page\SecurityOrigin.h \ - bindings\js\JSDOMWindowBase.h \ - bindings\ScriptControllerBase.h \ - bindings\js\ScriptInstance.h \ - bridge\Bridge.h \ - bridge\jsc\BridgeJSC.h \ - rendering\ScrollBehavior.h \ - page\UserScriptTypes.h \ - page\ZoomMode.h \ - platform\graphics\TiledBackingStoreClient.h \ - loader\FrameLoaderClient.h \ - plugins\PluginView.h \ - page\FrameLoadRequest.h \ - page\HaltablePlugin.h \ - page\MediaCanStartListener.h \ - plugins\PluginStream.h \ - platform\FileSystem.h \ - ..\..\epoc32\include\mw\QtCore\QFile \ - ..\..\epoc32\include\mw\QtCore\qfile.h \ - ..\..\epoc32\include\mw\QtCore\QLibrary \ - ..\..\epoc32\include\mw\QtCore\qlibrary.h \ - loader\NetscapePlugInStreamLoader.h \ - loader\ResourceLoader.h \ - platform\network\ResourceHandleClient.h \ - platform\network\qt\AuthenticationChallenge.h \ - platform\network\AuthenticationChallengeBase.h \ - platform\network\Credential.h \ - platform\network\ProtectionSpace.h \ - platform\network\qt\ResourceError.h \ - platform\network\ResourceErrorBase.h \ - plugins\PluginQuirkSet.h \ - bridge\npruntime_internal.h \ - bridge\npapi.h \ - bridge\nptypes.h \ - ..\..\epoc32\include\stdapis\stdbool.h \ - ..\..\epoc32\include\mw\jri.h \ - ..\..\epoc32\include\mw\QtCore\QEvent \ - ..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\epoc32\include\mw\QtGui\QRegion \ - ..\..\epoc32\include\mw\QtGui\qregion.h \ - plugins\npfunctions.h \ - bridge\npruntime.h \ - platform\Widget.h \ - ..\..\epoc32\include\mw\QtGui\QPixmap \ - ..\..\epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - ..\..\epoc32\include\mw\QtCore\QUrl \ - ..\..\epoc32\include\mw\QtCore\qurl.h \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\WebCoreSupport\FrameLoaderClientQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\WebCoreSupport\FrameLoaderClientQt.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_FrameLoaderClientQt.cpp - -moc_NotificationPresenterClientQt.cpp: notifications\Notification.h \ - dom\ActiveDOMObject.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - platform\text\AtomicStringHash.h \ - platform\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - dom\Event.h \ - dom\EventTarget.h \ - dom\EventNames.h \ - platform\ThreadGlobalData.h \ - platform\text\StringHash.h \ - ..\JavaScriptCore\wtf\text\StringHash.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - ..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\epoc32\include\mw\QtCore\QThreadStorage \ - ..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - dom\RegisteredEventListener.h \ - dom\EventListener.h \ - ..\JavaScriptCore\wtf\Forward.h \ - dom\ExceptionCode.h \ - platform\KURL.h \ - platform\text\PlatformString.h \ - platform\KURLGooglePrivate.h \ - ..\JavaScriptCore\wtf\text\CString.h \ - ..\JavaScriptCore\runtime\UString.h \ - ..\JavaScriptCore\runtime\Collector.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\epoc32\include\platform\hal.h \ - ..\..\epoc32\include\platform\hal_data.h \ - ..\..\epoc32\include\e32property.h \ - ..\JavaScriptCore\runtime\UStringImpl.h \ - notifications\NotificationPresenter.h \ - html\VoidCallback.h \ - notifications\NotificationContents.h \ - platform\SharedBuffer.h \ - ..\JavaScriptCore\wtf\RetainPtr.h \ - platform\text\TextDirection.h \ - loader\ThreadableLoader.h \ - loader\ThreadableLoaderClient.h \ - ..\WebKit\qt\WebCoreSupport\QtPlatformPlugin.h \ - platform\qt\QtAbstractWebPopup.h \ - platform\PopupMenuClient.h \ - platform\PopupMenuStyle.h \ - platform\graphics\Color.h \ - platform\graphics\Font.h \ - platform\text\CharacterNames.h \ - platform\graphics\FontDescription.h \ - platform\graphics\FontFamily.h \ - ..\JavaScriptCore\wtf\ListRefPtr.h \ - platform\graphics\FontRenderingMode.h \ - platform\graphics\FontSmoothingMode.h \ - platform\graphics\FontTraitsMask.h \ - platform\graphics\TextRenderingMode.h \ - platform\graphics\FontFallbackList.h \ - platform\graphics\FontSelector.h \ - platform\graphics\SimpleFontData.h \ - platform\graphics\FontData.h \ - platform\graphics\qt\FontPlatformData.h \ - ..\..\epoc32\include\mw\QtGui\QFont \ - ..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\epoc32\include\mw\QtCore\QHash \ - ..\..\epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - platform\graphics\FloatRect.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - platform\graphics\IntPoint.h \ - platform\graphics\GlyphMetricsMap.h \ - platform\graphics\GlyphPageTreeNode.h \ - platform\graphics\TypesettingFeatures.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - platform\graphics\TextRun.h \ - platform\Length.h \ - platform\ScrollTypes.h \ - ..\..\epoc32\include\mw\QtCore\QList \ - ..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\epoc32\include\mw\QtCore\QRect \ - ..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\epoc32\include\mw\QtGui\QWidget \ - ..\..\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\epoc32\include\mw\QtCore\QPluginLoader \ - ..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - platform\Timer.h \ - ..\WebKit\qt\Api\qwebkitplatformplugin.h \ - ..\..\epoc32\include\mw\QtCore\QMultiHash \ - ..\..\epoc32\include\mw\QtGui\QSystemTrayIcon \ - ..\..\epoc32\include\mw\QtGui\qsystemtrayicon.h \ - \epoc32\include\mw\QtGui\qicon.h \ - ..\WebKit\qt\WebCoreSupport\NotificationPresenterClientQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\WebCoreSupport\NotificationPresenterClientQt.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_NotificationPresenterClientQt.cpp - -moc_QtPlatformPlugin.cpp: platform\qt\QtAbstractWebPopup.h \ - platform\PopupMenuClient.h \ - platform\PopupMenuStyle.h \ - platform\graphics\Color.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - platform\graphics\Font.h \ - platform\text\CharacterNames.h \ - platform\graphics\FontDescription.h \ - platform\graphics\FontFamily.h \ - platform\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\ListRefPtr.h \ - platform\graphics\FontRenderingMode.h \ - platform\graphics\FontSmoothingMode.h \ - platform\graphics\FontTraitsMask.h \ - platform\graphics\TextRenderingMode.h \ - platform\graphics\FontFallbackList.h \ - platform\graphics\FontSelector.h \ - platform\graphics\SimpleFontData.h \ - platform\graphics\FontData.h \ - platform\graphics\qt\FontPlatformData.h \ - ..\..\epoc32\include\mw\QtGui\QFont \ - ..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\epoc32\include\mw\QtCore\QHash \ - ..\..\epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - platform\graphics\FloatRect.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - platform\graphics\IntPoint.h \ - platform\graphics\GlyphMetricsMap.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - platform\graphics\GlyphPageTreeNode.h \ - platform\graphics\TypesettingFeatures.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\JavaScriptCore\wtf\RetainPtr.h \ - ..\JavaScriptCore\wtf\Forward.h \ - platform\graphics\TextRun.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - platform\Length.h \ - platform\text\TextDirection.h \ - platform\ScrollTypes.h \ - ..\..\epoc32\include\mw\QtCore\QList \ - ..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\epoc32\include\mw\QtCore\QRect \ - ..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\epoc32\include\mw\QtGui\QWidget \ - ..\..\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\epoc32\include\mw\QtCore\QPluginLoader \ - ..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - ..\WebKit\qt\WebCoreSupport\QtPlatformPlugin.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\WebCoreSupport\QtPlatformPlugin.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_QtPlatformPlugin.cpp - -moc_DnsPrefetchHelper.cpp: ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\epoc32\include\mw\QtCore\QCache \ - ..\..\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - ..\..\epoc32\include\mw\QtNetwork\QHostInfo \ - ..\..\epoc32\include\mw\QtNetwork\qhostinfo.h \ - \epoc32\include\mw\QtNetwork\qhostaddress.h \ - \epoc32\include\mw\QtNetwork\qabstractsocket.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\epoc32\include\mw\QtCore\QSet \ - ..\..\epoc32\include\mw\QtCore\qset.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\epoc32\include\mw\QtCore\QTime \ - ..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - platform\network\qt\DnsPrefetchHelper.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\network\qt\DnsPrefetchHelper.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_DnsPrefetchHelper.cpp - -moc_PluginContainerSymbian.cpp: ..\..\epoc32\include\mw\QtGui\QWidget \ - ..\..\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - plugins\symbian\PluginContainerSymbian.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\plugins\symbian\PluginContainerSymbian.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_PluginContainerSymbian.cpp - -moc_MediaPlayerPrivateQt.cpp: platform\graphics\MediaPlayerPrivate.h \ - platform\graphics\MediaPlayer.h \ - dom\Document.h \ - loader\CachedResourceHandle.h \ - loader\CachedResource.h \ - loader\CachePolicy.h \ - loader\FrameLoaderTypes.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - platform\network\qt\ResourceResponse.h \ - platform\network\ResourceResponseBase.h \ - platform\network\HTTPHeaderMap.h \ - platform\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - platform\text\AtomicStringHash.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - platform\text\StringHash.h \ - ..\JavaScriptCore\wtf\text\StringHash.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - platform\KURL.h \ - platform\KURLGooglePrivate.h \ - ..\JavaScriptCore\wtf\text\CString.h \ - ..\JavaScriptCore\runtime\UString.h \ - ..\JavaScriptCore\runtime\Collector.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - ..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\epoc32\include\platform\hal.h \ - ..\..\epoc32\include\platform\hal_data.h \ - ..\..\epoc32\include\e32property.h \ - ..\JavaScriptCore\runtime\UStringImpl.h \ - platform\network\ResourceLoadTiming.h \ - dom\CheckedRadioButtons.h \ - dom\ContainerNode.h \ - dom\Node.h \ - dom\EventTarget.h \ - dom\EventNames.h \ - platform\ThreadGlobalData.h \ - ..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\epoc32\include\mw\QtCore\QThreadStorage \ - ..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - dom\RegisteredEventListener.h \ - dom\EventListener.h \ - ..\JavaScriptCore\wtf\Forward.h \ - platform\KURLHash.h \ - rendering\style\RenderStyleConstants.h \ - bindings\js\ScriptWrappable.h \ - bindings\js\JSDOMWrapper.h \ - ..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\JavaScriptCore\runtime\JSObject.h \ - ..\JavaScriptCore\runtime\ArgList.h \ - ..\JavaScriptCore\interpreter\CallFrame.h \ - ..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\JavaScriptCore\runtime\JSValue.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - ..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\JavaScriptCore\wtf\DateMath.h \ - ..\JavaScriptCore\wtf\CurrentTime.h \ - ..\JavaScriptCore\wtf\UnusedParam.h \ - ..\JavaScriptCore\jit\ExecutableAllocator.h \ - \epoc32\include\stdapis\sys\mman.h \ - ..\JavaScriptCore\jit\JITStubs.h \ - ..\JavaScriptCore\runtime\CallData.h \ - ..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\JavaScriptCore\assembler\MacroAssemblerCodeRef.h \ - ..\JavaScriptCore\interpreter\Register.h \ - ..\JavaScriptCore\jit\ThunkGenerators.h \ - ..\JavaScriptCore\runtime\MarkStack.h \ - ..\JavaScriptCore\runtime\NumericStrings.h \ - ..\JavaScriptCore\runtime\SmallStrings.h \ - ..\JavaScriptCore\runtime\Terminator.h \ - ..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\JavaScriptCore\runtime\WeakRandom.h \ - ..\JavaScriptCore\interpreter\RegisterFile.h \ - ..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\JavaScriptCore\wtf\VMTags.h \ - ..\JavaScriptCore\runtime\ScopeChain.h \ - ..\JavaScriptCore\runtime\ClassInfo.h \ - ..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\JavaScriptCore\runtime\Identifier.h \ - ..\JavaScriptCore\runtime\Completion.h \ - ..\JavaScriptCore\runtime\JSCell.h \ - ..\JavaScriptCore\runtime\ConstructData.h \ - ..\JavaScriptCore\runtime\JSImmediate.h \ - ..\JavaScriptCore\runtime\Structure.h \ - ..\JavaScriptCore\runtime\JSType.h \ - ..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\JavaScriptCore\runtime\Protect.h \ - ..\JavaScriptCore\runtime\StructureChain.h \ - ..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\JavaScriptCore\runtime\PropertySlot.h \ - ..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\JavaScriptCore\runtime\JSString.h \ - ..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\JavaScriptCore\runtime\RopeImpl.h \ - platform\TreeShared.h \ - ..\JavaScriptCore\wtf\ListHashSet.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - platform\graphics\IntPoint.h \ - html\CollectionCache.h \ - html\CollectionType.h \ - platform\graphics\Color.h \ - dom\DocumentMarker.h \ - dom\QualifiedName.h \ - dom\ScriptExecutionContext.h \ - page\Console.h \ - page\MemoryInfo.h \ - bindings\js\ScriptProfile.h \ - ..\JavaScriptCore\profiler\Profile.h \ - ..\JavaScriptCore\profiler\ProfileNode.h \ - ..\JavaScriptCore\profiler\CallIdentifier.h \ - platform\Timer.h \ - ..\JavaScriptCore\runtime\WeakGCMap.h \ - platform\graphics\IntRect.h \ - platform\graphics\GraphicsLayer.h \ - ..\..\epoc32\include\mw\Animation.h \ - ..\..\epoc32\include\mw\animationmixins.h \ - ..\..\epoc32\include\e32base.h \ - ..\..\epoc32\include\e32base.inl \ - ..\..\epoc32\include\platform\e32base_private.h \ - ..\..\epoc32\include\mw\animationdataloaderobserver.h \ - platform\graphics\FloatPoint3D.h \ - platform\graphics\GraphicsLayerClient.h \ - platform\graphics\transforms\TransformationMatrix.h \ - platform\graphics\transforms\AffineTransform.h \ - ..\..\epoc32\include\mw\QtGui\QTransform \ - ..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - platform\graphics\transforms\TransformOperations.h \ - platform\graphics\transforms\TransformOperation.h \ - ..\..\epoc32\include\mw\QMediaPlayer \ - ..\..\epoc32\include\mw\qmediaplayer.h \ - ..\..\epoc32\include\mw\qmediaserviceprovider.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\epoc32\include\mw\qmobilityglobal.h \ - ..\..\epoc32\include\mw\QtCore\qconfig.h \ - ..\..\epoc32\include\mw\qtmedianamespace.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\epoc32\include\mw\qmediaobject.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\epoc32\include\mw\qmediacontent.h \ - ..\..\epoc32\include\mw\qmediaresource.h \ - \epoc32\include\mw\QtNetwork\qnetworkrequest.h \ - \epoc32\include\mw\QtCore\QSharedDataPointer \ - ..\..\epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\QString \ - \epoc32\include\mw\QtCore\QUrl \ - ..\..\epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\QVariant \ - ..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - platform\graphics\qt\MediaPlayerPrivateQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\graphics\qt\MediaPlayerPrivateQt.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_MediaPlayerPrivateQt.cpp - -moc_NetworkStateNotifierPrivate.cpp: ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - platform\network\qt\NetworkStateNotifierPrivate.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\network\qt\NetworkStateNotifierPrivate.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_NetworkStateNotifierPrivate.cpp - -moc_GeolocationServiceQt.cpp: platform\GeolocationService.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\epoc32\include\mw\QGeoPositionInfoSource \ - ..\..\epoc32\include\mw\qgeopositioninfosource.h \ - ..\..\epoc32\include\mw\qmobilityglobal.h \ - ..\..\epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\epoc32\include\mw\qgeopositioninfo.h \ - ..\..\epoc32\include\mw\qgeocoordinate.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - ..\..\epoc32\include\mw\QtCore\QDateTime \ - ..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - platform\qt\GeolocationServiceQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\qt\GeolocationServiceQt.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_GeolocationServiceQt.cpp - -moc_SocketStreamHandlePrivate.cpp: platform\network\SocketStreamHandleBase.h \ - platform\KURL.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - config.h \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - platform\KURLGooglePrivate.h \ - ..\JavaScriptCore\wtf\text\CString.h \ - ..\JavaScriptCore\runtime\UString.h \ - ..\JavaScriptCore\runtime\Collector.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - ..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\epoc32\include\platform\hal.h \ - ..\..\epoc32\include\platform\hal_data.h \ - ..\..\epoc32\include\e32property.h \ - ..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\epoc32\include\mw\QtNetwork\QSslSocket \ - ..\..\epoc32\include\mw\QtNetwork\qsslsocket.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtNetwork\qtcpsocket.h \ - \epoc32\include\mw\QtNetwork\qabstractsocket.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtNetwork\qsslerror.h \ - \epoc32\include\mw\QtNetwork\qsslcertificate.h \ - \epoc32\include\mw\QtCore\qcryptographichash.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtNetwork\qssl.h \ - ..\..\epoc32\include\mw\QtNetwork\QTcpSocket \ - ..\..\epoc32\include\mw\QtNetwork\qtcpsocket.h \ - platform\network\qt\SocketStreamHandlePrivate.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\network\qt\SocketStreamHandlePrivate.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_SocketStreamHandlePrivate.cpp - -moc_qwebframe.cpp: \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebframe.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebframe.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebframe.cpp - -moc_qgraphicswebview.cpp: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qgraphicswebview.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qgraphicswebview.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qgraphicswebview.cpp - -moc_qwebkitplatformplugin.cpp: ..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\WebKit\qt\Api\qwebkitplatformplugin.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebkitplatformplugin.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebkitplatformplugin.cpp - -moc_qwebpage.cpp: ..\WebKit\qt\Api\qwebsettings.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\WebKit\qt\Api\qwebpage.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebpage.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebpage.cpp - -moc_qwebview.cpp: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebview.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebview.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebview.cpp - -moc_qwebhistoryinterface.cpp: \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebhistoryinterface.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebhistoryinterface.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebhistoryinterface.cpp - -moc_qwebpluginfactory.cpp: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\WebKit\qt\Api\qwebpluginfactory.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebpluginfactory.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebpluginfactory.cpp - -moc_qwebinspector.cpp: ..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\WebKit\qt\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebinspector.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\Api\qwebinspector.h -o z:\qtwebkit-symbian-qtp\WebCore\moc_qwebinspector.cpp - -compiler_rcc_make_all: qrc_WebCore.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_WebCore.cpp -qrc_WebCore.cpp: WebCore.qrc \ - Resources\contextMenuCursor.png \ - Resources\urlIcon.png \ - Resources\zoomOutCursor.png \ - Resources\missingImage.png \ - Resources\nullPlugin.png \ - Resources\zoomInCursor.png \ - Resources\copyCursor.png \ - Resources\deleteButton.png \ - Resources\verticalTextCursor.png \ - Resources\inputSpeech.png \ - Resources\aliasCursor.png \ - Resources\textAreaResizeCorner.png \ - Resources\progressCursor.png \ - Resources\cellCursor.png - \epoc32\tools\rcc.exe -name WebCore z:\qtwebkit-symbian-qtp\WebCore\WebCore.qrc -o z:\qtwebkit-symbian-qtp\WebCore\qrc_WebCore.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: SharedTimerQt.moc InspectorClientQt.moc GraphicsLayerQt.moc -compiler_moc_source_clean: - -$(DEL_FILE) SharedTimerQt.moc InspectorClientQt.moc GraphicsLayerQt.moc -SharedTimerQt.moc: config.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\epoc32\include\mw\QtCore\QBasicTimer \ - ..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\epoc32\include\mw\QtCore\QCoreApplication \ - ..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\epoc32\include\mw\QtCore\QDebug \ - ..\..\epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\epoc32\include\mw\QtCore\QPointer \ - ..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\JavaScriptCore\wtf\CurrentTime.h \ - platform\qt\SharedTimerQt.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\qt\SharedTimerQt.cpp -o z:\qtwebkit-symbian-qtp\WebCore\SharedTimerQt.moc - -InspectorClientQt.moc: config.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - ..\WebKit\qt\WebCoreSupport\InspectorClientQt.h \ - inspector\InspectorClient.h \ - inspector\InspectorController.h \ - page\Console.h \ - page\MemoryInfo.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\machine\_limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - bindings\js\ScriptProfile.h \ - ..\JavaScriptCore\profiler\Profile.h \ - ..\JavaScriptCore\profiler\ProfileNode.h \ - ..\JavaScriptCore\profiler\CallIdentifier.h \ - ..\JavaScriptCore\runtime\UString.h \ - ..\JavaScriptCore\runtime\Collector.h \ - ..\JavaScriptCore\wtf\FixedArray.h \ - ..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\JavaScriptCore\wtf\HashMap.h \ - ..\JavaScriptCore\wtf\HashTable.h \ - ..\JavaScriptCore\wtf\HashTraits.h \ - ..\JavaScriptCore\wtf\HashFunctions.h \ - ..\JavaScriptCore\wtf\HashIterators.h \ - ..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\JavaScriptCore\wtf\HashSet.h \ - ..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\epoc32\include\platform\hal.h \ - ..\..\epoc32\include\platform\hal_data.h \ - ..\..\epoc32\include\e32property.h \ - ..\JavaScriptCore\runtime\UStringImpl.h \ - ..\JavaScriptCore\wtf\text\CString.h \ - platform\Cookie.h \ - platform\text\StringHash.h \ - ..\JavaScriptCore\wtf\text\StringHash.h \ - ..\JavaScriptCore\wtf\text\AtomicString.h \ - ..\JavaScriptCore\wtf\text\AtomicStringImpl.h \ - inspector\InspectorDOMAgent.h \ - platform\text\AtomicString.h \ - dom\Document.h \ - loader\CachedResourceHandle.h \ - loader\CachedResource.h \ - loader\CachePolicy.h \ - loader\FrameLoaderTypes.h \ - platform\network\qt\ResourceResponse.h \ - platform\network\ResourceResponseBase.h \ - platform\network\HTTPHeaderMap.h \ - platform\text\AtomicStringHash.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - platform\KURL.h \ - platform\KURLGooglePrivate.h \ - platform\network\ResourceLoadTiming.h \ - dom\CheckedRadioButtons.h \ - dom\ContainerNode.h \ - dom\Node.h \ - dom\EventTarget.h \ - dom\EventNames.h \ - platform\ThreadGlobalData.h \ - ..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\epoc32\include\mw\QtCore\QThreadStorage \ - ..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - dom\RegisteredEventListener.h \ - dom\EventListener.h \ - ..\JavaScriptCore\wtf\Forward.h \ - platform\KURLHash.h \ - rendering\style\RenderStyleConstants.h \ - bindings\js\ScriptWrappable.h \ - bindings\js\JSDOMWrapper.h \ - ..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\JavaScriptCore\runtime\JSObject.h \ - ..\JavaScriptCore\runtime\ArgList.h \ - ..\JavaScriptCore\interpreter\CallFrame.h \ - ..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\JavaScriptCore\runtime\JSValue.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - ..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\JavaScriptCore\wtf\DateMath.h \ - ..\JavaScriptCore\wtf\CurrentTime.h \ - ..\JavaScriptCore\wtf\UnusedParam.h \ - ..\JavaScriptCore\jit\ExecutableAllocator.h \ - \epoc32\include\stdapis\sys\mman.h \ - ..\JavaScriptCore\jit\JITStubs.h \ - ..\JavaScriptCore\runtime\CallData.h \ - ..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\JavaScriptCore\assembler\MacroAssemblerCodeRef.h \ - ..\JavaScriptCore\interpreter\Register.h \ - ..\JavaScriptCore\jit\ThunkGenerators.h \ - ..\JavaScriptCore\runtime\MarkStack.h \ - ..\JavaScriptCore\runtime\NumericStrings.h \ - ..\JavaScriptCore\runtime\SmallStrings.h \ - ..\JavaScriptCore\runtime\Terminator.h \ - ..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\JavaScriptCore\runtime\WeakRandom.h \ - ..\JavaScriptCore\interpreter\RegisterFile.h \ - ..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\JavaScriptCore\wtf\VMTags.h \ - ..\JavaScriptCore\runtime\ScopeChain.h \ - ..\JavaScriptCore\runtime\ClassInfo.h \ - ..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\JavaScriptCore\runtime\Identifier.h \ - ..\JavaScriptCore\runtime\Completion.h \ - ..\JavaScriptCore\runtime\JSCell.h \ - ..\JavaScriptCore\runtime\ConstructData.h \ - ..\JavaScriptCore\runtime\JSImmediate.h \ - ..\JavaScriptCore\runtime\Structure.h \ - ..\JavaScriptCore\runtime\JSType.h \ - ..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\JavaScriptCore\runtime\Protect.h \ - ..\JavaScriptCore\runtime\StructureChain.h \ - ..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\JavaScriptCore\runtime\PropertySlot.h \ - ..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\JavaScriptCore\runtime\JSString.h \ - ..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\JavaScriptCore\runtime\RopeImpl.h \ - platform\TreeShared.h \ - ..\JavaScriptCore\wtf\ListHashSet.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - platform\graphics\IntPoint.h \ - html\CollectionCache.h \ - html\CollectionType.h \ - platform\graphics\Color.h \ - dom\DocumentMarker.h \ - dom\QualifiedName.h \ - dom\ScriptExecutionContext.h \ - platform\Timer.h \ - ..\JavaScriptCore\runtime\WeakGCMap.h \ - inspector\InspectorCSSStore.h \ - inspector\InspectorValues.h \ - dom\NodeList.h \ - bindings\js\ScriptState.h \ - bindings\js\JSDOMBinding.h \ - bindings\js\JSDOMGlobalObject.h \ - ..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\JavaScriptCore\runtime\JSArray.h \ - ..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\JavaScriptCore\runtime\SymbolTable.h \ - ..\JavaScriptCore\API\JSWeakObjectMapRefInternal.h \ - ..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\JavaScriptCore\runtime\NumberObject.h \ - ..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\JavaScriptCore\runtime\StringPrototype.h \ - ..\JavaScriptCore\runtime\StringObject.h \ - bindings\js\DOMWrapperWorld.h \ - bindings\js\JSSVGContextCache.h \ - svg\SVGElement.h \ - svg\SVGDocumentExtensions.h \ - dom\StyledElement.h \ - css\CSSMutableStyleDeclaration.h \ - css\CSSStyleDeclaration.h \ - css\StyleBase.h \ - css\CSSPrimitiveValue.h \ - css\CSSValue.h \ - css\CSSParserValues.h \ - css\CSSProperty.h \ - platform\text\TextDirection.h \ - dom\Element.h \ - dom\FragmentScriptingPermission.h \ - dom\NamedNodeMap.h \ - dom\Attribute.h \ - dom\CSSMappedAttributeDeclaration.h \ - dom\MappedAttributeEntry.h \ - dom\SpaceSplitString.h \ - platform\ScrollTypes.h \ - svg\SVGAnimatedProperty.h \ - svg\SVGAnimatedPropertySynchronizer.h \ - svg\SVGAnimatedPropertyTraits.h \ - platform\graphics\FloatRect.h \ - svg\SVGAngle.h \ - generated\SVGNames.h \ - svg\SVGLength.h \ - svg\SVGLengthList.h \ - svg\SVGList.h \ - dom\ExceptionCode.h \ - svg\SVGListTraits.h \ - svg\SVGNumberList.h \ - svg\SVGPreserveAspectRatio.h \ - svg\SVGTransformList.h \ - svg\SVGTransform.h \ - platform\graphics\transforms\AffineTransform.h \ - platform\graphics\transforms\TransformationMatrix.h \ - ..\..\epoc32\include\mw\QtGui\QTransform \ - ..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - svg\SVGAnimatedTemplate.h \ - ..\JavaScriptCore\runtime\Lookup.h \ - ..\JavaScriptCore\wtf\Deque.h \ - bindings\js\ScriptArray.h \ - bindings\js\ScriptObject.h \ - bindings\js\ScriptValue.h \ - inspector\ScriptBreakpoint.h \ - inspector\ScriptDebugListener.h \ - inspector\InspectorFrontendClientLocal.h \ - inspector\InspectorFrontendClient.h \ - \epoc32\include\mw\QtCore\QString \ - page\Frame.h \ - page\animation\AnimationController.h \ - generated\CSSPropertyNames.h \ - platform\DragImage.h \ - ..\JavaScriptCore\wtf\RetainPtr.h \ - editing\Editor.h \ - dom\ClipboardAccessPolicy.h \ - editing\EditAction.h \ - editing\EditingBehavior.h \ - editing\EditingBehaviorTypes.h \ - editing\EditorDeleteAction.h \ - editing\EditorInsertAction.h \ - editing\SelectionController.h \ - platform\graphics\IntRect.h \ - dom\Range.h \ - platform\graphics\FloatQuad.h \ - dom\RangeBoundaryPoint.h \ - dom\Position.h \ - editing\TextAffinity.h \ - editing\VisibleSelection.h \ - editing\TextGranularity.h \ - editing\VisiblePosition.h \ - page\EventHandler.h \ - page\DragActions.h \ - page\FocusDirection.h \ - rendering\HitTestRequest.h \ - platform\PlatformMouseEvent.h \ - page\TouchGestureHandler.h \ - platform\PlatformTouchEvent.h \ - platform\PlatformTouchPoint.h \ - ..\..\epoc32\include\mw\QtGui\QTouchEvent \ - ..\..\epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - loader\FrameLoader.h \ - loader\DocumentWriter.h \ - loader\FrameLoaderStateMachine.h \ - loader\HistoryController.h \ - loader\PolicyCallback.h \ - platform\network\qt\ResourceRequest.h \ - platform\network\ResourceRequestBase.h \ - platform\network\FormData.h \ - loader\PolicyChecker.h \ - loader\RedirectScheduler.h \ - dom\Event.h \ - loader\ResourceLoadNotifier.h \ - loader\SubframeLoader.h \ - loader\ThreadableLoader.h \ - page\FrameTree.h \ - bindings\js\ScriptController.h \ - bindings\js\JSDOMWindowShell.h \ - generated\JSDOMWindow.h \ - page\DOMWindow.h \ - dom\MessagePort.h \ - dom\MessagePortChannel.h \ - bindings\js\SerializedScriptValue.h \ - page\SecurityOrigin.h \ - bindings\js\JSDOMWindowBase.h \ - bindings\ScriptControllerBase.h \ - bindings\js\ScriptInstance.h \ - bridge\Bridge.h \ - bridge\jsc\BridgeJSC.h \ - rendering\ScrollBehavior.h \ - page\UserScriptTypes.h \ - page\ZoomMode.h \ - platform\graphics\TiledBackingStoreClient.h \ - platform\NotImplemented.h \ - platform\Logging.h \ - ..\..\epoc32\include\mw\QtCore\QByteArray \ - ..\..\epoc32\include\mw\QtCore\qbytearray.h \ - page\Page.h \ - ..\WebKit\qt\Api\qwebinspector.h \ - ..\WebKit\qt\Api\qwebkitglobal.h \ - ..\WebKit\qt\Api\qwebpage.h \ - ..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qevent.h \ - ..\WebKit\qt\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\WebKit\qt\Api\qwebinspector_p.h \ - ..\WebKit\qt\Api\qwebpage_p.h \ - ..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\epoc32\include\mw\QtNetwork\qnetworkproxy.h \ - \epoc32\include\mw\QtNetwork\qhostaddress.h \ - \epoc32\include\mw\QtNetwork\qabstractsocket.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\..\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - ..\WebKit\qt\Api\qwebhistory.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtCore\QCoreApplication \ - ..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\QSettings \ - ..\..\epoc32\include\mw\QtCore\qsettings.h \ - \epoc32\include\mw\QtCore\QVariant \ - ..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\WebKit\qt\WebCoreSupport\InspectorClientQt.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\WebCoreSupport\InspectorClientQt.cpp -o z:\qtwebkit-symbian-qtp\WebCore\InspectorClientQt.moc - -GraphicsLayerQt.moc: config.h \ - ..\JavaScriptCore\wtf\Platform.h \ - ..\JavaScriptCore\wtf\Assertions.h \ - ..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\epoc32\include\e32def.h \ - ..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - ..\..\epoc32\include\stdapis\inttypes.h \ - \epoc32\include\stdapis\machine\_inttypes.h \ - \epoc32\include\stdapis\sys\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - ..\..\epoc32\include\e32debug.h \ - ..\..\epoc32\include\e32std.h \ - ..\..\epoc32\include\e32cmn.h \ - ..\..\epoc32\include\e32const.h \ - ..\..\epoc32\include\e32err.h \ - ..\..\epoc32\include\e32lang.h \ - ..\..\epoc32\include\e32reg.h \ - ..\..\epoc32\include\e32capability.h \ - ..\..\epoc32\include\platform\e32const_private.h \ - ..\..\epoc32\include\stdapis\string.h \ - ..\..\epoc32\include\stdapis\strings.h \ - ..\..\epoc32\include\e32des8.h \ - ..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\epoc32\include\e32des16.h \ - ..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\epoc32\include\e32cmn.inl \ - ..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\epoc32\include\e32std.inl \ - ..\..\epoc32\include\platform\e32std_private.h \ - ..\JavaScriptCore\wtf\FastMalloc.h \ - ..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\epoc32\include\stdapis\stdlib.h \ - ..\..\epoc32\include\stdapis\stlportv5\new \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - ..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\epoc32\include\stdapis\ctype.h \ - ..\..\epoc32\include\stdapis\_ctype.h \ - platform\graphics\qt\GraphicsLayerQt.h \ - platform\graphics\GraphicsLayer.h \ - ..\..\epoc32\include\mw\Animation.h \ - ..\..\epoc32\include\mw\animationmixins.h \ - ..\..\epoc32\include\e32base.h \ - ..\..\epoc32\include\e32base.inl \ - ..\..\epoc32\include\platform\e32base_private.h \ - ..\..\epoc32\include\mw\animationdataloaderobserver.h \ - platform\graphics\Color.h \ - ..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\epoc32\include\stdapis\stdint.h \ - ..\JavaScriptCore\wtf\TypeTraits.h \ - ..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\epoc32\include\mw\QtCore\QChar \ - ..\..\epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\epoc32\include\mw\QtCore\QString \ - ..\..\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\epoc32\include\stdapis\stdio.h \ - ..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\epoc32\include\e32atomics.h \ - ..\..\epoc32\include\stdapis\pthread.h \ - ..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\epoc32\include\stdapis\sched.h \ - ..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - ..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\epoc32\include\mw\QtCore\qglobal.h \ - platform\graphics\FloatPoint.h \ - platform\graphics\FloatSize.h \ - platform\graphics\IntSize.h \ - ..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\epoc32\include\stdapis\stlportv5\cmath \ - ..\..\epoc32\include\stdapis\stlportv5\limits \ - platform\graphics\IntPoint.h \ - ..\..\epoc32\include\mw\QtCore\QDataStream \ - ..\..\epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - platform\graphics\FloatPoint3D.h \ - platform\graphics\GraphicsLayerClient.h \ - platform\graphics\IntRect.h \ - ..\JavaScriptCore\wtf\Vector.h \ - ..\JavaScriptCore\wtf\Noncopyable.h \ - ..\JavaScriptCore\wtf\NotFound.h \ - ..\JavaScriptCore\wtf\ValueCheck.h \ - ..\JavaScriptCore\wtf\VectorTraits.h \ - ..\JavaScriptCore\wtf\OwnPtr.h \ - ..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\epoc32\include\stdapis\stlportv5\algorithm \ - \epoc32\include\stdapis\stlportv5\stl\_algo.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.h \ - \epoc32\include\stdapis\stlportv5\stl\_heap.c \ - \epoc32\include\stdapis\stlportv5\stl\_algo.c \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_tempbuf.c \ - ..\..\epoc32\include\stdapis\stlportv5\memory \ - \epoc32\include\stdapis\stlportv5\stl\_raw_storage_iter.h \ - \epoc32\include\stdapis\stlportv5\stl\_auto_ptr.h \ - ..\JavaScriptCore\wtf\RefPtr.h \ - ..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\JavaScriptCore\wtf\PassRefPtr.h \ - platform\graphics\transforms\TransformationMatrix.h \ - platform\graphics\transforms\AffineTransform.h \ - ..\..\epoc32\include\mw\QtGui\QTransform \ - ..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - platform\graphics\transforms\TransformOperations.h \ - platform\graphics\transforms\TransformOperation.h \ - ..\JavaScriptCore\wtf\RefCounted.h \ - ..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\JavaScriptCore\wtf\CurrentTime.h \ - platform\graphics\FloatRect.h \ - platform\graphics\GraphicsContext.h \ - platform\graphics\ColorSpace.h \ - platform\graphics\DashArray.h \ - platform\graphics\Image.h \ - platform\graphics\GraphicsTypes.h \ - platform\graphics\ImageSource.h \ - platform\text\PlatformString.h \ - ..\JavaScriptCore\wtf\text\WTFString.h \ - ..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\JavaScriptCore\wtf\ASCIICType.h \ - ..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\JavaScriptCore\wtf\Threading.h \ - ..\JavaScriptCore\wtf\Atomics.h \ - ..\JavaScriptCore\wtf\Locker.h \ - ..\JavaScriptCore\wtf\MainThread.h \ - ..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\epoc32\include\mw\QtGui\QPixmap \ - ..\..\epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - platform\graphics\Path.h \ - ..\..\epoc32\include\mw\QtGui\qpainterpath.h \ - platform\text\TextDirection.h \ - ..\..\epoc32\include\mw\QtGui\QPainter \ - ..\..\epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - platform\graphics\transforms\TranslateTransformOperation.h \ - platform\Length.h \ - platform\graphics\UnitBezier.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtGui\qgraphicseffect.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qpixmapcache.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - platform\graphics\qt\GraphicsLayerQt.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebCore\platform\graphics\qt\GraphicsLayerQt.cpp -o z:\qtwebkit-symbian-qtp\WebCore\GraphicsLayerQt.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_template.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_template.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_stub.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_stub.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\qmakepluginstubs\qmlwebkitplugin.qtplugin" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\qmakepluginstubs\qmlwebkitplugin.qtplugin" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_installer.pkg" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\QtWebKit_installer.pkg" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\Makefile" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\Makefile" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\WebCore_0x200267C2.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\WebCore_0x200267C2.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\bld.inf" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebCore\bld.inf" - -@ if EXIST "z:\qtwebkit-symbian-qtp\lib\QtWebKit.prl" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\lib\QtWebKit.prl" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebCore\qmakepluginstubs" $(DEL_DIR) "z:\qtwebkit-symbian-qtp\WebCore\qmakepluginstubs" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/Makefile.DerivedSources --- a/WebCore/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3931 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:47:09 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebCore/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebCore" -first: default -default: debug-winscw -all: -generated_files: compiler_mathmlnames_make_all compiler_svgnames_make_all compiler_xlinknames_make_all compiler_cssprops_make_all compiler_cssvalues_make_all compiler_idl_make_all compiler_inspectorIDL_make_all compiler_tokenizer_make_all compiler_cssbison_make_all compiler_htmlnames_make_all compiler_xmlnsnames_make_all compiler_xmlnames_make_all compiler_entities_make_all compiler_doctypestrings_make_all compiler_colordata_make_all compiler_stylesheets_make_all compiler_xpathbison_make_all compiler_webkitversion_make_all - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_mathmlnames_make_all: generated\MathMLNames.cpp -compiler_mathmlnames_clean: - -$(DEL_FILE) generated\MathMLNames.cpp -generated\MathMLNames.cpp: mathml\mathtags.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --tags U:/yaels-qtwebkit/WebCore/mathml/mathtags.in --attrs U:/yaels-qtwebkit/WebCore/mathml/mathattrs.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_svgnames_make_all: generated\SVGNames.cpp -compiler_svgnames_clean: - -$(DEL_FILE) generated\SVGNames.cpp -generated\SVGNames.cpp: svg\svgtags.in \ - svg\svgattrs.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --tags U:/yaels-qtwebkit/WebCore/svg/svgtags.in --attrs U:/yaels-qtwebkit/WebCore/svg/svgattrs.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_xlinknames_make_all: generated\XLinkNames.cpp -compiler_xlinknames_clean: - -$(DEL_FILE) generated\XLinkNames.cpp -generated\XLinkNames.cpp: svg\xlinkattrs.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --attrs U:/yaels-qtwebkit/WebCore/svg/xlinkattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_cssprops_make_all: generated\CSSPropertyNames.cpp -compiler_cssprops_clean: - -$(DEL_FILE) generated\CSSPropertyNames.cpp -generated\CSSPropertyNames.cpp: css\CSSPropertyNames.in \ - css\CSSPropertyNames.in \ - css\DashboardSupportCSSPropertyNames.in \ - css\SVGCSSPropertyNames.in \ - css\makeprop.pl - perl -ne "print lc" u:\yaels-qtwebkit\WebCore\css\CSSPropertyNames.in U:/yaels-qtwebkit/WebCore/css/DashboardSupportCSSPropertyNames.in U:/yaels-qtwebkit/WebCore/css/SVGCSSPropertyNames.in > generated/CSSPropertyNames.in && cd generated && perl U:/yaels-qtwebkit/WebCore/css/makeprop.pl && $(DEL_FILE) CSSPropertyNames.in CSSPropertyNames.gperf - -compiler_cssvalues_make_all: generated\CSSValueKeywords.cpp -compiler_cssvalues_clean: - -$(DEL_FILE) generated\CSSValueKeywords.cpp generated/CSSValueKeywords.h -generated\CSSValueKeywords.cpp: css\CSSValueKeywords.in \ - css\CSSValueKeywords.in \ - css\SVGCSSValueKeywords.in \ - css\makevalues.pl - perl -ne "print lc" u:\yaels-qtwebkit\WebCore\css\CSSValueKeywords.in U:/yaels-qtwebkit/WebCore/css/SVGCSSValueKeywords.in > generated/CSSValueKeywords.in && cd generated && perl U:/yaels-qtwebkit/WebCore/css/makevalues.pl && $(DEL_FILE) CSSValueKeywords.in CSSValueKeywords.gperf - -compiler_idl_make_all: generated\JSCounter.cpp generated\JSCSSCharsetRule.cpp generated\JSCSSFontFaceRule.cpp generated\JSCSSImportRule.cpp generated\JSCSSMediaRule.cpp generated\JSCSSPageRule.cpp generated\JSCSSPrimitiveValue.cpp generated\JSCSSRule.cpp generated\JSCSSRuleList.cpp generated\JSCSSStyleDeclaration.cpp generated\JSCSSStyleRule.cpp generated\JSCSSStyleSheet.cpp generated\JSCSSValue.cpp generated\JSCSSValueList.cpp generated\JSCSSVariablesDeclaration.cpp generated\JSCSSVariablesRule.cpp generated\JSMediaList.cpp generated\JSRect.cpp generated\JSRGBColor.cpp generated\JSStyleMedia.cpp generated\JSStyleSheet.cpp generated\JSStyleSheetList.cpp generated\JSWebKitCSSKeyframeRule.cpp generated\JSWebKitCSSKeyframesRule.cpp generated\JSWebKitCSSMatrix.cpp generated\JSWebKitCSSTransformValue.cpp generated\JSAttr.cpp generated\JSBeforeLoadEvent.cpp generated\JSBeforeProcessEvent.cpp generated\JSCharacterData.cpp generated\JSClientRect.cpp generated\JSClientRectList.cpp generated\JSClipboard.cpp generated\JSCDATASection.cpp generated\JSComment.cpp generated\JSCompositionEvent.cpp generated\JSCustomEvent.cpp generated\JSDeviceOrientationEvent.cpp generated\JSDocumentFragment.cpp generated\JSDocument.cpp generated\JSDocumentType.cpp generated\JSDOMCoreException.cpp generated\JSDOMImplementation.cpp generated\JSDOMStringList.cpp generated\JSDOMStringMap.cpp generated\JSElement.cpp generated\JSEntity.cpp generated\JSEntityReference.cpp generated\JSErrorEvent.cpp generated\JSEvent.cpp generated\JSEventException.cpp generated\JSKeyboardEvent.cpp generated\JSMouseEvent.cpp generated\JSMessageChannel.cpp generated\JSMessageEvent.cpp generated\JSMessagePort.cpp generated\JSMutationEvent.cpp generated\JSNamedNodeMap.cpp generated\JSNode.cpp generated\JSNodeFilter.cpp generated\JSNodeIterator.cpp generated\JSNodeList.cpp generated\JSNotation.cpp generated\JSOverflowEvent.cpp generated\JSPageTransitionEvent.cpp generated\JSPopStateEvent.cpp generated\JSProcessingInstruction.cpp generated\JSProgressEvent.cpp generated\JSRangeException.cpp generated\JSRange.cpp generated\JSText.cpp generated\JSTextEvent.cpp generated\JSTouch.cpp generated\JSTouchEvent.cpp generated\JSTouchList.cpp generated\JSTransformActionEvent.cpp generated\JSTreeWalker.cpp generated\JSUIEvent.cpp generated\JSWebKitAnimationEvent.cpp generated\JSWebKitTransitionEvent.cpp generated\JSWheelEvent.cpp generated\JSBlob.cpp generated\JSBlobBuilder.cpp generated\JSArrayBufferView.cpp generated\JSArrayBuffer.cpp generated\JSInt8Array.cpp generated\JSFloat32Array.cpp generated\JSCanvasGradient.cpp generated\JSInt32Array.cpp generated\JSCanvasPattern.cpp generated\JSCanvasRenderingContext.cpp generated\JSCanvasRenderingContext2D.cpp generated\JSWebGLActiveInfo.cpp generated\JSWebGLBuffer.cpp generated\JSWebGLContextAttributes.cpp generated\JSWebGLFramebuffer.cpp generated\JSWebGLProgram.cpp generated\JSWebGLRenderbuffer.cpp generated\JSWebGLRenderingContext.cpp generated\JSWebGLShader.cpp generated\JSInt16Array.cpp generated\JSWebGLTexture.cpp generated\JSWebGLUniformLocation.cpp generated\JSUint8Array.cpp generated\JSUint32Array.cpp generated\JSUint16Array.cpp generated\JSDataGridColumn.cpp generated\JSDataGridColumnList.cpp generated\JSDOMFormData.cpp generated\JSFile.cpp generated\JSFileError.cpp generated\JSFileList.cpp generated\JSFileReader.cpp generated\JSHTMLAllCollection.cpp generated\JSHTMLAudioElement.cpp generated\JSHTMLAnchorElement.cpp generated\JSHTMLAppletElement.cpp generated\JSHTMLAreaElement.cpp generated\JSHTMLBaseElement.cpp generated\JSHTMLBaseFontElement.cpp generated\JSHTMLBlockquoteElement.cpp generated\JSHTMLBodyElement.cpp generated\JSHTMLBRElement.cpp generated\JSHTMLButtonElement.cpp generated\JSHTMLCanvasElement.cpp generated\JSHTMLCollection.cpp generated\JSHTMLDataGridElement.cpp generated\JSHTMLDataGridCellElement.cpp generated\JSHTMLDataGridColElement.cpp generated\JSHTMLDataGridRowElement.cpp generated\JSHTMLDataListElement.cpp generated\JSHTMLDirectoryElement.cpp generated\JSHTMLDivElement.cpp generated\JSHTMLDListElement.cpp generated\JSHTMLDocument.cpp generated\JSHTMLElement.cpp generated\JSHTMLEmbedElement.cpp generated\JSHTMLFieldSetElement.cpp generated\JSHTMLFontElement.cpp generated\JSHTMLFormElement.cpp generated\JSHTMLFrameElement.cpp generated\JSHTMLFrameSetElement.cpp generated\JSHTMLHeadElement.cpp generated\JSHTMLHeadingElement.cpp generated\JSHTMLHRElement.cpp generated\JSHTMLHtmlElement.cpp generated\JSHTMLIFrameElement.cpp generated\JSHTMLImageElement.cpp generated\JSHTMLInputElement.cpp generated\JSHTMLIsIndexElement.cpp generated\JSHTMLLabelElement.cpp generated\JSHTMLLegendElement.cpp generated\JSHTMLLIElement.cpp generated\JSHTMLLinkElement.cpp generated\JSHTMLMapElement.cpp generated\JSHTMLMarqueeElement.cpp generated\JSHTMLMediaElement.cpp generated\JSHTMLMenuElement.cpp generated\JSHTMLMetaElement.cpp generated\JSHTMLMeterElement.cpp generated\JSHTMLModElement.cpp generated\JSHTMLObjectElement.cpp generated\JSHTMLOListElement.cpp generated\JSHTMLOptGroupElement.cpp generated\JSHTMLOptionElement.cpp generated\JSHTMLOptionsCollection.cpp generated\JSHTMLParagraphElement.cpp generated\JSHTMLParamElement.cpp generated\JSHTMLPreElement.cpp generated\JSHTMLProgressElement.cpp generated\JSHTMLQuoteElement.cpp generated\JSHTMLScriptElement.cpp generated\JSHTMLSelectElement.cpp generated\JSHTMLSourceElement.cpp generated\JSHTMLStyleElement.cpp generated\JSHTMLTableCaptionElement.cpp generated\JSHTMLTableCellElement.cpp generated\JSHTMLTableColElement.cpp generated\JSHTMLTableElement.cpp generated\JSHTMLTableRowElement.cpp generated\JSHTMLTableSectionElement.cpp generated\JSHTMLTextAreaElement.cpp generated\JSHTMLTitleElement.cpp generated\JSHTMLUListElement.cpp generated\JSHTMLVideoElement.cpp generated\JSImageData.cpp generated\JSMediaError.cpp generated\JSTextMetrics.cpp generated\JSTimeRanges.cpp generated\JSValidityState.cpp generated\JSVoidCallback.cpp generated\JSInjectedScriptHost.cpp generated\JSInspectorBackend.cpp generated\JSInspectorFrontendHost.cpp generated\JSJavaScriptCallFrame.cpp generated\JSScriptProfile.cpp generated\JSScriptProfileNode.cpp generated\JSDOMApplicationCache.cpp generated\JSNotification.cpp generated\JSNotificationCenter.cpp generated\JSBarInfo.cpp generated\JSConsole.cpp generated\JSCoordinates.cpp generated\JSDOMSelection.cpp generated\JSDOMWindow.cpp generated\JSEventSource.cpp generated\JSGeolocation.cpp generated\JSGeoposition.cpp generated\JSHistory.cpp generated\JSLocation.cpp generated\JSMemoryInfo.cpp generated\JSNavigation.cpp generated\JSNavigator.cpp generated\JSPerformance.cpp generated\JSPositionError.cpp generated\JSScreen.cpp generated\JSTiming.cpp generated\JSWebKitPoint.cpp generated\JSWorkerNavigator.cpp generated\JSDOMPlugin.cpp generated\JSDOMMimeType.cpp generated\JSDOMPluginArray.cpp generated\JSDOMMimeTypeArray.cpp generated\JSDatabase.cpp generated\JSDatabaseCallback.cpp generated\JSDatabaseSync.cpp generated\JSIDBAny.cpp generated\JSIDBDatabaseError.cpp generated\JSIDBDatabaseException.cpp generated\JSIDBDatabaseRequest.cpp generated\JSIDBErrorEvent.cpp generated\JSIDBEvent.cpp generated\JSIDBIndexRequest.cpp generated\JSIDBKey.cpp generated\JSIDBKeyRange.cpp generated\JSIDBObjectStoreRequest.cpp generated\JSIDBRequest.cpp generated\JSIDBSuccessEvent.cpp generated\JSIndexedDatabaseRequest.cpp generated\JSStorage.cpp generated\JSStorageEvent.cpp generated\JSSQLError.cpp generated\JSSQLException.cpp generated\JSSQLResultSet.cpp generated\JSSQLResultSetRowList.cpp generated\JSSQLStatementCallback.cpp generated\JSSQLStatementErrorCallback.cpp generated\JSSQLTransaction.cpp generated\JSSQLTransactionCallback.cpp generated\JSSQLTransactionErrorCallback.cpp generated\JSSQLTransactionSync.cpp generated\JSSQLTransactionSyncCallback.cpp generated\JSSVGZoomEvent.cpp generated\JSSVGAElement.cpp generated\JSSVGAltGlyphElement.cpp generated\JSSVGAngle.cpp generated\JSSVGAnimateColorElement.cpp generated\JSSVGAnimatedAngle.cpp generated\JSSVGAnimatedBoolean.cpp generated\JSSVGAnimatedEnumeration.cpp generated\JSSVGAnimatedInteger.cpp generated\JSSVGAnimatedLength.cpp generated\JSSVGAnimatedLengthList.cpp generated\JSSVGAnimatedNumber.cpp generated\JSSVGAnimatedNumberList.cpp generated\JSSVGAnimatedPreserveAspectRatio.cpp generated\JSSVGAnimatedRect.cpp generated\JSSVGAnimatedString.cpp generated\JSSVGAnimatedTransformList.cpp generated\JSSVGAnimateElement.cpp generated\JSSVGAnimateTransformElement.cpp generated\JSSVGAnimationElement.cpp generated\JSSVGCircleElement.cpp generated\JSSVGClipPathElement.cpp generated\JSSVGColor.cpp generated\JSSVGComponentTransferFunctionElement.cpp generated\JSSVGCursorElement.cpp generated\JSSVGDefsElement.cpp generated\JSSVGDescElement.cpp generated\JSSVGDocument.cpp generated\JSSVGElement.cpp generated\JSSVGElementInstance.cpp generated\JSSVGElementInstanceList.cpp generated\JSSVGEllipseElement.cpp generated\JSSVGException.cpp generated\JSSVGFEBlendElement.cpp generated\JSSVGFEColorMatrixElement.cpp generated\JSSVGFEComponentTransferElement.cpp generated\JSSVGFECompositeElement.cpp generated\JSSVGFEConvolveMatrixElement.cpp generated\JSSVGFEDiffuseLightingElement.cpp generated\JSSVGFEDisplacementMapElement.cpp generated\JSSVGFEDistantLightElement.cpp generated\JSSVGFEFloodElement.cpp generated\JSSVGFEFuncAElement.cpp generated\JSSVGFEFuncBElement.cpp generated\JSSVGFEFuncGElement.cpp generated\JSSVGFEFuncRElement.cpp generated\JSSVGFEGaussianBlurElement.cpp generated\JSSVGFEImageElement.cpp generated\JSSVGFEMergeElement.cpp generated\JSSVGFEMergeNodeElement.cpp generated\JSSVGFEMorphologyElement.cpp generated\JSSVGFEOffsetElement.cpp generated\JSSVGFEPointLightElement.cpp generated\JSSVGFESpecularLightingElement.cpp generated\JSSVGFESpotLightElement.cpp generated\JSSVGFETileElement.cpp generated\JSSVGFETurbulenceElement.cpp generated\JSSVGFilterElement.cpp generated\JSSVGFontElement.cpp generated\JSSVGFontFaceElement.cpp generated\JSSVGFontFaceFormatElement.cpp generated\JSSVGFontFaceNameElement.cpp generated\JSSVGFontFaceSrcElement.cpp generated\JSSVGFontFaceUriElement.cpp generated\JSSVGForeignObjectElement.cpp generated\JSSVGGElement.cpp generated\JSSVGGlyphElement.cpp generated\JSSVGGradientElement.cpp generated\JSSVGHKernElement.cpp generated\JSSVGImageElement.cpp generated\JSSVGLength.cpp generated\JSSVGLengthList.cpp generated\JSSVGLinearGradientElement.cpp generated\JSSVGLineElement.cpp generated\JSSVGMarkerElement.cpp generated\JSSVGMaskElement.cpp generated\JSSVGMatrix.cpp generated\JSSVGMetadataElement.cpp generated\JSSVGMissingGlyphElement.cpp generated\JSSVGNumber.cpp generated\JSSVGNumberList.cpp generated\JSSVGPaint.cpp generated\JSSVGPathElement.cpp generated\JSSVGPathSegArcAbs.cpp generated\JSSVGPathSegArcRel.cpp generated\JSSVGPathSegClosePath.cpp generated\JSSVGPathSegCurvetoCubicAbs.cpp generated\JSSVGPathSegCurvetoCubicRel.cpp generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp generated\JSSVGPathSegCurvetoQuadraticAbs.cpp generated\JSSVGPathSegCurvetoQuadraticRel.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp generated\JSSVGPathSeg.cpp generated\JSSVGPathSegLinetoAbs.cpp generated\JSSVGPathSegLinetoHorizontalAbs.cpp generated\JSSVGPathSegLinetoHorizontalRel.cpp generated\JSSVGPathSegLinetoRel.cpp generated\JSSVGPathSegLinetoVerticalAbs.cpp generated\JSSVGPathSegLinetoVerticalRel.cpp generated\JSSVGPathSegList.cpp generated\JSSVGPathSegMovetoAbs.cpp generated\JSSVGPathSegMovetoRel.cpp generated\JSSVGPatternElement.cpp generated\JSSVGPoint.cpp generated\JSSVGPointList.cpp generated\JSSVGPolygonElement.cpp generated\JSSVGPolylineElement.cpp generated\JSSVGPreserveAspectRatio.cpp generated\JSSVGRadialGradientElement.cpp generated\JSSVGRectElement.cpp generated\JSSVGRect.cpp generated\JSSVGRenderingIntent.cpp generated\JSSVGScriptElement.cpp generated\JSSVGSetElement.cpp generated\JSSVGStopElement.cpp generated\JSSVGStringList.cpp generated\JSSVGStyleElement.cpp generated\JSSVGSVGElement.cpp generated\JSSVGSwitchElement.cpp generated\JSSVGSymbolElement.cpp generated\JSSVGTextContentElement.cpp generated\JSSVGTextElement.cpp generated\JSSVGTextPathElement.cpp generated\JSSVGTextPositioningElement.cpp generated\JSSVGTitleElement.cpp generated\JSSVGTransform.cpp generated\JSSVGTransformList.cpp generated\JSSVGTRefElement.cpp generated\JSSVGTSpanElement.cpp generated\JSSVGUnitTypes.cpp generated\JSSVGUseElement.cpp generated\JSSVGViewElement.cpp generated\JSSVGVKernElement.cpp generated\JSWebSocket.cpp generated\JSAbstractWorker.cpp generated\JSDedicatedWorkerContext.cpp generated\JSSharedWorker.cpp generated\JSSharedWorkerContext.cpp generated\JSWorker.cpp generated\JSWorkerContext.cpp generated\JSWorkerLocation.cpp generated\JSDOMParser.cpp generated\JSXMLHttpRequest.cpp generated\JSXMLHttpRequestException.cpp generated\JSXMLHttpRequestProgressEvent.cpp generated\JSXMLHttpRequestUpload.cpp generated\JSXMLSerializer.cpp generated\JSXPathNSResolver.cpp generated\JSXPathException.cpp generated\JSXPathExpression.cpp generated\JSXPathResult.cpp generated\JSXPathEvaluator.cpp generated\JSXSLTProcessor.cpp -compiler_idl_clean: - -$(DEL_FILE) generated\JSCounter.cpp generated\JSCSSCharsetRule.cpp generated\JSCSSFontFaceRule.cpp generated\JSCSSImportRule.cpp generated\JSCSSMediaRule.cpp generated\JSCSSPageRule.cpp generated\JSCSSPrimitiveValue.cpp generated\JSCSSRule.cpp generated\JSCSSRuleList.cpp generated\JSCSSStyleDeclaration.cpp generated\JSCSSStyleRule.cpp generated\JSCSSStyleSheet.cpp generated\JSCSSValue.cpp generated\JSCSSValueList.cpp generated\JSCSSVariablesDeclaration.cpp generated\JSCSSVariablesRule.cpp generated\JSMediaList.cpp generated\JSRect.cpp generated\JSRGBColor.cpp generated\JSStyleMedia.cpp generated\JSStyleSheet.cpp generated\JSStyleSheetList.cpp generated\JSWebKitCSSKeyframeRule.cpp generated\JSWebKitCSSKeyframesRule.cpp generated\JSWebKitCSSMatrix.cpp generated\JSWebKitCSSTransformValue.cpp generated\JSAttr.cpp generated\JSBeforeLoadEvent.cpp generated\JSBeforeProcessEvent.cpp generated\JSCharacterData.cpp generated\JSClientRect.cpp generated\JSClientRectList.cpp generated\JSClipboard.cpp generated\JSCDATASection.cpp generated\JSComment.cpp generated\JSCompositionEvent.cpp generated\JSCustomEvent.cpp generated\JSDeviceOrientationEvent.cpp generated\JSDocumentFragment.cpp generated\JSDocument.cpp generated\JSDocumentType.cpp generated\JSDOMCoreException.cpp generated\JSDOMImplementation.cpp generated\JSDOMStringList.cpp generated\JSDOMStringMap.cpp generated\JSElement.cpp generated\JSEntity.cpp generated\JSEntityReference.cpp generated\JSErrorEvent.cpp generated\JSEvent.cpp generated\JSEventException.cpp generated\JSKeyboardEvent.cpp generated\JSMouseEvent.cpp generated\JSMessageChannel.cpp generated\JSMessageEvent.cpp generated\JSMessagePort.cpp generated\JSMutationEvent.cpp generated\JSNamedNodeMap.cpp generated\JSNode.cpp generated\JSNodeFilter.cpp generated\JSNodeIterator.cpp generated\JSNodeList.cpp generated\JSNotation.cpp generated\JSOverflowEvent.cpp generated\JSPageTransitionEvent.cpp generated\JSPopStateEvent.cpp generated\JSProcessingInstruction.cpp generated\JSProgressEvent.cpp - -$(DEL_FILE) generated\JSRangeException.cpp generated\JSRange.cpp generated\JSText.cpp generated\JSTextEvent.cpp generated\JSTouch.cpp generated\JSTouchEvent.cpp generated\JSTouchList.cpp generated\JSTransformActionEvent.cpp generated\JSTreeWalker.cpp generated\JSUIEvent.cpp generated\JSWebKitAnimationEvent.cpp generated\JSWebKitTransitionEvent.cpp generated\JSWheelEvent.cpp generated\JSBlob.cpp generated\JSBlobBuilder.cpp generated\JSArrayBufferView.cpp generated\JSArrayBuffer.cpp generated\JSInt8Array.cpp generated\JSFloat32Array.cpp generated\JSCanvasGradient.cpp generated\JSInt32Array.cpp generated\JSCanvasPattern.cpp generated\JSCanvasRenderingContext.cpp generated\JSCanvasRenderingContext2D.cpp generated\JSWebGLActiveInfo.cpp generated\JSWebGLBuffer.cpp generated\JSWebGLContextAttributes.cpp generated\JSWebGLFramebuffer.cpp generated\JSWebGLProgram.cpp generated\JSWebGLRenderbuffer.cpp generated\JSWebGLRenderingContext.cpp generated\JSWebGLShader.cpp generated\JSInt16Array.cpp generated\JSWebGLTexture.cpp generated\JSWebGLUniformLocation.cpp generated\JSUint8Array.cpp generated\JSUint32Array.cpp generated\JSUint16Array.cpp generated\JSDataGridColumn.cpp generated\JSDataGridColumnList.cpp generated\JSDOMFormData.cpp generated\JSFile.cpp generated\JSFileError.cpp generated\JSFileList.cpp generated\JSFileReader.cpp generated\JSHTMLAllCollection.cpp generated\JSHTMLAudioElement.cpp generated\JSHTMLAnchorElement.cpp generated\JSHTMLAppletElement.cpp generated\JSHTMLAreaElement.cpp generated\JSHTMLBaseElement.cpp generated\JSHTMLBaseFontElement.cpp generated\JSHTMLBlockquoteElement.cpp generated\JSHTMLBodyElement.cpp generated\JSHTMLBRElement.cpp generated\JSHTMLButtonElement.cpp generated\JSHTMLCanvasElement.cpp generated\JSHTMLCollection.cpp generated\JSHTMLDataGridElement.cpp generated\JSHTMLDataGridCellElement.cpp generated\JSHTMLDataGridColElement.cpp generated\JSHTMLDataGridRowElement.cpp generated\JSHTMLDataListElement.cpp generated\JSHTMLDirectoryElement.cpp generated\JSHTMLDivElement.cpp - -$(DEL_FILE) generated\JSHTMLDListElement.cpp generated\JSHTMLDocument.cpp generated\JSHTMLElement.cpp generated\JSHTMLEmbedElement.cpp generated\JSHTMLFieldSetElement.cpp generated\JSHTMLFontElement.cpp generated\JSHTMLFormElement.cpp generated\JSHTMLFrameElement.cpp generated\JSHTMLFrameSetElement.cpp generated\JSHTMLHeadElement.cpp generated\JSHTMLHeadingElement.cpp generated\JSHTMLHRElement.cpp generated\JSHTMLHtmlElement.cpp generated\JSHTMLIFrameElement.cpp generated\JSHTMLImageElement.cpp generated\JSHTMLInputElement.cpp generated\JSHTMLIsIndexElement.cpp generated\JSHTMLLabelElement.cpp generated\JSHTMLLegendElement.cpp generated\JSHTMLLIElement.cpp generated\JSHTMLLinkElement.cpp generated\JSHTMLMapElement.cpp generated\JSHTMLMarqueeElement.cpp generated\JSHTMLMediaElement.cpp generated\JSHTMLMenuElement.cpp generated\JSHTMLMetaElement.cpp generated\JSHTMLMeterElement.cpp generated\JSHTMLModElement.cpp generated\JSHTMLObjectElement.cpp generated\JSHTMLOListElement.cpp generated\JSHTMLOptGroupElement.cpp generated\JSHTMLOptionElement.cpp generated\JSHTMLOptionsCollection.cpp generated\JSHTMLParagraphElement.cpp generated\JSHTMLParamElement.cpp generated\JSHTMLPreElement.cpp generated\JSHTMLProgressElement.cpp generated\JSHTMLQuoteElement.cpp generated\JSHTMLScriptElement.cpp generated\JSHTMLSelectElement.cpp generated\JSHTMLSourceElement.cpp generated\JSHTMLStyleElement.cpp generated\JSHTMLTableCaptionElement.cpp generated\JSHTMLTableCellElement.cpp generated\JSHTMLTableColElement.cpp generated\JSHTMLTableElement.cpp generated\JSHTMLTableRowElement.cpp generated\JSHTMLTableSectionElement.cpp generated\JSHTMLTextAreaElement.cpp generated\JSHTMLTitleElement.cpp generated\JSHTMLUListElement.cpp generated\JSHTMLVideoElement.cpp generated\JSImageData.cpp generated\JSMediaError.cpp generated\JSTextMetrics.cpp generated\JSTimeRanges.cpp generated\JSValidityState.cpp generated\JSVoidCallback.cpp generated\JSInjectedScriptHost.cpp generated\JSInspectorBackend.cpp generated\JSInspectorFrontendHost.cpp - -$(DEL_FILE) generated\JSJavaScriptCallFrame.cpp generated\JSScriptProfile.cpp generated\JSScriptProfileNode.cpp generated\JSDOMApplicationCache.cpp generated\JSNotification.cpp generated\JSNotificationCenter.cpp generated\JSBarInfo.cpp generated\JSConsole.cpp generated\JSCoordinates.cpp generated\JSDOMSelection.cpp generated\JSDOMWindow.cpp generated\JSEventSource.cpp generated\JSGeolocation.cpp generated\JSGeoposition.cpp generated\JSHistory.cpp generated\JSLocation.cpp generated\JSMemoryInfo.cpp generated\JSNavigation.cpp generated\JSNavigator.cpp generated\JSPerformance.cpp generated\JSPositionError.cpp generated\JSScreen.cpp generated\JSTiming.cpp generated\JSWebKitPoint.cpp generated\JSWorkerNavigator.cpp generated\JSDOMPlugin.cpp generated\JSDOMMimeType.cpp generated\JSDOMPluginArray.cpp generated\JSDOMMimeTypeArray.cpp generated\JSDatabase.cpp generated\JSDatabaseCallback.cpp generated\JSDatabaseSync.cpp generated\JSIDBAny.cpp generated\JSIDBDatabaseError.cpp generated\JSIDBDatabaseException.cpp generated\JSIDBDatabaseRequest.cpp generated\JSIDBErrorEvent.cpp generated\JSIDBEvent.cpp generated\JSIDBIndexRequest.cpp generated\JSIDBKey.cpp generated\JSIDBKeyRange.cpp generated\JSIDBObjectStoreRequest.cpp generated\JSIDBRequest.cpp generated\JSIDBSuccessEvent.cpp generated\JSIndexedDatabaseRequest.cpp generated\JSStorage.cpp generated\JSStorageEvent.cpp generated\JSSQLError.cpp generated\JSSQLException.cpp generated\JSSQLResultSet.cpp generated\JSSQLResultSetRowList.cpp generated\JSSQLStatementCallback.cpp generated\JSSQLStatementErrorCallback.cpp generated\JSSQLTransaction.cpp generated\JSSQLTransactionCallback.cpp generated\JSSQLTransactionErrorCallback.cpp generated\JSSQLTransactionSync.cpp generated\JSSQLTransactionSyncCallback.cpp generated\JSSVGZoomEvent.cpp generated\JSSVGAElement.cpp generated\JSSVGAltGlyphElement.cpp generated\JSSVGAngle.cpp generated\JSSVGAnimateColorElement.cpp generated\JSSVGAnimatedAngle.cpp generated\JSSVGAnimatedBoolean.cpp generated\JSSVGAnimatedEnumeration.cpp - -$(DEL_FILE) generated\JSSVGAnimatedInteger.cpp generated\JSSVGAnimatedLength.cpp generated\JSSVGAnimatedLengthList.cpp generated\JSSVGAnimatedNumber.cpp generated\JSSVGAnimatedNumberList.cpp generated\JSSVGAnimatedPreserveAspectRatio.cpp generated\JSSVGAnimatedRect.cpp generated\JSSVGAnimatedString.cpp generated\JSSVGAnimatedTransformList.cpp generated\JSSVGAnimateElement.cpp generated\JSSVGAnimateTransformElement.cpp generated\JSSVGAnimationElement.cpp generated\JSSVGCircleElement.cpp generated\JSSVGClipPathElement.cpp generated\JSSVGColor.cpp generated\JSSVGComponentTransferFunctionElement.cpp generated\JSSVGCursorElement.cpp generated\JSSVGDefsElement.cpp generated\JSSVGDescElement.cpp generated\JSSVGDocument.cpp generated\JSSVGElement.cpp generated\JSSVGElementInstance.cpp generated\JSSVGElementInstanceList.cpp generated\JSSVGEllipseElement.cpp generated\JSSVGException.cpp generated\JSSVGFEBlendElement.cpp generated\JSSVGFEColorMatrixElement.cpp generated\JSSVGFEComponentTransferElement.cpp generated\JSSVGFECompositeElement.cpp generated\JSSVGFEConvolveMatrixElement.cpp generated\JSSVGFEDiffuseLightingElement.cpp generated\JSSVGFEDisplacementMapElement.cpp generated\JSSVGFEDistantLightElement.cpp generated\JSSVGFEFloodElement.cpp generated\JSSVGFEFuncAElement.cpp generated\JSSVGFEFuncBElement.cpp generated\JSSVGFEFuncGElement.cpp generated\JSSVGFEFuncRElement.cpp generated\JSSVGFEGaussianBlurElement.cpp generated\JSSVGFEImageElement.cpp generated\JSSVGFEMergeElement.cpp generated\JSSVGFEMergeNodeElement.cpp generated\JSSVGFEMorphologyElement.cpp generated\JSSVGFEOffsetElement.cpp generated\JSSVGFEPointLightElement.cpp generated\JSSVGFESpecularLightingElement.cpp generated\JSSVGFESpotLightElement.cpp generated\JSSVGFETileElement.cpp generated\JSSVGFETurbulenceElement.cpp generated\JSSVGFilterElement.cpp generated\JSSVGFontElement.cpp generated\JSSVGFontFaceElement.cpp generated\JSSVGFontFaceFormatElement.cpp generated\JSSVGFontFaceNameElement.cpp generated\JSSVGFontFaceSrcElement.cpp - -$(DEL_FILE) generated\JSSVGFontFaceUriElement.cpp generated\JSSVGForeignObjectElement.cpp generated\JSSVGGElement.cpp generated\JSSVGGlyphElement.cpp generated\JSSVGGradientElement.cpp generated\JSSVGHKernElement.cpp generated\JSSVGImageElement.cpp generated\JSSVGLength.cpp generated\JSSVGLengthList.cpp generated\JSSVGLinearGradientElement.cpp generated\JSSVGLineElement.cpp generated\JSSVGMarkerElement.cpp generated\JSSVGMaskElement.cpp generated\JSSVGMatrix.cpp generated\JSSVGMetadataElement.cpp generated\JSSVGMissingGlyphElement.cpp generated\JSSVGNumber.cpp generated\JSSVGNumberList.cpp generated\JSSVGPaint.cpp generated\JSSVGPathElement.cpp generated\JSSVGPathSegArcAbs.cpp generated\JSSVGPathSegArcRel.cpp generated\JSSVGPathSegClosePath.cpp generated\JSSVGPathSegCurvetoCubicAbs.cpp generated\JSSVGPathSegCurvetoCubicRel.cpp generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp generated\JSSVGPathSegCurvetoQuadraticAbs.cpp generated\JSSVGPathSegCurvetoQuadraticRel.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp generated\JSSVGPathSeg.cpp generated\JSSVGPathSegLinetoAbs.cpp generated\JSSVGPathSegLinetoHorizontalAbs.cpp generated\JSSVGPathSegLinetoHorizontalRel.cpp generated\JSSVGPathSegLinetoRel.cpp generated\JSSVGPathSegLinetoVerticalAbs.cpp generated\JSSVGPathSegLinetoVerticalRel.cpp generated\JSSVGPathSegList.cpp generated\JSSVGPathSegMovetoAbs.cpp generated\JSSVGPathSegMovetoRel.cpp generated\JSSVGPatternElement.cpp generated\JSSVGPoint.cpp generated\JSSVGPointList.cpp generated\JSSVGPolygonElement.cpp generated\JSSVGPolylineElement.cpp generated\JSSVGPreserveAspectRatio.cpp generated\JSSVGRadialGradientElement.cpp generated\JSSVGRectElement.cpp generated\JSSVGRect.cpp generated\JSSVGRenderingIntent.cpp generated\JSSVGScriptElement.cpp generated\JSSVGSetElement.cpp generated\JSSVGStopElement.cpp generated\JSSVGStringList.cpp generated\JSSVGStyleElement.cpp generated\JSSVGSVGElement.cpp - -$(DEL_FILE) generated\JSSVGSwitchElement.cpp generated\JSSVGSymbolElement.cpp generated\JSSVGTextContentElement.cpp generated\JSSVGTextElement.cpp generated\JSSVGTextPathElement.cpp generated\JSSVGTextPositioningElement.cpp generated\JSSVGTitleElement.cpp generated\JSSVGTransform.cpp generated\JSSVGTransformList.cpp generated\JSSVGTRefElement.cpp generated\JSSVGTSpanElement.cpp generated\JSSVGUnitTypes.cpp generated\JSSVGUseElement.cpp generated\JSSVGViewElement.cpp generated\JSSVGVKernElement.cpp generated\JSWebSocket.cpp generated\JSAbstractWorker.cpp generated\JSDedicatedWorkerContext.cpp generated\JSSharedWorker.cpp generated\JSSharedWorkerContext.cpp generated\JSWorker.cpp generated\JSWorkerContext.cpp generated\JSWorkerLocation.cpp generated\JSDOMParser.cpp generated\JSXMLHttpRequest.cpp generated\JSXMLHttpRequestException.cpp generated\JSXMLHttpRequestProgressEvent.cpp generated\JSXMLHttpRequestUpload.cpp generated\JSXMLSerializer.cpp generated\JSXPathNSResolver.cpp generated\JSXPathException.cpp generated\JSXPathExpression.cpp generated\JSXPathResult.cpp generated\JSXPathEvaluator.cpp generated\JSXSLTProcessor.cpp -generated\JSCounter.cpp: css\Counter.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\Counter.idl - -generated\JSCSSCharsetRule.cpp: css\CSSCharsetRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSCharsetRule.idl - -generated\JSCSSFontFaceRule.cpp: css\CSSFontFaceRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSFontFaceRule.idl - -generated\JSCSSImportRule.cpp: css\CSSImportRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSImportRule.idl - -generated\JSCSSMediaRule.cpp: css\CSSMediaRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSMediaRule.idl - -generated\JSCSSPageRule.cpp: css\CSSPageRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSPageRule.idl - -generated\JSCSSPrimitiveValue.cpp: css\CSSPrimitiveValue.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSPrimitiveValue.idl - -generated\JSCSSRule.cpp: css\CSSRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSRule.idl - -generated\JSCSSRuleList.cpp: css\CSSRuleList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSRuleList.idl - -generated\JSCSSStyleDeclaration.cpp: css\CSSStyleDeclaration.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSStyleDeclaration.idl - -generated\JSCSSStyleRule.cpp: css\CSSStyleRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSStyleRule.idl - -generated\JSCSSStyleSheet.cpp: css\CSSStyleSheet.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSStyleSheet.idl - -generated\JSCSSValue.cpp: css\CSSValue.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSValue.idl - -generated\JSCSSValueList.cpp: css\CSSValueList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSValueList.idl - -generated\JSCSSVariablesDeclaration.cpp: css\CSSVariablesDeclaration.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSVariablesDeclaration.idl - -generated\JSCSSVariablesRule.cpp: css\CSSVariablesRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\CSSVariablesRule.idl - -generated\JSMediaList.cpp: css\MediaList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\MediaList.idl - -generated\JSRect.cpp: css\Rect.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\Rect.idl - -generated\JSRGBColor.cpp: css\RGBColor.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\RGBColor.idl - -generated\JSStyleMedia.cpp: css\StyleMedia.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\StyleMedia.idl - -generated\JSStyleSheet.cpp: css\StyleSheet.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\StyleSheet.idl - -generated\JSStyleSheetList.cpp: css\StyleSheetList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\StyleSheetList.idl - -generated\JSWebKitCSSKeyframeRule.cpp: css\WebKitCSSKeyframeRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\WebKitCSSKeyframeRule.idl - -generated\JSWebKitCSSKeyframesRule.cpp: css\WebKitCSSKeyframesRule.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\WebKitCSSKeyframesRule.idl - -generated\JSWebKitCSSMatrix.cpp: css\WebKitCSSMatrix.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\WebKitCSSMatrix.idl - -generated\JSWebKitCSSTransformValue.cpp: css\WebKitCSSTransformValue.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\css\WebKitCSSTransformValue.idl - -generated\JSAttr.cpp: dom\Attr.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Attr.idl - -generated\JSBeforeLoadEvent.cpp: dom\BeforeLoadEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\BeforeLoadEvent.idl - -generated\JSBeforeProcessEvent.cpp: dom\BeforeProcessEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\BeforeProcessEvent.idl - -generated\JSCharacterData.cpp: dom\CharacterData.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\CharacterData.idl - -generated\JSClientRect.cpp: dom\ClientRect.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\ClientRect.idl - -generated\JSClientRectList.cpp: dom\ClientRectList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\ClientRectList.idl - -generated\JSClipboard.cpp: dom\Clipboard.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Clipboard.idl - -generated\JSCDATASection.cpp: dom\CDATASection.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\CDATASection.idl - -generated\JSComment.cpp: dom\Comment.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Comment.idl - -generated\JSCompositionEvent.cpp: dom\CompositionEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\CompositionEvent.idl - -generated\JSCustomEvent.cpp: dom\CustomEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\CustomEvent.idl - -generated\JSDeviceOrientationEvent.cpp: dom\DeviceOrientationEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DeviceOrientationEvent.idl - -generated\JSDocumentFragment.cpp: dom\DocumentFragment.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DocumentFragment.idl - -generated\JSDocument.cpp: dom\Document.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Document.idl - -generated\JSDocumentType.cpp: dom\DocumentType.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DocumentType.idl - -generated\JSDOMCoreException.cpp: dom\DOMCoreException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DOMCoreException.idl - -generated\JSDOMImplementation.cpp: dom\DOMImplementation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DOMImplementation.idl - -generated\JSDOMStringList.cpp: dom\DOMStringList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DOMStringList.idl - -generated\JSDOMStringMap.cpp: dom\DOMStringMap.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\DOMStringMap.idl - -generated\JSElement.cpp: dom\Element.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Element.idl - -generated\JSEntity.cpp: dom\Entity.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Entity.idl - -generated\JSEntityReference.cpp: dom\EntityReference.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\EntityReference.idl - -generated\JSErrorEvent.cpp: dom\ErrorEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\ErrorEvent.idl - -generated\JSEvent.cpp: dom\Event.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Event.idl - -generated\JSEventException.cpp: dom\EventException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\EventException.idl - -generated\JSKeyboardEvent.cpp: dom\KeyboardEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\KeyboardEvent.idl - -generated\JSMouseEvent.cpp: dom\MouseEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\MouseEvent.idl - -generated\JSMessageChannel.cpp: dom\MessageChannel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\MessageChannel.idl - -generated\JSMessageEvent.cpp: dom\MessageEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\MessageEvent.idl - -generated\JSMessagePort.cpp: dom\MessagePort.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\MessagePort.idl - -generated\JSMutationEvent.cpp: dom\MutationEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\MutationEvent.idl - -generated\JSNamedNodeMap.cpp: dom\NamedNodeMap.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\NamedNodeMap.idl - -generated\JSNode.cpp: dom\Node.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Node.idl - -generated\JSNodeFilter.cpp: dom\NodeFilter.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\NodeFilter.idl - -generated\JSNodeIterator.cpp: dom\NodeIterator.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\NodeIterator.idl - -generated\JSNodeList.cpp: dom\NodeList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\NodeList.idl - -generated\JSNotation.cpp: dom\Notation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Notation.idl - -generated\JSOverflowEvent.cpp: dom\OverflowEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\OverflowEvent.idl - -generated\JSPageTransitionEvent.cpp: dom\PageTransitionEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\PageTransitionEvent.idl - -generated\JSPopStateEvent.cpp: dom\PopStateEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\PopStateEvent.idl - -generated\JSProcessingInstruction.cpp: dom\ProcessingInstruction.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\ProcessingInstruction.idl - -generated\JSProgressEvent.cpp: dom\ProgressEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\ProgressEvent.idl - -generated\JSRangeException.cpp: dom\RangeException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\RangeException.idl - -generated\JSRange.cpp: dom\Range.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Range.idl - -generated\JSText.cpp: dom\Text.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Text.idl - -generated\JSTextEvent.cpp: dom\TextEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\TextEvent.idl - -generated\JSTouch.cpp: dom\Touch.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\Touch.idl - -generated\JSTouchEvent.cpp: dom\TouchEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\TouchEvent.idl - -generated\JSTouchList.cpp: dom\TouchList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\TouchList.idl - -generated\JSTransformActionEvent.cpp: dom\TransformActionEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\TransformActionEvent.idl - -generated\JSTreeWalker.cpp: dom\TreeWalker.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\TreeWalker.idl - -generated\JSUIEvent.cpp: dom\UIEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\UIEvent.idl - -generated\JSWebKitAnimationEvent.cpp: dom\WebKitAnimationEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\WebKitAnimationEvent.idl - -generated\JSWebKitTransitionEvent.cpp: dom\WebKitTransitionEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\WebKitTransitionEvent.idl - -generated\JSWheelEvent.cpp: dom\WheelEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\dom\WheelEvent.idl - -generated\JSBlob.cpp: html\Blob.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\Blob.idl - -generated\JSBlobBuilder.cpp: html\BlobBuilder.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\BlobBuilder.idl - -generated\JSArrayBufferView.cpp: html\canvas\ArrayBufferView.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\ArrayBufferView.idl - -generated\JSArrayBuffer.cpp: html\canvas\ArrayBuffer.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\ArrayBuffer.idl - -generated\JSInt8Array.cpp: html\canvas\Int8Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Int8Array.idl - -generated\JSFloat32Array.cpp: html\canvas\Float32Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Float32Array.idl - -generated\JSCanvasGradient.cpp: html\canvas\CanvasGradient.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\CanvasGradient.idl - -generated\JSInt32Array.cpp: html\canvas\Int32Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Int32Array.idl - -generated\JSCanvasPattern.cpp: html\canvas\CanvasPattern.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\CanvasPattern.idl - -generated\JSCanvasRenderingContext.cpp: html\canvas\CanvasRenderingContext.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\CanvasRenderingContext.idl - -generated\JSCanvasRenderingContext2D.cpp: html\canvas\CanvasRenderingContext2D.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\CanvasRenderingContext2D.idl - -generated\JSWebGLActiveInfo.cpp: html\canvas\WebGLActiveInfo.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLActiveInfo.idl - -generated\JSWebGLBuffer.cpp: html\canvas\WebGLBuffer.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLBuffer.idl - -generated\JSWebGLContextAttributes.cpp: html\canvas\WebGLContextAttributes.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLContextAttributes.idl - -generated\JSWebGLFramebuffer.cpp: html\canvas\WebGLFramebuffer.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLFramebuffer.idl - -generated\JSWebGLProgram.cpp: html\canvas\WebGLProgram.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLProgram.idl - -generated\JSWebGLRenderbuffer.cpp: html\canvas\WebGLRenderbuffer.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLRenderbuffer.idl - -generated\JSWebGLRenderingContext.cpp: html\canvas\WebGLRenderingContext.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLRenderingContext.idl - -generated\JSWebGLShader.cpp: html\canvas\WebGLShader.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLShader.idl - -generated\JSInt16Array.cpp: html\canvas\Int16Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Int16Array.idl - -generated\JSWebGLTexture.cpp: html\canvas\WebGLTexture.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLTexture.idl - -generated\JSWebGLUniformLocation.cpp: html\canvas\WebGLUniformLocation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\WebGLUniformLocation.idl - -generated\JSUint8Array.cpp: html\canvas\Uint8Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Uint8Array.idl - -generated\JSUint32Array.cpp: html\canvas\Uint32Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Uint32Array.idl - -generated\JSUint16Array.cpp: html\canvas\Uint16Array.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\canvas\Uint16Array.idl - -generated\JSDataGridColumn.cpp: html\DataGridColumn.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\DataGridColumn.idl - -generated\JSDataGridColumnList.cpp: html\DataGridColumnList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\DataGridColumnList.idl - -generated\JSDOMFormData.cpp: html\DOMFormData.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\DOMFormData.idl - -generated\JSFile.cpp: html\File.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\File.idl - -generated\JSFileError.cpp: html\FileError.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\FileError.idl - -generated\JSFileList.cpp: html\FileList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\FileList.idl - -generated\JSFileReader.cpp: html\FileReader.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\FileReader.idl - -generated\JSHTMLAllCollection.cpp: html\HTMLAllCollection.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLAllCollection.idl - -generated\JSHTMLAudioElement.cpp: html\HTMLAudioElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLAudioElement.idl - -generated\JSHTMLAnchorElement.cpp: html\HTMLAnchorElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLAnchorElement.idl - -generated\JSHTMLAppletElement.cpp: html\HTMLAppletElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLAppletElement.idl - -generated\JSHTMLAreaElement.cpp: html\HTMLAreaElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLAreaElement.idl - -generated\JSHTMLBaseElement.cpp: html\HTMLBaseElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLBaseElement.idl - -generated\JSHTMLBaseFontElement.cpp: html\HTMLBaseFontElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLBaseFontElement.idl - -generated\JSHTMLBlockquoteElement.cpp: html\HTMLBlockquoteElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLBlockquoteElement.idl - -generated\JSHTMLBodyElement.cpp: html\HTMLBodyElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLBodyElement.idl - -generated\JSHTMLBRElement.cpp: html\HTMLBRElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLBRElement.idl - -generated\JSHTMLButtonElement.cpp: html\HTMLButtonElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLButtonElement.idl - -generated\JSHTMLCanvasElement.cpp: html\HTMLCanvasElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLCanvasElement.idl - -generated\JSHTMLCollection.cpp: html\HTMLCollection.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLCollection.idl - -generated\JSHTMLDataGridElement.cpp: html\HTMLDataGridElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDataGridElement.idl - -generated\JSHTMLDataGridCellElement.cpp: html\HTMLDataGridCellElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDataGridCellElement.idl - -generated\JSHTMLDataGridColElement.cpp: html\HTMLDataGridColElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDataGridColElement.idl - -generated\JSHTMLDataGridRowElement.cpp: html\HTMLDataGridRowElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDataGridRowElement.idl - -generated\JSHTMLDataListElement.cpp: html\HTMLDataListElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDataListElement.idl - -generated\JSHTMLDirectoryElement.cpp: html\HTMLDirectoryElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDirectoryElement.idl - -generated\JSHTMLDivElement.cpp: html\HTMLDivElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDivElement.idl - -generated\JSHTMLDListElement.cpp: html\HTMLDListElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDListElement.idl - -generated\JSHTMLDocument.cpp: html\HTMLDocument.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLDocument.idl - -generated\JSHTMLElement.cpp: html\HTMLElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLElement.idl - -generated\JSHTMLEmbedElement.cpp: html\HTMLEmbedElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLEmbedElement.idl - -generated\JSHTMLFieldSetElement.cpp: html\HTMLFieldSetElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLFieldSetElement.idl - -generated\JSHTMLFontElement.cpp: html\HTMLFontElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLFontElement.idl - -generated\JSHTMLFormElement.cpp: html\HTMLFormElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLFormElement.idl - -generated\JSHTMLFrameElement.cpp: html\HTMLFrameElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLFrameElement.idl - -generated\JSHTMLFrameSetElement.cpp: html\HTMLFrameSetElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLFrameSetElement.idl - -generated\JSHTMLHeadElement.cpp: html\HTMLHeadElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLHeadElement.idl - -generated\JSHTMLHeadingElement.cpp: html\HTMLHeadingElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLHeadingElement.idl - -generated\JSHTMLHRElement.cpp: html\HTMLHRElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLHRElement.idl - -generated\JSHTMLHtmlElement.cpp: html\HTMLHtmlElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLHtmlElement.idl - -generated\JSHTMLIFrameElement.cpp: html\HTMLIFrameElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLIFrameElement.idl - -generated\JSHTMLImageElement.cpp: html\HTMLImageElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLImageElement.idl - -generated\JSHTMLInputElement.cpp: html\HTMLInputElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLInputElement.idl - -generated\JSHTMLIsIndexElement.cpp: html\HTMLIsIndexElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLIsIndexElement.idl - -generated\JSHTMLLabelElement.cpp: html\HTMLLabelElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLLabelElement.idl - -generated\JSHTMLLegendElement.cpp: html\HTMLLegendElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLLegendElement.idl - -generated\JSHTMLLIElement.cpp: html\HTMLLIElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLLIElement.idl - -generated\JSHTMLLinkElement.cpp: html\HTMLLinkElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLLinkElement.idl - -generated\JSHTMLMapElement.cpp: html\HTMLMapElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMapElement.idl - -generated\JSHTMLMarqueeElement.cpp: html\HTMLMarqueeElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMarqueeElement.idl - -generated\JSHTMLMediaElement.cpp: html\HTMLMediaElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMediaElement.idl - -generated\JSHTMLMenuElement.cpp: html\HTMLMenuElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMenuElement.idl - -generated\JSHTMLMetaElement.cpp: html\HTMLMetaElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMetaElement.idl - -generated\JSHTMLMeterElement.cpp: html\HTMLMeterElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLMeterElement.idl - -generated\JSHTMLModElement.cpp: html\HTMLModElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLModElement.idl - -generated\JSHTMLObjectElement.cpp: html\HTMLObjectElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLObjectElement.idl - -generated\JSHTMLOListElement.cpp: html\HTMLOListElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLOListElement.idl - -generated\JSHTMLOptGroupElement.cpp: html\HTMLOptGroupElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLOptGroupElement.idl - -generated\JSHTMLOptionElement.cpp: html\HTMLOptionElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLOptionElement.idl - -generated\JSHTMLOptionsCollection.cpp: html\HTMLOptionsCollection.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLOptionsCollection.idl - -generated\JSHTMLParagraphElement.cpp: html\HTMLParagraphElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLParagraphElement.idl - -generated\JSHTMLParamElement.cpp: html\HTMLParamElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLParamElement.idl - -generated\JSHTMLPreElement.cpp: html\HTMLPreElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLPreElement.idl - -generated\JSHTMLProgressElement.cpp: html\HTMLProgressElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLProgressElement.idl - -generated\JSHTMLQuoteElement.cpp: html\HTMLQuoteElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLQuoteElement.idl - -generated\JSHTMLScriptElement.cpp: html\HTMLScriptElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLScriptElement.idl - -generated\JSHTMLSelectElement.cpp: html\HTMLSelectElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLSelectElement.idl - -generated\JSHTMLSourceElement.cpp: html\HTMLSourceElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLSourceElement.idl - -generated\JSHTMLStyleElement.cpp: html\HTMLStyleElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLStyleElement.idl - -generated\JSHTMLTableCaptionElement.cpp: html\HTMLTableCaptionElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableCaptionElement.idl - -generated\JSHTMLTableCellElement.cpp: html\HTMLTableCellElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableCellElement.idl - -generated\JSHTMLTableColElement.cpp: html\HTMLTableColElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableColElement.idl - -generated\JSHTMLTableElement.cpp: html\HTMLTableElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableElement.idl - -generated\JSHTMLTableRowElement.cpp: html\HTMLTableRowElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableRowElement.idl - -generated\JSHTMLTableSectionElement.cpp: html\HTMLTableSectionElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTableSectionElement.idl - -generated\JSHTMLTextAreaElement.cpp: html\HTMLTextAreaElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTextAreaElement.idl - -generated\JSHTMLTitleElement.cpp: html\HTMLTitleElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLTitleElement.idl - -generated\JSHTMLUListElement.cpp: html\HTMLUListElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLUListElement.idl - -generated\JSHTMLVideoElement.cpp: html\HTMLVideoElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\HTMLVideoElement.idl - -generated\JSImageData.cpp: html\ImageData.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\ImageData.idl - -generated\JSMediaError.cpp: html\MediaError.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\MediaError.idl - -generated\JSTextMetrics.cpp: html\TextMetrics.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\TextMetrics.idl - -generated\JSTimeRanges.cpp: html\TimeRanges.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\TimeRanges.idl - -generated\JSValidityState.cpp: html\ValidityState.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\ValidityState.idl - -generated\JSVoidCallback.cpp: html\VoidCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\html\VoidCallback.idl - -generated\JSInjectedScriptHost.cpp: inspector\InjectedScriptHost.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\InjectedScriptHost.idl - -generated\JSInspectorBackend.cpp: inspector\InspectorBackend.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\InspectorBackend.idl - -generated\JSInspectorFrontendHost.cpp: inspector\InspectorFrontendHost.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\InspectorFrontendHost.idl - -generated\JSJavaScriptCallFrame.cpp: inspector\JavaScriptCallFrame.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\JavaScriptCallFrame.idl - -generated\JSScriptProfile.cpp: inspector\ScriptProfile.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\ScriptProfile.idl - -generated\JSScriptProfileNode.cpp: inspector\ScriptProfileNode.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\ScriptProfileNode.idl - -generated\JSDOMApplicationCache.cpp: loader\appcache\DOMApplicationCache.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\loader\appcache\DOMApplicationCache.idl - -generated\JSNotification.cpp: notifications\Notification.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\notifications\Notification.idl - -generated\JSNotificationCenter.cpp: notifications\NotificationCenter.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\notifications\NotificationCenter.idl - -generated\JSBarInfo.cpp: page\BarInfo.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\BarInfo.idl - -generated\JSConsole.cpp: page\Console.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Console.idl - -generated\JSCoordinates.cpp: page\Coordinates.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Coordinates.idl - -generated\JSDOMSelection.cpp: page\DOMSelection.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\DOMSelection.idl - -generated\JSDOMWindow.cpp: page\DOMWindow.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\DOMWindow.idl - -generated\JSEventSource.cpp: page\EventSource.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\EventSource.idl - -generated\JSGeolocation.cpp: page\Geolocation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Geolocation.idl - -generated\JSGeoposition.cpp: page\Geoposition.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Geoposition.idl - -generated\JSHistory.cpp: page\History.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\History.idl - -generated\JSLocation.cpp: page\Location.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Location.idl - -generated\JSMemoryInfo.cpp: page\MemoryInfo.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\MemoryInfo.idl - -generated\JSNavigation.cpp: page\Navigation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Navigation.idl - -generated\JSNavigator.cpp: page\Navigator.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Navigator.idl - -generated\JSPerformance.cpp: page\Performance.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Performance.idl - -generated\JSPositionError.cpp: page\PositionError.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\PositionError.idl - -generated\JSScreen.cpp: page\Screen.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Screen.idl - -generated\JSTiming.cpp: page\Timing.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\Timing.idl - -generated\JSWebKitPoint.cpp: page\WebKitPoint.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\WebKitPoint.idl - -generated\JSWorkerNavigator.cpp: page\WorkerNavigator.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\page\WorkerNavigator.idl - -generated\JSDOMPlugin.cpp: plugins\DOMPlugin.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\plugins\DOMPlugin.idl - -generated\JSDOMMimeType.cpp: plugins\DOMMimeType.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\plugins\DOMMimeType.idl - -generated\JSDOMPluginArray.cpp: plugins\DOMPluginArray.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\plugins\DOMPluginArray.idl - -generated\JSDOMMimeTypeArray.cpp: plugins\DOMMimeTypeArray.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\plugins\DOMMimeTypeArray.idl - -generated\JSDatabase.cpp: storage\Database.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\Database.idl - -generated\JSDatabaseCallback.cpp: storage\DatabaseCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\DatabaseCallback.idl - -generated\JSDatabaseSync.cpp: storage\DatabaseSync.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\DatabaseSync.idl - -generated\JSIDBAny.cpp: storage\IDBAny.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBAny.idl - -generated\JSIDBDatabaseError.cpp: storage\IDBDatabaseError.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBDatabaseError.idl - -generated\JSIDBDatabaseException.cpp: storage\IDBDatabaseException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBDatabaseException.idl - -generated\JSIDBDatabaseRequest.cpp: storage\IDBDatabaseRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBDatabaseRequest.idl - -generated\JSIDBErrorEvent.cpp: storage\IDBErrorEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBErrorEvent.idl - -generated\JSIDBEvent.cpp: storage\IDBEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBEvent.idl - -generated\JSIDBIndexRequest.cpp: storage\IDBIndexRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBIndexRequest.idl - -generated\JSIDBKey.cpp: storage\IDBKey.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBKey.idl - -generated\JSIDBKeyRange.cpp: storage\IDBKeyRange.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBKeyRange.idl - -generated\JSIDBObjectStoreRequest.cpp: storage\IDBObjectStoreRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBObjectStoreRequest.idl - -generated\JSIDBRequest.cpp: storage\IDBRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBRequest.idl - -generated\JSIDBSuccessEvent.cpp: storage\IDBSuccessEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IDBSuccessEvent.idl - -generated\JSIndexedDatabaseRequest.cpp: storage\IndexedDatabaseRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\IndexedDatabaseRequest.idl - -generated\JSStorage.cpp: storage\Storage.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\Storage.idl - -generated\JSStorageEvent.cpp: storage\StorageEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\StorageEvent.idl - -generated\JSSQLError.cpp: storage\SQLError.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLError.idl - -generated\JSSQLException.cpp: storage\SQLException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLException.idl - -generated\JSSQLResultSet.cpp: storage\SQLResultSet.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLResultSet.idl - -generated\JSSQLResultSetRowList.cpp: storage\SQLResultSetRowList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLResultSetRowList.idl - -generated\JSSQLStatementCallback.cpp: storage\SQLStatementCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLStatementCallback.idl - -generated\JSSQLStatementErrorCallback.cpp: storage\SQLStatementErrorCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLStatementErrorCallback.idl - -generated\JSSQLTransaction.cpp: storage\SQLTransaction.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLTransaction.idl - -generated\JSSQLTransactionCallback.cpp: storage\SQLTransactionCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLTransactionCallback.idl - -generated\JSSQLTransactionErrorCallback.cpp: storage\SQLTransactionErrorCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLTransactionErrorCallback.idl - -generated\JSSQLTransactionSync.cpp: storage\SQLTransactionSync.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLTransactionSync.idl - -generated\JSSQLTransactionSyncCallback.cpp: storage\SQLTransactionSyncCallback.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\storage\SQLTransactionSyncCallback.idl - -generated\JSSVGZoomEvent.cpp: svg\SVGZoomEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGZoomEvent.idl - -generated\JSSVGAElement.cpp: svg\SVGAElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAElement.idl - -generated\JSSVGAltGlyphElement.cpp: svg\SVGAltGlyphElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAltGlyphElement.idl - -generated\JSSVGAngle.cpp: svg\SVGAngle.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAngle.idl - -generated\JSSVGAnimateColorElement.cpp: svg\SVGAnimateColorElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimateColorElement.idl - -generated\JSSVGAnimatedAngle.cpp: svg\SVGAnimatedAngle.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedAngle.idl - -generated\JSSVGAnimatedBoolean.cpp: svg\SVGAnimatedBoolean.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedBoolean.idl - -generated\JSSVGAnimatedEnumeration.cpp: svg\SVGAnimatedEnumeration.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedEnumeration.idl - -generated\JSSVGAnimatedInteger.cpp: svg\SVGAnimatedInteger.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedInteger.idl - -generated\JSSVGAnimatedLength.cpp: svg\SVGAnimatedLength.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedLength.idl - -generated\JSSVGAnimatedLengthList.cpp: svg\SVGAnimatedLengthList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedLengthList.idl - -generated\JSSVGAnimatedNumber.cpp: svg\SVGAnimatedNumber.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedNumber.idl - -generated\JSSVGAnimatedNumberList.cpp: svg\SVGAnimatedNumberList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedNumberList.idl - -generated\JSSVGAnimatedPreserveAspectRatio.cpp: svg\SVGAnimatedPreserveAspectRatio.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedPreserveAspectRatio.idl - -generated\JSSVGAnimatedRect.cpp: svg\SVGAnimatedRect.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedRect.idl - -generated\JSSVGAnimatedString.cpp: svg\SVGAnimatedString.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedString.idl - -generated\JSSVGAnimatedTransformList.cpp: svg\SVGAnimatedTransformList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimatedTransformList.idl - -generated\JSSVGAnimateElement.cpp: svg\SVGAnimateElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimateElement.idl - -generated\JSSVGAnimateTransformElement.cpp: svg\SVGAnimateTransformElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimateTransformElement.idl - -generated\JSSVGAnimationElement.cpp: svg\SVGAnimationElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGAnimationElement.idl - -generated\JSSVGCircleElement.cpp: svg\SVGCircleElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGCircleElement.idl - -generated\JSSVGClipPathElement.cpp: svg\SVGClipPathElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGClipPathElement.idl - -generated\JSSVGColor.cpp: svg\SVGColor.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGColor.idl - -generated\JSSVGComponentTransferFunctionElement.cpp: svg\SVGComponentTransferFunctionElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGComponentTransferFunctionElement.idl - -generated\JSSVGCursorElement.cpp: svg\SVGCursorElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGCursorElement.idl - -generated\JSSVGDefsElement.cpp: svg\SVGDefsElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGDefsElement.idl - -generated\JSSVGDescElement.cpp: svg\SVGDescElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGDescElement.idl - -generated\JSSVGDocument.cpp: svg\SVGDocument.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGDocument.idl - -generated\JSSVGElement.cpp: svg\SVGElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGElement.idl - -generated\JSSVGElementInstance.cpp: svg\SVGElementInstance.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGElementInstance.idl - -generated\JSSVGElementInstanceList.cpp: svg\SVGElementInstanceList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGElementInstanceList.idl - -generated\JSSVGEllipseElement.cpp: svg\SVGEllipseElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGEllipseElement.idl - -generated\JSSVGException.cpp: svg\SVGException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGException.idl - -generated\JSSVGFEBlendElement.cpp: svg\SVGFEBlendElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEBlendElement.idl - -generated\JSSVGFEColorMatrixElement.cpp: svg\SVGFEColorMatrixElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEColorMatrixElement.idl - -generated\JSSVGFEComponentTransferElement.cpp: svg\SVGFEComponentTransferElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEComponentTransferElement.idl - -generated\JSSVGFECompositeElement.cpp: svg\SVGFECompositeElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFECompositeElement.idl - -generated\JSSVGFEConvolveMatrixElement.cpp: svg\SVGFEConvolveMatrixElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEConvolveMatrixElement.idl - -generated\JSSVGFEDiffuseLightingElement.cpp: svg\SVGFEDiffuseLightingElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEDiffuseLightingElement.idl - -generated\JSSVGFEDisplacementMapElement.cpp: svg\SVGFEDisplacementMapElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEDisplacementMapElement.idl - -generated\JSSVGFEDistantLightElement.cpp: svg\SVGFEDistantLightElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEDistantLightElement.idl - -generated\JSSVGFEFloodElement.cpp: svg\SVGFEFloodElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEFloodElement.idl - -generated\JSSVGFEFuncAElement.cpp: svg\SVGFEFuncAElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEFuncAElement.idl - -generated\JSSVGFEFuncBElement.cpp: svg\SVGFEFuncBElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEFuncBElement.idl - -generated\JSSVGFEFuncGElement.cpp: svg\SVGFEFuncGElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEFuncGElement.idl - -generated\JSSVGFEFuncRElement.cpp: svg\SVGFEFuncRElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEFuncRElement.idl - -generated\JSSVGFEGaussianBlurElement.cpp: svg\SVGFEGaussianBlurElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEGaussianBlurElement.idl - -generated\JSSVGFEImageElement.cpp: svg\SVGFEImageElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEImageElement.idl - -generated\JSSVGFEMergeElement.cpp: svg\SVGFEMergeElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEMergeElement.idl - -generated\JSSVGFEMergeNodeElement.cpp: svg\SVGFEMergeNodeElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEMergeNodeElement.idl - -generated\JSSVGFEMorphologyElement.cpp: svg\SVGFEMorphologyElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEMorphologyElement.idl - -generated\JSSVGFEOffsetElement.cpp: svg\SVGFEOffsetElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEOffsetElement.idl - -generated\JSSVGFEPointLightElement.cpp: svg\SVGFEPointLightElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFEPointLightElement.idl - -generated\JSSVGFESpecularLightingElement.cpp: svg\SVGFESpecularLightingElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFESpecularLightingElement.idl - -generated\JSSVGFESpotLightElement.cpp: svg\SVGFESpotLightElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFESpotLightElement.idl - -generated\JSSVGFETileElement.cpp: svg\SVGFETileElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFETileElement.idl - -generated\JSSVGFETurbulenceElement.cpp: svg\SVGFETurbulenceElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFETurbulenceElement.idl - -generated\JSSVGFilterElement.cpp: svg\SVGFilterElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFilterElement.idl - -generated\JSSVGFontElement.cpp: svg\SVGFontElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontElement.idl - -generated\JSSVGFontFaceElement.cpp: svg\SVGFontFaceElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontFaceElement.idl - -generated\JSSVGFontFaceFormatElement.cpp: svg\SVGFontFaceFormatElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontFaceFormatElement.idl - -generated\JSSVGFontFaceNameElement.cpp: svg\SVGFontFaceNameElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontFaceNameElement.idl - -generated\JSSVGFontFaceSrcElement.cpp: svg\SVGFontFaceSrcElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontFaceSrcElement.idl - -generated\JSSVGFontFaceUriElement.cpp: svg\SVGFontFaceUriElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGFontFaceUriElement.idl - -generated\JSSVGForeignObjectElement.cpp: svg\SVGForeignObjectElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGForeignObjectElement.idl - -generated\JSSVGGElement.cpp: svg\SVGGElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGGElement.idl - -generated\JSSVGGlyphElement.cpp: svg\SVGGlyphElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGGlyphElement.idl - -generated\JSSVGGradientElement.cpp: svg\SVGGradientElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGGradientElement.idl - -generated\JSSVGHKernElement.cpp: svg\SVGHKernElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGHKernElement.idl - -generated\JSSVGImageElement.cpp: svg\SVGImageElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGImageElement.idl - -generated\JSSVGLength.cpp: svg\SVGLength.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGLength.idl - -generated\JSSVGLengthList.cpp: svg\SVGLengthList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGLengthList.idl - -generated\JSSVGLinearGradientElement.cpp: svg\SVGLinearGradientElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGLinearGradientElement.idl - -generated\JSSVGLineElement.cpp: svg\SVGLineElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGLineElement.idl - -generated\JSSVGMarkerElement.cpp: svg\SVGMarkerElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGMarkerElement.idl - -generated\JSSVGMaskElement.cpp: svg\SVGMaskElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGMaskElement.idl - -generated\JSSVGMatrix.cpp: svg\SVGMatrix.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGMatrix.idl - -generated\JSSVGMetadataElement.cpp: svg\SVGMetadataElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGMetadataElement.idl - -generated\JSSVGMissingGlyphElement.cpp: svg\SVGMissingGlyphElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGMissingGlyphElement.idl - -generated\JSSVGNumber.cpp: svg\SVGNumber.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGNumber.idl - -generated\JSSVGNumberList.cpp: svg\SVGNumberList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGNumberList.idl - -generated\JSSVGPaint.cpp: svg\SVGPaint.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPaint.idl - -generated\JSSVGPathElement.cpp: svg\SVGPathElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathElement.idl - -generated\JSSVGPathSegArcAbs.cpp: svg\SVGPathSegArcAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegArcAbs.idl - -generated\JSSVGPathSegArcRel.cpp: svg\SVGPathSegArcRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegArcRel.idl - -generated\JSSVGPathSegClosePath.cpp: svg\SVGPathSegClosePath.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegClosePath.idl - -generated\JSSVGPathSegCurvetoCubicAbs.cpp: svg\SVGPathSegCurvetoCubicAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoCubicAbs.idl - -generated\JSSVGPathSegCurvetoCubicRel.cpp: svg\SVGPathSegCurvetoCubicRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoCubicRel.idl - -generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp: svg\SVGPathSegCurvetoCubicSmoothAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoCubicSmoothAbs.idl - -generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp: svg\SVGPathSegCurvetoCubicSmoothRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoCubicSmoothRel.idl - -generated\JSSVGPathSegCurvetoQuadraticAbs.cpp: svg\SVGPathSegCurvetoQuadraticAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoQuadraticAbs.idl - -generated\JSSVGPathSegCurvetoQuadraticRel.cpp: svg\SVGPathSegCurvetoQuadraticRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoQuadraticRel.idl - -generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp: svg\SVGPathSegCurvetoQuadraticSmoothAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoQuadraticSmoothAbs.idl - -generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp: svg\SVGPathSegCurvetoQuadraticSmoothRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegCurvetoQuadraticSmoothRel.idl - -generated\JSSVGPathSeg.cpp: svg\SVGPathSeg.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSeg.idl - -generated\JSSVGPathSegLinetoAbs.cpp: svg\SVGPathSegLinetoAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoAbs.idl - -generated\JSSVGPathSegLinetoHorizontalAbs.cpp: svg\SVGPathSegLinetoHorizontalAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoHorizontalAbs.idl - -generated\JSSVGPathSegLinetoHorizontalRel.cpp: svg\SVGPathSegLinetoHorizontalRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoHorizontalRel.idl - -generated\JSSVGPathSegLinetoRel.cpp: svg\SVGPathSegLinetoRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoRel.idl - -generated\JSSVGPathSegLinetoVerticalAbs.cpp: svg\SVGPathSegLinetoVerticalAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoVerticalAbs.idl - -generated\JSSVGPathSegLinetoVerticalRel.cpp: svg\SVGPathSegLinetoVerticalRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegLinetoVerticalRel.idl - -generated\JSSVGPathSegList.cpp: svg\SVGPathSegList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegList.idl - -generated\JSSVGPathSegMovetoAbs.cpp: svg\SVGPathSegMovetoAbs.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegMovetoAbs.idl - -generated\JSSVGPathSegMovetoRel.cpp: svg\SVGPathSegMovetoRel.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPathSegMovetoRel.idl - -generated\JSSVGPatternElement.cpp: svg\SVGPatternElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPatternElement.idl - -generated\JSSVGPoint.cpp: svg\SVGPoint.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPoint.idl - -generated\JSSVGPointList.cpp: svg\SVGPointList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPointList.idl - -generated\JSSVGPolygonElement.cpp: svg\SVGPolygonElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPolygonElement.idl - -generated\JSSVGPolylineElement.cpp: svg\SVGPolylineElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPolylineElement.idl - -generated\JSSVGPreserveAspectRatio.cpp: svg\SVGPreserveAspectRatio.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGPreserveAspectRatio.idl - -generated\JSSVGRadialGradientElement.cpp: svg\SVGRadialGradientElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGRadialGradientElement.idl - -generated\JSSVGRectElement.cpp: svg\SVGRectElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGRectElement.idl - -generated\JSSVGRect.cpp: svg\SVGRect.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGRect.idl - -generated\JSSVGRenderingIntent.cpp: svg\SVGRenderingIntent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGRenderingIntent.idl - -generated\JSSVGScriptElement.cpp: svg\SVGScriptElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGScriptElement.idl - -generated\JSSVGSetElement.cpp: svg\SVGSetElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGSetElement.idl - -generated\JSSVGStopElement.cpp: svg\SVGStopElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGStopElement.idl - -generated\JSSVGStringList.cpp: svg\SVGStringList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGStringList.idl - -generated\JSSVGStyleElement.cpp: svg\SVGStyleElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGStyleElement.idl - -generated\JSSVGSVGElement.cpp: svg\SVGSVGElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGSVGElement.idl - -generated\JSSVGSwitchElement.cpp: svg\SVGSwitchElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGSwitchElement.idl - -generated\JSSVGSymbolElement.cpp: svg\SVGSymbolElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGSymbolElement.idl - -generated\JSSVGTextContentElement.cpp: svg\SVGTextContentElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTextContentElement.idl - -generated\JSSVGTextElement.cpp: svg\SVGTextElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTextElement.idl - -generated\JSSVGTextPathElement.cpp: svg\SVGTextPathElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTextPathElement.idl - -generated\JSSVGTextPositioningElement.cpp: svg\SVGTextPositioningElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTextPositioningElement.idl - -generated\JSSVGTitleElement.cpp: svg\SVGTitleElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTitleElement.idl - -generated\JSSVGTransform.cpp: svg\SVGTransform.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTransform.idl - -generated\JSSVGTransformList.cpp: svg\SVGTransformList.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTransformList.idl - -generated\JSSVGTRefElement.cpp: svg\SVGTRefElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTRefElement.idl - -generated\JSSVGTSpanElement.cpp: svg\SVGTSpanElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGTSpanElement.idl - -generated\JSSVGUnitTypes.cpp: svg\SVGUnitTypes.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGUnitTypes.idl - -generated\JSSVGUseElement.cpp: svg\SVGUseElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGUseElement.idl - -generated\JSSVGViewElement.cpp: svg\SVGViewElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGViewElement.idl - -generated\JSSVGVKernElement.cpp: svg\SVGVKernElement.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\svg\SVGVKernElement.idl - -generated\JSWebSocket.cpp: websockets\WebSocket.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\websockets\WebSocket.idl - -generated\JSAbstractWorker.cpp: workers\AbstractWorker.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\AbstractWorker.idl - -generated\JSDedicatedWorkerContext.cpp: workers\DedicatedWorkerContext.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\DedicatedWorkerContext.idl - -generated\JSSharedWorker.cpp: workers\SharedWorker.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\SharedWorker.idl - -generated\JSSharedWorkerContext.cpp: workers\SharedWorkerContext.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\SharedWorkerContext.idl - -generated\JSWorker.cpp: workers\Worker.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\Worker.idl - -generated\JSWorkerContext.cpp: workers\WorkerContext.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\WorkerContext.idl - -generated\JSWorkerLocation.cpp: workers\WorkerLocation.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\workers\WorkerLocation.idl - -generated\JSDOMParser.cpp: xml\DOMParser.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\DOMParser.idl - -generated\JSXMLHttpRequest.cpp: xml\XMLHttpRequest.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XMLHttpRequest.idl - -generated\JSXMLHttpRequestException.cpp: xml\XMLHttpRequestException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XMLHttpRequestException.idl - -generated\JSXMLHttpRequestProgressEvent.cpp: xml\XMLHttpRequestProgressEvent.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XMLHttpRequestProgressEvent.idl - -generated\JSXMLHttpRequestUpload.cpp: xml\XMLHttpRequestUpload.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XMLHttpRequestUpload.idl - -generated\JSXMLSerializer.cpp: xml\XMLSerializer.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XMLSerializer.idl - -generated\JSXPathNSResolver.cpp: xml\XPathNSResolver.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XPathNSResolver.idl - -generated\JSXPathException.cpp: xml\XPathException.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XPathException.idl - -generated\JSXPathExpression.cpp: xml\XPathExpression.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XPathExpression.idl - -generated\JSXPathResult.cpp: xml\XPathResult.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XPathResult.idl - -generated\JSXPathEvaluator.cpp: xml\XPathEvaluator.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XPathEvaluator.idl - -generated\JSXSLTProcessor.cpp: xml\XSLTProcessor.idl \ - bindings\scripts\CodeGenerator.pm \ - bindings\scripts\CodeGeneratorJS.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include U:/yaels-qtwebkit/WebCore/dom --include U:/yaels-qtwebkit/WebCore/html --include U:/yaels-qtwebkit/WebCore/xml --include U:/yaels-qtwebkit/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\xml\XSLTProcessor.idl - -compiler_inspectorIDL_make_all: generated\RemoteInspectorFrontend.cpp -compiler_inspectorIDL_clean: - -$(DEL_FILE) generated\RemoteInspectorFrontend.cpp -generated\RemoteInspectorFrontend.cpp: inspector\Inspector.idl \ - bindings\scripts\CodeGenerator.pm \ - inspector\CodeGeneratorInspector.pm \ - bindings\scripts\IDLParser.pm \ - bindings\scripts\IDLStructure.pm \ - bindings\scripts\InFilesParser.pm \ - bindings\scripts\generate-bindings.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts -IU:/yaels-qtwebkit/WebCore/inspector U:/yaels-qtwebkit/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator Inspector --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" u:\yaels-qtwebkit\WebCore\inspector\Inspector.idl - -compiler_tokenizer_make_all: generated\tokenizer.cpp -compiler_tokenizer_clean: - -$(DEL_FILE) generated\tokenizer.cpp -generated\tokenizer.cpp: css\tokenizer.flex \ - css\maketokenizer - flex -t < u:\yaels-qtwebkit\WebCore\css\tokenizer.flex | perl U:/yaels-qtwebkit/WebCore/css/maketokenizer > u:\yaels-qtwebkit\WebCore\generated\tokenizer.cpp - -compiler_cssbison_make_all: generated\CSSGrammar.cpp -compiler_cssbison_clean: - -$(DEL_FILE) generated\CSSGrammar.cpp -generated\CSSGrammar.cpp: config.h \ - css\CSSMediaRule.h \ - css\CSSRule.h \ - css\CSSStyleSheet.h \ - css\CSSRuleList.h \ - css\StyleSheet.h \ - css\StyleList.h \ - css\StyleBase.h \ - css\MediaList.h \ - css\CSSParser.h \ - css\CSSParserValues.h \ - css\CSSSelectorList.h \ - css\CSSSelector.h \ - css\MediaQuery.h \ - css\CSSPrimitiveValue.h \ - css\CSSValue.h \ - css\WebKitCSSKeyframeRule.h \ - css\WebKitCSSKeyframesRule.h \ - css\CSSGrammar.y \ - css\CSSGrammar.y \ - css\makegrammar.pl - perl U:/yaels-qtwebkit/WebCore/css/makegrammar.pl u:\yaels-qtwebkit\WebCore\css\CSSGrammar.y generated/CSSGrammar - -compiler_htmlnames_make_all: generated\HTMLNames.cpp -compiler_htmlnames_clean: - -$(DEL_FILE) generated\HTMLNames.cpp -generated\HTMLNames.cpp: html\HTMLTagNames.in \ - html\HTMLAttributeNames.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --tags U:/yaels-qtwebkit/WebCore/html/HTMLTagNames.in --attrs U:/yaels-qtwebkit/WebCore/html/HTMLAttributeNames.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_xmlnsnames_make_all: generated\XMLNSNames.cpp -compiler_xmlnsnames_clean: - -$(DEL_FILE) generated\XMLNSNames.cpp -generated\XMLNSNames.cpp: xml\xmlnsattrs.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --attrs U:/yaels-qtwebkit/WebCore/xml/xmlnsattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_xmlnames_make_all: generated\XMLNames.cpp -compiler_xmlnames_clean: - -$(DEL_FILE) generated\XMLNames.cpp -generated\XMLNames.cpp: xml\xmlattrs.in \ - dom\make_names.pl - perl -IU:/yaels-qtwebkit/WebCore/bindings/scripts U:/yaels-qtwebkit/WebCore/dom/make_names.pl --attrs U:/yaels-qtwebkit/WebCore/xml/xmlattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_entities_make_all: generated\HTMLEntityNames.cpp -compiler_entities_clean: - -$(DEL_FILE) generated\HTMLEntityNames.cpp -generated\HTMLEntityNames.cpp: html\HTMLEntityNames.gperf \ - make-hash-tools.pl \ - make-hash-tools.pl - perl U:/yaels-qtwebkit/WebCore/make-hash-tools.pl generated U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf - -compiler_doctypestrings_make_all: generated\DocTypeStrings.cpp -compiler_doctypestrings_clean: - -$(DEL_FILE) generated\DocTypeStrings.cpp -generated\DocTypeStrings.cpp: html\DocTypeStrings.gperf \ - make-hash-tools.pl \ - make-hash-tools.pl - perl U:/yaels-qtwebkit/WebCore/make-hash-tools.pl generated U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf - -compiler_colordata_make_all: generated\ColorData.cpp -compiler_colordata_clean: - -$(DEL_FILE) generated\ColorData.cpp -generated\ColorData.cpp: platform\ColorData.gperf \ - make-hash-tools.pl \ - make-hash-tools.pl - perl U:/yaels-qtwebkit/WebCore/make-hash-tools.pl generated U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf - -compiler_stylesheets_make_all: generated\UserAgentStyleSheetsData.cpp -compiler_stylesheets_clean: - -$(DEL_FILE) generated\UserAgentStyleSheetsData.cpp generated/UserAgentStyleSheets.h -generated\UserAgentStyleSheetsData.cpp: css\make-css-file-arrays.pl \ - css\html.css \ - css\quirks.css \ - css\mathml.css \ - css\svg.css \ - css\view-source.css \ - css\wml.css \ - css\mediaControls.css \ - css\mediaControlsQt.css \ - css\themeQtNoListboxes.css \ - css\themeQtMaemo5.css \ - css\make-css-file-arrays.pl - perl U:/yaels-qtwebkit/WebCore/css/make-css-file-arrays.pl generated/UserAgentStyleSheets.h u:\yaels-qtwebkit\WebCore\generated\UserAgentStyleSheetsData.cpp U:/yaels-qtwebkit/WebCore/css/html.css U:/yaels-qtwebkit/WebCore/css/quirks.css U:/yaels-qtwebkit/WebCore/css/mathml.css U:/yaels-qtwebkit/WebCore/css/svg.css U:/yaels-qtwebkit/WebCore/css/view-source.css U:/yaels-qtwebkit/WebCore/css/wml.css U:/yaels-qtwebkit/WebCore/css/mediaControls.css U:/yaels-qtwebkit/WebCore/css/mediaControlsQt.css U:/yaels-qtwebkit/WebCore/css/themeQtNoListboxes.css U:/yaels-qtwebkit/WebCore/css/themeQtMaemo5.css - -compiler_xpathbison_make_all: generated\XPathGrammar.cpp -compiler_xpathbison_clean: - -$(DEL_FILE) generated\XPathGrammar.cpp -generated\XPathGrammar.cpp: config.h \ - xml\XPathFunctions.h \ - xml\XPathExpressionNode.h \ - xml\XPathValue.h \ - xml\XPathNodeSet.h \ - xml\XPathNSResolver.h \ - xml\XPathParser.h \ - xml\XPathStep.h \ - xml\XPathPredicate.h \ - xml\XPathPath.h \ - xml\XPathVariableReference.h \ - xml\XPathGrammar.y \ - xml\XPathGrammar.y - bison -d -p xpathyy u:\yaels-qtwebkit\WebCore\xml\XPathGrammar.y -o generated/XPathGrammar.tab.c && $(MOVE) generated\XPathGrammar.tab.c generated\XPathGrammar.cpp && $(MOVE) generated\XPathGrammar.tab.h generated\XPathGrammar.h - -compiler_webkitversion_make_all: generated\WebKitVersion.h -compiler_webkitversion_clean: - -$(DEL_FILE) generated/WebKitVersion.h -generated\WebKitVersion.h: ..\WebKit\scripts\generate-webkitversion.pl \ - ..\WebKit\scripts\generate-webkitversion.pl - perl U:/yaels-qtwebkit/WebCore/../WebKit/scripts/generate-webkitversion.pl --config U:/yaels-qtwebkit/WebCore/../WebKit/mac/Configurations/Version.xcconfig --outputDir generated/ - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_mathmlnames_clean compiler_svgnames_clean compiler_xlinknames_clean compiler_cssprops_clean compiler_cssvalues_clean compiler_idl_clean compiler_inspectorIDL_clean compiler_tokenizer_clean compiler_cssbison_clean compiler_htmlnames_clean compiler_xmlnsnames_clean compiler_xmlnames_clean compiler_entities_clean compiler_doctypestrings_clean compiler_colordata_clean compiler_stylesheets_clean compiler_xpathbison_clean compiler_webkitversion_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebCore\Makefile.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\WebCore\Makefile.DerivedSources" - -@ if EXIST "u:\yaels-qtwebkit\WebCore\DerivedSources_0xEa3ab78e.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebCore\DerivedSources_0xEa3ab78e.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebCore\bld.inf.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\WebCore\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/QtWebKit_installer.pkg --- a/WebCore/QtWebKit_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/WebCore/QtWebKit_installer.pkg generated by qmake at 2010-08-17T12:44:21 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtWebKit installer"},(0xA000D7CE),4,8,0 - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - -; Localised Vendor name -%{"Nokia, Qt"} - -; Unique Vendor name -:"Nokia, Qt" - -; Default dependency to QtMobility libraries - - -"Z:/qtwebkit-symbian-qtp/WebCore/QtWebKit.sis" - "c:\private\2002CCCE\import\QtWebKit.sis" -@"Z:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/QtWebKit_stub.pkg --- a/WebCore/QtWebKit_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/WebCore/QtWebKit_stub.pkg generated by qmake at 2010-08-17T12:44:21 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtWebKit"},(0x200267C2),4,8,0 - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - -; Localised Vendor name -%{"Nokia, Qt"} - -; Unique Vendor name -:"Nokia, Qt" - -; Default dependency to QtMobility libraries - -"" - "z:\sys\bin\qmlwebkitplugin.dll" -"" - "z:\resource\qt\imports\QtWebKit\qmlwebkitplugin.qtplugin" -"" - "z:\resource\qt\imports\QtWebKit\qmldir" -"" - "z:\sys\bin\QtWebKit.dll" -"" - "z:\private\10202D56\import\packages\200267C2\backup_registration.xml" - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/QtWebKit_template.pkg --- a/WebCore/QtWebKit_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -; Z:/qtwebkit-symbian-qtp/WebCore/QtWebKit_template.pkg generated by qmake at 2010-08-17T12:44:21 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtWebKit"},(0x200267C2),4,8,0 - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - -; Localised Vendor name -%{"Nokia, Qt"} - -; Unique Vendor name -:"Nokia, Qt" - -; Default dependency to QtMobility libraries -(0x2002AC89), 1, 0, 2, {"QtMobility"} - -; DEPLOYMENT -"/epoc32/release/$(PLATFORM)/$(TARGET)/qmlwebkitplugin.dll" - "c:\sys\bin\qmlwebkitplugin.dll" -"/epoc32/data/z/resource/qt/imports/QtWebKit/qmlwebkitplugin.qtplugin" - "c:\resource\qt\imports\QtWebKit\qmlwebkitplugin.qtplugin" -"/epoc32/data/z/resource/qt/imports/QtWebKit/qmldir" - "c:\resource\qt\imports\QtWebKit\qmldir" -"/epoc32/release/$(PLATFORM)/$(TARGET)/QtWebKit.dll" - "!:\sys\bin\QtWebKit.dll" -"/epoc32/data/z/private/10202D56/import/packages/200267C2/backup_registration.xml" - "!:\private\10202D56\import\packages\200267C2\backup_registration.xml" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/WebCore.pri --- a/WebCore/WebCore.pri Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/WebCore.pri Mon Oct 04 01:32:07 2010 +0300 @@ -11,6 +11,10 @@ DEFINES += ENABLE_NETSCAPE_PLUGIN_API=0 } +CONFIG(production) { + DEFINES += ENABLE_XSLT=0 +} + ## load mobilityconfig if mobility is available load(mobilityconfig, true) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/WebCore.pro --- a/WebCore/WebCore.pro Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/WebCore.pro Mon Oct 04 01:32:07 2010 +0300 @@ -38,11 +38,6 @@ DEPLOYMENT += webkitlibs webkitbackup - # Need to guarantee that these come before system includes of /epoc32/include - MMP_RULES += "USERINCLUDE bridge" - MMP_RULES += "USERINCLUDE platform/animation" - MMP_RULES += "USERINCLUDE platform/text" - MMP_RULES += "USERINCLUDE rendering" symbian-abld|symbian-sbsv2 { # RO text (code) section in qtwebkit.dll exceeds allocated space for gcce udeb target. # Move RW-section base address to start from 0xE00000 instead of the toolchain default 0x400000. @@ -136,17 +131,11 @@ RESOURCES += \ $$PWD/../WebCore/WebCore.qrc -!symbian:!maemo5 { - RESOURCES += $$PWD/../WebCore/inspector/front-end/WebKit.qrc -} +include_webinspector: RESOURCES += $$PWD/../WebCore/inspector/front-end/WebKit.qrc -maemo5|symbian|embedded { - DEFINES += ENABLE_FAST_MOBILE_SCROLLING=1 -} +enable_fast_mobile_scrolling: DEFINES += ENABLE_FAST_MOBILE_SCROLLING=1 -maemo5|symbian { - DEFINES += WTF_USE_QT_MOBILE_THEME=1 -} +use_qt_mobile_theme: DEFINES += WTF_USE_QT_MOBILE_THEME=1 contains(DEFINES, WTF_USE_QT_MOBILE_THEME=1) { DEFINES += ENABLE_NO_LISTBOX_RENDERING=1 @@ -176,7 +165,7 @@ } include(WebCore.pri) -INCLUDEPATH = \ +WEBCORE_INCLUDEPATH = \ $$PWD \ $$PWD/accessibility \ $$PWD/bindings \ @@ -224,10 +213,9 @@ $$PWD/wml \ $$PWD/workers \ $$PWD/xml \ - $$WC_GENERATED_SOURCES_DIR \ - $$INCLUDEPATH + $$WC_GENERATED_SOURCES_DIR -INCLUDEPATH = \ +WEBCORE_INCLUDEPATH = \ $$PWD/bridge/qt \ $$PWD/page/qt \ $$PWD/platform/graphics/qt \ @@ -235,7 +223,13 @@ $$PWD/platform/qt \ $$PWD/../WebKit/qt/Api \ $$PWD/../WebKit/qt/WebCoreSupport \ - $$INCLUDEPATH + $$WEBCORE_INCLUDEPATH + +symbian { + PREPEND_INCLUDEPATH = $$WEBCORE_INCLUDEPATH $$PREPEND_INCLUDEPATH +} else { + INCLUDEPATH = $$WEBCORE_INCLUDEPATH $$INCLUDEPATH +} QT += network @@ -2138,6 +2132,7 @@ $$PWD/../WebKit/qt/Api/qwebplugindatabase_p.h \ $$PWD/../WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h \ $$PWD/../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h \ + $$PWD/../WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.h \ $$PWD/../WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.h \ $$PWD/../WebKit/qt/WebCoreSupport/PageClientQt.h \ $$PWD/../WebKit/qt/WebCoreSupport/QtPlatformPlugin.h \ @@ -2228,6 +2223,7 @@ ../WebKit/qt/WebCoreSupport/EditorClientQt.cpp \ ../WebKit/qt/WebCoreSupport/EditCommandQt.cpp \ ../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp \ + ../WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp \ ../WebKit/qt/WebCoreSupport/InspectorClientQt.cpp \ ../WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp \ ../WebKit/qt/WebCoreSupport/PageClientQt.cpp \ @@ -2320,6 +2316,9 @@ CONFIG += x11 LIBS += -lXrender } + maemo5 { + DEFINES += MOZ_PLATFORM_MAEMO=5 + } SOURCES += \ plugins/qt/PluginContainerQt.cpp \ plugins/qt/PluginPackageQt.cpp \ @@ -2327,6 +2326,7 @@ HEADERS += \ plugins/qt/PluginContainerQt.h DEFINES += XP_UNIX + DEFINES += ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE=1 } } @@ -2722,6 +2722,7 @@ } contains(DEFINES, ENABLE_GEOLOCATION=1) { + DEFINES += WTF_USE_PREEMPT_GEOLOCATION_PERMISSION HEADERS += \ platform/qt/GeolocationServiceQt.h SOURCES += \ diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/WebCore_0x200267C2.mmp --- a/WebCore/WebCore_0x200267C2.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2055 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:25 -// This file is generated by qmake and should not be modified by the -// user. -// Name : WebCore.mmp -// ============================================================================== - -TARGET QtWebKit.dll -TARGETTYPE DLL - -UID 0x1000008d 0x200267C2 -SECUREID 0x200267C2 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 -EPOCALLOWDLLDATA - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO QT_NO_UITOOLS -MACRO QT_MAKEDLL -MACRO BUILD_WEBKIT -MACRO ENABLE_FAST_MOBILE_SCROLLING=1 -MACRO WTF_USE_QT_MOBILE_THEME=1 -MACRO ENABLE_NO_LISTBOX_RENDERING=1 -MACRO NDEBUG -MACRO BUILDING_QT__ -MACRO BUILDING_JavaScriptCore -MACRO BUILDING_WTF -MACRO ENABLE_JAVASCRIPT_DEBUGGER=1 -MACRO ENABLE_DATABASE=1 -MACRO ENABLE_EVENTSOURCE=1 -MACRO ENABLE_OFFLINE_WEB_APPLICATIONS=1 -MACRO ENABLE_DOM_STORAGE=1 -MACRO ENABLE_ICONDATABASE=1 -MACRO ENABLE_CHANNEL_MESSAGING=1 -MACRO ENABLE_ORIENTATION_EVENTS=0 -MACRO ENABLE_DIRECTORY_UPLOAD=0 -MACRO ENABLE_SQLITE=1 -MACRO ENABLE_DASHBOARD_SUPPORT=0 -MACRO ENABLE_FILTERS=1 -MACRO ENABLE_XPATH=1 -MACRO ENABLE_WCSS=0 -MACRO ENABLE_WML=0 -MACRO ENABLE_SHARED_WORKERS=1 -MACRO ENABLE_WORKERS=1 -MACRO ENABLE_XHTMLMP=0 -MACRO ENABLE_DATAGRID=0 -MACRO ENABLE_RUBY=1 -MACRO ENABLE_SANDBOX=1 -MACRO ENABLE_METER_TAG=1 -MACRO ENABLE_PROGRESS_TAG=1 -MACRO ENABLE_BLOB_SLICE=0 -MACRO ENABLE_NOTIFICATIONS=1 -MACRO ENABLE_IMAGE_RESIZER=0 -MACRO ENABLE_INPUT_SPEECH=0 -MACRO ENABLE_HAPTICS=1 -MACRO ENABLE_3D_RENDERING=1 -MACRO ENABLE_SVG=1 -MACRO ENABLE_SVG_FONTS=1 -MACRO ENABLE_SVG_FOREIGN_OBJECT=1 -MACRO ENABLE_SVG_ANIMATION=1 -MACRO ENABLE_SVG_AS_IMAGE=1 -MACRO ENABLE_SVG_USE=1 -MACRO ENABLE_DATALIST=1 -MACRO ENABLE_TILED_BACKING_STORE=1 -MACRO ENABLE_NETSCAPE_PLUGIN_API=1 -MACRO ENABLE_WEB_SOCKETS=1 -MACRO ENABLE_WEB_TIMING=0 -MACRO ENABLE_XSLT=1 -MACRO ENABLE_GEOLOCATION=1 -MACRO ENABLE_QT_BEARER=1 -MACRO ENABLE_TOUCH_EVENTS=1 -MACRO ENABLE_TRANSFORMACTION_EVENTS=1 -MACRO ENABLE_VIDEO=1 -MACRO WTF_USE_QT_MULTIMEDIA -MACRO QT_XMLPATTERNS_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtXmlPatterns -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE /epoc32/include/mw/QtMultimediaKit -SYSTEMINCLUDE /epoc32/include/mw/QtLocation -SYSTEMINCLUDE bridge/qt -SYSTEMINCLUDE page/qt -SYSTEMINCLUDE platform/graphics/qt -SYSTEMINCLUDE platform/network/qt -SYSTEMINCLUDE platform/qt -SYSTEMINCLUDE ../WebKit/qt/Api -SYSTEMINCLUDE ../WebKit/qt/WebCoreSupport -SYSTEMINCLUDE . -SYSTEMINCLUDE accessibility -SYSTEMINCLUDE bindings -SYSTEMINCLUDE bindings/generic -SYSTEMINCLUDE bindings/js -SYSTEMINCLUDE bridge -SYSTEMINCLUDE bridge/c -SYSTEMINCLUDE bridge/jsc -SYSTEMINCLUDE css -SYSTEMINCLUDE dom -SYSTEMINCLUDE dom/default -SYSTEMINCLUDE editing -SYSTEMINCLUDE history -SYSTEMINCLUDE html -SYSTEMINCLUDE html/canvas -SYSTEMINCLUDE inspector -SYSTEMINCLUDE loader -SYSTEMINCLUDE loader/appcache -SYSTEMINCLUDE loader/archive -SYSTEMINCLUDE loader/icon -SYSTEMINCLUDE mathml -SYSTEMINCLUDE notifications -SYSTEMINCLUDE page -SYSTEMINCLUDE page/animation -SYSTEMINCLUDE platform -SYSTEMINCLUDE platform/animation -SYSTEMINCLUDE platform/graphics -SYSTEMINCLUDE platform/graphics/filters -SYSTEMINCLUDE platform/graphics/transforms -SYSTEMINCLUDE platform/image-decoders -SYSTEMINCLUDE platform/mock -SYSTEMINCLUDE platform/network -SYSTEMINCLUDE platform/sql -SYSTEMINCLUDE platform/text -SYSTEMINCLUDE platform/text/transcoder -SYSTEMINCLUDE plugins -SYSTEMINCLUDE rendering -SYSTEMINCLUDE rendering/style -SYSTEMINCLUDE storage -SYSTEMINCLUDE svg -SYSTEMINCLUDE svg/animation -SYSTEMINCLUDE svg/graphics -SYSTEMINCLUDE svg/graphics/filters -SYSTEMINCLUDE websockets -SYSTEMINCLUDE wml -SYSTEMINCLUDE workers -SYSTEMINCLUDE xml -SYSTEMINCLUDE generated -SYSTEMINCLUDE ../JavaScriptCore -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../JavaScriptCore/assembler -SYSTEMINCLUDE ../JavaScriptCore/bytecode -SYSTEMINCLUDE ../JavaScriptCore/bytecompiler -SYSTEMINCLUDE ../JavaScriptCore/debugger -SYSTEMINCLUDE ../JavaScriptCore/interpreter -SYSTEMINCLUDE ../JavaScriptCore/jit -SYSTEMINCLUDE ../JavaScriptCore/parser -SYSTEMINCLUDE ../JavaScriptCore/pcre -SYSTEMINCLUDE ../JavaScriptCore/profiler -SYSTEMINCLUDE ../JavaScriptCore/runtime -SYSTEMINCLUDE ../JavaScriptCore/wtf -SYSTEMINCLUDE ../JavaScriptCore/wtf/symbian -SYSTEMINCLUDE ../JavaScriptCore/wtf/unicode -SYSTEMINCLUDE ../JavaScriptCore/yarr -SYSTEMINCLUDE ../JavaScriptCore/API -SYSTEMINCLUDE ../JavaScriptCore/ForwardingHeaders -SYSTEMINCLUDE ../JavaScriptCore/generated -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../include/QtWebKit -SYSTEMINCLUDE ../../sf/mw/qt/src/3rdparty/sqlite -SYSTEMINCLUDE ../../QtLocation -SYSTEMINCLUDE ../../QtMultimediaKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE platform/text/qt -SYSTEMINCLUDE plugins/win -SYSTEMINCLUDE plugins/symbian -SYSTEMINCLUDE history/qt -SYSTEMINCLUDE platform/image-decoders/qt -SYSTEMINCLUDE accessibility/qt -SYSTEMINCLUDE editing/qt -SYSTEMINCLUDE plugins/qt - -SOURCEPATH . -SOURCE moc_qwebplugindatabase_p.cpp -SOURCE moc_QtFallbackWebPopup.cpp -SOURCE moc_QtPlatformPlugin.cpp -SOURCE moc_DnsPrefetchHelper.cpp -SOURCE moc_PluginContainerSymbian.cpp -SOURCE moc_GeolocationServiceQt.cpp -SOURCE moc_qwebframe.cpp -SOURCE moc_qwebkitplatformplugin.cpp -SOURCE moc_qwebhistoryinterface.cpp -SOURCE moc_qwebpluginfactory.cpp -SOURCE moc_qwebinspector.cpp -SOURCE qrc_WebCore.cpp - -SOURCEPATH accessibility -SOURCE AccessibilityImageMapLink.cpp -SOURCE AccessibilityMediaControls.cpp -SOURCE AccessibilityMenuList.cpp -SOURCE AccessibilityMenuListOption.cpp -SOURCE AccessibilityMenuListPopup.cpp -SOURCE AccessibilityObject.cpp -SOURCE AccessibilityList.cpp -SOURCE AccessibilityListBox.cpp -SOURCE AccessibilityListBoxOption.cpp -SOURCE AccessibilityProgressIndicator.cpp -SOURCE AccessibilityRenderObject.cpp -SOURCE AccessibilityScrollbar.cpp -SOURCE AccessibilitySlider.cpp -SOURCE AccessibilityARIAGrid.cpp -SOURCE AccessibilityARIAGridCell.cpp -SOURCE AccessibilityARIAGridRow.cpp -SOURCE AccessibilityTable.cpp -SOURCE AccessibilityTableCell.cpp -SOURCE AccessibilityTableColumn.cpp -SOURCE AccessibilityTableHeaderContainer.cpp -SOURCE AccessibilityTableRow.cpp -SOURCE AXObjectCache.cpp - -SOURCEPATH accessibility/qt -SOURCE AccessibilityObjectQt.cpp - -SOURCEPATH bindings -SOURCE ScriptControllerBase.cpp - -SOURCEPATH bindings/generic -SOURCE RuntimeEnabledFeatures.cpp - -SOURCEPATH bindings/js -SOURCE GCController.cpp -SOURCE DOMObjectHashTableMap.cpp -SOURCE DOMWrapperWorld.cpp -SOURCE JSCallbackData.cpp -SOURCE JSAttrCustom.cpp -SOURCE JSCDATASectionCustom.cpp -SOURCE JSCanvasRenderingContextCustom.cpp -SOURCE JSCanvasRenderingContext2DCustom.cpp -SOURCE JSClipboardCustom.cpp -SOURCE JSConsoleCustom.cpp -SOURCE JSCSSRuleCustom.cpp -SOURCE JSCSSRuleListCustom.cpp -SOURCE JSCSSStyleDeclarationCustom.cpp -SOURCE JSCSSValueCustom.cpp -SOURCE JSCoordinatesCustom.cpp -SOURCE JSCustomPositionCallback.cpp -SOURCE JSCustomPositionErrorCallback.cpp -SOURCE JSCustomVoidCallback.cpp -SOURCE JSCustomXPathNSResolver.cpp -SOURCE JSDataGridColumnListCustom.cpp -SOURCE JSDataGridDataSource.cpp -SOURCE JSDebugWrapperSet.cpp -SOURCE JSDesktopNotificationsCustom.cpp -SOURCE JSDeviceOrientationEventCustom.cpp -SOURCE JSDocumentCustom.cpp -SOURCE JSDOMFormDataCustom.cpp -SOURCE JSDOMGlobalObject.cpp -SOURCE JSDOMStringMapCustom.cpp -SOURCE JSDOMWindowBase.cpp -SOURCE JSDOMWindowCustom.cpp -SOURCE JSDOMWindowShell.cpp -SOURCE JSDOMWrapper.cpp -SOURCE JSElementCustom.cpp -SOURCE JSEventCustom.cpp -SOURCE JSEventSourceCustom.cpp -SOURCE JSEventTarget.cpp -SOURCE JSExceptionBase.cpp -SOURCE JSGeolocationCustom.cpp -SOURCE JSHistoryCustom.cpp -SOURCE JSHTMLAppletElementCustom.cpp -SOURCE JSHTMLCanvasElementCustom.cpp -SOURCE JSHTMLAllCollectionCustom.cpp -SOURCE JSHTMLCollectionCustom.cpp -SOURCE JSHTMLDataGridElementCustom.cpp -SOURCE JSHTMLDocumentCustom.cpp -SOURCE JSHTMLElementCustom.cpp -SOURCE JSHTMLEmbedElementCustom.cpp -SOURCE JSHTMLFormElementCustom.cpp -SOURCE JSHTMLFrameElementCustom.cpp -SOURCE JSHTMLFrameSetElementCustom.cpp -SOURCE JSHTMLInputElementCustom.cpp -SOURCE JSHTMLObjectElementCustom.cpp -SOURCE JSHTMLOptionsCollectionCustom.cpp -SOURCE JSHTMLSelectElementCustom.cpp -SOURCE JSImageConstructor.cpp -SOURCE JSImageDataCustom.cpp -SOURCE JSInjectedScriptHostCustom.cpp -SOURCE JSInspectorFrontendHostCustom.cpp -SOURCE JSLocationCustom.cpp -SOURCE JSNamedNodeMapCustom.cpp -SOURCE JSNavigatorCustom.cpp -SOURCE JSNodeCustom.cpp -SOURCE JSNodeFilterCondition.cpp -SOURCE JSNodeFilterCustom.cpp -SOURCE JSNodeIteratorCustom.cpp -SOURCE JSNodeListCustom.cpp -SOURCE JSOptionConstructor.cpp -SOURCE JSScriptProfileNodeCustom.cpp -SOURCE JSStyleSheetCustom.cpp -SOURCE JSStyleSheetListCustom.cpp -SOURCE JSTextCustom.cpp -SOURCE JSTreeWalkerCustom.cpp -SOURCE JSWebKitCSSMatrixCustom.cpp -SOURCE JSWebKitPointCustom.cpp -SOURCE JSXMLHttpRequestCustom.cpp -SOURCE JSXMLHttpRequestUploadCustom.cpp -SOURCE JSDOMPluginCustom.cpp -SOURCE JSDOMPluginArrayCustom.cpp -SOURCE JSMessageChannelCustom.cpp -SOURCE JSMessageEventCustom.cpp -SOURCE JSMessagePortCustom.cpp -SOURCE JSDOMMimeTypeArrayCustom.cpp -SOURCE JSDOMBinding.cpp -SOURCE JSEventListener.cpp -SOURCE JSLazyEventListener.cpp -SOURCE JSMainThreadExecState.cpp -SOURCE JSPluginElementFunctions.cpp -SOURCE JSPopStateEventCustom.cpp -SOURCE JSWorkerContextErrorHandler.cpp -SOURCE ScriptArray.cpp -SOURCE ScriptCachedFrameData.cpp -SOURCE ScriptCallFrame.cpp -SOURCE ScriptCallStack.cpp -SOURCE ScriptController.cpp -SOURCE ScriptDebugServer.cpp -SOURCE ScriptEventListener.cpp -SOURCE ScriptFunctionCall.cpp -SOURCE ScriptGCEvent.cpp -SOURCE ScriptObject.cpp -SOURCE ScriptState.cpp -SOURCE ScriptValue.cpp -SOURCE ScheduledAction.cpp -SOURCE SerializedScriptValue.cpp -SOURCE ScriptControllerQt.cpp -SOURCE JSCustomSQLStatementErrorCallback.cpp -SOURCE JSDatabaseCustom.cpp -SOURCE JSDatabaseSyncCustom.cpp -SOURCE JSSQLResultSetRowListCustom.cpp -SOURCE JSSQLTransactionCustom.cpp -SOURCE JSSQLTransactionSyncCustom.cpp -SOURCE JSStorageCustom.cpp -SOURCE JSDedicatedWorkerContextCustom.cpp -SOURCE JSWorkerContextBase.cpp -SOURCE JSWorkerContextCustom.cpp -SOURCE JSWorkerCustom.cpp -SOURCE WorkerScriptController.cpp -SOURCE JSSharedWorkerCustom.cpp -SOURCE JSAudioConstructor.cpp -SOURCE JSXSLTProcessorCustom.cpp -SOURCE JSSVGElementInstanceCustom.cpp -SOURCE JSSVGLengthCustom.cpp -SOURCE JSSVGMatrixCustom.cpp -SOURCE JSSVGPathSegCustom.cpp -SOURCE JSSVGPathSegListCustom.cpp -SOURCE JSJavaScriptCallFrameCustom.cpp -SOURCE ScriptProfiler.cpp -SOURCE JavaScriptCallFrame.cpp -SOURCE JSDOMApplicationCacheCustom.cpp -SOURCE JSWebSocketCustom.cpp - -SOURCEPATH bridge -SOURCE IdentifierRep.cpp -SOURCE NP_jsobject.cpp -SOURCE npruntime.cpp -SOURCE runtime_array.cpp -SOURCE runtime_method.cpp -SOURCE runtime_object.cpp -SOURCE runtime_root.cpp - -SOURCEPATH bridge/c -SOURCE CRuntimeObject.cpp -SOURCE c_class.cpp -SOURCE c_instance.cpp -SOURCE c_runtime.cpp -SOURCE c_utility.cpp - -SOURCEPATH bridge/jsc -SOURCE BridgeJSC.cpp - -SOURCEPATH bridge/qt -SOURCE qt_class.cpp -SOURCE qt_instance.cpp -SOURCE qt_pixmapruntime.cpp -SOURCE qt_runtime.cpp - -SOURCEPATH css -SOURCE CSSBorderImageValue.cpp -SOURCE CSSCanvasValue.cpp -SOURCE CSSCharsetRule.cpp -SOURCE CSSComputedStyleDeclaration.cpp -SOURCE CSSCursorImageValue.cpp -SOURCE CSSFontFace.cpp -SOURCE CSSFontFaceRule.cpp -SOURCE CSSFontFaceSrcValue.cpp -SOURCE CSSFontSelector.cpp -SOURCE CSSFontFaceSource.cpp -SOURCE CSSFunctionValue.cpp -SOURCE CSSGradientValue.cpp -SOURCE CSSHelper.cpp -SOURCE CSSImageValue.cpp -SOURCE CSSImageGeneratorValue.cpp -SOURCE CSSImportRule.cpp -SOURCE CSSInheritedValue.cpp -SOURCE CSSInitialValue.cpp -SOURCE CSSMediaRule.cpp -SOURCE CSSMutableStyleDeclaration.cpp -SOURCE CSSOMUtils.cpp -SOURCE CSSPageRule.cpp -SOURCE CSSParser.cpp -SOURCE CSSParserValues.cpp -SOURCE CSSPrimitiveValue.cpp -SOURCE CSSProperty.cpp -SOURCE CSSPropertyLonghand.cpp -SOURCE CSSReflectValue.cpp -SOURCE CSSRule.cpp -SOURCE CSSRuleList.cpp -SOURCE CSSSelector.cpp -SOURCE CSSSelectorList.cpp -SOURCE CSSSegmentedFontFace.cpp -SOURCE CSSStyleDeclaration.cpp -SOURCE CSSStyleRule.cpp -SOURCE CSSStyleSelector.cpp -SOURCE CSSStyleSheet.cpp -SOURCE CSSTimingFunctionValue.cpp -SOURCE CSSUnicodeRangeValue.cpp -SOURCE CSSValueList.cpp -SOURCE CSSVariableDependentValue.cpp -SOURCE CSSVariablesDeclaration.cpp -SOURCE CSSVariablesRule.cpp -SOURCE FontFamilyValue.cpp -SOURCE FontValue.cpp -SOURCE MediaFeatureNames.cpp -SOURCE MediaList.cpp -SOURCE MediaQuery.cpp -SOURCE MediaQueryEvaluator.cpp -SOURCE MediaQueryExp.cpp -SOURCE RGBColor.cpp -SOURCE ShadowValue.cpp -SOURCE StyleBase.cpp -SOURCE StyleList.cpp -SOURCE StyleMedia.cpp -SOURCE StyleSheet.cpp -SOURCE StyleSheetList.cpp -SOURCE WebKitCSSKeyframeRule.cpp -SOURCE WebKitCSSKeyframesRule.cpp -SOURCE WebKitCSSMatrix.cpp -SOURCE WebKitCSSTransformValue.cpp -SOURCE SVGCSSComputedStyleDeclaration.cpp -SOURCE SVGCSSParser.cpp -SOURCE SVGCSSStyleSelector.cpp - -SOURCEPATH dom -SOURCE ActiveDOMObject.cpp -SOURCE Attr.cpp -SOURCE Attribute.cpp -SOURCE BeforeProcessEvent.cpp -SOURCE BeforeTextInsertedEvent.cpp -SOURCE BeforeUnloadEvent.cpp -SOURCE CDATASection.cpp -SOURCE CharacterData.cpp -SOURCE CheckedRadioButtons.cpp -SOURCE ChildNodeList.cpp -SOURCE ClassNodeList.cpp -SOURCE ClientRect.cpp -SOURCE ClientRectList.cpp -SOURCE Clipboard.cpp -SOURCE ClipboardEvent.cpp -SOURCE Comment.cpp -SOURCE CompositionEvent.cpp -SOURCE ContainerNode.cpp -SOURCE CSSMappedAttributeDeclaration.cpp -SOURCE CustomEvent.cpp -SOURCE DecodedDataDocumentParser.cpp -SOURCE DeviceOrientation.cpp -SOURCE DeviceOrientationController.cpp -SOURCE DeviceOrientationEvent.cpp -SOURCE Document.cpp -SOURCE DocumentFragment.cpp -SOURCE DocumentParser.cpp -SOURCE DocumentType.cpp -SOURCE DOMImplementation.cpp -SOURCE DOMStringList.cpp -SOURCE DOMStringMap.cpp -SOURCE DatasetDOMStringMap.cpp -SOURCE DynamicNodeList.cpp -SOURCE EditingText.cpp -SOURCE Element.cpp -SOURCE Entity.cpp -SOURCE EntityReference.cpp -SOURCE ErrorEvent.cpp -SOURCE Event.cpp -SOURCE EventNames.cpp -SOURCE EventTarget.cpp -SOURCE ExceptionBase.cpp -SOURCE ExceptionCode.cpp -SOURCE InputElement.cpp -SOURCE KeyboardEvent.cpp -SOURCE MessageChannel.cpp -SOURCE MessageEvent.cpp -SOURCE MessagePort.cpp -SOURCE MessagePortChannel.cpp -SOURCE MouseEvent.cpp -SOURCE MouseRelatedEvent.cpp -SOURCE MutationEvent.cpp -SOURCE NamedNodeMap.cpp -SOURCE NameNodeList.cpp -SOURCE Node.cpp -SOURCE NodeFilterCondition.cpp -SOURCE NodeFilter.cpp -SOURCE NodeIterator.cpp -SOURCE Notation.cpp -SOURCE OptionGroupElement.cpp -SOURCE OptionElement.cpp -SOURCE StaticHashSetNodeList.cpp -SOURCE OverflowEvent.cpp -SOURCE PageTransitionEvent.cpp -SOURCE PopStateEvent.cpp -SOURCE Position.cpp -SOURCE PositionIterator.cpp -SOURCE ProcessingInstruction.cpp -SOURCE ProgressEvent.cpp -SOURCE QualifiedName.cpp -SOURCE Range.cpp -SOURCE RegisteredEventListener.cpp -SOURCE ScriptableDocumentParser.cpp -SOURCE ScriptElement.cpp -SOURCE ScriptExecutionContext.cpp -SOURCE SelectElement.cpp -SOURCE SelectorNodeList.cpp -SOURCE SpaceSplitString.cpp -SOURCE StaticNodeList.cpp -SOURCE StyledElement.cpp -SOURCE StyleElement.cpp -SOURCE TagNodeList.cpp -SOURCE Text.cpp -SOURCE TextEvent.cpp -SOURCE Touch.cpp -SOURCE TouchEvent.cpp -SOURCE TouchList.cpp -SOURCE TransformActionEvent.cpp -SOURCE Traversal.cpp -SOURCE TreeWalker.cpp -SOURCE UIEvent.cpp -SOURCE UIEventWithKeyState.cpp -SOURCE UserGestureIndicator.cpp -SOURCE ViewportArguments.cpp -SOURCE WebKitAnimationEvent.cpp -SOURCE WebKitTransitionEvent.cpp -SOURCE WheelEvent.cpp -SOURCE XMLDocumentParser.cpp -SOURCE XMLDocumentParserQt.cpp -SOURCE TransformSourceQt.cpp - -SOURCEPATH dom/default -SOURCE PlatformMessagePortChannel.cpp - -SOURCEPATH editing -SOURCE AppendNodeCommand.cpp -SOURCE ApplyStyleCommand.cpp -SOURCE BreakBlockquoteCommand.cpp -SOURCE CompositeEditCommand.cpp -SOURCE CreateLinkCommand.cpp -SOURCE DeleteButtonController.cpp -SOURCE DeleteButton.cpp -SOURCE DeleteFromTextNodeCommand.cpp -SOURCE DeleteSelectionCommand.cpp -SOURCE EditCommand.cpp -SOURCE Editor.cpp -SOURCE EditorCommand.cpp -SOURCE FormatBlockCommand.cpp -SOURCE htmlediting.cpp -SOURCE HTMLInterchange.cpp -SOURCE IndentOutdentCommand.cpp -SOURCE InsertIntoTextNodeCommand.cpp -SOURCE InsertLineBreakCommand.cpp -SOURCE InsertListCommand.cpp -SOURCE InsertNodeBeforeCommand.cpp -SOURCE InsertParagraphSeparatorCommand.cpp -SOURCE InsertTextCommand.cpp -SOURCE JoinTextNodesCommand.cpp -SOURCE markup.cpp -SOURCE MergeIdenticalElementsCommand.cpp -SOURCE ModifySelectionListLevel.cpp -SOURCE MoveSelectionCommand.cpp -SOURCE RemoveCSSPropertyCommand.cpp -SOURCE RemoveFormatCommand.cpp -SOURCE RemoveNodeCommand.cpp -SOURCE RemoveNodePreservingChildrenCommand.cpp -SOURCE ReplaceNodeWithSpanCommand.cpp -SOURCE ReplaceSelectionCommand.cpp -SOURCE SelectionController.cpp -SOURCE SetNodeAttributeCommand.cpp -SOURCE SmartReplaceICU.cpp -SOURCE SplitElementCommand.cpp -SOURCE SplitTextNodeCommand.cpp -SOURCE SplitTextNodeContainingElementCommand.cpp -SOURCE TextIterator.cpp -SOURCE TypingCommand.cpp -SOURCE UnlinkCommand.cpp -SOURCE VisiblePosition.cpp -SOURCE VisibleSelection.cpp -SOURCE visible_units.cpp -SOURCE WrapContentsInDummySpanCommand.cpp - -SOURCEPATH editing/qt -SOURCE EditorQt.cpp -SOURCE SmartReplaceQt.cpp - -SOURCEPATH generated -SOURCE MathMLNames.cpp -SOURCE MathMLElementFactory.cpp -SOURCE SVGNames.cpp -SOURCE SVGElementFactory.cpp -SOURCE JSSVGElementWrapperFactory.cpp -SOURCE XLinkNames.cpp -SOURCE JSCounter.cpp -SOURCE JSCSSCharsetRule.cpp -SOURCE JSCSSFontFaceRule.cpp -SOURCE JSCSSImportRule.cpp -SOURCE JSCSSMediaRule.cpp -SOURCE JSCSSPageRule.cpp -SOURCE JSCSSPrimitiveValue.cpp -SOURCE JSCSSRule.cpp -SOURCE JSCSSRuleList.cpp -SOURCE JSCSSStyleDeclaration.cpp -SOURCE JSCSSStyleRule.cpp -SOURCE JSCSSStyleSheet.cpp -SOURCE JSCSSValue.cpp -SOURCE JSCSSValueList.cpp -SOURCE JSCSSVariablesDeclaration.cpp -SOURCE JSCSSVariablesRule.cpp -SOURCE JSMediaList.cpp -SOURCE JSRect.cpp -SOURCE JSRGBColor.cpp -SOURCE JSStyleMedia.cpp -SOURCE JSStyleSheet.cpp -SOURCE JSStyleSheetList.cpp -SOURCE JSWebKitCSSKeyframeRule.cpp -SOURCE JSWebKitCSSKeyframesRule.cpp -SOURCE JSWebKitCSSMatrix.cpp -SOURCE JSWebKitCSSTransformValue.cpp -SOURCE JSAttr.cpp -SOURCE JSBeforeLoadEvent.cpp -SOURCE JSBeforeProcessEvent.cpp -SOURCE JSCharacterData.cpp -SOURCE JSClientRect.cpp -SOURCE JSClientRectList.cpp -SOURCE JSClipboard.cpp -SOURCE JSCDATASection.cpp -SOURCE JSComment.cpp -SOURCE JSCompositionEvent.cpp -SOURCE JSCustomEvent.cpp -SOURCE JSDeviceOrientationEvent.cpp -SOURCE JSDocumentFragment.cpp -SOURCE JSDocument.cpp -SOURCE JSDocumentType.cpp -SOURCE JSDOMCoreException.cpp -SOURCE JSDOMImplementation.cpp -SOURCE JSDOMStringList.cpp -SOURCE JSDOMStringMap.cpp -SOURCE JSElement.cpp -SOURCE JSEntity.cpp -SOURCE JSEntityReference.cpp -SOURCE JSErrorEvent.cpp -SOURCE JSEvent.cpp -SOURCE JSEventException.cpp -SOURCE JSKeyboardEvent.cpp -SOURCE JSMouseEvent.cpp -SOURCE JSMessageChannel.cpp -SOURCE JSMessageEvent.cpp -SOURCE JSMessagePort.cpp -SOURCE JSMutationEvent.cpp -SOURCE JSNamedNodeMap.cpp -SOURCE JSNode.cpp -SOURCE JSNodeFilter.cpp -SOURCE JSNodeIterator.cpp -SOURCE JSNodeList.cpp -SOURCE JSNotation.cpp -SOURCE JSOverflowEvent.cpp -SOURCE JSPageTransitionEvent.cpp -SOURCE JSPopStateEvent.cpp -SOURCE JSProcessingInstruction.cpp -SOURCE JSProgressEvent.cpp -SOURCE JSRangeException.cpp -SOURCE JSRange.cpp -SOURCE JSText.cpp -SOURCE JSTextEvent.cpp -SOURCE JSTouch.cpp -SOURCE JSTouchEvent.cpp -SOURCE JSTouchList.cpp -SOURCE JSTransformActionEvent.cpp -SOURCE JSTreeWalker.cpp -SOURCE JSUIEvent.cpp -SOURCE JSWebKitAnimationEvent.cpp -SOURCE JSWebKitTransitionEvent.cpp -SOURCE JSWheelEvent.cpp -SOURCE JSBlob.cpp -SOURCE JSBlobBuilder.cpp -SOURCE JSArrayBufferView.cpp -SOURCE JSArrayBuffer.cpp -SOURCE JSInt8Array.cpp -SOURCE JSFloat32Array.cpp -SOURCE JSCanvasGradient.cpp -SOURCE JSInt32Array.cpp -SOURCE JSCanvasPattern.cpp -SOURCE JSCanvasRenderingContext.cpp -SOURCE JSCanvasRenderingContext2D.cpp -SOURCE JSWebGLActiveInfo.cpp -SOURCE JSWebGLBuffer.cpp -SOURCE JSWebGLContextAttributes.cpp -SOURCE JSWebGLFramebuffer.cpp -SOURCE JSWebGLProgram.cpp -SOURCE JSWebGLRenderbuffer.cpp -SOURCE JSWebGLRenderingContext.cpp -SOURCE JSWebGLShader.cpp -SOURCE JSInt16Array.cpp -SOURCE JSWebGLTexture.cpp -SOURCE JSWebGLUniformLocation.cpp -SOURCE JSUint8Array.cpp -SOURCE JSUint32Array.cpp -SOURCE JSUint16Array.cpp -SOURCE JSDataGridColumn.cpp -SOURCE JSDataGridColumnList.cpp -SOURCE JSDOMFormData.cpp -SOURCE JSFile.cpp -SOURCE JSFileError.cpp -SOURCE JSFileList.cpp -SOURCE JSFileReader.cpp -SOURCE JSHTMLAllCollection.cpp -SOURCE JSHTMLAudioElement.cpp -SOURCE JSHTMLAnchorElement.cpp -SOURCE JSHTMLAppletElement.cpp -SOURCE JSHTMLAreaElement.cpp -SOURCE JSHTMLBaseElement.cpp -SOURCE JSHTMLBaseFontElement.cpp -SOURCE JSHTMLBlockquoteElement.cpp -SOURCE JSHTMLBodyElement.cpp -SOURCE JSHTMLBRElement.cpp -SOURCE JSHTMLButtonElement.cpp -SOURCE JSHTMLCanvasElement.cpp -SOURCE JSHTMLCollection.cpp -SOURCE JSHTMLDataGridElement.cpp -SOURCE JSHTMLDataGridCellElement.cpp -SOURCE JSHTMLDataGridColElement.cpp -SOURCE JSHTMLDataGridRowElement.cpp -SOURCE JSHTMLDataListElement.cpp -SOURCE JSHTMLDirectoryElement.cpp -SOURCE JSHTMLDivElement.cpp -SOURCE JSHTMLDListElement.cpp -SOURCE JSHTMLDocument.cpp -SOURCE JSHTMLElement.cpp -SOURCE JSHTMLEmbedElement.cpp -SOURCE JSHTMLFieldSetElement.cpp -SOURCE JSHTMLFontElement.cpp -SOURCE JSHTMLFormElement.cpp -SOURCE JSHTMLFrameElement.cpp -SOURCE JSHTMLFrameSetElement.cpp -SOURCE JSHTMLHeadElement.cpp -SOURCE JSHTMLHeadingElement.cpp -SOURCE JSHTMLHRElement.cpp -SOURCE JSHTMLHtmlElement.cpp -SOURCE JSHTMLIFrameElement.cpp -SOURCE JSHTMLImageElement.cpp -SOURCE JSHTMLInputElement.cpp -SOURCE JSHTMLIsIndexElement.cpp -SOURCE JSHTMLLabelElement.cpp -SOURCE JSHTMLLegendElement.cpp -SOURCE JSHTMLLIElement.cpp -SOURCE JSHTMLLinkElement.cpp -SOURCE JSHTMLMapElement.cpp -SOURCE JSHTMLMarqueeElement.cpp -SOURCE JSHTMLMediaElement.cpp -SOURCE JSHTMLMenuElement.cpp -SOURCE JSHTMLMetaElement.cpp -SOURCE JSHTMLMeterElement.cpp -SOURCE JSHTMLModElement.cpp -SOURCE JSHTMLObjectElement.cpp -SOURCE JSHTMLOListElement.cpp -SOURCE JSHTMLOptGroupElement.cpp -SOURCE JSHTMLOptionElement.cpp -SOURCE JSHTMLOptionsCollection.cpp -SOURCE JSHTMLParagraphElement.cpp -SOURCE JSHTMLParamElement.cpp -SOURCE JSHTMLPreElement.cpp -SOURCE JSHTMLProgressElement.cpp -SOURCE JSHTMLQuoteElement.cpp -SOURCE JSHTMLScriptElement.cpp -SOURCE JSHTMLSelectElement.cpp -SOURCE JSHTMLSourceElement.cpp -SOURCE JSHTMLStyleElement.cpp -SOURCE JSHTMLTableCaptionElement.cpp -SOURCE JSHTMLTableCellElement.cpp -SOURCE JSHTMLTableColElement.cpp -SOURCE JSHTMLTableElement.cpp -SOURCE JSHTMLTableRowElement.cpp -SOURCE JSHTMLTableSectionElement.cpp -SOURCE JSHTMLTextAreaElement.cpp -SOURCE JSHTMLTitleElement.cpp -SOURCE JSHTMLUListElement.cpp -SOURCE JSHTMLVideoElement.cpp -SOURCE JSImageData.cpp -SOURCE JSMediaError.cpp -SOURCE JSTextMetrics.cpp -SOURCE JSTimeRanges.cpp -SOURCE JSValidityState.cpp -SOURCE JSVoidCallback.cpp -SOURCE JSInjectedScriptHost.cpp -SOURCE JSInspectorBackend.cpp -SOURCE JSInspectorFrontendHost.cpp -SOURCE JSJavaScriptCallFrame.cpp -SOURCE JSScriptProfile.cpp -SOURCE JSScriptProfileNode.cpp -SOURCE JSDOMApplicationCache.cpp -SOURCE JSNotification.cpp -SOURCE JSNotificationCenter.cpp -SOURCE JSBarInfo.cpp -SOURCE JSConsole.cpp -SOURCE JSCoordinates.cpp -SOURCE JSDOMSelection.cpp -SOURCE JSDOMWindow.cpp -SOURCE JSEventSource.cpp -SOURCE JSGeolocation.cpp -SOURCE JSGeoposition.cpp -SOURCE JSHistory.cpp -SOURCE JSLocation.cpp -SOURCE JSMemoryInfo.cpp -SOURCE JSNavigation.cpp -SOURCE JSNavigator.cpp -SOURCE JSPerformance.cpp -SOURCE JSPositionError.cpp -SOURCE JSScreen.cpp -SOURCE JSTiming.cpp -SOURCE JSWebKitPoint.cpp -SOURCE JSWorkerNavigator.cpp -SOURCE JSDOMPlugin.cpp -SOURCE JSDOMMimeType.cpp -SOURCE JSDOMPluginArray.cpp -SOURCE JSDOMMimeTypeArray.cpp -SOURCE JSDatabase.cpp -SOURCE JSDatabaseCallback.cpp -SOURCE JSDatabaseSync.cpp -SOURCE JSIDBAny.cpp -SOURCE JSIDBDatabaseError.cpp -SOURCE JSIDBDatabaseException.cpp -SOURCE JSIDBDatabaseRequest.cpp -SOURCE JSIDBErrorEvent.cpp -SOURCE JSIDBEvent.cpp -SOURCE JSIDBIndexRequest.cpp -SOURCE JSIDBKey.cpp -SOURCE JSIDBKeyRange.cpp -SOURCE JSIDBObjectStoreRequest.cpp -SOURCE JSIDBRequest.cpp -SOURCE JSIDBSuccessEvent.cpp -SOURCE JSIndexedDatabaseRequest.cpp -SOURCE JSStorage.cpp -SOURCE JSStorageEvent.cpp -SOURCE JSSQLError.cpp -SOURCE JSSQLException.cpp -SOURCE JSSQLResultSet.cpp -SOURCE JSSQLResultSetRowList.cpp -SOURCE JSSQLStatementCallback.cpp -SOURCE JSSQLStatementErrorCallback.cpp -SOURCE JSSQLTransaction.cpp -SOURCE JSSQLTransactionCallback.cpp -SOURCE JSSQLTransactionErrorCallback.cpp -SOURCE JSSQLTransactionSync.cpp -SOURCE JSSQLTransactionSyncCallback.cpp -SOURCE JSSVGZoomEvent.cpp -SOURCE JSSVGAElement.cpp -SOURCE JSSVGAltGlyphElement.cpp -SOURCE JSSVGAngle.cpp -SOURCE JSSVGAnimateColorElement.cpp -SOURCE JSSVGAnimatedAngle.cpp -SOURCE JSSVGAnimatedBoolean.cpp -SOURCE JSSVGAnimatedEnumeration.cpp -SOURCE JSSVGAnimatedInteger.cpp -SOURCE JSSVGAnimatedLength.cpp -SOURCE JSSVGAnimatedLengthList.cpp -SOURCE JSSVGAnimatedNumber.cpp -SOURCE JSSVGAnimatedNumberList.cpp -SOURCE JSSVGAnimatedPreserveAspectRatio.cpp -SOURCE JSSVGAnimatedRect.cpp -SOURCE JSSVGAnimatedString.cpp -SOURCE JSSVGAnimatedTransformList.cpp -SOURCE JSSVGAnimateElement.cpp -SOURCE JSSVGAnimateTransformElement.cpp -SOURCE JSSVGAnimationElement.cpp -SOURCE JSSVGCircleElement.cpp -SOURCE JSSVGClipPathElement.cpp -SOURCE JSSVGColor.cpp -SOURCE JSSVGComponentTransferFunctionElement.cpp -SOURCE JSSVGCursorElement.cpp -SOURCE JSSVGDefsElement.cpp -SOURCE JSSVGDescElement.cpp -SOURCE JSSVGDocument.cpp -SOURCE JSSVGElement.cpp -SOURCE JSSVGElementInstance.cpp -SOURCE JSSVGElementInstanceList.cpp -SOURCE JSSVGEllipseElement.cpp -SOURCE JSSVGException.cpp -SOURCE JSSVGFEBlendElement.cpp -SOURCE JSSVGFEColorMatrixElement.cpp -SOURCE JSSVGFEComponentTransferElement.cpp -SOURCE JSSVGFECompositeElement.cpp -SOURCE JSSVGFEConvolveMatrixElement.cpp -SOURCE JSSVGFEDiffuseLightingElement.cpp -SOURCE JSSVGFEDisplacementMapElement.cpp -SOURCE JSSVGFEDistantLightElement.cpp -SOURCE JSSVGFEFloodElement.cpp -SOURCE JSSVGFEFuncAElement.cpp -SOURCE JSSVGFEFuncBElement.cpp -SOURCE JSSVGFEFuncGElement.cpp -SOURCE JSSVGFEFuncRElement.cpp -SOURCE JSSVGFEGaussianBlurElement.cpp -SOURCE JSSVGFEImageElement.cpp -SOURCE JSSVGFEMergeElement.cpp -SOURCE JSSVGFEMergeNodeElement.cpp -SOURCE JSSVGFEMorphologyElement.cpp -SOURCE JSSVGFEOffsetElement.cpp -SOURCE JSSVGFEPointLightElement.cpp -SOURCE JSSVGFESpecularLightingElement.cpp -SOURCE JSSVGFESpotLightElement.cpp -SOURCE JSSVGFETileElement.cpp -SOURCE JSSVGFETurbulenceElement.cpp -SOURCE JSSVGFilterElement.cpp -SOURCE JSSVGFontElement.cpp -SOURCE JSSVGFontFaceElement.cpp -SOURCE JSSVGFontFaceFormatElement.cpp -SOURCE JSSVGFontFaceNameElement.cpp -SOURCE JSSVGFontFaceSrcElement.cpp -SOURCE JSSVGFontFaceUriElement.cpp -SOURCE JSSVGForeignObjectElement.cpp -SOURCE JSSVGGElement.cpp -SOURCE JSSVGGlyphElement.cpp -SOURCE JSSVGGradientElement.cpp -SOURCE JSSVGHKernElement.cpp -SOURCE JSSVGImageElement.cpp -SOURCE JSSVGLength.cpp -SOURCE JSSVGLengthList.cpp -SOURCE JSSVGLinearGradientElement.cpp -SOURCE JSSVGLineElement.cpp -SOURCE JSSVGMarkerElement.cpp -SOURCE JSSVGMaskElement.cpp -SOURCE JSSVGMatrix.cpp -SOURCE JSSVGMetadataElement.cpp -SOURCE JSSVGMissingGlyphElement.cpp -SOURCE JSSVGNumber.cpp -SOURCE JSSVGNumberList.cpp -SOURCE JSSVGPaint.cpp -SOURCE JSSVGPathElement.cpp -SOURCE JSSVGPathSegArcAbs.cpp -SOURCE JSSVGPathSegArcRel.cpp -SOURCE JSSVGPathSegClosePath.cpp -SOURCE JSSVGPathSegCurvetoCubicAbs.cpp -SOURCE JSSVGPathSegCurvetoCubicRel.cpp -SOURCE JSSVGPathSegCurvetoCubicSmoothAbs.cpp -SOURCE JSSVGPathSegCurvetoCubicSmoothRel.cpp -SOURCE JSSVGPathSegCurvetoQuadraticAbs.cpp -SOURCE JSSVGPathSegCurvetoQuadraticRel.cpp -SOURCE JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp -SOURCE JSSVGPathSegCurvetoQuadraticSmoothRel.cpp -SOURCE JSSVGPathSeg.cpp -SOURCE JSSVGPathSegLinetoAbs.cpp -SOURCE JSSVGPathSegLinetoHorizontalAbs.cpp -SOURCE JSSVGPathSegLinetoHorizontalRel.cpp -SOURCE JSSVGPathSegLinetoRel.cpp -SOURCE JSSVGPathSegLinetoVerticalAbs.cpp -SOURCE JSSVGPathSegLinetoVerticalRel.cpp -SOURCE JSSVGPathSegList.cpp -SOURCE JSSVGPathSegMovetoAbs.cpp -SOURCE JSSVGPathSegMovetoRel.cpp -SOURCE JSSVGPatternElement.cpp -SOURCE JSSVGPoint.cpp -SOURCE JSSVGPointList.cpp -SOURCE JSSVGPolygonElement.cpp -SOURCE JSSVGPolylineElement.cpp -SOURCE JSSVGPreserveAspectRatio.cpp -SOURCE JSSVGRadialGradientElement.cpp -SOURCE JSSVGRectElement.cpp -SOURCE JSSVGRect.cpp -SOURCE JSSVGRenderingIntent.cpp -SOURCE JSSVGScriptElement.cpp -SOURCE JSSVGSetElement.cpp -SOURCE JSSVGStopElement.cpp -SOURCE JSSVGStringList.cpp -SOURCE JSSVGStyleElement.cpp -SOURCE JSSVGSVGElement.cpp -SOURCE JSSVGSwitchElement.cpp -SOURCE JSSVGSymbolElement.cpp -SOURCE JSSVGTextContentElement.cpp -SOURCE JSSVGTextElement.cpp -SOURCE JSSVGTextPathElement.cpp -SOURCE JSSVGTextPositioningElement.cpp -SOURCE JSSVGTitleElement.cpp -SOURCE JSSVGTransform.cpp -SOURCE JSSVGTransformList.cpp -SOURCE JSSVGTRefElement.cpp -SOURCE JSSVGTSpanElement.cpp -SOURCE JSSVGUnitTypes.cpp -SOURCE JSSVGUseElement.cpp -SOURCE JSSVGViewElement.cpp -SOURCE JSSVGVKernElement.cpp -SOURCE JSWebSocket.cpp -SOURCE JSAbstractWorker.cpp -SOURCE JSDedicatedWorkerContext.cpp -SOURCE JSSharedWorker.cpp -SOURCE JSSharedWorkerContext.cpp -SOURCE JSWorker.cpp -SOURCE JSWorkerContext.cpp -SOURCE JSWorkerLocation.cpp -SOURCE JSDOMParser.cpp -SOURCE JSXMLHttpRequest.cpp -SOURCE JSXMLHttpRequestException.cpp -SOURCE JSXMLHttpRequestProgressEvent.cpp -SOURCE JSXMLHttpRequestUpload.cpp -SOURCE JSXMLSerializer.cpp -SOURCE JSXPathNSResolver.cpp -SOURCE JSXPathException.cpp -SOURCE JSXPathExpression.cpp -SOURCE JSXPathResult.cpp -SOURCE JSXPathEvaluator.cpp -SOURCE JSXSLTProcessor.cpp -SOURCE RemoteInspectorFrontend.cpp -SOURCE CSSGrammar.cpp -SOURCE HTMLNames.cpp -SOURCE HTMLElementFactory.cpp -SOURCE JSHTMLElementWrapperFactory.cpp -SOURCE XMLNSNames.cpp -SOURCE XMLNames.cpp -SOURCE UserAgentStyleSheetsData.cpp -SOURCE XPathGrammar.cpp - -SOURCEPATH history -SOURCE BackForwardController.cpp -SOURCE BackForwardListImpl.cpp -SOURCE CachedFrame.cpp -SOURCE CachedPage.cpp -SOURCE HistoryItem.cpp -SOURCE PageCache.cpp - -SOURCEPATH history/qt -SOURCE HistoryItemQt.cpp - -SOURCEPATH html -SOURCE AsyncImageResizer.cpp -SOURCE Blob.cpp -SOURCE BlobBuilder.cpp -SOURCE CollectionCache.cpp -SOURCE CSSPreloadScanner.cpp -SOURCE DataGridColumn.cpp -SOURCE DataGridColumnList.cpp -SOURCE DateComponents.cpp -SOURCE DOMDataGridDataSource.cpp -SOURCE DOMFormData.cpp -SOURCE File.cpp -SOURCE FileList.cpp -SOURCE FileReader.cpp -SOURCE FileStream.cpp -SOURCE FileStreamProxy.cpp -SOURCE FileThread.cpp -SOURCE FormDataList.cpp -SOURCE HTMLEntityParser.cpp -SOURCE HTMLTokenizer.cpp -SOURCE HTMLDocumentParser.cpp -SOURCE HTMLPreloadScanner.cpp -SOURCE HTMLScriptRunner.cpp -SOURCE HTMLTreeBuilder.cpp -SOURCE HTMLAllCollection.cpp -SOURCE HTMLAnchorElement.cpp -SOURCE HTMLAppletElement.cpp -SOURCE HTMLAreaElement.cpp -SOURCE HTMLBaseElement.cpp -SOURCE HTMLBaseFontElement.cpp -SOURCE HTMLBlockquoteElement.cpp -SOURCE HTMLBodyElement.cpp -SOURCE HTMLBRElement.cpp -SOURCE HTMLButtonElement.cpp -SOURCE HTMLCanvasElement.cpp -SOURCE HTMLCollection.cpp -SOURCE HTMLConstructionSite.cpp -SOURCE HTMLDataGridElement.cpp -SOURCE HTMLDataGridCellElement.cpp -SOURCE HTMLDataGridColElement.cpp -SOURCE HTMLDataGridRowElement.cpp -SOURCE HTMLDataListElement.cpp -SOURCE HTMLDirectoryElement.cpp -SOURCE HTMLDivElement.cpp -SOURCE HTMLDListElement.cpp -SOURCE HTMLDocument.cpp -SOURCE HTMLElement.cpp -SOURCE HTMLElementStack.cpp -SOURCE HTMLEmbedElement.cpp -SOURCE HTMLFieldSetElement.cpp -SOURCE HTMLFontElement.cpp -SOURCE HTMLFormattingElementList.cpp -SOURCE HTMLFormCollection.cpp -SOURCE HTMLFormElement.cpp -SOURCE HTMLFrameElementBase.cpp -SOURCE HTMLFrameElement.cpp -SOURCE HTMLFrameOwnerElement.cpp -SOURCE HTMLFrameSetElement.cpp -SOURCE HTMLFormControlElement.cpp -SOURCE HTMLHeadElement.cpp -SOURCE HTMLHeadingElement.cpp -SOURCE HTMLHRElement.cpp -SOURCE HTMLHtmlElement.cpp -SOURCE HTMLIFrameElement.cpp -SOURCE HTMLImageElement.cpp -SOURCE HTMLImageLoader.cpp -SOURCE HTMLInputElement.cpp -SOURCE HTMLIsIndexElement.cpp -SOURCE HTMLKeygenElement.cpp -SOURCE HTMLLabelElement.cpp -SOURCE HTMLLegendElement.cpp -SOURCE HTMLLIElement.cpp -SOURCE HTMLLinkElement.cpp -SOURCE HTMLMapElement.cpp -SOURCE HTMLMarqueeElement.cpp -SOURCE HTMLMenuElement.cpp -SOURCE HTMLMetaElement.cpp -SOURCE HTMLMeterElement.cpp -SOURCE HTMLModElement.cpp -SOURCE HTMLNameCollection.cpp -SOURCE HTMLObjectElement.cpp -SOURCE HTMLOListElement.cpp -SOURCE HTMLOptGroupElement.cpp -SOURCE HTMLOptionElement.cpp -SOURCE HTMLOptionsCollection.cpp -SOURCE HTMLParagraphElement.cpp -SOURCE HTMLParamElement.cpp -SOURCE LegacyHTMLTreeBuilder.cpp -SOURCE HTMLParserErrorCodes.cpp -SOURCE HTMLParserScheduler.cpp -SOURCE HTMLPlugInElement.cpp -SOURCE HTMLPlugInImageElement.cpp -SOURCE HTMLPreElement.cpp -SOURCE HTMLProgressElement.cpp -SOURCE HTMLQuoteElement.cpp -SOURCE HTMLScriptElement.cpp -SOURCE HTMLSelectElement.cpp -SOURCE HTMLStyleElement.cpp -SOURCE HTMLTableCaptionElement.cpp -SOURCE HTMLTableCellElement.cpp -SOURCE HTMLTableColElement.cpp -SOURCE HTMLTableElement.cpp -SOURCE HTMLTablePartElement.cpp -SOURCE HTMLTableRowElement.cpp -SOURCE HTMLTableRowsCollection.cpp -SOURCE HTMLTableSectionElement.cpp -SOURCE HTMLTextAreaElement.cpp -SOURCE HTMLTitleElement.cpp -SOURCE LegacyHTMLDocumentParser.cpp -SOURCE HTMLUListElement.cpp -SOURCE HTMLViewSourceDocument.cpp -SOURCE ImageData.cpp -SOURCE ImageResizerThread.cpp -SOURCE LabelsNodeList.cpp -SOURCE LegacyPreloadScanner.cpp -SOURCE StepRange.cpp -SOURCE ValidityState.cpp -SOURCE HTMLAudioElement.cpp -SOURCE HTMLMediaElement.cpp -SOURCE HTMLSourceElement.cpp -SOURCE HTMLVideoElement.cpp -SOURCE TimeRanges.cpp - -SOURCEPATH html/canvas -SOURCE CanvasGradient.cpp -SOURCE CanvasPattern.cpp -SOURCE CanvasPixelArray.cpp -SOURCE CanvasRenderingContext.cpp -SOURCE CanvasRenderingContext2D.cpp -SOURCE CanvasStyle.cpp - -SOURCEPATH inspector -SOURCE ConsoleMessage.cpp -SOURCE InjectedScript.cpp -SOURCE InjectedScriptHost.cpp -SOURCE InspectorApplicationCacheAgent.cpp -SOURCE InspectorBackend.cpp -SOURCE InspectorCSSStore.cpp -SOURCE InspectorController.cpp -SOURCE InspectorDatabaseResource.cpp -SOURCE InspectorDOMAgent.cpp -SOURCE InspectorDOMStorageResource.cpp -SOURCE InspectorFrontend.cpp -SOURCE InspectorFrontendClientLocal.cpp -SOURCE InspectorFrontendHost.cpp -SOURCE InspectorResource.cpp -SOURCE InspectorTimelineAgent.cpp -SOURCE InspectorValues.cpp -SOURCE ScriptBreakpoint.cpp -SOURCE TimelineRecordFactory.cpp - -SOURCEPATH loader -SOURCE Cache.cpp -SOURCE CachedCSSStyleSheet.cpp -SOURCE CachedFont.cpp -SOURCE CachedImage.cpp -SOURCE CachedResourceClientWalker.cpp -SOURCE CachedResourceHandle.cpp -SOURCE CachedResource.cpp -SOURCE CachedScript.cpp -SOURCE CachedXSLStyleSheet.cpp -SOURCE CrossOriginAccessControl.cpp -SOURCE CrossOriginPreflightResultCache.cpp -SOURCE DocLoader.cpp -SOURCE DocumentLoader.cpp -SOURCE DocumentThreadableLoader.cpp -SOURCE DocumentWriter.cpp -SOURCE FormState.cpp -SOURCE FormSubmission.cpp -SOURCE FrameLoader.cpp -SOURCE FrameLoaderStateMachine.cpp -SOURCE HistoryController.cpp -SOURCE FTPDirectoryDocument.cpp -SOURCE FTPDirectoryParser.cpp -SOURCE ImageDocument.cpp -SOURCE ImageLoader.cpp -SOURCE loader.cpp -SOURCE MainResourceLoader.cpp -SOURCE MediaDocument.cpp -SOURCE NavigationAction.cpp -SOURCE NetscapePlugInStreamLoader.cpp -SOURCE PlaceholderDocument.cpp -SOURCE PluginDocument.cpp -SOURCE PolicyCallback.cpp -SOURCE PolicyChecker.cpp -SOURCE ProgressTracker.cpp -SOURCE RedirectScheduler.cpp -SOURCE Request.cpp -SOURCE ResourceLoader.cpp -SOURCE ResourceLoadNotifier.cpp -SOURCE SinkDocument.cpp -SOURCE SubframeLoader.cpp -SOURCE SubresourceLoader.cpp -SOURCE TextDocument.cpp -SOURCE TextResourceDecoder.cpp -SOURCE ThreadableLoader.cpp -SOURCE WorkerThreadableLoader.cpp - -SOURCEPATH loader/appcache -SOURCE ApplicationCache.cpp -SOURCE ApplicationCacheGroup.cpp -SOURCE ApplicationCacheHost.cpp -SOURCE ApplicationCacheStorage.cpp -SOURCE ApplicationCacheResource.cpp -SOURCE DOMApplicationCache.cpp -SOURCE ManifestParser.cpp - -SOURCEPATH loader/archive -SOURCE ArchiveFactory.cpp -SOURCE ArchiveResource.cpp -SOURCE ArchiveResourceCollection.cpp - -SOURCEPATH loader/icon -SOURCE IconLoader.cpp -SOURCE IconDatabase.cpp -SOURCE IconRecord.cpp -SOURCE PageURLRecord.cpp - -SOURCEPATH notifications -SOURCE Notification.cpp -SOURCE NotificationCenter.cpp - -SOURCEPATH page -SOURCE BarInfo.cpp -SOURCE Chrome.cpp -SOURCE Console.cpp -SOURCE ContextMenuController.cpp -SOURCE DOMSelection.cpp -SOURCE DOMTimer.cpp -SOURCE DOMWindow.cpp -SOURCE Navigation.cpp -SOURCE Navigator.cpp -SOURCE NavigatorBase.cpp -SOURCE DragController.cpp -SOURCE EventHandler.cpp -SOURCE EventSource.cpp -SOURCE FocusController.cpp -SOURCE Frame.cpp -SOURCE FrameTree.cpp -SOURCE FrameView.cpp -SOURCE Geolocation.cpp -SOURCE GeolocationController.cpp -SOURCE GeolocationPositionCache.cpp -SOURCE History.cpp -SOURCE Location.cpp -SOURCE MemoryInfo.cpp -SOURCE MouseEventWithHitTestResults.cpp -SOURCE OriginAccessEntry.cpp -SOURCE Page.cpp -SOURCE PageGroup.cpp -SOURCE PageGroupLoadDeferrer.cpp -SOURCE Performance.cpp -SOURCE PluginHalter.cpp -SOURCE PrintContext.cpp -SOURCE SecurityOrigin.cpp -SOURCE Screen.cpp -SOURCE Settings.cpp -SOURCE SpatialNavigation.cpp -SOURCE SuspendableTimer.cpp -SOURCE Timing.cpp -SOURCE UserContentURLPattern.cpp -SOURCE WindowFeatures.cpp -SOURCE XSSAuditor.cpp -SOURCE WorkerNavigator.cpp -SOURCE TouchGestureHandler.cpp - -SOURCEPATH page/animation -SOURCE AnimationBase.cpp -SOURCE AnimationController.cpp -SOURCE CompositeAnimation.cpp -SOURCE ImplicitAnimation.cpp -SOURCE KeyframeAnimation.cpp - -SOURCEPATH page/qt -SOURCE DragControllerQt.cpp -SOURCE EventHandlerQt.cpp -SOURCE FrameQt.cpp - -SOURCEPATH platform -SOURCE Arena.cpp -SOURCE BlobItem.cpp -SOURCE ContentType.cpp -SOURCE ContextMenu.cpp -SOURCE CrossThreadCopier.cpp -SOURCE DeprecatedPtrListImpl.cpp -SOURCE DragData.cpp -SOURCE DragImage.cpp -SOURCE FileChooser.cpp -SOURCE GeolocationService.cpp -SOURCE KillRingNone.cpp -SOURCE KURL.cpp -SOURCE Length.cpp -SOURCE LinkHash.cpp -SOURCE Logging.cpp -SOURCE MIMETypeRegistry.cpp -SOURCE SchemeRegistry.cpp -SOURCE Scrollbar.cpp -SOURCE ScrollbarThemeComposite.cpp -SOURCE ScrollView.cpp -SOURCE SharedBuffer.cpp -SOURCE ThreadGlobalData.cpp -SOURCE ThreadTimers.cpp -SOURCE Timer.cpp -SOURCE UUID.cpp -SOURCE Widget.cpp -SOURCE Cursor.cpp - -SOURCEPATH platform/animation -SOURCE Animation.cpp -SOURCE AnimationList.cpp - -SOURCEPATH platform/graphics -SOURCE FontDescription.cpp -SOURCE FontFallbackList.cpp -SOURCE FontFamily.cpp -SOURCE BitmapImage.cpp -SOURCE Color.cpp -SOURCE FloatPoint3D.cpp -SOURCE FloatPoint.cpp -SOURCE FloatQuad.cpp -SOURCE FloatRect.cpp -SOURCE FloatSize.cpp -SOURCE FontData.cpp -SOURCE Font.cpp -SOURCE FontCache.cpp -SOURCE GeneratedImage.cpp -SOURCE Gradient.cpp -SOURCE GraphicsContext.cpp -SOURCE GraphicsTypes.cpp -SOURCE Image.cpp -SOURCE ImageBuffer.cpp -SOURCE ImageSource.cpp -SOURCE IntRect.cpp -SOURCE Path.cpp -SOURCE PathTraversalState.cpp -SOURCE Pattern.cpp -SOURCE Pen.cpp -SOURCE SegmentedFontData.cpp -SOURCE SimpleFontData.cpp -SOURCE TiledBackingStore.cpp -SOURCE MediaPlayer.cpp -SOURCE GraphicsLayer.cpp - -SOURCEPATH platform/graphics/filters -SOURCE FEBlend.cpp -SOURCE FEColorMatrix.cpp -SOURCE FEComponentTransfer.cpp -SOURCE FEComposite.cpp -SOURCE FEGaussianBlur.cpp -SOURCE FilterEffect.cpp -SOURCE SourceAlpha.cpp -SOURCE SourceGraphic.cpp - -SOURCEPATH platform/graphics/qt -SOURCE TransformationMatrixQt.cpp -SOURCE ColorQt.cpp -SOURCE FontQt.cpp -SOURCE FontPlatformDataQt.cpp -SOURCE FloatPointQt.cpp -SOURCE FloatRectQt.cpp -SOURCE GradientQt.cpp -SOURCE GraphicsContextQt.cpp -SOURCE IconQt.cpp -SOURCE ImageBufferQt.cpp -SOURCE ImageDecoderQt.cpp -SOURCE ImageQt.cpp -SOURCE IntPointQt.cpp -SOURCE IntRectQt.cpp -SOURCE IntSizeQt.cpp -SOURCE PathQt.cpp -SOURCE PatternQt.cpp -SOURCE StillImageQt.cpp -SOURCE FontCacheQt.cpp -SOURCE FontCustomPlatformDataQt.cpp -SOURCE GlyphPageTreeNodeQt.cpp -SOURCE SimpleFontDataQt.cpp -SOURCE TileQt.cpp -SOURCE MediaPlayerPrivateQt.cpp -SOURCE GraphicsLayerQt.cpp - -SOURCEPATH platform/graphics/transforms -SOURCE AffineTransform.cpp -SOURCE TransformationMatrix.cpp -SOURCE MatrixTransformOperation.cpp -SOURCE Matrix3DTransformOperation.cpp -SOURCE PerspectiveTransformOperation.cpp -SOURCE RotateTransformOperation.cpp -SOURCE ScaleTransformOperation.cpp -SOURCE SkewTransformOperation.cpp -SOURCE TransformOperations.cpp -SOURCE TranslateTransformOperation.cpp - -SOURCEPATH platform/image-decoders/qt -SOURCE RGBA32BufferQt.cpp - -SOURCEPATH platform/mock -SOURCE GeolocationServiceMock.cpp - -SOURCEPATH platform/network -SOURCE AuthenticationChallengeBase.cpp -SOURCE Credential.cpp -SOURCE FormData.cpp -SOURCE FormDataBuilder.cpp -SOURCE HTTPHeaderMap.cpp -SOURCE HTTPParsers.cpp -SOURCE NetworkStateNotifier.cpp -SOURCE ProtectionSpace.cpp -SOURCE ResourceErrorBase.cpp -SOURCE ResourceHandle.cpp -SOURCE ResourceRequestBase.cpp -SOURCE ResourceResponseBase.cpp -SOURCE SocketStreamErrorBase.cpp -SOURCE SocketStreamHandleBase.cpp - -SOURCEPATH platform/network/qt -SOURCE ResourceHandleQt.cpp -SOURCE ResourceRequestQt.cpp -SOURCE DnsPrefetchHelper.cpp -SOURCE QNetworkReplyHandler.cpp -SOURCE NetworkStateNotifierQt.cpp -SOURCE SocketStreamHandleQt.cpp - -SOURCEPATH platform/qt -SOURCE ClipboardQt.cpp -SOURCE ContextMenuItemQt.cpp -SOURCE ContextMenuQt.cpp -SOURCE CookieJarQt.cpp -SOURCE CursorQt.cpp -SOURCE DragDataQt.cpp -SOURCE DragImageQt.cpp -SOURCE EventLoopQt.cpp -SOURCE FileChooserQt.cpp -SOURCE FileSystemQt.cpp -SOURCE SharedBufferQt.cpp -SOURCE KURLQt.cpp -SOURCE Localizations.cpp -SOURCE MIMETypeRegistryQt.cpp -SOURCE PasteboardQt.cpp -SOURCE PlatformKeyboardEventQt.cpp -SOURCE PlatformMouseEventQt.cpp -SOURCE PlatformScreenQt.cpp -SOURCE PlatformTouchEventQt.cpp -SOURCE PlatformTouchPointQt.cpp -SOURCE PopupMenuQt.cpp -SOURCE QtAbstractWebPopup.cpp -SOURCE RenderThemeQt.cpp -SOURCE ScrollbarQt.cpp -SOURCE ScrollbarThemeQt.cpp -SOURCE ScrollViewQt.cpp -SOURCE SearchPopupMenuQt.cpp -SOURCE SharedTimerQt.cpp -SOURCE SoundQt.cpp -SOURCE LoggingQt.cpp -SOURCE TemporaryLinkStubsQt.cpp -SOURCE WheelEventQt.cpp -SOURCE WidgetQt.cpp -SOURCE Maemo5Webstyle.cpp -SOURCE PlatformHapticsQt.cpp -SOURCE GeolocationServiceQt.cpp - -SOURCEPATH platform/sql -SOURCE SQLiteAuthorizer.cpp -SOURCE SQLiteDatabase.cpp -SOURCE SQLiteFileSystem.cpp -SOURCE SQLiteStatement.cpp -SOURCE SQLiteTransaction.cpp -SOURCE SQLValue.cpp - -SOURCEPATH platform/text -SOURCE Base64.cpp -SOURCE BidiContext.cpp -SOURCE Hyphenation.cpp -SOURCE LineEnding.cpp -SOURCE RegularExpression.cpp -SOURCE SegmentedString.cpp -SOURCE String.cpp -SOURCE StringBuilder.cpp -SOURCE TextCodec.cpp -SOURCE TextCodecLatin1.cpp -SOURCE TextCodecUserDefined.cpp -SOURCE TextCodecUTF16.cpp -SOURCE TextEncoding.cpp -SOURCE TextEncodingDetectorNone.cpp -SOURCE TextEncodingRegistry.cpp -SOURCE TextStream.cpp -SOURCE UnicodeRange.cpp - -SOURCEPATH platform/text/qt -SOURCE TextBoundariesQt.cpp -SOURCE TextBreakIteratorQt.cpp -SOURCE TextCodecQt.cpp - -SOURCEPATH platform/text/transcoder -SOURCE FontTranscoder.cpp - -SOURCEPATH plugins -SOURCE PluginData.cpp -SOURCE DOMPluginArray.cpp -SOURCE DOMPlugin.cpp -SOURCE PluginMainThreadScheduler.cpp -SOURCE DOMMimeType.cpp -SOURCE DOMMimeTypeArray.cpp -SOURCE PluginDatabase.cpp -SOURCE PluginDebug.cpp -SOURCE PluginPackage.cpp -SOURCE PluginStream.cpp -SOURCE PluginView.cpp -SOURCE npapi.cpp - -SOURCEPATH plugins/qt -SOURCE PluginDataQt.cpp - -SOURCEPATH plugins/symbian -SOURCE PluginPackageSymbian.cpp -SOURCE PluginDatabaseSymbian.cpp -SOURCE PluginViewSymbian.cpp -SOURCE PluginContainerSymbian.cpp - -SOURCEPATH rendering -SOURCE AutoTableLayout.cpp -SOURCE break_lines.cpp -SOURCE BidiRun.cpp -SOURCE CounterNode.cpp -SOURCE EllipsisBox.cpp -SOURCE FixedTableLayout.cpp -SOURCE HitTestResult.cpp -SOURCE InlineBox.cpp -SOURCE InlineFlowBox.cpp -SOURCE InlineTextBox.cpp -SOURCE LayoutState.cpp -SOURCE RenderApplet.cpp -SOURCE RenderArena.cpp -SOURCE RenderBlock.cpp -SOURCE RenderBlockLineLayout.cpp -SOURCE RenderBox.cpp -SOURCE RenderBoxModelObject.cpp -SOURCE RenderBR.cpp -SOURCE RenderButton.cpp -SOURCE RenderCounter.cpp -SOURCE RenderDataGrid.cpp -SOURCE RenderEmbeddedObject.cpp -SOURCE RenderFieldset.cpp -SOURCE RenderFileUploadControl.cpp -SOURCE RenderFlexibleBox.cpp -SOURCE RenderFrame.cpp -SOURCE RenderFrameBase.cpp -SOURCE RenderFrameSet.cpp -SOURCE RenderHTMLCanvas.cpp -SOURCE RenderIFrame.cpp -SOURCE RenderImage.cpp -SOURCE RenderImageGeneratedContent.cpp -SOURCE RenderIndicator.cpp -SOURCE RenderInline.cpp -SOURCE RenderLayer.cpp -SOURCE RenderLineBoxList.cpp -SOURCE RenderListBox.cpp -SOURCE RenderListItem.cpp -SOURCE RenderListMarker.cpp -SOURCE RenderMarquee.cpp -SOURCE RenderMenuList.cpp -SOURCE RenderMeter.cpp -SOURCE RenderObject.cpp -SOURCE RenderObjectChildList.cpp -SOURCE RenderPart.cpp -SOURCE RenderProgress.cpp -SOURCE RenderReplaced.cpp -SOURCE RenderReplica.cpp -SOURCE RenderRuby.cpp -SOURCE RenderRubyBase.cpp -SOURCE RenderRubyRun.cpp -SOURCE RenderRubyText.cpp -SOURCE RenderScrollbar.cpp -SOURCE RenderScrollbarPart.cpp -SOURCE RenderScrollbarTheme.cpp -SOURCE RenderSlider.cpp -SOURCE RenderTable.cpp -SOURCE RenderTableCell.cpp -SOURCE RenderTableCol.cpp -SOURCE RenderTableRow.cpp -SOURCE RenderTableSection.cpp -SOURCE RenderText.cpp -SOURCE RenderTextControl.cpp -SOURCE RenderTextControlMultiLine.cpp -SOURCE RenderTextControlSingleLine.cpp -SOURCE RenderTextFragment.cpp -SOURCE RenderTheme.cpp -SOURCE RenderTreeAsText.cpp -SOURCE RenderView.cpp -SOURCE RenderWidget.cpp -SOURCE RenderWordBreak.cpp -SOURCE RootInlineBox.cpp -SOURCE SVGRenderTreeAsText.cpp -SOURCE ScrollBehavior.cpp -SOURCE ShadowElement.cpp -SOURCE TextControlInnerElements.cpp -SOURCE TransformState.cpp -SOURCE MediaControlElements.cpp -SOURCE RenderVideo.cpp -SOURCE RenderMedia.cpp -SOURCE PointerEventsHitRules.cpp -SOURCE RenderForeignObject.cpp -SOURCE RenderPath.cpp -SOURCE RenderSVGBlock.cpp -SOURCE RenderSVGContainer.cpp -SOURCE RenderSVGGradientStop.cpp -SOURCE RenderSVGHiddenContainer.cpp -SOURCE RenderSVGImage.cpp -SOURCE RenderSVGInline.cpp -SOURCE RenderSVGInlineText.cpp -SOURCE RenderSVGModelObject.cpp -SOURCE RenderSVGResource.cpp -SOURCE RenderSVGResourceClipper.cpp -SOURCE RenderSVGResourceFilter.cpp -SOURCE RenderSVGResourceGradient.cpp -SOURCE RenderSVGResourceLinearGradient.cpp -SOURCE RenderSVGResourceMarker.cpp -SOURCE RenderSVGResourceMasker.cpp -SOURCE RenderSVGResourcePattern.cpp -SOURCE RenderSVGResourceRadialGradient.cpp -SOURCE RenderSVGResourceSolidColor.cpp -SOURCE RenderSVGRoot.cpp -SOURCE RenderSVGShadowTreeRootContainer.cpp -SOURCE RenderSVGText.cpp -SOURCE RenderSVGTextPath.cpp -SOURCE RenderSVGTransformableContainer.cpp -SOURCE RenderSVGTSpan.cpp -SOURCE RenderSVGViewportContainer.cpp -SOURCE SVGCharacterData.cpp -SOURCE SVGCharacterLayoutInfo.cpp -SOURCE SVGInlineFlowBox.cpp -SOURCE SVGInlineTextBox.cpp -SOURCE SVGMarkerLayoutInfo.cpp -SOURCE SVGRenderSupport.cpp -SOURCE SVGRootInlineBox.cpp -SOURCE SVGShadowTreeElements.cpp -SOURCE SVGTextChunkLayoutInfo.cpp -SOURCE SVGTextLayoutUtilities.cpp -SOURCE SVGTextQuery.cpp -SOURCE RenderLayerBacking.cpp -SOURCE RenderLayerCompositor.cpp - -SOURCEPATH rendering/style -SOURCE BindingURI.cpp -SOURCE ContentData.cpp -SOURCE CounterDirectives.cpp -SOURCE FillLayer.cpp -SOURCE KeyframeList.cpp -SOURCE NinePieceImage.cpp -SOURCE RenderStyle.cpp -SOURCE ShadowData.cpp -SOURCE StyleBackgroundData.cpp -SOURCE StyleBoxData.cpp -SOURCE StyleCachedImage.cpp -SOURCE StyleFlexibleBoxData.cpp -SOURCE StyleGeneratedImage.cpp -SOURCE StyleInheritedData.cpp -SOURCE StyleMarqueeData.cpp -SOURCE StyleMultiColData.cpp -SOURCE StyleRareInheritedData.cpp -SOURCE StyleRareNonInheritedData.cpp -SOURCE StyleSurroundData.cpp -SOURCE StyleTransformData.cpp -SOURCE StyleVisualData.cpp -SOURCE SVGRenderStyle.cpp -SOURCE SVGRenderStyleDefs.cpp - -SOURCEPATH storage -SOURCE AbstractDatabase.cpp -SOURCE Database.cpp -SOURCE DatabaseAuthorizer.cpp -SOURCE DatabaseSync.cpp -SOURCE ChangeVersionWrapper.cpp -SOURCE DatabaseTask.cpp -SOURCE DatabaseThread.cpp -SOURCE DatabaseTracker.cpp -SOURCE OriginQuotaManager.cpp -SOURCE OriginUsageRecord.cpp -SOURCE SQLResultSet.cpp -SOURCE SQLResultSetRowList.cpp -SOURCE SQLStatement.cpp -SOURCE SQLStatementSync.cpp -SOURCE SQLTransaction.cpp -SOURCE SQLTransactionClient.cpp -SOURCE SQLTransactionCoordinator.cpp -SOURCE SQLTransactionSync.cpp -SOURCE LocalStorageTask.cpp -SOURCE LocalStorageThread.cpp -SOURCE Storage.cpp -SOURCE StorageAreaImpl.cpp -SOURCE StorageAreaSync.cpp -SOURCE StorageEvent.cpp -SOURCE StorageEventDispatcher.cpp -SOURCE StorageMap.cpp -SOURCE StorageNamespace.cpp -SOURCE StorageNamespaceImpl.cpp -SOURCE StorageSyncManager.cpp - -SOURCEPATH svg -SOURCE SVGZoomEvent.cpp -SOURCE SVGDocumentExtensions.cpp -SOURCE SVGImageLoader.cpp -SOURCE ColorDistance.cpp -SOURCE SVGAElement.cpp -SOURCE SVGAltGlyphElement.cpp -SOURCE SVGAngle.cpp -SOURCE SVGAnimateColorElement.cpp -SOURCE SVGAnimatedPathData.cpp -SOURCE SVGAnimatedPoints.cpp -SOURCE SVGAnimateElement.cpp -SOURCE SVGAnimateMotionElement.cpp -SOURCE SVGAnimateTransformElement.cpp -SOURCE SVGAnimationElement.cpp -SOURCE SVGCircleElement.cpp -SOURCE SVGClipPathElement.cpp -SOURCE SVGColor.cpp -SOURCE SVGComponentTransferFunctionElement.cpp -SOURCE SVGCursorElement.cpp -SOURCE SVGDefsElement.cpp -SOURCE SVGDescElement.cpp -SOURCE SVGDocument.cpp -SOURCE SVGElement.cpp -SOURCE SVGElementInstance.cpp -SOURCE SVGElementInstanceList.cpp -SOURCE SVGEllipseElement.cpp -SOURCE SVGExternalResourcesRequired.cpp -SOURCE SVGFEBlendElement.cpp -SOURCE SVGFEColorMatrixElement.cpp -SOURCE SVGFEComponentTransferElement.cpp -SOURCE SVGFECompositeElement.cpp -SOURCE SVGFEConvolveMatrixElement.cpp -SOURCE SVGFEDiffuseLightingElement.cpp -SOURCE SVGFEDisplacementMapElement.cpp -SOURCE SVGFEDistantLightElement.cpp -SOURCE SVGFEFloodElement.cpp -SOURCE SVGFEFuncAElement.cpp -SOURCE SVGFEFuncBElement.cpp -SOURCE SVGFEFuncGElement.cpp -SOURCE SVGFEFuncRElement.cpp -SOURCE SVGFEGaussianBlurElement.cpp -SOURCE SVGFEImageElement.cpp -SOURCE SVGFELightElement.cpp -SOURCE SVGFEMergeElement.cpp -SOURCE SVGFEMergeNodeElement.cpp -SOURCE SVGFEMorphologyElement.cpp -SOURCE SVGFEOffsetElement.cpp -SOURCE SVGFEPointLightElement.cpp -SOURCE SVGFESpecularLightingElement.cpp -SOURCE SVGFESpotLightElement.cpp -SOURCE SVGFETileElement.cpp -SOURCE SVGFETurbulenceElement.cpp -SOURCE SVGFilterElement.cpp -SOURCE SVGFilterPrimitiveStandardAttributes.cpp -SOURCE SVGFitToViewBox.cpp -SOURCE SVGFont.cpp -SOURCE SVGFontData.cpp -SOURCE SVGFontElement.cpp -SOURCE SVGFontFaceElement.cpp -SOURCE SVGFontFaceFormatElement.cpp -SOURCE SVGFontFaceNameElement.cpp -SOURCE SVGFontFaceSrcElement.cpp -SOURCE SVGFontFaceUriElement.cpp -SOURCE SVGForeignObjectElement.cpp -SOURCE SVGGElement.cpp -SOURCE SVGGlyphElement.cpp -SOURCE SVGGradientElement.cpp -SOURCE SVGHKernElement.cpp -SOURCE SVGImageElement.cpp -SOURCE SVGLangSpace.cpp -SOURCE SVGLength.cpp -SOURCE SVGLengthList.cpp -SOURCE SVGLinearGradientElement.cpp -SOURCE SVGLineElement.cpp -SOURCE SVGLocatable.cpp -SOURCE SVGMarkerElement.cpp -SOURCE SVGMaskElement.cpp -SOURCE SVGMetadataElement.cpp -SOURCE SVGMissingGlyphElement.cpp -SOURCE SVGMPathElement.cpp -SOURCE SVGNumberList.cpp -SOURCE SVGPaint.cpp -SOURCE SVGParserUtilities.cpp -SOURCE SVGPathBuilder.cpp -SOURCE SVGPathElement.cpp -SOURCE SVGPathParser.cpp -SOURCE SVGPathSegArc.cpp -SOURCE SVGPathSegClosePath.cpp -SOURCE SVGPathSegCurvetoCubic.cpp -SOURCE SVGPathSegCurvetoCubicSmooth.cpp -SOURCE SVGPathSegCurvetoQuadratic.cpp -SOURCE SVGPathSegCurvetoQuadraticSmooth.cpp -SOURCE SVGPathSegLineto.cpp -SOURCE SVGPathSegLinetoHorizontal.cpp -SOURCE SVGPathSegLinetoVertical.cpp -SOURCE SVGPathSegList.cpp -SOURCE SVGPathSegListBuilder.cpp -SOURCE SVGPathSegMoveto.cpp -SOURCE SVGPatternElement.cpp -SOURCE SVGPointList.cpp -SOURCE SVGPolyElement.cpp -SOURCE SVGPolygonElement.cpp -SOURCE SVGPolylineElement.cpp -SOURCE SVGPreserveAspectRatio.cpp -SOURCE SVGRadialGradientElement.cpp -SOURCE SVGRectElement.cpp -SOURCE SVGScriptElement.cpp -SOURCE SVGSetElement.cpp -SOURCE SVGStopElement.cpp -SOURCE SVGStringList.cpp -SOURCE SVGStylable.cpp -SOURCE SVGStyledElement.cpp -SOURCE SVGStyledLocatableElement.cpp -SOURCE SVGStyledTransformableElement.cpp -SOURCE SVGStyleElement.cpp -SOURCE SVGSVGElement.cpp -SOURCE SVGSwitchElement.cpp -SOURCE SVGSymbolElement.cpp -SOURCE SVGTests.cpp -SOURCE SVGTextContentElement.cpp -SOURCE SVGTextElement.cpp -SOURCE SVGTextPathElement.cpp -SOURCE SVGTextPositioningElement.cpp -SOURCE SVGTitleElement.cpp -SOURCE SVGTransformable.cpp -SOURCE SVGTransform.cpp -SOURCE SVGTransformDistance.cpp -SOURCE SVGTransformList.cpp -SOURCE SVGTRefElement.cpp -SOURCE SVGTSpanElement.cpp -SOURCE SVGURIReference.cpp -SOURCE SVGUseElement.cpp -SOURCE SVGViewElement.cpp -SOURCE SVGViewSpec.cpp -SOURCE SVGVKernElement.cpp -SOURCE SVGZoomAndPan.cpp - -SOURCEPATH svg/animation -SOURCE SMILTime.cpp -SOURCE SMILTimeContainer.cpp -SOURCE SVGSMILElement.cpp - -SOURCEPATH svg/graphics -SOURCE SVGImage.cpp - -SOURCEPATH svg/graphics/filters -SOURCE SVGFEConvolveMatrix.cpp -SOURCE SVGFEDiffuseLighting.cpp -SOURCE SVGFEDisplacementMap.cpp -SOURCE SVGFEFlood.cpp -SOURCE SVGFEImage.cpp -SOURCE SVGFELighting.cpp -SOURCE SVGFEMerge.cpp -SOURCE SVGFEMorphology.cpp -SOURCE SVGFEOffset.cpp -SOURCE SVGFESpecularLighting.cpp -SOURCE SVGFETile.cpp -SOURCE SVGFETurbulence.cpp -SOURCE SVGFilter.cpp -SOURCE SVGFilterBuilder.cpp -SOURCE SVGLightSource.cpp - -SOURCEPATH websockets -SOURCE WebSocket.cpp -SOURCE WebSocketChannel.cpp -SOURCE WebSocketHandshake.cpp -SOURCE WebSocketHandshakeRequest.cpp -SOURCE WebSocketHandshakeResponse.cpp -SOURCE ThreadableWebSocketChannel.cpp -SOURCE WorkerThreadableWebSocketChannel.cpp - -SOURCEPATH workers -SOURCE AbstractWorker.cpp -SOURCE DedicatedWorkerContext.cpp -SOURCE DedicatedWorkerThread.cpp -SOURCE Worker.cpp -SOURCE WorkerContext.cpp -SOURCE WorkerLocation.cpp -SOURCE WorkerMessagingProxy.cpp -SOURCE WorkerRunLoop.cpp -SOURCE WorkerThread.cpp -SOURCE WorkerScriptLoader.cpp -SOURCE DefaultSharedWorkerRepository.cpp -SOURCE SharedWorker.cpp -SOURCE SharedWorkerContext.cpp -SOURCE SharedWorkerThread.cpp - -SOURCEPATH xml -SOURCE DOMParser.cpp -SOURCE XMLHttpRequest.cpp -SOURCE XMLHttpRequestProgressEventThrottle.cpp -SOURCE XMLHttpRequestUpload.cpp -SOURCE XMLSerializer.cpp -SOURCE NativeXPathNSResolver.cpp -SOURCE XPathEvaluator.cpp -SOURCE XPathExpression.cpp -SOURCE XPathExpressionNode.cpp -SOURCE XPathFunctions.cpp -SOURCE XPathNamespace.cpp -SOURCE XPathNodeSet.cpp -SOURCE XPathNSResolver.cpp -SOURCE XPathParser.cpp -SOURCE XPathPath.cpp -SOURCE XPathPredicate.cpp -SOURCE XPathResult.cpp -SOURCE XPathStep.cpp -SOURCE XPathUtil.cpp -SOURCE XPathValue.cpp -SOURCE XPathVariableReference.cpp -SOURCE XSLStyleSheetQt.cpp -SOURCE XSLTProcessor.cpp -SOURCE XSLTProcessorQt.cpp - -SOURCEPATH ../WebKit/qt/Api -SOURCE qwebframe.cpp -SOURCE qgraphicswebview.cpp -SOURCE qwebpage.cpp -SOURCE qwebview.cpp -SOURCE qwebelement.cpp -SOURCE qwebhistory.cpp -SOURCE qwebsettings.cpp -SOURCE qwebhistoryinterface.cpp -SOURCE qwebplugindatabase.cpp -SOURCE qwebpluginfactory.cpp -SOURCE qwebsecurityorigin.cpp -SOURCE qwebscriptworld.cpp -SOURCE qwebdatabase.cpp -SOURCE qwebinspector.cpp -SOURCE qwebkitversion.cpp - -SOURCEPATH ../WebKit/qt/WebCoreSupport -SOURCE QtFallbackWebPopup.cpp -SOURCE ChromeClientQt.cpp -SOURCE ContextMenuClientQt.cpp -SOURCE DragClientQt.cpp -SOURCE DumpRenderTreeSupportQt.cpp -SOURCE EditorClientQt.cpp -SOURCE EditCommandQt.cpp -SOURCE FrameLoaderClientQt.cpp -SOURCE InspectorClientQt.cpp -SOURCE NotificationPresenterClientQt.cpp -SOURCE PageClientQt.cpp -SOURCE QtPlatformPlugin.cpp - - -LIBRARY hal.lib -STATICLIBRARY jscore.lib -LIBRARY efsrv.lib -LIBRARY sqlite3.lib -LIBRARY QtLocation.lib -LIBRARY QtMultimediaKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtXmlPatterns.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY All -Tcb - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -LINKEROPTION ARMCC --rw-base 0xE00000 -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 4.2048 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -USERINCLUDE bridge - -USERINCLUDE platform/animation - -USERINCLUDE platform/text - -USERINCLUDE rendering - -ALWAYS_BUILD_AS_ARM - -USERINCLUDE ../JavaScriptCore/profiler - -#ifdef WINSCW -DEFFILE ../WebKit/qt/symbian/bwins/QtWebKit.def -#elif defined EABI -DEFFILE ../WebKit/qt/symbian/eabi/QtWebKit.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/bindings/scripts/Filter/Util/Call.pm --- a/WebCore/bindings/scripts/Filter/Util/Call.pm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,498 +0,0 @@ - -# Call.pm -# -# Copyright (c) 1995-2009 Paul Marquess. All rights reserved. -# -# This program is free software; you can redistribute it and/or -# modify it under the same terms as Perl itself. - -package Filter::Util::Call ; - -require 5.005 ; -require DynaLoader; -require Exporter; -use Carp ; -use strict; -use warnings; -use vars qw($VERSION @ISA @EXPORT) ; - -@ISA = qw(Exporter DynaLoader); -@EXPORT = qw( filter_add filter_del filter_read filter_read_exact) ; -$VERSION = "1.08" ; - -sub filter_read_exact($) -{ - my ($size) = @_ ; - my ($left) = $size ; - my ($status) ; - - croak ("filter_read_exact: size parameter must be > 0") - unless $size > 0 ; - - # try to read a block which is exactly $size bytes long - while ($left and ($status = filter_read($left)) > 0) { - $left = $size - length $_ ; - } - - # EOF with pending data is a special case - return 1 if $status == 0 and length $_ ; - - return $status ; -} - -sub filter_add($) -{ - my($obj) = @_ ; - - # Did we get a code reference? - my $coderef = (ref $obj eq 'CODE') ; - - # If the parameter isn't already a reference, make it one. - $obj = \$obj unless ref $obj ; - - $obj = bless ($obj, (caller)[0]) unless $coderef ; - - # finish off the installation of the filter in C. - Filter::Util::Call::real_import($obj, (caller)[0], $coderef) ; -} - -bootstrap Filter::Util::Call ; - -1; -__END__ - -=head1 NAME - -Filter::Util::Call - Perl Source Filter Utility Module - -=head1 SYNOPSIS - - use Filter::Util::Call ; - -=head1 DESCRIPTION - -This module provides you with the framework to write I -in Perl. - -An alternate interface to Filter::Util::Call is now available. See -L for more details. - -A I is implemented as a Perl module. The structure -of the module can take one of two broadly similar formats. To -distinguish between them, the first will be referred to as I and the second as I. - -Here is a skeleton for the I: - - package MyFilter ; - - use Filter::Util::Call ; - - sub import - { - my($type, @arguments) = @_ ; - filter_add([]) ; - } - - sub filter - { - my($self) = @_ ; - my($status) ; - - $status = filter_read() ; - $status ; - } - - 1 ; - -and this is the equivalent skeleton for the I: - - package MyFilter ; - - use Filter::Util::Call ; - - sub import - { - my($type, @arguments) = @_ ; - - filter_add( - sub - { - my($status) ; - $status = filter_read() ; - $status ; - } ) - } - - 1 ; - -To make use of either of the two filter modules above, place the line -below in a Perl source file. - - use MyFilter; - -In fact, the skeleton modules shown above are fully functional I, albeit fairly useless ones. All they does is filter the -source stream without modifying it at all. - -As you can see both modules have a broadly similar structure. They both -make use of the C module and both have an C -method. The difference between them is that the I -requires a I method, whereas the I gets the -equivalent of a I method with the anonymous sub passed to -I. - -To make proper use of the I shown above you need to -have a good understanding of the concept of a I. See -L for more details on the mechanics of I. - -=head2 B - -The following functions are exported by C: - - filter_add() - filter_read() - filter_read_exact() - filter_del() - -=head2 B - -The C method is used to create an instance of the filter. It is -called indirectly by Perl when it encounters the C line -in a source file (See L for more details on -C). - -It will always have at least one parameter automatically passed by Perl -- this corresponds to the name of the package. In the example above it -will be C<"MyFilter">. - -Apart from the first parameter, import can accept an optional list of -parameters. These can be used to pass parameters to the filter. For -example: - - use MyFilter qw(a b c) ; - -will result in the C<@_> array having the following values: - - @_ [0] => "MyFilter" - @_ [1] => "a" - @_ [2] => "b" - @_ [3] => "c" - -Before terminating, the C function must explicitly install the -filter by calling C. - -B - -The function, C, actually installs the filter. It takes one -parameter which should be a reference. The kind of reference used will -dictate which of the two filter types will be used. - -If a CODE reference is used then a I will be assumed. - -If a CODE reference is not used, a I will be assumed. -In a I, the reference can be used to store context -information. The reference will be I into the package by -C. - -See the filters at the end of this documents for examples of using -context information using both I and I. - -=head2 B - -Both the C method used with a I and the -anonymous sub used with a I is where the main -processing for the filter is done. - -The big difference between the two types of filter is that the I uses the object passed to the method to store any context data, -whereas the I uses the lexical variables that are -maintained by the closure. - -Note that the single parameter passed to the I, -C<$self>, is the same reference that was passed to C -blessed into the filter's package. See the example filters later on for -details of using C<$self>. - -Here is a list of the common features of the anonymous sub and the -C method. - -=over 5 - -=item B<$_> - -Although C<$_> doesn't actually appear explicitly in the sample filters -above, it is implicitly used in a number of places. - -Firstly, when either C or the anonymous sub are called, a local -copy of C<$_> will automatically be created. It will always contain the -empty string at this point. - -Next, both C and C will append any -source data that is read to the end of C<$_>. - -Finally, when C or the anonymous sub are finished processing, -they are expected to return the filtered source using C<$_>. - -This implicit use of C<$_> greatly simplifies the filter. - -=item B<$status> - -The status value that is returned by the user's C method or -anonymous sub and the C and C functions take -the same set of values, namely: - - < 0 Error - = 0 EOF - > 0 OK - -=item B and B - -These functions are used by the filter to obtain either a line or block -from the next filter in the chain or the actual source file if there -aren't any other filters. - -The function C takes two forms: - - $status = filter_read() ; - $status = filter_read($size) ; - -The first form is used to request a I, the second requests a -I. - -In line mode, C will append the next source line to the -end of the C<$_> scalar. - -In block mode, C will append a block of data which is <= -C<$size> to the end of the C<$_> scalar. It is important to emphasise -the that C will not necessarily read a block which is -I C<$size> bytes. - -If you need to be able to read a block which has an exact size, you can -use the function C. It works identically to -C in block mode, except it will try to read a block which -is exactly C<$size> bytes in length. The only circumstances when it -will not return a block which is C<$size> bytes long is on EOF or -error. - -It is I important to check the value of C<$status> after I -call to C or C. - -=item B - -The function, C, is used to disable the current filter. It -does not affect the running of the filter. All it does is tell Perl not -to call filter any more. - -See L for details. - -=back - -=head1 EXAMPLES - -Here are a few examples which illustrate the key concepts - as such -most of them are of little practical use. - -The C sub-directory has copies of all these filters -implemented both as I and as I. - -=head2 Example 1: A simple filter. - -Below is a I which is hard-wired to replace all -occurrences of the string C<"Joe"> to C<"Jim">. Not particularly -Useful, but it is the first example and I wanted to keep it simple. - - package Joe2Jim ; - - use Filter::Util::Call ; - - sub import - { - my($type) = @_ ; - - filter_add(bless []) ; - } - - sub filter - { - my($self) = @_ ; - my($status) ; - - s/Joe/Jim/g - if ($status = filter_read()) > 0 ; - $status ; - } - - 1 ; - -Here is an example of using the filter: - - use Joe2Jim ; - print "Where is Joe?\n" ; - -And this is what the script above will print: - - Where is Jim? - -=head2 Example 2: Using the context - -The previous example was not particularly useful. To make it more -general purpose we will make use of the context data and allow any -arbitrary I and I strings to be used. This time we will use a -I. To reflect its enhanced role, the filter is called -C. - - package Subst ; - - use Filter::Util::Call ; - use Carp ; - - sub import - { - croak("usage: use Subst qw(from to)") - unless @_ == 3 ; - my ($self, $from, $to) = @_ ; - filter_add( - sub - { - my ($status) ; - s/$from/$to/ - if ($status = filter_read()) > 0 ; - $status ; - }) - } - 1 ; - -and is used like this: - - use Subst qw(Joe Jim) ; - print "Where is Joe?\n" ; - - -=head2 Example 3: Using the context within the filter - -Here is a filter which a variation of the C filter. As well as -substituting all occurrences of C<"Joe"> to C<"Jim"> it keeps a count -of the number of substitutions made in the context object. - -Once EOF is detected (C<$status> is zero) the filter will insert an -extra line into the source stream. When this extra line is executed it -will print a count of the number of substitutions actually made. -Note that C<$status> is set to C<1> in this case. - - package Count ; - - use Filter::Util::Call ; - - sub filter - { - my ($self) = @_ ; - my ($status) ; - - if (($status = filter_read()) > 0 ) { - s/Joe/Jim/g ; - ++ $$self ; - } - elsif ($$self >= 0) { # EOF - $_ = "print q[Made ${$self} substitutions\n]" ; - $status = 1 ; - $$self = -1 ; - } - - $status ; - } - - sub import - { - my ($self) = @_ ; - my ($count) = 0 ; - filter_add(\$count) ; - } - - 1 ; - -Here is a script which uses it: - - use Count ; - print "Hello Joe\n" ; - print "Where is Joe\n" ; - -Outputs: - - Hello Jim - Where is Jim - Made 2 substitutions - -=head2 Example 4: Using filter_del - -Another variation on a theme. This time we will modify the C -filter to allow a starting and stopping pattern to be specified as well -as the I and I patterns. If you know the I editor, it is -the equivalent of this command: - - :/start/,/stop/s/from/to/ - -When used as a filter we want to invoke it like this: - - use NewSubst qw(start stop from to) ; - -Here is the module. - - package NewSubst ; - - use Filter::Util::Call ; - use Carp ; - - sub import - { - my ($self, $start, $stop, $from, $to) = @_ ; - my ($found) = 0 ; - croak("usage: use Subst qw(start stop from to)") - unless @_ == 5 ; - - filter_add( - sub - { - my ($status) ; - - if (($status = filter_read()) > 0) { - - $found = 1 - if $found == 0 and /$start/ ; - - if ($found) { - s/$from/$to/ ; - filter_del() if /$stop/ ; - } - - } - $status ; - } ) - - } - - 1 ; - -=head1 Filter::Simple - -If you intend using the Filter::Call functionality, I would strongly -recommend that you check out Damian Conway's excellent Filter::Simple -module. Damian's module provides a much cleaner interface than -Filter::Util::Call. Although it doesn't allow the fine control that -Filter::Util::Call does, it should be adequate for the majority of -applications. It's available at - - http://www.cpan.org/modules/by-author/Damian_Conway/Filter-Simple.tar.gz - http://www.csse.monash.edu.au/~damian/CPAN/Filter-Simple.tar.gz - -=head1 AUTHOR - -Paul Marquess - -=head1 DATE - -26th January 1996 - -=cut - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/bindings/scripts/Switch.pm --- a/WebCore/bindings/scripts/Switch.pm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,875 +0,0 @@ -package Switch; - -use strict; -use vars qw($VERSION); -use Carp; - -#use if $] >= 5.011, 'deprecate'; - -$VERSION = '2.16'; - - -# LOAD FILTERING MODULE... -use Filter::Util::Call; - -sub __(); - -# CATCH ATTEMPTS TO CALL case OUTSIDE THE SCOPE OF ANY switch - -$::_S_W_I_T_C_H = sub { croak "case/when statement not in switch/given block" }; - -my $offset; -my $fallthrough; -my ($Perl5, $Perl6) = (0,0); - -sub import -{ - $fallthrough = grep /\bfallthrough\b/, @_; - $offset = (caller)[2]+1; - filter_add({}) unless @_>1 && $_[1] eq 'noimport'; - my $pkg = caller; - no strict 'refs'; - for ( qw( on_defined on_exists ) ) - { - *{"${pkg}::$_"} = \&$_; - } - *{"${pkg}::__"} = \&__ if grep /__/, @_; - $Perl6 = 1 if grep(/Perl\s*6/i, @_); - $Perl5 = 1 if grep(/Perl\s*5/i, @_) || !grep(/Perl\s*6/i, @_); - 1; -} - -sub unimport -{ - filter_del() -} - -sub filter -{ - my($self) = @_ ; - local $Switch::file = (caller)[1]; - - my $status = 1; - $status = filter_read(1_000_000); - return $status if $status<0; - $_ = filter_blocks($_,$offset); - $_ = "# line $offset\n" . $_ if $offset; undef $offset; - return $status; -} - -use Text::Balanced ':ALL'; - -sub line -{ - my ($pretext,$offset) = @_; - ($pretext=~tr/\n/\n/)+($offset||0); -} - -sub is_block -{ - local $SIG{__WARN__}=sub{die$@}; - local $^W=1; - my $ishash = defined eval 'my $hr='.$_[0]; - undef $@; - return !$ishash; -} - -my $pod_or_DATA = qr/ ^=[A-Za-z] .*? ^=cut (?![A-Za-z]) .*? $ - | ^__(DATA|END)__\n.* - /smx; - -my $casecounter = 1; -sub filter_blocks -{ - my ($source, $line) = @_; - return $source unless $Perl5 && $source =~ /case|switch/ - || $Perl6 && $source =~ /when|given|default/; - pos $source = 0; - my $text = ""; - component: while (pos $source < length $source) - { - if ($source =~ m/(\G\s*use\s+Switch\b)/gc) - { - $text .= q{use Switch 'noimport'}; - next component; - } - my @pos = Text::Balanced::_match_quotelike(\$source,qr/\s*/,1,0); - if (defined $pos[0]) - { - my $pre = substr($source,$pos[0],$pos[1]); # matched prefix - my $iEol; - if( substr($source,$pos[4],$pos[5]) eq '/' && # 1st delimiter - substr($source,$pos[2],$pos[3]) eq '' && # no op like 'm' - index( substr($source,$pos[16],$pos[17]), 'x' ) == -1 && # no //x - ($iEol = index( $source, "\n", $pos[4] )) > 0 && - $iEol < $pos[8] ){ # embedded newlines - # If this is a pattern, it isn't compatible with Switch. Backup past 1st '/'. - pos( $source ) = $pos[6]; - $text .= $pre . substr($source,$pos[2],$pos[6]-$pos[2]); - } else { - $text .= $pre . substr($source,$pos[2],$pos[18]-$pos[2]); - } - next component; - } - if ($source =~ m/(\G\s*$pod_or_DATA)/gc) { - $text .= $1; - next component; - } - @pos = Text::Balanced::_match_variable(\$source,qr/\s*/); - if (defined $pos[0]) - { - $text .= " " if $pos[0] < $pos[2]; - $text .= substr($source,$pos[0],$pos[4]-$pos[0]); - next component; - } - - if ($Perl5 && $source =~ m/\G(\n*)(\s*)(switch)\b(?=\s*[(])/gc - || $Perl6 && $source =~ m/\G(\n*)(\s*)(given)\b(?=\s*[(])/gc - || $Perl6 && $source =~ m/\G(\n*)(\s*)(given)\b(.*)(?=\{)/gc) - { - my $keyword = $3; - my $arg = $4; - $text .= $1.$2.'S_W_I_T_C_H: while (1) '; - unless ($arg) { - @pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\(/,qr/\)/,qr/[[{(<]/,qr/[]})>]/,undef) - or do { - die "Bad $keyword statement (problem in the parentheses?) near $Switch::file line ", line(substr($source,0,pos $source),$line), "\n"; - }; - $arg = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - } - $arg =~ s {^\s*[(]\s*%} { ( \\\%} || - $arg =~ s {^\s*[(]\s*m\b} { ( qr} || - $arg =~ s {^\s*[(]\s*/} { ( qr/} || - $arg =~ s {^\s*[(]\s*qw} { ( \\qw}; - @pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef) - or do { - die "Bad $keyword statement (problem in the code block?) near $Switch::file line ", line(substr($source,0, pos $source), $line), "\n"; - }; - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s/{/{ local \$::_S_W_I_T_C_H; Switch::switch $arg;/; - $text .= $code . 'continue {last}'; - next component; - } - elsif ($Perl5 && $source =~ m/\G(\s*)(case\b)(?!\s*=>)/gc - || $Perl6 && $source =~ m/\G(\s*)(when\b)(?!\s*=>)/gc - || $Perl6 && $source =~ m/\G(\s*)(default\b)(?=\s*\{)/gc) - { - my $keyword = $2; - $text .= $1 . ($keyword eq "default" - ? "if (1)" - : "if (Switch::case"); - - if ($keyword eq "default") { - # Nothing to do - } - elsif (@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef)) { - my $code = substr($source,$pos[0],$pos[4]-$pos[0]); - $text .= " " if $pos[0] < $pos[2]; - $text .= "sub " if is_block $code; - $text .= filter_blocks($code,line(substr($source,0,$pos[0]),$line)) . ")"; - } - elsif (@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/[[(]/,qr/[])]/,qr/[[({]/,qr/[])}]/,undef)) { - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s {^\s*[(]\s*%} { ( \\\%} || - $code =~ s {^\s*[(]\s*m\b} { ( qr} || - $code =~ s {^\s*[(]\s*/} { ( qr/} || - $code =~ s {^\s*[(]\s*qw} { ( \\qw}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ($Perl6 && do{@pos = Text::Balanced::_match_variable(\$source,qr/\s*/)}) { - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s {^\s*%} { \%} || - $code =~ s {^\s*@} { \@}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ( @pos = Text::Balanced::_match_quotelike(\$source,qr/\s*/,1,0)) { - my $code = substr($source,$pos[2],$pos[18]-$pos[2]); - $code = filter_blocks($code,line(substr($source,0,$pos[2]),$line)); - $code =~ s {^\s*m} { qr} || - $code =~ s {^\s*/} { qr/} || - $code =~ s {^\s*qw} { \\qw}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ($Perl5 && $source =~ m/\G\s*(([^\$\@{])[^\$\@{]*)(?=\s*{)/gc - || $Perl6 && $source =~ m/\G\s*([^;{]*)()/gc) { - my $code = filter_blocks($1,line(substr($source,0,pos $source),$line)); - $text .= ' \\' if $2 eq '%'; - $text .= " $code)"; - } - else { - die "Bad $keyword statement (invalid $keyword value?) near $Switch::file line ", line(substr($source,0,pos $source), $line), "\n"; - } - - die "Missing opening brace or semi-colon after 'when' value near $Switch::file line ", line(substr($source,0,pos $source), $line), "\n" - unless !$Perl6 || $source =~ m/\G(\s*)(?=;|\{)/gc; - - do{@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef)} - or do { - if ($source =~ m/\G\s*(?=([};]|\Z))/gc) { - $casecounter++; - next component; - } - die "Bad $keyword statement (problem in the code block?) near $Switch::file line ", line(substr($source,0,pos $source),$line), "\n"; - }; - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s/}(?=\s*\Z)/;last S_W_I_T_C_H }/ - unless $fallthrough; - $text .= "{ while (1) $code continue { goto C_A_S_E_$casecounter } last S_W_I_T_C_H; C_A_S_E_$casecounter: }"; - $casecounter++; - next component; - } - - $source =~ m/\G(\s*(-[sm]\s+|\w+|#.*\n|\W))/gc; - $text .= $1; - } - $text; -} - - - -sub in -{ - my ($x,$y) = @_; - my @numy; - for my $nextx ( @$x ) - { - my $numx = ref($nextx) || defined $nextx && (~$nextx&$nextx) eq 0; - for my $j ( 0..$#$y ) - { - my $nexty = $y->[$j]; - push @numy, ref($nexty) || defined $nexty && (~$nexty&$nexty) eq 0 - if @numy <= $j; - return 1 if $numx && $numy[$j] && $nextx==$nexty - || $nextx eq $nexty; - - } - } - return ""; -} - -sub on_exists -{ - my $ref = @_==1 && ref($_[0]) eq 'HASH' ? $_[0] : { @_ }; - [ keys %$ref ] -} - -sub on_defined -{ - my $ref = @_==1 && ref($_[0]) eq 'HASH' ? $_[0] : { @_ }; - [ grep { defined $ref->{$_} } keys %$ref ] -} - -sub switch(;$) -{ - my ($s_val) = @_ ? $_[0] : $_; - my $s_ref = ref $s_val; - - if ($s_ref eq 'CODE') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - return $s_val == $c_val if ref $c_val eq 'CODE'; - return $s_val->(@$c_val) if ref $c_val eq 'ARRAY'; - return $s_val->($c_val); - }; - } - elsif ($s_ref eq "" && defined $s_val && (~$s_val&$s_val) eq 0) # NUMERIC SCALAR - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val == $c_val if $c_ref eq "" - && defined $c_val - && (~$c_val&$c_val) eq 0; - return $s_val eq $c_val if $c_ref eq ""; - return in([$s_val],$c_val) if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return scalar $s_val=~/$c_val/ - if $c_ref eq 'Regexp'; - return scalar $c_val->{$s_val} - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq "") # STRING SCALAR - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val eq $c_val if $c_ref eq ""; - return in([$s_val],$c_val) if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return scalar $s_val=~/$c_val/ - if $c_ref eq 'Regexp'; - return scalar $c_val->{$s_val} - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'ARRAY') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return in($s_val,[$c_val]) if $c_ref eq ""; - return in($s_val,$c_val) if $c_ref eq 'ARRAY'; - return $c_val->(@$s_val) if $c_ref eq 'CODE'; - return $c_val->call(@$s_val) - if $c_ref eq 'Switch'; - return scalar grep {$_=~/$c_val/} @$s_val - if $c_ref eq 'Regexp'; - return scalar grep {$c_val->{$_}} @$s_val - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'Regexp') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $c_val=~/s_val/ if $c_ref eq ""; - return scalar grep {$_=~/s_val/} @$c_val - if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return $s_val eq $c_val if $c_ref eq 'Regexp'; - return grep {$_=~/$s_val/ && $c_val->{$_}} keys %$c_val - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'HASH') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val->{$c_val} if $c_ref eq ""; - return scalar grep {$s_val->{$_}} @$c_val - if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return grep {$_=~/$c_val/ && $s_val->{"$_"}} keys %$s_val - if $c_ref eq 'Regexp'; - return $s_val==$c_val if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'Switch') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - return $s_val == $c_val if ref $c_val eq 'Switch'; - return $s_val->call(@$c_val) - if ref $c_val eq 'ARRAY'; - return $s_val->call($c_val); - }; - } - else - { - croak "Cannot switch on $s_ref"; - } - return 1; -} - -sub case($) { local $SIG{__WARN__} = \&carp; - $::_S_W_I_T_C_H->(@_); } - -# IMPLEMENT __ - -my $placeholder = bless { arity=>1, impl=>sub{$_[1+$_[0]]} }; - -sub __() { $placeholder } - -sub __arg($) -{ - my $index = $_[0]+1; - bless { arity=>0, impl=>sub{$_[$index]} }; -} - -sub hosub(&@) -{ - # WRITE THIS -} - -sub call -{ - my ($self,@args) = @_; - return $self->{impl}->(0,@args); -} - -sub meta_bop(&) -{ - my ($op) = @_; - sub - { - my ($left, $right, $reversed) = @_; - ($right,$left) = @_ if $reversed; - - my $rop = ref $right eq 'Switch' - ? $right - : bless { arity=>0, impl=>sub{$right} }; - - my $lop = ref $left eq 'Switch' - ? $left - : bless { arity=>0, impl=>sub{$left} }; - - my $arity = $lop->{arity} + $rop->{arity}; - - return bless { - arity => $arity, - impl => sub { my $start = shift; - return $op->($lop->{impl}->($start,@_), - $rop->{impl}->($start+$lop->{arity},@_)); - } - }; - }; -} - -sub meta_uop(&) -{ - my ($op) = @_; - sub - { - my ($left) = @_; - - my $lop = ref $left eq 'Switch' - ? $left - : bless { arity=>0, impl=>sub{$left} }; - - my $arity = $lop->{arity}; - - return bless { - arity => $arity, - impl => sub { $op->($lop->{impl}->(@_)) } - }; - }; -} - - -use overload - "+" => meta_bop {$_[0] + $_[1]}, - "-" => meta_bop {$_[0] - $_[1]}, - "*" => meta_bop {$_[0] * $_[1]}, - "/" => meta_bop {$_[0] / $_[1]}, - "%" => meta_bop {$_[0] % $_[1]}, - "**" => meta_bop {$_[0] ** $_[1]}, - "<<" => meta_bop {$_[0] << $_[1]}, - ">>" => meta_bop {$_[0] >> $_[1]}, - "x" => meta_bop {$_[0] x $_[1]}, - "." => meta_bop {$_[0] . $_[1]}, - "<" => meta_bop {$_[0] < $_[1]}, - "<=" => meta_bop {$_[0] <= $_[1]}, - ">" => meta_bop {$_[0] > $_[1]}, - ">=" => meta_bop {$_[0] >= $_[1]}, - "==" => meta_bop {$_[0] == $_[1]}, - "!=" => meta_bop {$_[0] != $_[1]}, - "<=>" => meta_bop {$_[0] <=> $_[1]}, - "lt" => meta_bop {$_[0] lt $_[1]}, - "le" => meta_bop {$_[0] le $_[1]}, - "gt" => meta_bop {$_[0] gt $_[1]}, - "ge" => meta_bop {$_[0] ge $_[1]}, - "eq" => meta_bop {$_[0] eq $_[1]}, - "ne" => meta_bop {$_[0] ne $_[1]}, - "cmp" => meta_bop {$_[0] cmp $_[1]}, - "\&" => meta_bop {$_[0] & $_[1]}, - "^" => meta_bop {$_[0] ^ $_[1]}, - "|" => meta_bop {$_[0] | $_[1]}, - "atan2" => meta_bop {atan2 $_[0], $_[1]}, - - "neg" => meta_uop {-$_[0]}, - "!" => meta_uop {!$_[0]}, - "~" => meta_uop {~$_[0]}, - "cos" => meta_uop {cos $_[0]}, - "sin" => meta_uop {sin $_[0]}, - "exp" => meta_uop {exp $_[0]}, - "abs" => meta_uop {abs $_[0]}, - "log" => meta_uop {log $_[0]}, - "sqrt" => meta_uop {sqrt $_[0]}, - "bool" => sub { croak "Can't use && or || in expression containing __" }, - - # "&()" => sub { $_[0]->{impl} }, - - # "||" => meta_bop {$_[0] || $_[1]}, - # "&&" => meta_bop {$_[0] && $_[1]}, - # fallback => 1, - ; -1; - -__END__ - - -=head1 NAME - -Switch - A switch statement for Perl - -=head1 SYNOPSIS - - use Switch; - - switch ($val) { - case 1 { print "number 1" } - case "a" { print "string a" } - case [1..10,42] { print "number in list" } - case (\@array) { print "number in list" } - case /\w+/ { print "pattern" } - case qr/\w+/ { print "pattern" } - case (\%hash) { print "entry in hash" } - case (\&sub) { print "arg to subroutine" } - else { print "previous case not true" } - } - -=head1 BACKGROUND - -[Skip ahead to L<"DESCRIPTION"> if you don't care about the whys -and wherefores of this control structure] - -In seeking to devise a "Swiss Army" case mechanism suitable for Perl, -it is useful to generalize this notion of distributed conditional -testing as far as possible. Specifically, the concept of "matching" -between the switch value and the various case values need not be -restricted to numeric (or string or referential) equality, as it is in other -languages. Indeed, as Table 1 illustrates, Perl -offers at least eighteen different ways in which two values could -generate a match. - - Table 1: Matching a switch value ($s) with a case value ($c) - - Switch Case Type of Match Implied Matching Code - Value Value - ====== ===== ===================== ============= - - number same numeric or referential match if $s == $c; - or ref equality - - object method result of method call match if $s->$c(); - ref name match if defined $s->$c(); - or ref - - other other string equality match if $s eq $c; - non-ref non-ref - scalar scalar - - string regexp pattern match match if $s =~ /$c/; - - array scalar array entry existence match if 0<=$c && $c<@$s; - ref array entry definition match if defined $s->[$c]; - array entry truth match if $s->[$c]; - - array array array intersection match if intersects(@$s, @$c); - ref ref (apply this table to - all pairs of elements - $s->[$i] and - $c->[$j]) - - array regexp array grep match if grep /$c/, @$s; - ref - - hash scalar hash entry existence match if exists $s->{$c}; - ref hash entry definition match if defined $s->{$c}; - hash entry truth match if $s->{$c}; - - hash regexp hash grep match if grep /$c/, keys %$s; - ref - - sub scalar return value defn match if defined $s->($c); - ref return value truth match if $s->($c); - - sub array return value defn match if defined $s->(@$c); - ref ref return value truth match if $s->(@$c); - - -In reality, Table 1 covers 31 alternatives, because only the equality and -intersection tests are commutative; in all other cases, the roles of -the C<$s> and C<$c> variables could be reversed to produce a -different test. For example, instead of testing a single hash for -the existence of a series of keys (C{$c}>), -one could test for the existence of a single key in a series of hashes -(C{$s}>). - -=head1 DESCRIPTION - -The Switch.pm module implements a generalized case mechanism that covers -most (but not all) of the numerous possible combinations of switch and case -values described above. - -The module augments the standard Perl syntax with two new control -statements: C and C. The C statement takes a -single scalar argument of any type, specified in parentheses. -C stores this value as the -current switch value in a (localized) control variable. -The value is followed by a block which may contain one or more -Perl statements (including the C statement described below). -The block is unconditionally executed once the switch value has -been cached. - -A C statement takes a single scalar argument (in mandatory -parentheses if it's a variable; otherwise the parens are optional) and -selects the appropriate type of matching between that argument and the -current switch value. The type of matching used is determined by the -respective types of the switch value and the C argument, as -specified in Table 1. If the match is successful, the mandatory -block associated with the C statement is executed. - -In most other respects, the C statement is semantically identical -to an C statement. For example, it can be followed by an C -clause, and can be used as a postfix statement qualifier. - -However, when a C block has been executed control is automatically -transferred to the statement after the immediately enclosing C -block, rather than to the next statement within the block. In other -words, the success of any C statement prevents other cases in the -same scope from executing. But see L<"Allowing fall-through"> below. - -Together these two new statements provide a fully generalized case -mechanism: - - use Switch; - - # AND LATER... - - %special = ( woohoo => 1, d'oh => 1 ); - - while (<>) { - chomp; - switch ($_) { - case (%special) { print "homer\n"; } # if $special{$_} - case /[a-z]/i { print "alpha\n"; } # if $_ =~ /a-z/i - case [1..9] { print "small num\n"; } # if $_ in [1..9] - case { $_[0] >= 10 } { print "big num\n"; } # if $_ >= 10 - print "must be punctuation\n" case /\W/; # if $_ ~= /\W/ - } - } - -Note that Ces can be nested within C (or any other) blocks, -and a series of C statements can try different types of matches --- hash membership, pattern match, array intersection, simple equality, -etc. -- against the same switch value. - -The use of intersection tests against an array reference is particularly -useful for aggregating integral cases: - - sub classify_digit - { - switch ($_[0]) { case 0 { return 'zero' } - case [2,4,6,8] { return 'even' } - case [1,3,5,7,9] { return 'odd' } - case /[A-F]/i { return 'hex' } - } - } - - -=head2 Allowing fall-through - -Fall-though (trying another case after one has already succeeded) -is usually a Bad Idea in a switch statement. However, this -is Perl, not a police state, so there I a way to do it, if you must. - -If a C block executes an untargeted C, control is -immediately transferred to the statement I the C statement -(i.e. usually another case), rather than out of the surrounding -C block. - -For example: - - switch ($val) { - case 1 { handle_num_1(); next } # and try next case... - case "1" { handle_str_1(); next } # and try next case... - case [0..9] { handle_num_any(); } # and we're done - case /\d/ { handle_dig_any(); next } # and try next case... - case /.*/ { handle_str_any(); next } # and try next case... - } - -If $val held the number C<1>, the above C block would call the -first three C subroutines, jumping to the next case test -each time it encountered a C. After the third C block -was executed, control would jump to the end of the enclosing -C block. - -On the other hand, if $val held C<10>, then only the last two C -subroutines would be called. - -Note that this mechanism allows the notion of I. -For example: - - switch ($val) { - case [0..9] { handle_num_any(); next if $val < 7; } - case /\d/ { handle_dig_any(); } - } - -If an untargeted C statement is executed in a case block, this -immediately transfers control out of the enclosing C block -(in other words, there is an implicit C at the end of each -normal C block). Thus the previous example could also have been -written: - - switch ($val) { - case [0..9] { handle_num_any(); last if $val >= 7; next; } - case /\d/ { handle_dig_any(); } - } - - -=head2 Automating fall-through - -In situations where case fall-through should be the norm, rather than an -exception, an endless succession of terminal Cs is tedious and ugly. -Hence, it is possible to reverse the default behaviour by specifying -the string "fallthrough" when importing the module. For example, the -following code is equivalent to the first example in L<"Allowing fall-through">: - - use Switch 'fallthrough'; - - switch ($val) { - case 1 { handle_num_1(); } - case "1" { handle_str_1(); } - case [0..9] { handle_num_any(); last } - case /\d/ { handle_dig_any(); } - case /.*/ { handle_str_any(); } - } - -Note the explicit use of a C to preserve the non-fall-through -behaviour of the third case. - - - -=head2 Alternative syntax - -Perl 6 will provide a built-in switch statement with essentially the -same semantics as those offered by Switch.pm, but with a different -pair of keywords. In Perl 6 C will be spelled C, and -C will be pronounced C. In addition, the C statement -will not require switch or case values to be parenthesized. - -This future syntax is also (largely) available via the Switch.pm module, by -importing it with the argument C<"Perl6">. For example: - - use Switch 'Perl6'; - - given ($val) { - when 1 { handle_num_1(); } - when ($str1) { handle_str_1(); } - when [0..9] { handle_num_any(); last } - when /\d/ { handle_dig_any(); } - when /.*/ { handle_str_any(); } - default { handle anything else; } - } - -Note that scalars still need to be parenthesized, since they would be -ambiguous in Perl 5. - -Note too that you can mix and match both syntaxes by importing the module -with: - - use Switch 'Perl5', 'Perl6'; - - -=head2 Higher-order Operations - -One situation in which C and C do not provide a good -substitute for a cascaded C, is where a switch value needs to -be tested against a series of conditions. For example: - - sub beverage { - switch (shift) { - case { $_[0] < 10 } { return 'milk' } - case { $_[0] < 20 } { return 'coke' } - case { $_[0] < 30 } { return 'beer' } - case { $_[0] < 40 } { return 'wine' } - case { $_[0] < 50 } { return 'malt' } - case { $_[0] < 60 } { return 'Moet' } - else { return 'milk' } - } - } - -(This is equivalent to writing C, etc.; C<$_[0]> -is the argument to the anonymous subroutine.) - -The need to specify each condition as a subroutine block is tiresome. To -overcome this, when importing Switch.pm, a special "placeholder" -subroutine named C<__> [sic] may also be imported. This subroutine -converts (almost) any expression in which it appears to a reference to a -higher-order function. That is, the expression: - - use Switch '__'; - - __ < 2 - -is equivalent to: - - sub { $_[0] < 2 } - -With C<__>, the previous ugly case statements can be rewritten: - - case __ < 10 { return 'milk' } - case __ < 20 { return 'coke' } - case __ < 30 { return 'beer' } - case __ < 40 { return 'wine' } - case __ < 50 { return 'malt' } - case __ < 60 { return 'Moet' } - else { return 'milk' } - -The C<__> subroutine makes extensive use of operator overloading to -perform its magic. All operations involving __ are overloaded to -produce an anonymous subroutine that implements a lazy version -of the original operation. - -The only problem is that operator overloading does not allow the -boolean operators C<&&> and C<||> to be overloaded. So a case statement -like this: - - case 0 <= __ && __ < 10 { return 'digit' } - -doesn't act as expected, because when it is -executed, it constructs two higher order subroutines -and then treats the two resulting references as arguments to C<&&>: - - sub { 0 <= $_[0] } && sub { $_[0] < 10 } - -This boolean expression is inevitably true, since both references are -non-false. Fortunately, the overloaded C<'bool'> operator catches this -situation and flags it as an error. - -=head1 DEPENDENCIES - -The module is implemented using Filter::Util::Call and Text::Balanced -and requires both these modules to be installed. - -=head1 AUTHOR - -Damian Conway (damian@conway.org). This module is now maintained by Rafael -Garcia-Suarez (rgarciasuarez@gmail.com) and more generally by the Perl 5 -Porters (perl5-porters@perl.org), as part of the Perl core. - -=head1 BUGS - -There are undoubtedly serious bugs lurking somewhere in code this funky :-) -Bug reports and other feedback are most welcome. - -=head1 LIMITATIONS - -Due to the heuristic nature of Switch.pm's source parsing, the presence of -regexes with embedded newlines that are specified with raw C -delimiters and don't have a modifier C are indistinguishable from -code chunks beginning with the division operator C. As a workaround -you must use C or C for such patterns. Also, the presence -of regexes specified with raw C delimiters may cause mysterious -errors. The workaround is to use C instead. - -Due to the way source filters work in Perl, you can't use Switch inside -an string C. - -If your source file is longer then 1 million characters and you have a -switch statement that crosses the 1 million (or 2 million, etc.) -character boundary you will get mysterious errors. The workaround is to -use smaller source files. - -=head1 COPYRIGHT - - Copyright (c) 1997-2008, Damian Conway. All Rights Reserved. - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/bindings/scripts/Switch.pm~ --- a/WebCore/bindings/scripts/Switch.pm~ Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,875 +0,0 @@ -package Switch; - -use strict; -use vars qw($VERSION); -use Carp; - -use if $] >= 5.011, 'deprecate'; - -$VERSION = '2.16'; - - -# LOAD FILTERING MODULE... -use Filter::Util::Call; - -sub __(); - -# CATCH ATTEMPTS TO CALL case OUTSIDE THE SCOPE OF ANY switch - -$::_S_W_I_T_C_H = sub { croak "case/when statement not in switch/given block" }; - -my $offset; -my $fallthrough; -my ($Perl5, $Perl6) = (0,0); - -sub import -{ - $fallthrough = grep /\bfallthrough\b/, @_; - $offset = (caller)[2]+1; - filter_add({}) unless @_>1 && $_[1] eq 'noimport'; - my $pkg = caller; - no strict 'refs'; - for ( qw( on_defined on_exists ) ) - { - *{"${pkg}::$_"} = \&$_; - } - *{"${pkg}::__"} = \&__ if grep /__/, @_; - $Perl6 = 1 if grep(/Perl\s*6/i, @_); - $Perl5 = 1 if grep(/Perl\s*5/i, @_) || !grep(/Perl\s*6/i, @_); - 1; -} - -sub unimport -{ - filter_del() -} - -sub filter -{ - my($self) = @_ ; - local $Switch::file = (caller)[1]; - - my $status = 1; - $status = filter_read(1_000_000); - return $status if $status<0; - $_ = filter_blocks($_,$offset); - $_ = "# line $offset\n" . $_ if $offset; undef $offset; - return $status; -} - -use Text::Balanced ':ALL'; - -sub line -{ - my ($pretext,$offset) = @_; - ($pretext=~tr/\n/\n/)+($offset||0); -} - -sub is_block -{ - local $SIG{__WARN__}=sub{die$@}; - local $^W=1; - my $ishash = defined eval 'my $hr='.$_[0]; - undef $@; - return !$ishash; -} - -my $pod_or_DATA = qr/ ^=[A-Za-z] .*? ^=cut (?![A-Za-z]) .*? $ - | ^__(DATA|END)__\n.* - /smx; - -my $casecounter = 1; -sub filter_blocks -{ - my ($source, $line) = @_; - return $source unless $Perl5 && $source =~ /case|switch/ - || $Perl6 && $source =~ /when|given|default/; - pos $source = 0; - my $text = ""; - component: while (pos $source < length $source) - { - if ($source =~ m/(\G\s*use\s+Switch\b)/gc) - { - $text .= q{use Switch 'noimport'}; - next component; - } - my @pos = Text::Balanced::_match_quotelike(\$source,qr/\s*/,1,0); - if (defined $pos[0]) - { - my $pre = substr($source,$pos[0],$pos[1]); # matched prefix - my $iEol; - if( substr($source,$pos[4],$pos[5]) eq '/' && # 1st delimiter - substr($source,$pos[2],$pos[3]) eq '' && # no op like 'm' - index( substr($source,$pos[16],$pos[17]), 'x' ) == -1 && # no //x - ($iEol = index( $source, "\n", $pos[4] )) > 0 && - $iEol < $pos[8] ){ # embedded newlines - # If this is a pattern, it isn't compatible with Switch. Backup past 1st '/'. - pos( $source ) = $pos[6]; - $text .= $pre . substr($source,$pos[2],$pos[6]-$pos[2]); - } else { - $text .= $pre . substr($source,$pos[2],$pos[18]-$pos[2]); - } - next component; - } - if ($source =~ m/(\G\s*$pod_or_DATA)/gc) { - $text .= $1; - next component; - } - @pos = Text::Balanced::_match_variable(\$source,qr/\s*/); - if (defined $pos[0]) - { - $text .= " " if $pos[0] < $pos[2]; - $text .= substr($source,$pos[0],$pos[4]-$pos[0]); - next component; - } - - if ($Perl5 && $source =~ m/\G(\n*)(\s*)(switch)\b(?=\s*[(])/gc - || $Perl6 && $source =~ m/\G(\n*)(\s*)(given)\b(?=\s*[(])/gc - || $Perl6 && $source =~ m/\G(\n*)(\s*)(given)\b(.*)(?=\{)/gc) - { - my $keyword = $3; - my $arg = $4; - $text .= $1.$2.'S_W_I_T_C_H: while (1) '; - unless ($arg) { - @pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\(/,qr/\)/,qr/[[{(<]/,qr/[]})>]/,undef) - or do { - die "Bad $keyword statement (problem in the parentheses?) near $Switch::file line ", line(substr($source,0,pos $source),$line), "\n"; - }; - $arg = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - } - $arg =~ s {^\s*[(]\s*%} { ( \\\%} || - $arg =~ s {^\s*[(]\s*m\b} { ( qr} || - $arg =~ s {^\s*[(]\s*/} { ( qr/} || - $arg =~ s {^\s*[(]\s*qw} { ( \\qw}; - @pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef) - or do { - die "Bad $keyword statement (problem in the code block?) near $Switch::file line ", line(substr($source,0, pos $source), $line), "\n"; - }; - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s/{/{ local \$::_S_W_I_T_C_H; Switch::switch $arg;/; - $text .= $code . 'continue {last}'; - next component; - } - elsif ($Perl5 && $source =~ m/\G(\s*)(case\b)(?!\s*=>)/gc - || $Perl6 && $source =~ m/\G(\s*)(when\b)(?!\s*=>)/gc - || $Perl6 && $source =~ m/\G(\s*)(default\b)(?=\s*\{)/gc) - { - my $keyword = $2; - $text .= $1 . ($keyword eq "default" - ? "if (1)" - : "if (Switch::case"); - - if ($keyword eq "default") { - # Nothing to do - } - elsif (@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef)) { - my $code = substr($source,$pos[0],$pos[4]-$pos[0]); - $text .= " " if $pos[0] < $pos[2]; - $text .= "sub " if is_block $code; - $text .= filter_blocks($code,line(substr($source,0,$pos[0]),$line)) . ")"; - } - elsif (@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/[[(]/,qr/[])]/,qr/[[({]/,qr/[])}]/,undef)) { - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s {^\s*[(]\s*%} { ( \\\%} || - $code =~ s {^\s*[(]\s*m\b} { ( qr} || - $code =~ s {^\s*[(]\s*/} { ( qr/} || - $code =~ s {^\s*[(]\s*qw} { ( \\qw}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ($Perl6 && do{@pos = Text::Balanced::_match_variable(\$source,qr/\s*/)}) { - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s {^\s*%} { \%} || - $code =~ s {^\s*@} { \@}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ( @pos = Text::Balanced::_match_quotelike(\$source,qr/\s*/,1,0)) { - my $code = substr($source,$pos[2],$pos[18]-$pos[2]); - $code = filter_blocks($code,line(substr($source,0,$pos[2]),$line)); - $code =~ s {^\s*m} { qr} || - $code =~ s {^\s*/} { qr/} || - $code =~ s {^\s*qw} { \\qw}; - $text .= " " if $pos[0] < $pos[2]; - $text .= "$code)"; - } - elsif ($Perl5 && $source =~ m/\G\s*(([^\$\@{])[^\$\@{]*)(?=\s*{)/gc - || $Perl6 && $source =~ m/\G\s*([^;{]*)()/gc) { - my $code = filter_blocks($1,line(substr($source,0,pos $source),$line)); - $text .= ' \\' if $2 eq '%'; - $text .= " $code)"; - } - else { - die "Bad $keyword statement (invalid $keyword value?) near $Switch::file line ", line(substr($source,0,pos $source), $line), "\n"; - } - - die "Missing opening brace or semi-colon after 'when' value near $Switch::file line ", line(substr($source,0,pos $source), $line), "\n" - unless !$Perl6 || $source =~ m/\G(\s*)(?=;|\{)/gc; - - do{@pos = Text::Balanced::_match_codeblock(\$source,qr/\s*/,qr/\{/,qr/\}/,qr/\{/,qr/\}/,undef)} - or do { - if ($source =~ m/\G\s*(?=([};]|\Z))/gc) { - $casecounter++; - next component; - } - die "Bad $keyword statement (problem in the code block?) near $Switch::file line ", line(substr($source,0,pos $source),$line), "\n"; - }; - my $code = filter_blocks(substr($source,$pos[0],$pos[4]-$pos[0]),line(substr($source,0,$pos[0]),$line)); - $code =~ s/}(?=\s*\Z)/;last S_W_I_T_C_H }/ - unless $fallthrough; - $text .= "{ while (1) $code continue { goto C_A_S_E_$casecounter } last S_W_I_T_C_H; C_A_S_E_$casecounter: }"; - $casecounter++; - next component; - } - - $source =~ m/\G(\s*(-[sm]\s+|\w+|#.*\n|\W))/gc; - $text .= $1; - } - $text; -} - - - -sub in -{ - my ($x,$y) = @_; - my @numy; - for my $nextx ( @$x ) - { - my $numx = ref($nextx) || defined $nextx && (~$nextx&$nextx) eq 0; - for my $j ( 0..$#$y ) - { - my $nexty = $y->[$j]; - push @numy, ref($nexty) || defined $nexty && (~$nexty&$nexty) eq 0 - if @numy <= $j; - return 1 if $numx && $numy[$j] && $nextx==$nexty - || $nextx eq $nexty; - - } - } - return ""; -} - -sub on_exists -{ - my $ref = @_==1 && ref($_[0]) eq 'HASH' ? $_[0] : { @_ }; - [ keys %$ref ] -} - -sub on_defined -{ - my $ref = @_==1 && ref($_[0]) eq 'HASH' ? $_[0] : { @_ }; - [ grep { defined $ref->{$_} } keys %$ref ] -} - -sub switch(;$) -{ - my ($s_val) = @_ ? $_[0] : $_; - my $s_ref = ref $s_val; - - if ($s_ref eq 'CODE') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - return $s_val == $c_val if ref $c_val eq 'CODE'; - return $s_val->(@$c_val) if ref $c_val eq 'ARRAY'; - return $s_val->($c_val); - }; - } - elsif ($s_ref eq "" && defined $s_val && (~$s_val&$s_val) eq 0) # NUMERIC SCALAR - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val == $c_val if $c_ref eq "" - && defined $c_val - && (~$c_val&$c_val) eq 0; - return $s_val eq $c_val if $c_ref eq ""; - return in([$s_val],$c_val) if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return scalar $s_val=~/$c_val/ - if $c_ref eq 'Regexp'; - return scalar $c_val->{$s_val} - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq "") # STRING SCALAR - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val eq $c_val if $c_ref eq ""; - return in([$s_val],$c_val) if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return scalar $s_val=~/$c_val/ - if $c_ref eq 'Regexp'; - return scalar $c_val->{$s_val} - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'ARRAY') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return in($s_val,[$c_val]) if $c_ref eq ""; - return in($s_val,$c_val) if $c_ref eq 'ARRAY'; - return $c_val->(@$s_val) if $c_ref eq 'CODE'; - return $c_val->call(@$s_val) - if $c_ref eq 'Switch'; - return scalar grep {$_=~/$c_val/} @$s_val - if $c_ref eq 'Regexp'; - return scalar grep {$c_val->{$_}} @$s_val - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'Regexp') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $c_val=~/s_val/ if $c_ref eq ""; - return scalar grep {$_=~/s_val/} @$c_val - if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return $s_val eq $c_val if $c_ref eq 'Regexp'; - return grep {$_=~/$s_val/ && $c_val->{$_}} keys %$c_val - if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'HASH') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - my $c_ref = ref $c_val; - return $s_val->{$c_val} if $c_ref eq ""; - return scalar grep {$s_val->{$_}} @$c_val - if $c_ref eq 'ARRAY'; - return $c_val->($s_val) if $c_ref eq 'CODE'; - return $c_val->call($s_val) if $c_ref eq 'Switch'; - return grep {$_=~/$c_val/ && $s_val->{"$_"}} keys %$s_val - if $c_ref eq 'Regexp'; - return $s_val==$c_val if $c_ref eq 'HASH'; - return; - }; - } - elsif ($s_ref eq 'Switch') - { - $::_S_W_I_T_C_H = - sub { my $c_val = $_[0]; - return $s_val == $c_val if ref $c_val eq 'Switch'; - return $s_val->call(@$c_val) - if ref $c_val eq 'ARRAY'; - return $s_val->call($c_val); - }; - } - else - { - croak "Cannot switch on $s_ref"; - } - return 1; -} - -sub case($) { local $SIG{__WARN__} = \&carp; - $::_S_W_I_T_C_H->(@_); } - -# IMPLEMENT __ - -my $placeholder = bless { arity=>1, impl=>sub{$_[1+$_[0]]} }; - -sub __() { $placeholder } - -sub __arg($) -{ - my $index = $_[0]+1; - bless { arity=>0, impl=>sub{$_[$index]} }; -} - -sub hosub(&@) -{ - # WRITE THIS -} - -sub call -{ - my ($self,@args) = @_; - return $self->{impl}->(0,@args); -} - -sub meta_bop(&) -{ - my ($op) = @_; - sub - { - my ($left, $right, $reversed) = @_; - ($right,$left) = @_ if $reversed; - - my $rop = ref $right eq 'Switch' - ? $right - : bless { arity=>0, impl=>sub{$right} }; - - my $lop = ref $left eq 'Switch' - ? $left - : bless { arity=>0, impl=>sub{$left} }; - - my $arity = $lop->{arity} + $rop->{arity}; - - return bless { - arity => $arity, - impl => sub { my $start = shift; - return $op->($lop->{impl}->($start,@_), - $rop->{impl}->($start+$lop->{arity},@_)); - } - }; - }; -} - -sub meta_uop(&) -{ - my ($op) = @_; - sub - { - my ($left) = @_; - - my $lop = ref $left eq 'Switch' - ? $left - : bless { arity=>0, impl=>sub{$left} }; - - my $arity = $lop->{arity}; - - return bless { - arity => $arity, - impl => sub { $op->($lop->{impl}->(@_)) } - }; - }; -} - - -use overload - "+" => meta_bop {$_[0] + $_[1]}, - "-" => meta_bop {$_[0] - $_[1]}, - "*" => meta_bop {$_[0] * $_[1]}, - "/" => meta_bop {$_[0] / $_[1]}, - "%" => meta_bop {$_[0] % $_[1]}, - "**" => meta_bop {$_[0] ** $_[1]}, - "<<" => meta_bop {$_[0] << $_[1]}, - ">>" => meta_bop {$_[0] >> $_[1]}, - "x" => meta_bop {$_[0] x $_[1]}, - "." => meta_bop {$_[0] . $_[1]}, - "<" => meta_bop {$_[0] < $_[1]}, - "<=" => meta_bop {$_[0] <= $_[1]}, - ">" => meta_bop {$_[0] > $_[1]}, - ">=" => meta_bop {$_[0] >= $_[1]}, - "==" => meta_bop {$_[0] == $_[1]}, - "!=" => meta_bop {$_[0] != $_[1]}, - "<=>" => meta_bop {$_[0] <=> $_[1]}, - "lt" => meta_bop {$_[0] lt $_[1]}, - "le" => meta_bop {$_[0] le $_[1]}, - "gt" => meta_bop {$_[0] gt $_[1]}, - "ge" => meta_bop {$_[0] ge $_[1]}, - "eq" => meta_bop {$_[0] eq $_[1]}, - "ne" => meta_bop {$_[0] ne $_[1]}, - "cmp" => meta_bop {$_[0] cmp $_[1]}, - "\&" => meta_bop {$_[0] & $_[1]}, - "^" => meta_bop {$_[0] ^ $_[1]}, - "|" => meta_bop {$_[0] | $_[1]}, - "atan2" => meta_bop {atan2 $_[0], $_[1]}, - - "neg" => meta_uop {-$_[0]}, - "!" => meta_uop {!$_[0]}, - "~" => meta_uop {~$_[0]}, - "cos" => meta_uop {cos $_[0]}, - "sin" => meta_uop {sin $_[0]}, - "exp" => meta_uop {exp $_[0]}, - "abs" => meta_uop {abs $_[0]}, - "log" => meta_uop {log $_[0]}, - "sqrt" => meta_uop {sqrt $_[0]}, - "bool" => sub { croak "Can't use && or || in expression containing __" }, - - # "&()" => sub { $_[0]->{impl} }, - - # "||" => meta_bop {$_[0] || $_[1]}, - # "&&" => meta_bop {$_[0] && $_[1]}, - # fallback => 1, - ; -1; - -__END__ - - -=head1 NAME - -Switch - A switch statement for Perl - -=head1 SYNOPSIS - - use Switch; - - switch ($val) { - case 1 { print "number 1" } - case "a" { print "string a" } - case [1..10,42] { print "number in list" } - case (\@array) { print "number in list" } - case /\w+/ { print "pattern" } - case qr/\w+/ { print "pattern" } - case (\%hash) { print "entry in hash" } - case (\&sub) { print "arg to subroutine" } - else { print "previous case not true" } - } - -=head1 BACKGROUND - -[Skip ahead to L<"DESCRIPTION"> if you don't care about the whys -and wherefores of this control structure] - -In seeking to devise a "Swiss Army" case mechanism suitable for Perl, -it is useful to generalize this notion of distributed conditional -testing as far as possible. Specifically, the concept of "matching" -between the switch value and the various case values need not be -restricted to numeric (or string or referential) equality, as it is in other -languages. Indeed, as Table 1 illustrates, Perl -offers at least eighteen different ways in which two values could -generate a match. - - Table 1: Matching a switch value ($s) with a case value ($c) - - Switch Case Type of Match Implied Matching Code - Value Value - ====== ===== ===================== ============= - - number same numeric or referential match if $s == $c; - or ref equality - - object method result of method call match if $s->$c(); - ref name match if defined $s->$c(); - or ref - - other other string equality match if $s eq $c; - non-ref non-ref - scalar scalar - - string regexp pattern match match if $s =~ /$c/; - - array scalar array entry existence match if 0<=$c && $c<@$s; - ref array entry definition match if defined $s->[$c]; - array entry truth match if $s->[$c]; - - array array array intersection match if intersects(@$s, @$c); - ref ref (apply this table to - all pairs of elements - $s->[$i] and - $c->[$j]) - - array regexp array grep match if grep /$c/, @$s; - ref - - hash scalar hash entry existence match if exists $s->{$c}; - ref hash entry definition match if defined $s->{$c}; - hash entry truth match if $s->{$c}; - - hash regexp hash grep match if grep /$c/, keys %$s; - ref - - sub scalar return value defn match if defined $s->($c); - ref return value truth match if $s->($c); - - sub array return value defn match if defined $s->(@$c); - ref ref return value truth match if $s->(@$c); - - -In reality, Table 1 covers 31 alternatives, because only the equality and -intersection tests are commutative; in all other cases, the roles of -the C<$s> and C<$c> variables could be reversed to produce a -different test. For example, instead of testing a single hash for -the existence of a series of keys (C{$c}>), -one could test for the existence of a single key in a series of hashes -(C{$s}>). - -=head1 DESCRIPTION - -The Switch.pm module implements a generalized case mechanism that covers -most (but not all) of the numerous possible combinations of switch and case -values described above. - -The module augments the standard Perl syntax with two new control -statements: C and C. The C statement takes a -single scalar argument of any type, specified in parentheses. -C stores this value as the -current switch value in a (localized) control variable. -The value is followed by a block which may contain one or more -Perl statements (including the C statement described below). -The block is unconditionally executed once the switch value has -been cached. - -A C statement takes a single scalar argument (in mandatory -parentheses if it's a variable; otherwise the parens are optional) and -selects the appropriate type of matching between that argument and the -current switch value. The type of matching used is determined by the -respective types of the switch value and the C argument, as -specified in Table 1. If the match is successful, the mandatory -block associated with the C statement is executed. - -In most other respects, the C statement is semantically identical -to an C statement. For example, it can be followed by an C -clause, and can be used as a postfix statement qualifier. - -However, when a C block has been executed control is automatically -transferred to the statement after the immediately enclosing C -block, rather than to the next statement within the block. In other -words, the success of any C statement prevents other cases in the -same scope from executing. But see L<"Allowing fall-through"> below. - -Together these two new statements provide a fully generalized case -mechanism: - - use Switch; - - # AND LATER... - - %special = ( woohoo => 1, d'oh => 1 ); - - while (<>) { - chomp; - switch ($_) { - case (%special) { print "homer\n"; } # if $special{$_} - case /[a-z]/i { print "alpha\n"; } # if $_ =~ /a-z/i - case [1..9] { print "small num\n"; } # if $_ in [1..9] - case { $_[0] >= 10 } { print "big num\n"; } # if $_ >= 10 - print "must be punctuation\n" case /\W/; # if $_ ~= /\W/ - } - } - -Note that Ces can be nested within C (or any other) blocks, -and a series of C statements can try different types of matches --- hash membership, pattern match, array intersection, simple equality, -etc. -- against the same switch value. - -The use of intersection tests against an array reference is particularly -useful for aggregating integral cases: - - sub classify_digit - { - switch ($_[0]) { case 0 { return 'zero' } - case [2,4,6,8] { return 'even' } - case [1,3,5,7,9] { return 'odd' } - case /[A-F]/i { return 'hex' } - } - } - - -=head2 Allowing fall-through - -Fall-though (trying another case after one has already succeeded) -is usually a Bad Idea in a switch statement. However, this -is Perl, not a police state, so there I a way to do it, if you must. - -If a C block executes an untargeted C, control is -immediately transferred to the statement I the C statement -(i.e. usually another case), rather than out of the surrounding -C block. - -For example: - - switch ($val) { - case 1 { handle_num_1(); next } # and try next case... - case "1" { handle_str_1(); next } # and try next case... - case [0..9] { handle_num_any(); } # and we're done - case /\d/ { handle_dig_any(); next } # and try next case... - case /.*/ { handle_str_any(); next } # and try next case... - } - -If $val held the number C<1>, the above C block would call the -first three C subroutines, jumping to the next case test -each time it encountered a C. After the third C block -was executed, control would jump to the end of the enclosing -C block. - -On the other hand, if $val held C<10>, then only the last two C -subroutines would be called. - -Note that this mechanism allows the notion of I. -For example: - - switch ($val) { - case [0..9] { handle_num_any(); next if $val < 7; } - case /\d/ { handle_dig_any(); } - } - -If an untargeted C statement is executed in a case block, this -immediately transfers control out of the enclosing C block -(in other words, there is an implicit C at the end of each -normal C block). Thus the previous example could also have been -written: - - switch ($val) { - case [0..9] { handle_num_any(); last if $val >= 7; next; } - case /\d/ { handle_dig_any(); } - } - - -=head2 Automating fall-through - -In situations where case fall-through should be the norm, rather than an -exception, an endless succession of terminal Cs is tedious and ugly. -Hence, it is possible to reverse the default behaviour by specifying -the string "fallthrough" when importing the module. For example, the -following code is equivalent to the first example in L<"Allowing fall-through">: - - use Switch 'fallthrough'; - - switch ($val) { - case 1 { handle_num_1(); } - case "1" { handle_str_1(); } - case [0..9] { handle_num_any(); last } - case /\d/ { handle_dig_any(); } - case /.*/ { handle_str_any(); } - } - -Note the explicit use of a C to preserve the non-fall-through -behaviour of the third case. - - - -=head2 Alternative syntax - -Perl 6 will provide a built-in switch statement with essentially the -same semantics as those offered by Switch.pm, but with a different -pair of keywords. In Perl 6 C will be spelled C, and -C will be pronounced C. In addition, the C statement -will not require switch or case values to be parenthesized. - -This future syntax is also (largely) available via the Switch.pm module, by -importing it with the argument C<"Perl6">. For example: - - use Switch 'Perl6'; - - given ($val) { - when 1 { handle_num_1(); } - when ($str1) { handle_str_1(); } - when [0..9] { handle_num_any(); last } - when /\d/ { handle_dig_any(); } - when /.*/ { handle_str_any(); } - default { handle anything else; } - } - -Note that scalars still need to be parenthesized, since they would be -ambiguous in Perl 5. - -Note too that you can mix and match both syntaxes by importing the module -with: - - use Switch 'Perl5', 'Perl6'; - - -=head2 Higher-order Operations - -One situation in which C and C do not provide a good -substitute for a cascaded C, is where a switch value needs to -be tested against a series of conditions. For example: - - sub beverage { - switch (shift) { - case { $_[0] < 10 } { return 'milk' } - case { $_[0] < 20 } { return 'coke' } - case { $_[0] < 30 } { return 'beer' } - case { $_[0] < 40 } { return 'wine' } - case { $_[0] < 50 } { return 'malt' } - case { $_[0] < 60 } { return 'Moet' } - else { return 'milk' } - } - } - -(This is equivalent to writing C, etc.; C<$_[0]> -is the argument to the anonymous subroutine.) - -The need to specify each condition as a subroutine block is tiresome. To -overcome this, when importing Switch.pm, a special "placeholder" -subroutine named C<__> [sic] may also be imported. This subroutine -converts (almost) any expression in which it appears to a reference to a -higher-order function. That is, the expression: - - use Switch '__'; - - __ < 2 - -is equivalent to: - - sub { $_[0] < 2 } - -With C<__>, the previous ugly case statements can be rewritten: - - case __ < 10 { return 'milk' } - case __ < 20 { return 'coke' } - case __ < 30 { return 'beer' } - case __ < 40 { return 'wine' } - case __ < 50 { return 'malt' } - case __ < 60 { return 'Moet' } - else { return 'milk' } - -The C<__> subroutine makes extensive use of operator overloading to -perform its magic. All operations involving __ are overloaded to -produce an anonymous subroutine that implements a lazy version -of the original operation. - -The only problem is that operator overloading does not allow the -boolean operators C<&&> and C<||> to be overloaded. So a case statement -like this: - - case 0 <= __ && __ < 10 { return 'digit' } - -doesn't act as expected, because when it is -executed, it constructs two higher order subroutines -and then treats the two resulting references as arguments to C<&&>: - - sub { 0 <= $_[0] } && sub { $_[0] < 10 } - -This boolean expression is inevitably true, since both references are -non-false. Fortunately, the overloaded C<'bool'> operator catches this -situation and flags it as an error. - -=head1 DEPENDENCIES - -The module is implemented using Filter::Util::Call and Text::Balanced -and requires both these modules to be installed. - -=head1 AUTHOR - -Damian Conway (damian@conway.org). This module is now maintained by Rafael -Garcia-Suarez (rgarciasuarez@gmail.com) and more generally by the Perl 5 -Porters (perl5-porters@perl.org), as part of the Perl core. - -=head1 BUGS - -There are undoubtedly serious bugs lurking somewhere in code this funky :-) -Bug reports and other feedback are most welcome. - -=head1 LIMITATIONS - -Due to the heuristic nature of Switch.pm's source parsing, the presence of -regexes with embedded newlines that are specified with raw C -delimiters and don't have a modifier C are indistinguishable from -code chunks beginning with the division operator C. As a workaround -you must use C or C for such patterns. Also, the presence -of regexes specified with raw C delimiters may cause mysterious -errors. The workaround is to use C instead. - -Due to the way source filters work in Perl, you can't use Switch inside -an string C. - -If your source file is longer then 1 million characters and you have a -switch statement that crosses the 1 million (or 2 million, etc.) -character boundary you will get mysterious errors. The workaround is to -use smaller source files. - -=head1 COPYRIGHT - - Copyright (c) 1997-2008, Damian Conway. All Rights Reserved. - This module is free software. It may be used, redistributed - and/or modified under the same terms as Perl itself. diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/bld.inf --- a/WebCore/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,175 +0,0 @@ -// ============================================================================ -// * Makefile for building: QtWebKit -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:21 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: WebCore.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_WEBCORE_03A8F1A3 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -WebCore_0x200267C2.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_QNetworkReplyHandler.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtNetwork/QNetworkRequest Z:/epoc32/include/mw/QtNetwork/qnetworkrequest.h Z:/epoc32/include/mw/QtCore/QSharedDataPointer Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/QUrl Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/QVariant Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtNetwork/QNetworkAccessManager Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/qtwebkit-symbian-qtp/WebCore/platform/network/FormData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stdint.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/QString Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/QNetworkReplyHandler.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/QNetworkReplyHandler.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_QNetworkReplyHandler.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebplugindatabase_p.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpluginfactory.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebplugindatabase_p.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebplugindatabase_p.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebplugindatabase_p.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_QtFallbackWebPopup.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/platform/qt/QtAbstractWebPopup.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuStyle.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Font.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/CharacterNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontDescription.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFamily.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListRefPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSmoothingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontTraitsMask.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFallbackList.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSelector.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/SimpleFontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/FontPlatformData.h Z:/epoc32/include/mw/QtGui/QFont Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/QHash Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphMetricsMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphPageTreeNode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TypesettingFeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RetainPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRun.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Length.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ScrollTypes.h Z:/epoc32/include/mw/QtCore/QList Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/QRect Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/QWidget Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtGui/QComboBox Z:/epoc32/include/mw/QtGui/qcombobox.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtGui/qabstractitemdelegate.h Z:/epoc32/include/mw/QtGui/qstyleoption.h Z:/epoc32/include/mw/QtGui/qabstractspinbox.h Z:/epoc32/include/mw/QtGui/qvalidator.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtGui/qslider.h Z:/epoc32/include/mw/QtGui/qabstractslider.h Z:/epoc32/include/mw/QtGui/qstyle.h Z:/epoc32/include/mw/QtGui/qtabbar.h Z:/epoc32/include/mw/QtGui/qtabwidget.h Z:/epoc32/include/mw/QtGui/qrubberband.h Z:/epoc32/include/mw/QtGui/qframe.h Z:/epoc32/include/mw/QtCore/qabstractitemmodel.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_QtFallbackWebPopup.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_FrameLoaderClientQt.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/page/Frame.h Z:/qtwebkit-symbian-qtp/WebCore/page/animation/AnimationController.h Z:/qtwebkit-symbian-qtp/WebCore/generated/CSSPropertyNames.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSMutableStyleDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSStyleDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/css/StyleBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSPrimitiveValue.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSValue.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSParserValues.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLHash.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURL.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLGooglePrivate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/CString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Collector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashCountedSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian/BlockAllocatorSymbian.h Z:/epoc32/include/platform/hal.h Z:/epoc32/include/platform/hal_data.h Z:/epoc32/include/e32property.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UStringImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListHashSet.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSProperty.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/qtwebkit-symbian-qtp/WebCore/platform/DragImage.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RetainPtr.h Z:/qtwebkit-symbian-qtp/WebCore/editing/Editor.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ClipboardAccessPolicy.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditingBehavior.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditingBehaviorTypes.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditorDeleteAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditorInsertAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/SelectionController.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Range.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatQuad.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RangeBoundaryPoint.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Node.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventTarget.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicStringHash.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ThreadGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSpecific.h Z:/epoc32/include/mw/QtCore/QThreadStorage Z:/epoc32/include/mw/QtCore/qthreadstorage.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RegisteredEventListener.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventListener.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/style/RenderStyleConstants.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptWrappable.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObjectWithGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ArgList.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/CallFrame.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CachedTranscendentalFunction.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSValue.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/DateInstanceCache.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DateMath.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/UnusedParam.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ExecutableAllocator.h Z:/epoc32/include/stdapis/sys/mman.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/JITStubs.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CallData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NativeFunctionWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler/MacroAssemblerCodeRef.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/Register.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ThunkGenerators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/MarkStack.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumericStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/SmallStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Terminator.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/TimeoutChecker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakRandom.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/RegisterFile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VMTags.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ScopeChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ClassInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CommonIdentifiers.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Identifier.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Completion.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ConstructData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSImmediate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Structure.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyMapHashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyNameArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnArrayPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Protect.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureTransitionTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSTypeInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSNumberCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PutPropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyDescriptor.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/RopeImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/TreeShared.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Position.h Z:/qtwebkit-symbian-qtp/WebCore/editing/TextAffinity.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Timer.h Z:/qtwebkit-symbian-qtp/WebCore/editing/VisibleSelection.h Z:/qtwebkit-symbian-qtp/WebCore/editing/TextGranularity.h Z:/qtwebkit-symbian-qtp/WebCore/editing/VisiblePosition.h Z:/qtwebkit-symbian-qtp/WebCore/page/EventHandler.h Z:/qtwebkit-symbian-qtp/WebCore/page/DragActions.h Z:/qtwebkit-symbian-qtp/WebCore/page/FocusDirection.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/HitTestRequest.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformMouseEvent.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ScrollTypes.h Z:/qtwebkit-symbian-qtp/WebCore/page/TouchGestureHandler.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformTouchEvent.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformTouchPoint.h Z:/epoc32/include/mw/QtGui/QTouchEvent Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachePolicy.h Z:/qtwebkit-symbian-qtp/WebCore/loader/DocumentWriter.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderStateMachine.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderTypes.h Z:/qtwebkit-symbian-qtp/WebCore/loader/HistoryController.h Z:/qtwebkit-symbian-qtp/WebCore/loader/PolicyCallback.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceRequest.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceRequestBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/FormData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/HTTPHeaderMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/WebCore/loader/PolicyChecker.h Z:/qtwebkit-symbian-qtp/WebCore/loader/RedirectScheduler.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Event.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ResourceLoadNotifier.h Z:/qtwebkit-symbian-qtp/WebCore/loader/SubframeLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ThreadableLoader.h Z:/qtwebkit-symbian-qtp/WebCore/page/FrameTree.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptController.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWindowShell.h Z:/qtwebkit-symbian-qtp/WebCore/generated/JSDOMWindow.h Z:/qtwebkit-symbian-qtp/WebCore/page/DOMWindow.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MessagePort.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MessagePortChannel.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/SerializedScriptValue.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptValue.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMBinding.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSVariableObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/SymbolTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/API/JSWeakObjectMapRefInternal.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumberPrototype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumberObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSWrapperObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StringPrototype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StringObject.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/DOMWrapperWorld.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Document.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResourceHandle.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResource.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceResponse.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceResponseBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceLoadTiming.h Z:/qtwebkit-symbian-qtp/WebCore/dom/CheckedRadioButtons.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ContainerNode.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionCache.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionType.h Z:/qtwebkit-symbian-qtp/WebCore/dom/DocumentMarker.h Z:/qtwebkit-symbian-qtp/WebCore/dom/QualifiedName.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ScriptExecutionContext.h Z:/qtwebkit-symbian-qtp/WebCore/page/Console.h Z:/qtwebkit-symbian-qtp/WebCore/page/MemoryInfo.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptProfile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/Profile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/ProfileNode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/CallIdentifier.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSSVGContextCache.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGElement.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGDocumentExtensions.h Z:/qtwebkit-symbian-qtp/WebCore/dom/StyledElement.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Element.h Z:/qtwebkit-symbian-qtp/WebCore/dom/FragmentScriptingPermission.h Z:/qtwebkit-symbian-qtp/WebCore/dom/NamedNodeMap.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Attribute.h Z:/qtwebkit-symbian-qtp/WebCore/dom/CSSMappedAttributeDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MappedAttributeEntry.h Z:/qtwebkit-symbian-qtp/WebCore/dom/SpaceSplitString.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedProperty.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedPropertySynchronizer.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedPropertyTraits.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAngle.h Z:/qtwebkit-symbian-qtp/WebCore/generated/SVGNames.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGLength.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGLengthList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGList.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ExceptionCode.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGListTraits.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGNumberList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGPreserveAspectRatio.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGTransformList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGTransform.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/AffineTransform.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformationMatrix.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedTemplate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Lookup.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptState.h Z:/qtwebkit-symbian-qtp/WebCore/page/SecurityOrigin.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWindowBase.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/ScriptControllerBase.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptInstance.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/Bridge.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc/BridgeJSC.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/ScrollBehavior.h Z:/qtwebkit-symbian-qtp/WebCore/page/UserScriptTypes.h Z:/qtwebkit-symbian-qtp/WebCore/page/ZoomMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TiledBackingStoreClient.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderClient.h Z:/qtwebkit-symbian-qtp/WebCore/plugins/PluginView.h Z:/qtwebkit-symbian-qtp/WebCore/page/FrameLoadRequest.h Z:/qtwebkit-symbian-qtp/WebCore/page/HaltablePlugin.h Z:/qtwebkit-symbian-qtp/WebCore/page/MediaCanStartListener.h Z:/qtwebkit-symbian-qtp/WebCore/plugins/PluginStream.h Z:/qtwebkit-symbian-qtp/WebCore/platform/FileSystem.h Z:/epoc32/include/mw/QtCore/QFile Z:/epoc32/include/mw/QtCore/qfile.h Z:/epoc32/include/mw/QtCore/QLibrary Z:/epoc32/include/mw/QtCore/qlibrary.h Z:/qtwebkit-symbian-qtp/WebCore/loader/NetscapePlugInStreamLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ResourceLoader.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceHandleClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/AuthenticationChallenge.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/AuthenticationChallengeBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/Credential.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ProtectionSpace.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceError.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceErrorBase.h Z:/qtwebkit-symbian-qtp/WebCore/plugins/PluginQuirkSet.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/npruntime_internal.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/npapi.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/nptypes.h Z:/epoc32/include/stdapis/stdbool.h Z:/epoc32/include/mw/jri.h Z:/epoc32/include/mw/QtCore/QEvent Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtGui/QRegion Z:/epoc32/include/mw/QtGui/qregion.h Z:/qtwebkit-symbian-qtp/WebCore/plugins/npfunctions.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/npruntime.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Widget.h Z:/epoc32/include/mw/QtGui/QPixmap Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtCore/QUrl Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_FrameLoaderClientQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_NotificationPresenterClientQt.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/notifications/Notification.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ActiveDOMObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicStringHash.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Event.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventTarget.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ThreadGlobalData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSpecific.h Z:/epoc32/include/mw/QtCore/QThreadStorage Z:/epoc32/include/mw/QtCore/qthreadstorage.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RegisteredEventListener.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventListener.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ExceptionCode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURL.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLGooglePrivate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/CString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Collector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashCountedSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian/BlockAllocatorSymbian.h Z:/epoc32/include/platform/hal.h Z:/epoc32/include/platform/hal_data.h Z:/epoc32/include/e32property.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UStringImpl.h Z:/qtwebkit-symbian-qtp/WebCore/notifications/NotificationPresenter.h Z:/qtwebkit-symbian-qtp/WebCore/html/VoidCallback.h Z:/qtwebkit-symbian-qtp/WebCore/notifications/NotificationContents.h Z:/qtwebkit-symbian-qtp/WebCore/platform/SharedBuffer.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RetainPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ThreadableLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ThreadableLoaderClient.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h Z:/qtwebkit-symbian-qtp/WebCore/platform/qt/QtAbstractWebPopup.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuStyle.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Font.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/CharacterNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontDescription.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFamily.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListRefPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSmoothingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontTraitsMask.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFallbackList.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSelector.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/SimpleFontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/FontPlatformData.h Z:/epoc32/include/mw/QtGui/QFont Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/QHash Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphMetricsMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphPageTreeNode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TypesettingFeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRun.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Length.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ScrollTypes.h Z:/epoc32/include/mw/QtCore/QList Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/QRect Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/QWidget Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/QPluginLoader Z:/epoc32/include/mw/QtCore/qpluginloader.h Z:/epoc32/include/mw/QtCore/qlibrary.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Timer.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitplatformplugin.h Z:/epoc32/include/mw/QtCore/QMultiHash Z:/epoc32/include/mw/QtGui/QSystemTrayIcon Z:/epoc32/include/mw/QtGui/qsystemtrayicon.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_NotificationPresenterClientQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_QtPlatformPlugin.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/platform/qt/QtAbstractWebPopup.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PopupMenuStyle.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Font.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/CharacterNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontDescription.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFamily.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListRefPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSmoothingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontTraitsMask.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRenderingMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontFallbackList.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontSelector.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/SimpleFontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FontData.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/FontPlatformData.h Z:/epoc32/include/mw/QtGui/QFont Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/QHash Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphMetricsMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GlyphPageTreeNode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TypesettingFeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RetainPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TextRun.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Length.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ScrollTypes.h Z:/epoc32/include/mw/QtCore/QList Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/QRect Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/QWidget Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/QPluginLoader Z:/epoc32/include/mw/QtCore/qpluginloader.h Z:/epoc32/include/mw/QtCore/qlibrary.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_QtPlatformPlugin.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_DnsPrefetchHelper.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/QCache Z:/epoc32/include/mw/QtCore/qcache.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtNetwork/QHostInfo Z:/epoc32/include/mw/QtNetwork/qhostinfo.h Z:/epoc32/include/mw/QtNetwork/qhostaddress.h Z:/epoc32/include/mw/QtNetwork/qabstractsocket.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtCore/QSet Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/QTime Z:/epoc32/include/mw/QtCore/qdatetime.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/DnsPrefetchHelper.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/DnsPrefetchHelper.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_DnsPrefetchHelper.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_PluginContainerSymbian.cpp -OPTION DEPS Z:/epoc32/include/mw/QtGui/QWidget Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian/PluginContainerSymbian.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian/PluginContainerSymbian.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_PluginContainerSymbian.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_MediaPlayerPrivateQt.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/MediaPlayerPrivate.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/MediaPlayer.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Document.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResourceHandle.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResource.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachePolicy.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderTypes.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceResponse.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceResponseBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/HTTPHeaderMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicStringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURL.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLGooglePrivate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/CString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Collector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashCountedSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian/BlockAllocatorSymbian.h Z:/epoc32/include/platform/hal.h Z:/epoc32/include/platform/hal_data.h Z:/epoc32/include/e32property.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UStringImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceLoadTiming.h Z:/qtwebkit-symbian-qtp/WebCore/dom/CheckedRadioButtons.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ContainerNode.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Node.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventTarget.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ThreadGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSpecific.h Z:/epoc32/include/mw/QtCore/QThreadStorage Z:/epoc32/include/mw/QtCore/qthreadstorage.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RegisteredEventListener.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventListener.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLHash.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/style/RenderStyleConstants.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptWrappable.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObjectWithGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ArgList.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/CallFrame.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CachedTranscendentalFunction.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSValue.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/DateInstanceCache.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DateMath.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/UnusedParam.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ExecutableAllocator.h Z:/epoc32/include/stdapis/sys/mman.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/JITStubs.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CallData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NativeFunctionWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler/MacroAssemblerCodeRef.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/Register.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ThunkGenerators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/MarkStack.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumericStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/SmallStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Terminator.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/TimeoutChecker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakRandom.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/RegisterFile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VMTags.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ScopeChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ClassInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CommonIdentifiers.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Identifier.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Completion.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ConstructData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSImmediate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Structure.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyMapHashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyNameArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnArrayPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Protect.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureTransitionTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSTypeInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSNumberCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PutPropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyDescriptor.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/RopeImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/TreeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListHashSet.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionCache.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionType.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/WebCore/dom/DocumentMarker.h Z:/qtwebkit-symbian-qtp/WebCore/dom/QualifiedName.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ScriptExecutionContext.h Z:/qtwebkit-symbian-qtp/WebCore/page/Console.h Z:/qtwebkit-symbian-qtp/WebCore/page/MemoryInfo.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptProfile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/Profile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/ProfileNode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/CallIdentifier.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Timer.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsLayer.h Z:/epoc32/include/mw/Animation.h Z:/epoc32/include/mw/animationmixins.h Z:/epoc32/include/e32base.h Z:/epoc32/include/e32base.inl Z:/epoc32/include/platform/e32base_private.h Z:/epoc32/include/mw/animationdataloaderobserver.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint3D.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsLayerClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformationMatrix.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/AffineTransform.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformOperations.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformOperation.h Z:/epoc32/include/mw/QMediaPlayer Z:/epoc32/include/mw/qmediaplayer.h Z:/epoc32/include/mw/qmediaserviceprovider.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/qmobilityglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/qtmedianamespace.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/qmediaobject.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/qmediacontent.h Z:/epoc32/include/mw/qmediaresource.h Z:/epoc32/include/mw/QtNetwork/qnetworkrequest.h Z:/epoc32/include/mw/QtCore/QSharedDataPointer Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/QUrl Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/QVariant Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_MediaPlayerPrivateQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_NetworkStateNotifierPrivate.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/NetworkStateNotifierPrivate.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/NetworkStateNotifierPrivate.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_NetworkStateNotifierPrivate.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_GeolocationServiceQt.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/platform/GeolocationService.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/epoc32/include/mw/QGeoPositionInfoSource Z:/epoc32/include/mw/qgeopositioninfosource.h Z:/epoc32/include/mw/qmobilityglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/qgeopositioninfo.h Z:/epoc32/include/mw/qgeocoordinate.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/QDateTime Z:/epoc32/include/mw/QtCore/qdatetime.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/qt/GeolocationServiceQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/qt/GeolocationServiceQt.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_GeolocationServiceQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_SocketStreamHandlePrivate.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/platform/network/SocketStreamHandleBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURL.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/stdlib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLGooglePrivate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/CString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Collector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashCountedSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian/BlockAllocatorSymbian.h Z:/epoc32/include/platform/hal.h Z:/epoc32/include/platform/hal_data.h Z:/epoc32/include/e32property.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UStringImpl.h Z:/epoc32/include/mw/QtNetwork/QSslSocket Z:/epoc32/include/mw/QtNetwork/qsslsocket.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtNetwork/qtcpsocket.h Z:/epoc32/include/mw/QtNetwork/qabstractsocket.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtNetwork/qsslerror.h Z:/epoc32/include/mw/QtNetwork/qsslcertificate.h Z:/epoc32/include/mw/QtCore/qcryptographichash.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtNetwork/qssl.h Z:/epoc32/include/mw/QtNetwork/QTcpSocket Z:/epoc32/include/mw/QtNetwork/qtcpsocket.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/SocketStreamHandlePrivate.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/SocketStreamHandlePrivate.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_SocketStreamHandlePrivate.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebframe.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtScript/qscriptengine.h Z:/epoc32/include/mw/QtScript/qscriptvalue.h Z:/epoc32/include/mw/QtScript/qscriptcontext.h Z:/epoc32/include/mw/QtScript/qscriptstring.h Z:/epoc32/include/mw/QtScript/qscriptprogram.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebframe.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebframe.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebframe.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qgraphicswebview.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtGui/qgraphicswidget.h Z:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h Z:/epoc32/include/mw/QtGui/qgraphicsitem.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qgraphicswebview.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebkitplatformplugin.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitplatformplugin.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitplatformplugin.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebkitplatformplugin.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebpage.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebpage.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebview.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebview.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebhistoryinterface.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistoryinterface.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistoryinterface.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebhistoryinterface.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebpluginfactory.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpluginfactory.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpluginfactory.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebpluginfactory.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/moc_qwebinspector.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector.h -o z:/qtwebkit-symbian-qtp/WebCore/moc_qwebinspector.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/qrc_WebCore.cpp -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/WebCore.qrc Z:/qtwebkit-symbian-qtp/WebCore/Resources/contextMenuCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/urlIcon.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/zoomOutCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/missingImage.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/nullPlugin.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/zoomInCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/copyCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/deleteButton.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/verticalTextCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/inputSpeech.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/aliasCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/textAreaResizeCorner.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/progressCursor.png Z:/qtwebkit-symbian-qtp/WebCore/Resources/cellCursor.png -OPTION COMMAND /epoc32/tools/rcc.exe -name WebCore z:/qtwebkit-symbian-qtp/WebCore/WebCore.qrc -o z:/qtwebkit-symbian-qtp/WebCore/qrc_WebCore.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/SharedTimerQt.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/mw/QtCore/QBasicTimer Z:/epoc32/include/mw/QtCore/qbasictimer.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QCoreApplication Z:/epoc32/include/mw/QtCore/qcoreapplication.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qeventloop.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/QDebug Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtCore/QPointer Z:/epoc32/include/mw/QtCore/qpointer.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/WebCore/platform/qt/SharedTimerQt.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/qt/SharedTimerQt.cpp -o z:/qtwebkit-symbian-qtp/WebCore/SharedTimerQt.moc -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/InspectorClientQt.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/_ctype.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/InspectorClientQt.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorClient.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorController.h Z:/qtwebkit-symbian-qtp/WebCore/page/Console.h Z:/qtwebkit-symbian-qtp/WebCore/page/MemoryInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stdint.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/epoc32/include/stdapis/stlportv5/limits Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptProfile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/Profile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/ProfileNode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler/CallIdentifier.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Collector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FixedArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashCountedSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashIterators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtrHashMap.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/HashSet.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian/BlockAllocatorSymbian.h Z:/epoc32/include/platform/hal.h Z:/epoc32/include/platform/hal_data.h Z:/epoc32/include/e32property.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/UStringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/CString.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Cookie.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/AtomicStringImpl.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorDOMAgent.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicString.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Document.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResourceHandle.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachedResource.h Z:/qtwebkit-symbian-qtp/WebCore/loader/CachePolicy.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderTypes.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceResponse.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceResponseBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/HTTPHeaderMap.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/AtomicStringHash.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURL.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLGooglePrivate.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceLoadTiming.h Z:/qtwebkit-symbian-qtp/WebCore/dom/CheckedRadioButtons.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ContainerNode.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Node.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventTarget.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ThreadGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSpecific.h Z:/epoc32/include/mw/QtCore/QThreadStorage Z:/epoc32/include/mw/QtCore/qthreadstorage.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RegisteredEventListener.h Z:/qtwebkit-symbian-qtp/WebCore/dom/EventListener.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Forward.h Z:/qtwebkit-symbian-qtp/WebCore/platform/KURLHash.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/style/RenderStyleConstants.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptWrappable.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObjectWithGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ArgList.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/CallFrame.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSGlobalData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CachedTranscendentalFunction.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSValue.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/DateInstanceCache.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DateMath.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/UnusedParam.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ExecutableAllocator.h Z:/epoc32/include/stdapis/sys/mman.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/JITStubs.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CallData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NativeFunctionWrapper.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler/MacroAssemblerCodeRef.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/Register.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit/ThunkGenerators.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/MarkStack.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumericStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/SmallStrings.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Terminator.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/TimeoutChecker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakRandom.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter/RegisterFile.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VMTags.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ScopeChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ClassInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/CommonIdentifiers.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Identifier.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Completion.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/ConstructData.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSImmediate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Structure.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyMapHashTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyNameArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnArrayPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Protect.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureChain.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StructureTransitionTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSTypeInfo.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSNumberCell.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PutPropertySlot.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/PropertyDescriptor.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/RopeImpl.h Z:/qtwebkit-symbian-qtp/WebCore/platform/TreeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ListHashSet.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionCache.h Z:/qtwebkit-symbian-qtp/WebCore/html/CollectionType.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/WebCore/dom/DocumentMarker.h Z:/qtwebkit-symbian-qtp/WebCore/dom/QualifiedName.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ScriptExecutionContext.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Timer.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/WeakGCMap.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorCSSStore.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorValues.h Z:/qtwebkit-symbian-qtp/WebCore/dom/NodeList.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptState.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMBinding.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSGlobalObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSArray.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSVariableObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/SymbolTable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/API/JSWeakObjectMapRefInternal.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumberPrototype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/NumberObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/JSWrapperObject.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StringPrototype.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/StringObject.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/DOMWrapperWorld.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSSVGContextCache.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGElement.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGDocumentExtensions.h Z:/qtwebkit-symbian-qtp/WebCore/dom/StyledElement.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSMutableStyleDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSStyleDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/css/StyleBase.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSPrimitiveValue.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSValue.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSParserValues.h Z:/qtwebkit-symbian-qtp/WebCore/css/CSSProperty.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Element.h Z:/qtwebkit-symbian-qtp/WebCore/dom/FragmentScriptingPermission.h Z:/qtwebkit-symbian-qtp/WebCore/dom/NamedNodeMap.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Attribute.h Z:/qtwebkit-symbian-qtp/WebCore/dom/CSSMappedAttributeDeclaration.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MappedAttributeEntry.h Z:/qtwebkit-symbian-qtp/WebCore/dom/SpaceSplitString.h Z:/qtwebkit-symbian-qtp/WebCore/platform/ScrollTypes.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedProperty.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedPropertySynchronizer.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedPropertyTraits.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAngle.h Z:/qtwebkit-symbian-qtp/WebCore/generated/SVGNames.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGLength.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGLengthList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGList.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ExceptionCode.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGListTraits.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGNumberList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGPreserveAspectRatio.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGTransformList.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGTransform.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/AffineTransform.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformationMatrix.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/qtwebkit-symbian-qtp/WebCore/svg/SVGAnimatedTemplate.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime/Lookup.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Deque.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptArray.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptObject.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptValue.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/ScriptBreakpoint.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/ScriptDebugListener.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorFrontendClientLocal.h Z:/qtwebkit-symbian-qtp/WebCore/inspector/InspectorFrontendClient.h Z:/epoc32/include/mw/QtCore/QString Z:/qtwebkit-symbian-qtp/WebCore/page/Frame.h Z:/qtwebkit-symbian-qtp/WebCore/page/animation/AnimationController.h Z:/qtwebkit-symbian-qtp/WebCore/generated/CSSPropertyNames.h Z:/qtwebkit-symbian-qtp/WebCore/platform/DragImage.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RetainPtr.h Z:/qtwebkit-symbian-qtp/WebCore/editing/Editor.h Z:/qtwebkit-symbian-qtp/WebCore/dom/ClipboardAccessPolicy.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditingBehavior.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditingBehaviorTypes.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditorDeleteAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/EditorInsertAction.h Z:/qtwebkit-symbian-qtp/WebCore/editing/SelectionController.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntRect.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Range.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatQuad.h Z:/qtwebkit-symbian-qtp/WebCore/dom/RangeBoundaryPoint.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Position.h Z:/qtwebkit-symbian-qtp/WebCore/editing/TextAffinity.h Z:/qtwebkit-symbian-qtp/WebCore/editing/VisibleSelection.h Z:/qtwebkit-symbian-qtp/WebCore/editing/TextGranularity.h Z:/qtwebkit-symbian-qtp/WebCore/editing/VisiblePosition.h Z:/qtwebkit-symbian-qtp/WebCore/page/EventHandler.h Z:/qtwebkit-symbian-qtp/WebCore/page/DragActions.h Z:/qtwebkit-symbian-qtp/WebCore/page/FocusDirection.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/HitTestRequest.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformMouseEvent.h Z:/qtwebkit-symbian-qtp/WebCore/page/TouchGestureHandler.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformTouchEvent.h Z:/qtwebkit-symbian-qtp/WebCore/platform/PlatformTouchPoint.h Z:/epoc32/include/mw/QtGui/QTouchEvent Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtCore/qset.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/DocumentWriter.h Z:/qtwebkit-symbian-qtp/WebCore/loader/FrameLoaderStateMachine.h Z:/qtwebkit-symbian-qtp/WebCore/loader/HistoryController.h Z:/qtwebkit-symbian-qtp/WebCore/loader/PolicyCallback.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt/ResourceRequest.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/ResourceRequestBase.h Z:/qtwebkit-symbian-qtp/WebCore/platform/network/FormData.h Z:/qtwebkit-symbian-qtp/WebCore/loader/PolicyChecker.h Z:/qtwebkit-symbian-qtp/WebCore/loader/RedirectScheduler.h Z:/qtwebkit-symbian-qtp/WebCore/dom/Event.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ResourceLoadNotifier.h Z:/qtwebkit-symbian-qtp/WebCore/loader/SubframeLoader.h Z:/qtwebkit-symbian-qtp/WebCore/loader/ThreadableLoader.h Z:/qtwebkit-symbian-qtp/WebCore/page/FrameTree.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptController.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWindowShell.h Z:/qtwebkit-symbian-qtp/WebCore/generated/JSDOMWindow.h Z:/qtwebkit-symbian-qtp/WebCore/page/DOMWindow.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MessagePort.h Z:/qtwebkit-symbian-qtp/WebCore/dom/MessagePortChannel.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/SerializedScriptValue.h Z:/qtwebkit-symbian-qtp/WebCore/page/SecurityOrigin.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/JSDOMWindowBase.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/ScriptControllerBase.h Z:/qtwebkit-symbian-qtp/WebCore/bindings/js/ScriptInstance.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/Bridge.h Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc/BridgeJSC.h Z:/qtwebkit-symbian-qtp/WebCore/rendering/ScrollBehavior.h Z:/qtwebkit-symbian-qtp/WebCore/page/UserScriptTypes.h Z:/qtwebkit-symbian-qtp/WebCore/page/ZoomMode.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/TiledBackingStoreClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/NotImplemented.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Logging.h Z:/epoc32/include/mw/QtCore/QByteArray Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/qtwebkit-symbian-qtp/WebCore/page/Page.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector_p.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage_p.h Z:/epoc32/include/mw/QtCore/qbasictimer.h Z:/epoc32/include/mw/QtNetwork/qnetworkproxy.h Z:/epoc32/include/mw/QtNetwork/qhostaddress.h Z:/epoc32/include/mw/QtNetwork/qabstractsocket.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtCore/qpointer.h Z:/epoc32/include/mw/QtGui/qgraphicssceneevent.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistory.h Z:/epoc32/include/mw/QtCore/qdatetime.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebframe.h Z:/epoc32/include/mw/QtScript/qscriptengine.h Z:/epoc32/include/mw/QtScript/qscriptvalue.h Z:/epoc32/include/mw/QtScript/qscriptcontext.h Z:/epoc32/include/mw/QtScript/qscriptstring.h Z:/epoc32/include/mw/QtScript/qscriptprogram.h Z:/epoc32/include/mw/QtCore/QCoreApplication Z:/epoc32/include/mw/QtCore/qcoreapplication.h Z:/epoc32/include/mw/QtCore/qeventloop.h Z:/epoc32/include/mw/QtCore/QSettings Z:/epoc32/include/mw/QtCore/qsettings.h Z:/epoc32/include/mw/QtCore/QVariant Z:/epoc32/include/mw/QtCore/qvariant.h Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp -o z:/qtwebkit-symbian-qtp/WebCore/InspectorClientQt.moc -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebCore/GraphicsLayerQt.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebCore/config.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Platform.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Assertions.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/stdapis/inttypes.h Z:/epoc32/include/stdapis/machine/_inttypes.h Z:/epoc32/include/stdapis/sys/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/e32debug.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastMalloc.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PossiblyNull.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/DisallowCType.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/_ctype.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/GraphicsLayerQt.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsLayer.h Z:/epoc32/include/mw/Animation.h Z:/epoc32/include/mw/animationmixins.h Z:/epoc32/include/e32base.h Z:/epoc32/include/e32base.inl Z:/epoc32/include/platform/e32base_private.h Z:/epoc32/include/mw/animationdataloaderobserver.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Color.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/FastAllocBase.h Z:/epoc32/include/stdapis/stdint.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/TypeTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/Unicode.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Z:/epoc32/include/mw/QtCore/QChar Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QString Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode/wince/UnicodeWince.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatSize.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntSize.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MathExtras.h Z:/epoc32/include/stdapis/stlportv5/cmath Z:/epoc32/include/stdapis/stlportv5/limits Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntPoint.h Z:/epoc32/include/mw/QtCore/QDataStream Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatPoint3D.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsLayerClient.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/IntRect.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Vector.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Noncopyable.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/NotFound.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ValueCheck.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/VectorTraits.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnPtrCommon.h Z:/epoc32/include/stdapis/stlportv5/algorithm Z:/epoc32/include/stdapis/stlportv5/stl/_algo.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.h Z:/epoc32/include/stdapis/stlportv5/stl/_heap.c Z:/epoc32/include/stdapis/stlportv5/stl/_algo.c Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_tempbuf.c Z:/epoc32/include/stdapis/stlportv5/memory Z:/epoc32/include/stdapis/stlportv5/stl/_raw_storage_iter.h Z:/epoc32/include/stdapis/stlportv5/stl/_auto_ptr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/AlwaysInline.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassRefPtr.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformationMatrix.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/AffineTransform.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformOperations.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TransformOperation.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/RefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/PassOwnPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CurrentTime.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/FloatRect.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsContext.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/ColorSpace.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/DashArray.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Image.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/GraphicsTypes.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/ImageSource.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/PlatformString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/WTFString.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImpl.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ASCIICType.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/CrossThreadRefCounted.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Threading.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Atomics.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/Locker.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/MainThread.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadSafeShared.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/ThreadingPrimitives.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/OwnFastMallocPtr.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StdLibExtras.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/StringHashFunctions.h Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/text/StringImplBase.h Z:/epoc32/include/mw/QtGui/QPixmap Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/Path.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/qtwebkit-symbian-qtp/WebCore/platform/text/TextDirection.h Z:/epoc32/include/mw/QtGui/QPainter Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms/TranslateTransformOperation.h Z:/qtwebkit-symbian-qtp/WebCore/platform/Length.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/UnitBezier.h Z:/epoc32/include/mw/QtCore/qabstractanimation.h Z:/epoc32/include/mw/QtCore/qdatetime.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtCore/qmetaobject.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qtimer.h Z:/epoc32/include/mw/QtCore/qbasictimer.h Z:/epoc32/include/mw/QtGui/qgraphicseffect.h Z:/epoc32/include/mw/QtGui/qgraphicsitem.h Z:/epoc32/include/mw/QtGui/qgraphicsscene.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qpixmapcache.h Z:/epoc32/include/mw/QtGui/qstyleoption.h Z:/epoc32/include/mw/QtGui/qabstractspinbox.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtGui/qvalidator.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtGui/qslider.h Z:/epoc32/include/mw/QtGui/qabstractslider.h Z:/epoc32/include/mw/QtGui/qstyle.h Z:/epoc32/include/mw/QtGui/qtabbar.h Z:/epoc32/include/mw/QtGui/qtabwidget.h Z:/epoc32/include/mw/QtGui/qrubberband.h Z:/epoc32/include/mw/QtGui/qframe.h Z:/epoc32/include/mw/QtCore/qabstractitemmodel.h Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_MAKEDLL -DBUILD_WEBKIT -DENABLE_FAST_MOBILE_SCROLLING=1 -DWTF_USE_QT_MOBILE_THEME=1 -DENABLE_NO_LISTBOX_RENDERING=1 -DNDEBUG -DBUILDING_QT__ -DBUILDING_JavaScriptCore -DBUILDING_WTF -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DWTF_USE_QT_MULTIMEDIA -DQT_XMLPATTERNS_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtNetwork" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtXmlPatterns" -I"Z:/epoc32/include/mw" -I"Z:/epoc32/include/mw/QtMultimediaKit" -I"Z:/epoc32/include/mw/QtLocation" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/qt" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/WebCoreSupport" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/generic" -I"Z:/qtwebkit-symbian-qtp/WebCore/bindings/js" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/c" -I"Z:/qtwebkit-symbian-qtp/WebCore/bridge/jsc" -I"Z:/qtwebkit-symbian-qtp/WebCore/css" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom" -I"Z:/qtwebkit-symbian-qtp/WebCore/dom/default" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing" -I"Z:/qtwebkit-symbian-qtp/WebCore/history" -I"Z:/qtwebkit-symbian-qtp/WebCore/html" -I"Z:/qtwebkit-symbian-qtp/WebCore/html/canvas" -I"Z:/qtwebkit-symbian-qtp/WebCore/inspector" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/appcache" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/archive" -I"Z:/qtwebkit-symbian-qtp/WebCore/loader/icon" -I"Z:/qtwebkit-symbian-qtp/WebCore/mathml" -I"Z:/qtwebkit-symbian-qtp/WebCore/notifications" -I"Z:/qtwebkit-symbian-qtp/WebCore/page" -I"Z:/qtwebkit-symbian-qtp/WebCore/page/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/transforms" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/mock" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/network" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/sql" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/transcoder" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering" -I"Z:/qtwebkit-symbian-qtp/WebCore/rendering/style" -I"Z:/qtwebkit-symbian-qtp/WebCore/storage" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/animation" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics" -I"Z:/qtwebkit-symbian-qtp/WebCore/svg/graphics/filters" -I"Z:/qtwebkit-symbian-qtp/WebCore/websockets" -I"Z:/qtwebkit-symbian-qtp/WebCore/wml" -I"Z:/qtwebkit-symbian-qtp/WebCore/workers" -I"Z:/qtwebkit-symbian-qtp/WebCore/xml" -I"Z:/qtwebkit-symbian-qtp/WebCore/generated" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"Z:/qtwebkit-symbian-qtp" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/assembler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/bytecompiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/debugger" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/interpreter" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/jit" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/parser" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/profiler" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/runtime" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/symbian" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/wtf/unicode" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/yarr" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/API" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/ForwardingHeaders" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore/generated" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/sf/mw/qt/src/3rdparty/sqlite" -I"Z:/QtLocation" -I"Z:/QtMultimediaKit" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/text/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/win" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/symbian" -I"Z:/qtwebkit-symbian-qtp/WebCore/history/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/platform/image-decoders/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/accessibility/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/editing/qt" -I"Z:/qtwebkit-symbian-qtp/WebCore/plugins/qt" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp -o z:/qtwebkit-symbian-qtp/WebCore/GraphicsLayerQt.moc -END - -#if defined(WINSCW) -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebCore/qmakepluginstubs/qmlwebkitplugin.qtplugin -OPTION DEPLOY_TARGET Z:/epoc32/winscw/c/resource/qt/imports/QtWebKit/qmlwebkitplugin.qtplugin -END -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/qmldir -OPTION DEPLOY_TARGET Z:/epoc32/winscw/c/resource/qt/imports/QtWebKit/qmldir -END -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebKit/qt/symbian/backup_registration.xml -OPTION DEPLOY_TARGET Z:/epoc32/winscw/c/private/10202D56/import/packages/200267C2/backup_registration.xml -END -#endif -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebCore/qmakepluginstubs/qmlwebkitplugin.qtplugin -OPTION DEPLOY_TARGET Z:/epoc32/data/z/resource/qt/imports/QtWebKit/qmlwebkitplugin.qtplugin -END -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/qmldir -OPTION DEPLOY_TARGET Z:/epoc32/data/z/resource/qt/imports/QtWebKit/qmldir -END -START EXTENSION qt/qmake_emulator_deployment -OPTION DEPLOY_SOURCE z:/qtwebkit-symbian-qtp/WebKit/qt/symbian/backup_registration.xml -OPTION DEPLOY_TARGET Z:/epoc32/data/z/private/10202D56/import/packages/200267C2/backup_registration.xml -END - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/bld.inf.DerivedSources --- a/WebCore/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:47:09 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_FF1DA6A1 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xEa3ab78e.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/css/CSSParser.cpp --- a/WebCore/css/CSSParser.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/css/CSSParser.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -291,7 +291,7 @@ // possible to set up a default color. bool CSSParser::parseColor(RGBA32& color, const String& string, bool strict) { - // First try creating a color specified by name, rgb() or "#" syntax. + // First try creating a color specified by name, rgba(), rgb() or "#" syntax. if (parseColor(string, color, strict)) return true; @@ -1749,7 +1749,7 @@ case CSSPropertyTextUnderline: case CSSPropertyWebkitVariableDeclarationBlock: return false; -#if 0 // :HACK: +#if ENABLE(HAPTICS) case CSSPropertyWebkitHapticTapType: if (id == CSSValueButton || id == CSSValueLatchedButtonDown || id == CSSValueLatchedButtonUp || id == CSSValueLatchedButtonStuck || id == CSSValueLink || id == CSSValueCheckedCheckbox || id == CSSValueUncheckedCheckbox) @@ -3749,6 +3749,63 @@ return true; } +static inline bool isTenthAlpha(const UChar* string, const int length) +{ + // "0.X" + if (length == 3 && string[0] == '0' && string[1] == '.' && isASCIIDigit(string[2])) + return true; + + // ".X" + if (length == 2 && string[0] == '.' && isASCIIDigit(string[1])) + return true; + + return false; +} + +static inline bool parseAlphaValue(const UChar*& string, const UChar* end, UChar terminator, int& value) +{ + while (string != end && isCSSWhitespace(*string)) + string++; + + value = 0; + + int length = end - string; + if (length < 2) + return false; + + if (string[0] != '0' && string[0] != '1' && string[0] != '.') + return false; + + if (string[length - 1] != terminator) + return false; + + if (length == 2 && string[0] != '.') { + value = string[0] == '1' ? 255 : 0; + string = end; + return true; + } + + if (isTenthAlpha(string, length - 1)) { + static const int tenthAlphaValues[] = { 0, 25, 51, 76, 102, 127, 153, 179, 204, 230 }; + value = tenthAlphaValues[string[length - 2] - '0']; + string = end; + return true; + } + + Vector bytes(length + 1); + for (int i = 0; i < length; ++i) { + if (!isASCIIDigit(string[i]) && string[i] != '.' && string[i] != terminator) + return false; + bytes[i] = string[i]; + } + bytes[length] = '\0'; + char* foundTerminator; + double d = WTF::strtod(bytes.data(), &foundTerminator); + value = static_cast(d * nextafter(256.0, 0.0)); + string += (foundTerminator - bytes.data()) + 1; + return *foundTerminator == terminator; +} + bool CSSParser::parseColor(const String &name, RGBA32& rgb, bool strict) { const UChar* characters = name.characters(); @@ -3764,6 +3821,28 @@ } } + // Try rgba() syntax. + if (name.startsWith("rgba(")) { + const UChar* current = characters + 5; + const UChar* end = characters + length; + int red; + int green; + int blue; + int alpha; + if (!parseColorInt(current, end, ',', red)) + return false; + if (!parseColorInt(current, end, ',', green)) + return false; + if (!parseColorInt(current, end, ',', blue)) + return false; + if (!parseAlphaValue(current, end, ')', alpha)) + return false; + if (current != end) + return false; + rgb = makeRGBA(red, green, blue, alpha); + return true; + } + // Try rgb() syntax. if (name.startsWith("rgb(")) { const UChar* current = characters + 4; @@ -3782,6 +3861,7 @@ rgb = makeRGB(red, green, blue); return true; } + // Try named colors. Color tc; tc.setNamedColor(name); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/css/CSSPrimitiveValueMappings.h --- a/WebCore/css/CSSPrimitiveValueMappings.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/css/CSSPrimitiveValueMappings.h Mon Oct 04 01:32:07 2010 +0300 @@ -2678,13 +2678,13 @@ m_value.ident = CSSValueNone; break; case HWEAK: -// :HACK: m_value.ident = CSSValueWeak; + m_value.ident = CSSValueWeak; break; case HMEDIUM: m_value.ident = CSSValueMedium; break; case HSTRONG: -// :HACK: m_value.ident = CSSValueStrong; + m_value.ident = CSSValueStrong; break; } } @@ -2694,11 +2694,11 @@ switch (m_value.ident) { case CSSValueNone: return HNONE; -// :HACK: case CSSValueWeak: + case CSSValueWeak: return HWEAK; case CSSValueMedium: return HMEDIUM; -// :HACK: case CSSValueStrong: + case CSSValueStrong: return HSTRONG; default: ASSERT_NOT_REACHED(); @@ -2714,22 +2714,22 @@ m_value.ident = CSSValueButton; break; case HLATCHEDBUTTONDOWN: -// :HACK: m_value.ident = CSSValueLatchedButtonDown; + m_value.ident = CSSValueLatchedButtonDown; break; case HLATCHEDBUTTONUP: -// :HACK: m_value.ident = CSSValueLatchedButtonUp; + m_value.ident = CSSValueLatchedButtonUp; break; case HLATCHEDBUTTONSTUCK: -// :HACK: m_value.ident = CSSValueLatchedButtonStuck; + m_value.ident = CSSValueLatchedButtonStuck; break; case HLINK: -// :HACK: m_value.ident = CSSValueLink; + m_value.ident = CSSValueLink; break; case HCHECKEDCHECKBOX: -// :HACK: m_value.ident = CSSValueCheckedCheckbox; + m_value.ident = CSSValueCheckedCheckbox; break; case HUNCHECKEDCHECKBOX: -// :HACK: m_value.ident = CSSValueUncheckedCheckbox; + m_value.ident = CSSValueUncheckedCheckbox; break; } } @@ -2739,17 +2739,17 @@ switch (m_value.ident) { case CSSValueButton: return HBUTTON; -// :HACK: case CSSValueLatchedButtonDown: + case CSSValueLatchedButtonDown: return HLATCHEDBUTTONDOWN; -// :HACK: case CSSValueLatchedButtonUp: + case CSSValueLatchedButtonUp: return HLATCHEDBUTTONUP; -// :HACK: case CSSValueLatchedButtonStuck: + case CSSValueLatchedButtonStuck: return HLATCHEDBUTTONSTUCK; -// :HACK: case CSSValueLink: + case CSSValueLink: return HLINK; -// :HACK: case CSSValueCheckedCheckbox: + case CSSValueCheckedCheckbox: return HCHECKEDCHECKBOX; -// :HACK: case CSSValueUncheckedCheckbox: + case CSSValueUncheckedCheckbox: return HUNCHECKEDCHECKBOX; default: ASSERT_NOT_REACHED(); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/css/CSSStyleSelector.cpp --- a/WebCore/css/CSSStyleSelector.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/css/CSSStyleSelector.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -5448,7 +5448,7 @@ case CSSPropertyWebkitTransitionTimingFunction: HANDLE_TRANSITION_VALUE(timingFunction, TimingFunction, value) return; -#if 0 // :HACK: +#if ENABLE(HAPTICS) case CSSPropertyWebkitHapticTapType: { HANDLE_INHERIT_AND_INITIAL(hapticTapType, HapticTapType) m_style->setHapticTapType(*primitiveValue); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/css/MediaFeatureNames.h --- a/WebCore/css/MediaFeatureNames.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/css/MediaFeatureNames.h Mon Oct 04 01:32:07 2010 +0300 @@ -25,13 +25,6 @@ namespace WebCore { namespace MediaFeatureNames { -#if ENABLE(WIDGETS_10_SUPPORT) -#define CSS_MEDIAQUERY_NAMES_FOR_WIDGETS_10_MEDIAFEATURE(macro) \ - macro(view_mode, "-webkit-view-mode") -#else -#define CSS_MEDIAQUERY_NAMES_FOR_WIDGETS_10_MEDIAFEATURE(macro) -#endif - #define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \ macro(color, "color") \ macro(grid, "grid") \ @@ -66,7 +59,7 @@ macro(transform_3d, "-webkit-transform-3d") \ macro(transition, "-webkit-transition") \ macro(animation, "-webkit-animation") \ - CSS_MEDIAQUERY_NAMES_FOR_WIDGETS_10_MEDIAFEATURE(macro) + macro(view_mode, "-webkit-view-mode") // end of macro diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/css/MediaQueryEvaluator.cpp --- a/WebCore/css/MediaQueryEvaluator.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/css/MediaQueryEvaluator.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -498,28 +498,13 @@ return returnValueIfNoParameter; } -#if ENABLE(WIDGETS_10_SUPPORT) static bool view_modeMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op) { - if (value) { - String mode = static_cast(value)->getStringValue(); - if (ChromeClient* client = frame->page()->chrome()->client()) { - if (mode == "windowed" && client->isWindowed()) - return true; - if (mode == "floating" && client->isFloating()) - return true; - if (mode == "fullscreen" && client->isFullscreen()) - return true; - if (mode == "maximized" && client->isMaximized()) - return true; - if (mode == "minimized" && client->isMinimized()) - return true; - return false; - } - } - return true; + UNUSED_PARAM(op); + if (!value) + return true; + return Page::stringToViewMode(static_cast(value)->getStringValue()) == frame->page()->viewMode(); } -#endif static void createFunctionMap() { diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSGrammar.cpp --- a/WebCore/generated/CSSGrammar.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSGrammar.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -76,7 +76,7 @@ /* Copy the first part of user declarations. */ /* Line 189 of yacc.c */ -#line 1 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1 "css/CSSGrammar.y" /* @@ -254,7 +254,7 @@ { /* Line 214 of yacc.c */ -#line 62 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 62 "css/CSSGrammar.y" bool boolean; char character; @@ -293,7 +293,7 @@ /* Copy the second part of user declarations. */ /* Line 264 of yacc.c */ -#line 87 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 87 "css/CSSGrammar.y" static inline int cssyyerror(const char*) @@ -2272,7 +2272,7 @@ case 10: /* Line 1455 of yacc.c */ -#line 303 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 303 "css/CSSGrammar.y" { static_cast(parser)->m_rule = (yyvsp[(4) - (6)].rule); ;} @@ -2281,7 +2281,7 @@ case 11: /* Line 1455 of yacc.c */ -#line 309 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 309 "css/CSSGrammar.y" { static_cast(parser)->m_keyframe = (yyvsp[(4) - (6)].keyframeRule); ;} @@ -2290,7 +2290,7 @@ case 12: /* Line 1455 of yacc.c */ -#line 315 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 315 "css/CSSGrammar.y" { /* can be empty */ ;} @@ -2299,7 +2299,7 @@ case 13: /* Line 1455 of yacc.c */ -#line 321 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 321 "css/CSSGrammar.y" { /* can be empty */ ;} @@ -2308,7 +2308,7 @@ case 14: /* Line 1455 of yacc.c */ -#line 327 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 327 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); if ((yyvsp[(4) - (5)].valueList)) { @@ -2325,7 +2325,7 @@ case 15: /* Line 1455 of yacc.c */ -#line 341 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 341 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); p->m_mediaQuery = p->sinkFloatingMediaQuery((yyvsp[(4) - (5)].mediaQuery)); @@ -2335,7 +2335,7 @@ case 16: /* Line 1455 of yacc.c */ -#line 348 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 348 "css/CSSGrammar.y" { if ((yyvsp[(4) - (5)].selectorList)) { CSSParser* p = static_cast(parser); @@ -2348,7 +2348,7 @@ case 23: /* Line 1455 of yacc.c */ -#line 370 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 370 "css/CSSGrammar.y" { ;} break; @@ -2356,7 +2356,7 @@ case 26: /* Line 1455 of yacc.c */ -#line 380 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 380 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.rule) = static_cast(parser)->createCharsetRule((yyvsp[(3) - (5)].string)); @@ -2368,7 +2368,7 @@ case 27: /* Line 1455 of yacc.c */ -#line 386 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 386 "css/CSSGrammar.y" { ;} break; @@ -2376,7 +2376,7 @@ case 28: /* Line 1455 of yacc.c */ -#line 388 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 388 "css/CSSGrammar.y" { ;} break; @@ -2384,7 +2384,7 @@ case 30: /* Line 1455 of yacc.c */ -#line 394 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 394 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); if ((yyvsp[(2) - (3)].rule) && p->m_styleSheet) @@ -2395,7 +2395,7 @@ case 39: /* Line 1455 of yacc.c */ -#line 413 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 413 "css/CSSGrammar.y" { static_cast(parser)->m_hadSyntacticallyValidCSSRule = true; ;} @@ -2404,14 +2404,14 @@ case 42: /* Line 1455 of yacc.c */ -#line 421 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 421 "css/CSSGrammar.y" { (yyval.ruleList) = 0; ;} break; case 43: /* Line 1455 of yacc.c */ -#line 422 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 422 "css/CSSGrammar.y" { (yyval.ruleList) = (yyvsp[(1) - (3)].ruleList); if ((yyvsp[(2) - (3)].rule)) { @@ -2425,7 +2425,7 @@ case 55: /* Line 1455 of yacc.c */ -#line 451 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 451 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createImportRule((yyvsp[(3) - (6)].string), (yyvsp[(5) - (6)].mediaList)); ;} @@ -2434,7 +2434,7 @@ case 56: /* Line 1455 of yacc.c */ -#line 454 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 454 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2443,7 +2443,7 @@ case 57: /* Line 1455 of yacc.c */ -#line 457 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 457 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2452,7 +2452,7 @@ case 58: /* Line 1455 of yacc.c */ -#line 460 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 460 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2461,7 +2461,7 @@ case 59: /* Line 1455 of yacc.c */ -#line 466 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 466 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createVariablesRule((yyvsp[(3) - (7)].mediaList), true); ;} @@ -2470,7 +2470,7 @@ case 60: /* Line 1455 of yacc.c */ -#line 470 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 470 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createVariablesRule((yyvsp[(3) - (7)].mediaList), false); ;} @@ -2479,7 +2479,7 @@ case 61: /* Line 1455 of yacc.c */ -#line 476 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 476 "css/CSSGrammar.y" { (yyval.mediaList) = static_cast(parser)->createMediaList(); ;} @@ -2488,7 +2488,7 @@ case 62: /* Line 1455 of yacc.c */ -#line 480 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 480 "css/CSSGrammar.y" { (yyval.mediaList) = (yyvsp[(3) - (3)].mediaList); ;} @@ -2497,7 +2497,7 @@ case 63: /* Line 1455 of yacc.c */ -#line 486 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 486 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (1)].boolean); ;} @@ -2506,7 +2506,7 @@ case 64: /* Line 1455 of yacc.c */ -#line 489 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 489 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (2)].boolean); if ((yyvsp[(2) - (2)].boolean)) @@ -2517,7 +2517,7 @@ case 65: /* Line 1455 of yacc.c */ -#line 494 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 494 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (1)].boolean); ;} @@ -2526,7 +2526,7 @@ case 66: /* Line 1455 of yacc.c */ -#line 497 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 497 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2535,7 +2535,7 @@ case 67: /* Line 1455 of yacc.c */ -#line 500 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 500 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2544,7 +2544,7 @@ case 68: /* Line 1455 of yacc.c */ -#line 503 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 503 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (2)].boolean); ;} @@ -2553,7 +2553,7 @@ case 69: /* Line 1455 of yacc.c */ -#line 509 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 509 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (3)].boolean); ;} @@ -2562,7 +2562,7 @@ case 70: /* Line 1455 of yacc.c */ -#line 512 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 512 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2571,7 +2571,7 @@ case 71: /* Line 1455 of yacc.c */ -#line 515 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 515 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2580,7 +2580,7 @@ case 72: /* Line 1455 of yacc.c */ -#line 518 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 518 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2589,7 +2589,7 @@ case 73: /* Line 1455 of yacc.c */ -#line 521 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 521 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (4)].boolean); if ((yyvsp[(2) - (4)].boolean)) @@ -2600,7 +2600,7 @@ case 74: /* Line 1455 of yacc.c */ -#line 526 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 526 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (4)].boolean); ;} @@ -2609,7 +2609,7 @@ case 75: /* Line 1455 of yacc.c */ -#line 529 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 529 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (6)].boolean); ;} @@ -2618,7 +2618,7 @@ case 76: /* Line 1455 of yacc.c */ -#line 535 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 535 "css/CSSGrammar.y" { (yyval.boolean) = static_cast(parser)->addVariable((yyvsp[(1) - (4)].string), (yyvsp[(4) - (4)].valueList)); ;} @@ -2627,7 +2627,7 @@ case 77: /* Line 1455 of yacc.c */ -#line 539 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 539 "css/CSSGrammar.y" { (yyval.boolean) = static_cast(parser)->addVariableDeclarationBlock((yyvsp[(1) - (7)].string)); ;} @@ -2636,7 +2636,7 @@ case 78: /* Line 1455 of yacc.c */ -#line 543 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 543 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2645,7 +2645,7 @@ case 79: /* Line 1455 of yacc.c */ -#line 547 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 547 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -2654,7 +2654,7 @@ case 80: /* Line 1455 of yacc.c */ -#line 551 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 551 "css/CSSGrammar.y" { /* @variables { varname: } Just reduce away this variable with no value. */ (yyval.boolean) = false; @@ -2664,7 +2664,7 @@ case 81: /* Line 1455 of yacc.c */ -#line 556 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 556 "css/CSSGrammar.y" { /* if we come across rules with invalid values like this case: @variables { varname: *; }, just discard the property/value pair */ (yyval.boolean) = false; @@ -2674,7 +2674,7 @@ case 82: /* Line 1455 of yacc.c */ -#line 563 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 563 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} @@ -2683,7 +2683,7 @@ case 83: /* Line 1455 of yacc.c */ -#line 569 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 569 "css/CSSGrammar.y" { static_cast(parser)->addNamespace((yyvsp[(3) - (6)].string), (yyvsp[(4) - (6)].string)); (yyval.rule) = 0; @@ -2693,7 +2693,7 @@ case 84: /* Line 1455 of yacc.c */ -#line 573 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 573 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2702,7 +2702,7 @@ case 85: /* Line 1455 of yacc.c */ -#line 576 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 576 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2711,7 +2711,7 @@ case 86: /* Line 1455 of yacc.c */ -#line 579 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 579 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -2720,21 +2720,21 @@ case 87: /* Line 1455 of yacc.c */ -#line 585 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 585 "css/CSSGrammar.y" { (yyval.string).characters = 0; ;} break; case 88: /* Line 1455 of yacc.c */ -#line 586 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 586 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} break; case 91: /* Line 1455 of yacc.c */ -#line 595 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 595 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} @@ -2743,7 +2743,7 @@ case 92: /* Line 1455 of yacc.c */ -#line 601 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 601 "css/CSSGrammar.y" { (yyval.valueList) = 0; ;} @@ -2752,7 +2752,7 @@ case 93: /* Line 1455 of yacc.c */ -#line 604 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 604 "css/CSSGrammar.y" { (yyval.valueList) = (yyvsp[(3) - (4)].valueList); ;} @@ -2761,7 +2761,7 @@ case 94: /* Line 1455 of yacc.c */ -#line 610 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 610 "css/CSSGrammar.y" { (yyvsp[(3) - (7)].string).lower(); (yyval.mediaQueryExp) = static_cast(parser)->createFloatingMediaQueryExp((yyvsp[(3) - (7)].string), (yyvsp[(5) - (7)].valueList)); @@ -2771,7 +2771,7 @@ case 95: /* Line 1455 of yacc.c */ -#line 617 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 617 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.mediaQueryExpList) = p->createFloatingMediaQueryExpList(); @@ -2782,7 +2782,7 @@ case 96: /* Line 1455 of yacc.c */ -#line 622 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 622 "css/CSSGrammar.y" { (yyval.mediaQueryExpList) = (yyvsp[(1) - (5)].mediaQueryExpList); (yyval.mediaQueryExpList)->append(static_cast(parser)->sinkFloatingMediaQueryExp((yyvsp[(5) - (5)].mediaQueryExp))); @@ -2792,7 +2792,7 @@ case 97: /* Line 1455 of yacc.c */ -#line 629 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 629 "css/CSSGrammar.y" { (yyval.mediaQueryExpList) = static_cast(parser)->createFloatingMediaQueryExpList(); ;} @@ -2801,7 +2801,7 @@ case 98: /* Line 1455 of yacc.c */ -#line 632 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 632 "css/CSSGrammar.y" { (yyval.mediaQueryExpList) = (yyvsp[(3) - (3)].mediaQueryExpList); ;} @@ -2810,7 +2810,7 @@ case 99: /* Line 1455 of yacc.c */ -#line 638 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 638 "css/CSSGrammar.y" { (yyval.mediaQueryRestrictor) = MediaQuery::None; ;} @@ -2819,7 +2819,7 @@ case 100: /* Line 1455 of yacc.c */ -#line 641 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 641 "css/CSSGrammar.y" { (yyval.mediaQueryRestrictor) = MediaQuery::Only; ;} @@ -2828,7 +2828,7 @@ case 101: /* Line 1455 of yacc.c */ -#line 644 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 644 "css/CSSGrammar.y" { (yyval.mediaQueryRestrictor) = MediaQuery::Not; ;} @@ -2837,7 +2837,7 @@ case 102: /* Line 1455 of yacc.c */ -#line 650 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 650 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.mediaQuery) = p->createFloatingMediaQuery(p->sinkFloatingMediaQueryExpList((yyvsp[(1) - (1)].mediaQueryExpList))); @@ -2847,7 +2847,7 @@ case 103: /* Line 1455 of yacc.c */ -#line 655 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 655 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyvsp[(3) - (4)].string).lower(); @@ -2858,7 +2858,7 @@ case 104: /* Line 1455 of yacc.c */ -#line 663 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 663 "css/CSSGrammar.y" { (yyval.mediaList) = static_cast(parser)->createMediaList(); ;} @@ -2867,7 +2867,7 @@ case 106: /* Line 1455 of yacc.c */ -#line 670 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 670 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.mediaList) = p->createMediaList(); @@ -2878,7 +2878,7 @@ case 107: /* Line 1455 of yacc.c */ -#line 675 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 675 "css/CSSGrammar.y" { (yyval.mediaList) = (yyvsp[(1) - (4)].mediaList); if ((yyval.mediaList)) @@ -2889,7 +2889,7 @@ case 108: /* Line 1455 of yacc.c */ -#line 680 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 680 "css/CSSGrammar.y" { (yyval.mediaList) = 0; ;} @@ -2898,7 +2898,7 @@ case 109: /* Line 1455 of yacc.c */ -#line 686 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 686 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createMediaRule((yyvsp[(3) - (7)].mediaList), (yyvsp[(6) - (7)].ruleList)); ;} @@ -2907,7 +2907,7 @@ case 110: /* Line 1455 of yacc.c */ -#line 689 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 689 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createMediaRule(0, (yyvsp[(5) - (6)].ruleList)); ;} @@ -2916,7 +2916,7 @@ case 111: /* Line 1455 of yacc.c */ -#line 695 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 695 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} @@ -2925,7 +2925,7 @@ case 112: /* Line 1455 of yacc.c */ -#line 701 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 701 "css/CSSGrammar.y" { (yyval.rule) = (yyvsp[(7) - (8)].keyframesRule); (yyvsp[(7) - (8)].keyframesRule)->setNameInternal((yyvsp[(3) - (8)].string)); @@ -2935,14 +2935,14 @@ case 115: /* Line 1455 of yacc.c */ -#line 713 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 713 "css/CSSGrammar.y" { (yyval.keyframesRule) = static_cast(parser)->createKeyframesRule(); ;} break; case 116: /* Line 1455 of yacc.c */ -#line 714 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 714 "css/CSSGrammar.y" { (yyval.keyframesRule) = (yyvsp[(1) - (3)].keyframesRule); if ((yyvsp[(2) - (3)].keyframeRule)) @@ -2953,7 +2953,7 @@ case 117: /* Line 1455 of yacc.c */ -#line 722 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 722 "css/CSSGrammar.y" { (yyval.keyframeRule) = static_cast(parser)->createKeyframeRule((yyvsp[(1) - (6)].valueList)); ;} @@ -2962,7 +2962,7 @@ case 118: /* Line 1455 of yacc.c */ -#line 728 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 728 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.valueList) = p->createFloatingValueList(); @@ -2973,7 +2973,7 @@ case 119: /* Line 1455 of yacc.c */ -#line 733 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 733 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.valueList) = (yyvsp[(1) - (5)].valueList); @@ -2985,14 +2985,14 @@ case 120: /* Line 1455 of yacc.c */ -#line 742 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 742 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).isInt = false; (yyval.value).fValue = (yyvsp[(1) - (1)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; ;} break; case 121: /* Line 1455 of yacc.c */ -#line 743 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 743 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).isInt = false; (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; CSSParserString& str = (yyvsp[(1) - (1)].string); @@ -3008,7 +3008,7 @@ case 122: /* Line 1455 of yacc.c */ -#line 757 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 757 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); if ((yyvsp[(3) - (8)].selector)) @@ -3025,7 +3025,7 @@ case 123: /* Line 1455 of yacc.c */ -#line 768 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 768 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -3034,7 +3034,7 @@ case 124: /* Line 1455 of yacc.c */ -#line 771 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 771 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -3043,7 +3043,7 @@ case 125: /* Line 1455 of yacc.c */ -#line 777 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 777 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3055,7 +3055,7 @@ case 126: /* Line 1455 of yacc.c */ -#line 783 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 783 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = (yyvsp[(2) - (2)].selector); @@ -3069,7 +3069,7 @@ case 127: /* Line 1455 of yacc.c */ -#line 791 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 791 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (1)].selector); if ((yyval.selector)) @@ -3080,7 +3080,7 @@ case 128: /* Line 1455 of yacc.c */ -#line 796 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 796 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3091,7 +3091,7 @@ case 131: /* Line 1455 of yacc.c */ -#line 809 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 809 "css/CSSGrammar.y" { static_cast(parser)->startDeclarationsForMarginBox(); ;} @@ -3100,7 +3100,7 @@ case 132: /* Line 1455 of yacc.c */ -#line 811 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 811 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createMarginAtRule((yyvsp[(1) - (7)].marginBox)); ;} @@ -3109,7 +3109,7 @@ case 133: /* Line 1455 of yacc.c */ -#line 817 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 817 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::TopLeftCornerMarginBox; ;} @@ -3118,7 +3118,7 @@ case 134: /* Line 1455 of yacc.c */ -#line 820 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 820 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::TopLeftMarginBox; ;} @@ -3127,7 +3127,7 @@ case 135: /* Line 1455 of yacc.c */ -#line 823 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 823 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::TopCenterMarginBox; ;} @@ -3136,7 +3136,7 @@ case 136: /* Line 1455 of yacc.c */ -#line 826 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 826 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::TopRightMarginBox; ;} @@ -3145,7 +3145,7 @@ case 137: /* Line 1455 of yacc.c */ -#line 829 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 829 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::TopRightCornerMarginBox; ;} @@ -3154,7 +3154,7 @@ case 138: /* Line 1455 of yacc.c */ -#line 832 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 832 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::BottomLeftCornerMarginBox; ;} @@ -3163,7 +3163,7 @@ case 139: /* Line 1455 of yacc.c */ -#line 835 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 835 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::BottomLeftMarginBox; ;} @@ -3172,7 +3172,7 @@ case 140: /* Line 1455 of yacc.c */ -#line 838 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 838 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::BottomCenterMarginBox; ;} @@ -3181,7 +3181,7 @@ case 141: /* Line 1455 of yacc.c */ -#line 841 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 841 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::BottomRightMarginBox; ;} @@ -3190,7 +3190,7 @@ case 142: /* Line 1455 of yacc.c */ -#line 844 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 844 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::BottomRightCornerMarginBox; ;} @@ -3199,7 +3199,7 @@ case 143: /* Line 1455 of yacc.c */ -#line 847 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 847 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::LeftTopMarginBox; ;} @@ -3208,7 +3208,7 @@ case 144: /* Line 1455 of yacc.c */ -#line 850 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 850 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::LeftMiddleMarginBox; ;} @@ -3217,7 +3217,7 @@ case 145: /* Line 1455 of yacc.c */ -#line 853 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 853 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::LeftBottomMarginBox; ;} @@ -3226,7 +3226,7 @@ case 146: /* Line 1455 of yacc.c */ -#line 856 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 856 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::RightTopMarginBox; ;} @@ -3235,7 +3235,7 @@ case 147: /* Line 1455 of yacc.c */ -#line 859 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 859 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::RightMiddleMarginBox; ;} @@ -3244,7 +3244,7 @@ case 148: /* Line 1455 of yacc.c */ -#line 862 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 862 "css/CSSGrammar.y" { (yyval.marginBox) = CSSSelector::RightBottomMarginBox; ;} @@ -3253,7 +3253,7 @@ case 149: /* Line 1455 of yacc.c */ -#line 869 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 869 "css/CSSGrammar.y" { (yyval.rule) = static_cast(parser)->createFontFaceRule(); ;} @@ -3262,7 +3262,7 @@ case 150: /* Line 1455 of yacc.c */ -#line 872 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 872 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -3271,7 +3271,7 @@ case 151: /* Line 1455 of yacc.c */ -#line 875 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 875 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -3280,56 +3280,56 @@ case 152: /* Line 1455 of yacc.c */ -#line 881 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 881 "css/CSSGrammar.y" { (yyval.relation) = CSSSelector::DirectAdjacent; ;} break; case 153: /* Line 1455 of yacc.c */ -#line 882 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 882 "css/CSSGrammar.y" { (yyval.relation) = CSSSelector::IndirectAdjacent; ;} break; case 154: /* Line 1455 of yacc.c */ -#line 883 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 883 "css/CSSGrammar.y" { (yyval.relation) = CSSSelector::Child; ;} break; case 155: /* Line 1455 of yacc.c */ -#line 887 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 887 "css/CSSGrammar.y" { (yyval.integer) = (yyvsp[(1) - (1)].integer); ;} break; case 156: /* Line 1455 of yacc.c */ -#line 888 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 888 "css/CSSGrammar.y" { (yyval.integer) = 1; ;} break; case 157: /* Line 1455 of yacc.c */ -#line 892 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 892 "css/CSSGrammar.y" { (yyval.integer) = -1; ;} break; case 158: /* Line 1455 of yacc.c */ -#line 893 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 893 "css/CSSGrammar.y" { (yyval.integer) = 1; ;} break; case 159: /* Line 1455 of yacc.c */ -#line 897 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 897 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.rule) = p->createStyleRule((yyvsp[(1) - (5)].selectorList)); @@ -3339,7 +3339,7 @@ case 160: /* Line 1455 of yacc.c */ -#line 904 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 904 "css/CSSGrammar.y" { if ((yyvsp[(1) - (1)].selector)) { CSSParser* p = static_cast(parser); @@ -3355,7 +3355,7 @@ case 161: /* Line 1455 of yacc.c */ -#line 914 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 914 "css/CSSGrammar.y" { if ((yyvsp[(1) - (4)].selectorList) && (yyvsp[(4) - (4)].selector)) { CSSParser* p = static_cast(parser); @@ -3370,7 +3370,7 @@ case 162: /* Line 1455 of yacc.c */ -#line 923 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 923 "css/CSSGrammar.y" { (yyval.selectorList) = 0; ;} @@ -3379,7 +3379,7 @@ case 163: /* Line 1455 of yacc.c */ -#line 929 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 929 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (2)].selector); ;} @@ -3388,7 +3388,7 @@ case 164: /* Line 1455 of yacc.c */ -#line 935 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 935 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (1)].selector); ;} @@ -3397,7 +3397,7 @@ case 165: /* Line 1455 of yacc.c */ -#line 939 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 939 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (1)].selector); ;} @@ -3406,7 +3406,7 @@ case 166: /* Line 1455 of yacc.c */ -#line 943 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 943 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(2) - (2)].selector); if (!(yyvsp[(1) - (2)].selector)) @@ -3427,7 +3427,7 @@ case 167: /* Line 1455 of yacc.c */ -#line 958 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 958 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(3) - (3)].selector); if (!(yyvsp[(1) - (3)].selector)) @@ -3453,7 +3453,7 @@ case 168: /* Line 1455 of yacc.c */ -#line 978 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 978 "css/CSSGrammar.y" { (yyval.selector) = 0; ;} @@ -3462,28 +3462,28 @@ case 169: /* Line 1455 of yacc.c */ -#line 984 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 984 "css/CSSGrammar.y" { (yyval.string).characters = 0; (yyval.string).length = 0; ;} break; case 170: /* Line 1455 of yacc.c */ -#line 985 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 985 "css/CSSGrammar.y" { static UChar star = '*'; (yyval.string).characters = ☆ (yyval.string).length = 1; ;} break; case 171: /* Line 1455 of yacc.c */ -#line 986 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 986 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} break; case 172: /* Line 1455 of yacc.c */ -#line 990 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 990 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3494,7 +3494,7 @@ case 173: /* Line 1455 of yacc.c */ -#line 995 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 995 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(2) - (2)].selector); if ((yyval.selector)) { @@ -3507,7 +3507,7 @@ case 174: /* Line 1455 of yacc.c */ -#line 1002 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1002 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (1)].selector); CSSParser* p = static_cast(parser); @@ -3519,7 +3519,7 @@ case 175: /* Line 1455 of yacc.c */ -#line 1008 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1008 "css/CSSGrammar.y" { AtomicString namespacePrefix = (yyvsp[(1) - (2)].string); CSSParser* p = static_cast(parser); @@ -3535,7 +3535,7 @@ case 176: /* Line 1455 of yacc.c */ -#line 1018 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1018 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(3) - (3)].selector); if ((yyval.selector)) { @@ -3553,7 +3553,7 @@ case 177: /* Line 1455 of yacc.c */ -#line 1030 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1030 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(2) - (2)].selector); if ((yyval.selector)) { @@ -3569,7 +3569,7 @@ case 178: /* Line 1455 of yacc.c */ -#line 1043 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1043 "css/CSSGrammar.y" { CSSParserString& str = (yyvsp[(1) - (1)].string); CSSParser* p = static_cast(parser); @@ -3583,7 +3583,7 @@ case 179: /* Line 1455 of yacc.c */ -#line 1051 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1051 "css/CSSGrammar.y" { static UChar star = '*'; (yyval.string).characters = ☆ @@ -3594,7 +3594,7 @@ case 180: /* Line 1455 of yacc.c */ -#line 1059 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1059 "css/CSSGrammar.y" { (yyval.selector) = (yyvsp[(1) - (1)].selector); ;} @@ -3603,7 +3603,7 @@ case 181: /* Line 1455 of yacc.c */ -#line 1062 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1062 "css/CSSGrammar.y" { if (!(yyvsp[(2) - (2)].selector)) (yyval.selector) = 0; @@ -3622,7 +3622,7 @@ case 182: /* Line 1455 of yacc.c */ -#line 1075 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1075 "css/CSSGrammar.y" { (yyval.selector) = 0; ;} @@ -3631,7 +3631,7 @@ case 183: /* Line 1455 of yacc.c */ -#line 1081 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1081 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3645,7 +3645,7 @@ case 184: /* Line 1455 of yacc.c */ -#line 1089 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1089 "css/CSSGrammar.y" { if ((yyvsp[(1) - (1)].string).characters[0] >= '0' && (yyvsp[(1) - (1)].string).characters[0] <= '9') { (yyval.selector) = 0; @@ -3663,7 +3663,7 @@ case 188: /* Line 1455 of yacc.c */ -#line 1107 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1107 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3677,7 +3677,7 @@ case 189: /* Line 1455 of yacc.c */ -#line 1118 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1118 "css/CSSGrammar.y" { CSSParserString& str = (yyvsp[(1) - (2)].string); CSSParser* p = static_cast(parser); @@ -3691,7 +3691,7 @@ case 190: /* Line 1455 of yacc.c */ -#line 1129 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1129 "css/CSSGrammar.y" { (yyval.selector) = static_cast(parser)->createFloatingSelector(); (yyval.selector)->setAttribute(QualifiedName(nullAtom, (yyvsp[(3) - (4)].string), nullAtom)); @@ -3702,7 +3702,7 @@ case 191: /* Line 1455 of yacc.c */ -#line 1134 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1134 "css/CSSGrammar.y" { (yyval.selector) = static_cast(parser)->createFloatingSelector(); (yyval.selector)->setAttribute(QualifiedName(nullAtom, (yyvsp[(3) - (8)].string), nullAtom)); @@ -3714,7 +3714,7 @@ case 192: /* Line 1455 of yacc.c */ -#line 1140 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1140 "css/CSSGrammar.y" { AtomicString namespacePrefix = (yyvsp[(3) - (5)].string); CSSParser* p = static_cast(parser); @@ -3728,7 +3728,7 @@ case 193: /* Line 1455 of yacc.c */ -#line 1148 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1148 "css/CSSGrammar.y" { AtomicString namespacePrefix = (yyvsp[(3) - (9)].string); CSSParser* p = static_cast(parser); @@ -3743,7 +3743,7 @@ case 194: /* Line 1455 of yacc.c */ -#line 1160 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1160 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::Exact; ;} @@ -3752,7 +3752,7 @@ case 195: /* Line 1455 of yacc.c */ -#line 1163 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1163 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::List; ;} @@ -3761,7 +3761,7 @@ case 196: /* Line 1455 of yacc.c */ -#line 1166 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1166 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::Hyphen; ;} @@ -3770,7 +3770,7 @@ case 197: /* Line 1455 of yacc.c */ -#line 1169 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1169 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::Begin; ;} @@ -3779,7 +3779,7 @@ case 198: /* Line 1455 of yacc.c */ -#line 1172 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1172 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::End; ;} @@ -3788,7 +3788,7 @@ case 199: /* Line 1455 of yacc.c */ -#line 1175 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1175 "css/CSSGrammar.y" { (yyval.integer) = CSSSelector::Contain; ;} @@ -3797,7 +3797,7 @@ case 202: /* Line 1455 of yacc.c */ -#line 1186 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1186 "css/CSSGrammar.y" { (yyval.selector) = static_cast(parser)->createFloatingSelector(); (yyval.selector)->m_match = CSSSelector::PagePseudoClass; @@ -3812,7 +3812,7 @@ case 203: /* Line 1455 of yacc.c */ -#line 1197 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1197 "css/CSSGrammar.y" { (yyval.selector) = static_cast(parser)->createFloatingSelector(); (yyval.selector)->m_match = CSSSelector::PseudoClass; @@ -3852,7 +3852,7 @@ case 204: /* Line 1455 of yacc.c */ -#line 1231 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1231 "css/CSSGrammar.y" { (yyval.selector) = static_cast(parser)->createFloatingSelector(); (yyval.selector)->m_match = CSSSelector::PseudoElement; @@ -3877,7 +3877,7 @@ case 205: /* Line 1455 of yacc.c */ -#line 1251 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1251 "css/CSSGrammar.y" { CSSParser *p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3900,7 +3900,7 @@ case 206: /* Line 1455 of yacc.c */ -#line 1269 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1269 "css/CSSGrammar.y" { CSSParser *p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3923,7 +3923,7 @@ case 207: /* Line 1455 of yacc.c */ -#line 1287 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1287 "css/CSSGrammar.y" { CSSParser *p = static_cast(parser); (yyval.selector) = p->createFloatingSelector(); @@ -3947,7 +3947,7 @@ case 208: /* Line 1455 of yacc.c */ -#line 1306 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1306 "css/CSSGrammar.y" { if (!(yyvsp[(4) - (6)].selector) || !(yyvsp[(4) - (6)].selector)->isSimple()) (yyval.selector) = 0; @@ -3965,7 +3965,7 @@ case 209: /* Line 1455 of yacc.c */ -#line 1321 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1321 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (1)].boolean); ;} @@ -3974,7 +3974,7 @@ case 210: /* Line 1455 of yacc.c */ -#line 1324 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1324 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (2)].boolean); if ( (yyvsp[(2) - (2)].boolean) ) @@ -3985,7 +3985,7 @@ case 211: /* Line 1455 of yacc.c */ -#line 1329 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1329 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (1)].boolean); ;} @@ -3994,7 +3994,7 @@ case 212: /* Line 1455 of yacc.c */ -#line 1332 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1332 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4003,7 +4003,7 @@ case 213: /* Line 1455 of yacc.c */ -#line 1335 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1335 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4012,7 +4012,7 @@ case 214: /* Line 1455 of yacc.c */ -#line 1338 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1338 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (2)].boolean); ;} @@ -4021,7 +4021,7 @@ case 215: /* Line 1455 of yacc.c */ -#line 1341 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1341 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (2)].boolean); ;} @@ -4030,7 +4030,7 @@ case 216: /* Line 1455 of yacc.c */ -#line 1347 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1347 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (3)].boolean); ;} @@ -4039,7 +4039,7 @@ case 217: /* Line 1455 of yacc.c */ -#line 1350 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1350 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4048,7 +4048,7 @@ case 218: /* Line 1455 of yacc.c */ -#line 1353 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1353 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4057,7 +4057,7 @@ case 219: /* Line 1455 of yacc.c */ -#line 1356 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1356 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4066,7 +4066,7 @@ case 220: /* Line 1455 of yacc.c */ -#line 1359 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1359 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4075,7 +4075,7 @@ case 221: /* Line 1455 of yacc.c */ -#line 1362 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1362 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (4)].boolean); if ((yyvsp[(2) - (4)].boolean)) @@ -4086,7 +4086,7 @@ case 222: /* Line 1455 of yacc.c */ -#line 1367 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1367 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (4)].boolean); ;} @@ -4095,7 +4095,7 @@ case 223: /* Line 1455 of yacc.c */ -#line 1370 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1370 "css/CSSGrammar.y" { (yyval.boolean) = (yyvsp[(1) - (6)].boolean); ;} @@ -4104,7 +4104,7 @@ case 224: /* Line 1455 of yacc.c */ -#line 1376 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1376 "css/CSSGrammar.y" { (yyval.boolean) = false; CSSParser* p = static_cast(parser); @@ -4123,7 +4123,7 @@ case 225: /* Line 1455 of yacc.c */ -#line 1390 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1390 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); p->m_valueList = new CSSParserValueList; @@ -4140,7 +4140,7 @@ case 226: /* Line 1455 of yacc.c */ -#line 1402 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1402 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} @@ -4149,7 +4149,7 @@ case 227: /* Line 1455 of yacc.c */ -#line 1406 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1406 "css/CSSGrammar.y" { /* The default movable type template has letter-spacing: .none; Handle this by looking for error tokens at the start of an expr, recover the expr and then treat as an error, cleaning @@ -4161,7 +4161,7 @@ case 228: /* Line 1455 of yacc.c */ -#line 1413 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1413 "css/CSSGrammar.y" { /* When we encounter something like p {color: red !important fail;} we should drop the declaration */ (yyval.boolean) = false; @@ -4171,7 +4171,7 @@ case 229: /* Line 1455 of yacc.c */ -#line 1418 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1418 "css/CSSGrammar.y" { /* Handle this case: div { text-align: center; !important } Just reduce away the stray !important. */ (yyval.boolean) = false; @@ -4181,7 +4181,7 @@ case 230: /* Line 1455 of yacc.c */ -#line 1423 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1423 "css/CSSGrammar.y" { /* div { font-family: } Just reduce away this property with no value. */ (yyval.boolean) = false; @@ -4191,7 +4191,7 @@ case 231: /* Line 1455 of yacc.c */ -#line 1428 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1428 "css/CSSGrammar.y" { /* if we come across rules with invalid values like this case: p { weight: *; }, just discard the rule */ (yyval.boolean) = false; @@ -4201,7 +4201,7 @@ case 232: /* Line 1455 of yacc.c */ -#line 1433 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1433 "css/CSSGrammar.y" { /* if we come across: div { color{;color:maroon} }, ignore everything within curly brackets */ (yyval.boolean) = false; @@ -4211,7 +4211,7 @@ case 233: /* Line 1455 of yacc.c */ -#line 1440 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1440 "css/CSSGrammar.y" { (yyval.integer) = cssPropertyID((yyvsp[(1) - (2)].string)); ;} @@ -4220,21 +4220,21 @@ case 234: /* Line 1455 of yacc.c */ -#line 1446 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1446 "css/CSSGrammar.y" { (yyval.boolean) = true; ;} break; case 235: /* Line 1455 of yacc.c */ -#line 1447 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1447 "css/CSSGrammar.y" { (yyval.boolean) = false; ;} break; case 236: /* Line 1455 of yacc.c */ -#line 1451 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1451 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.valueList) = p->createFloatingValueList(); @@ -4245,7 +4245,7 @@ case 237: /* Line 1455 of yacc.c */ -#line 1456 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1456 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); (yyval.valueList) = (yyvsp[(1) - (3)].valueList); @@ -4265,7 +4265,7 @@ case 238: /* Line 1455 of yacc.c */ -#line 1470 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1470 "css/CSSGrammar.y" { (yyval.valueList) = 0; ;} @@ -4274,7 +4274,7 @@ case 239: /* Line 1455 of yacc.c */ -#line 1473 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1473 "css/CSSGrammar.y" { (yyval.valueList) = 0; ;} @@ -4283,7 +4283,7 @@ case 240: /* Line 1455 of yacc.c */ -#line 1476 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1476 "css/CSSGrammar.y" { (yyval.valueList) = 0; ;} @@ -4292,7 +4292,7 @@ case 241: /* Line 1455 of yacc.c */ -#line 1482 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1482 "css/CSSGrammar.y" { (yyval.character) = '/'; ;} @@ -4301,7 +4301,7 @@ case 242: /* Line 1455 of yacc.c */ -#line 1485 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1485 "css/CSSGrammar.y" { (yyval.character) = ','; ;} @@ -4310,7 +4310,7 @@ case 243: /* Line 1455 of yacc.c */ -#line 1488 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1488 "css/CSSGrammar.y" { (yyval.character) = 0; ;} @@ -4319,28 +4319,28 @@ case 244: /* Line 1455 of yacc.c */ -#line 1494 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1494 "css/CSSGrammar.y" { (yyval.value) = (yyvsp[(1) - (1)].value); ;} break; case 245: /* Line 1455 of yacc.c */ -#line 1495 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1495 "css/CSSGrammar.y" { (yyval.value) = (yyvsp[(2) - (2)].value); (yyval.value).fValue *= (yyvsp[(1) - (2)].integer); ;} break; case 246: /* Line 1455 of yacc.c */ -#line 1496 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1496 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_STRING; ;} break; case 247: /* Line 1455 of yacc.c */ -#line 1497 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1497 "css/CSSGrammar.y" { (yyval.value).id = cssValueKeywordID((yyvsp[(1) - (2)].string)); (yyval.value).unit = CSSPrimitiveValue::CSS_IDENT; @@ -4351,49 +4351,49 @@ case 248: /* Line 1455 of yacc.c */ -#line 1503 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1503 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_DIMENSION; ;} break; case 249: /* Line 1455 of yacc.c */ -#line 1504 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1504 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(2) - (3)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_DIMENSION; ;} break; case 250: /* Line 1455 of yacc.c */ -#line 1505 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1505 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_URI; ;} break; case 251: /* Line 1455 of yacc.c */ -#line 1506 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1506 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (2)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_UNICODE_RANGE; ;} break; case 252: /* Line 1455 of yacc.c */ -#line 1507 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1507 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (1)].string); (yyval.value).unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; ;} break; case 253: /* Line 1455 of yacc.c */ -#line 1508 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1508 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = CSSParserString(); (yyval.value).unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; ;} break; case 254: /* Line 1455 of yacc.c */ -#line 1510 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1510 "css/CSSGrammar.y" { (yyval.value) = (yyvsp[(1) - (1)].value); ;} @@ -4402,7 +4402,7 @@ case 255: /* Line 1455 of yacc.c */ -#line 1513 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1513 "css/CSSGrammar.y" { (yyval.value) = (yyvsp[(1) - (2)].value); ;} @@ -4411,7 +4411,7 @@ case 256: /* Line 1455 of yacc.c */ -#line 1516 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1516 "css/CSSGrammar.y" { /* Handle width: %; */ (yyval.value).id = 0; (yyval.value).unit = 0; ;} @@ -4420,147 +4420,147 @@ case 257: /* Line 1455 of yacc.c */ -#line 1522 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1522 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).isInt = true; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; ;} break; case 258: /* Line 1455 of yacc.c */ -#line 1523 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1523 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).isInt = false; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_NUMBER; ;} break; case 259: /* Line 1455 of yacc.c */ -#line 1524 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1524 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_PERCENTAGE; ;} break; case 260: /* Line 1455 of yacc.c */ -#line 1525 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1525 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_PX; ;} break; case 261: /* Line 1455 of yacc.c */ -#line 1526 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1526 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_CM; ;} break; case 262: /* Line 1455 of yacc.c */ -#line 1527 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1527 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_MM; ;} break; case 263: /* Line 1455 of yacc.c */ -#line 1528 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1528 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_IN; ;} break; case 264: /* Line 1455 of yacc.c */ -#line 1529 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1529 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_PT; ;} break; case 265: /* Line 1455 of yacc.c */ -#line 1530 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1530 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_PC; ;} break; case 266: /* Line 1455 of yacc.c */ -#line 1531 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1531 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_DEG; ;} break; case 267: /* Line 1455 of yacc.c */ -#line 1532 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1532 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_RAD; ;} break; case 268: /* Line 1455 of yacc.c */ -#line 1533 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1533 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_GRAD; ;} break; case 269: /* Line 1455 of yacc.c */ -#line 1534 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1534 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_TURN; ;} break; case 270: /* Line 1455 of yacc.c */ -#line 1535 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1535 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_MS; ;} break; case 271: /* Line 1455 of yacc.c */ -#line 1536 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1536 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_S; ;} break; case 272: /* Line 1455 of yacc.c */ -#line 1537 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1537 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_HZ; ;} break; case 273: /* Line 1455 of yacc.c */ -#line 1538 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1538 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_KHZ; ;} break; case 274: /* Line 1455 of yacc.c */ -#line 1539 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1539 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_EMS; ;} break; case 275: /* Line 1455 of yacc.c */ -#line 1540 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1540 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSParserValue::Q_EMS; ;} break; case 276: /* Line 1455 of yacc.c */ -#line 1541 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1541 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); (yyval.value).unit = CSSPrimitiveValue::CSS_EXS; ;} break; case 277: /* Line 1455 of yacc.c */ -#line 1542 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1542 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).fValue = (yyvsp[(1) - (2)].number); @@ -4574,7 +4574,7 @@ case 278: /* Line 1455 of yacc.c */ -#line 1553 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1553 "css/CSSGrammar.y" { (yyval.value).id = 0; (yyval.value).string = (yyvsp[(1) - (1)].string); @@ -4585,7 +4585,7 @@ case 279: /* Line 1455 of yacc.c */ -#line 1561 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1561 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); CSSParserFunction* f = p->createFloatingFunction(); @@ -4600,7 +4600,7 @@ case 280: /* Line 1455 of yacc.c */ -#line 1570 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1570 "css/CSSGrammar.y" { CSSParser* p = static_cast(parser); CSSParserFunction* f = p->createFloatingFunction(); @@ -4615,21 +4615,21 @@ case 281: /* Line 1455 of yacc.c */ -#line 1586 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1586 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} break; case 282: /* Line 1455 of yacc.c */ -#line 1587 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1587 "css/CSSGrammar.y" { (yyval.string) = (yyvsp[(1) - (2)].string); ;} break; case 283: /* Line 1455 of yacc.c */ -#line 1594 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1594 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -4638,7 +4638,7 @@ case 284: /* Line 1455 of yacc.c */ -#line 1597 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1597 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -4647,7 +4647,7 @@ case 285: /* Line 1455 of yacc.c */ -#line 1603 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1603 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -4656,7 +4656,7 @@ case 286: /* Line 1455 of yacc.c */ -#line 1606 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1606 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -4665,7 +4665,7 @@ case 287: /* Line 1455 of yacc.c */ -#line 1612 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1612 "css/CSSGrammar.y" { (yyval.rule) = 0; ;} @@ -4674,7 +4674,7 @@ case 288: /* Line 1455 of yacc.c */ -#line 1630 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1630 "css/CSSGrammar.y" { static_cast(parser)->invalidBlockHit(); ;} @@ -4683,7 +4683,7 @@ case 289: /* Line 1455 of yacc.c */ -#line 1633 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 1633 "css/CSSGrammar.y" { static_cast(parser)->invalidBlockHit(); ;} @@ -4904,6 +4904,6 @@ /* Line 1675 of yacc.c */ -#line 1643 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" - - +#line 1643 "css/CSSGrammar.y" + + diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSGrammar.h --- a/WebCore/generated/CSSGrammar.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSGrammar.h Mon Oct 04 01:32:07 2010 +0300 @@ -131,7 +131,7 @@ { /* Line 1676 of yacc.c */ -#line 62 "u:\\yaels-qtwebkit\\WebCore\\css\\CSSGrammar.y" +#line 62 "css/CSSGrammar.y" bool boolean; char character; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSPropertyNames.cpp --- a/WebCore/generated/CSSPropertyNames.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSPropertyNames.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -/* ANSI-C code produced by gperf version 3.0.1 */ +/* ANSI-C code produced by gperf version 3.0.3 */ /* Command-line: gperf --key-positions='*' -D -n -s 2 CSSPropertyNames.gperf */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ @@ -40,7 +40,7 @@ #include enum { - TOTAL_KEYWORDS = 297, + TOTAL_KEYWORDS = 300, MIN_WORD_LENGTH = 3, MAX_WORD_LENGTH = 43, MIN_HASH_VALUE = 0, @@ -243,9 +243,9 @@ {"zoom", CSSPropertyZoom}, #line 99 "CSSPropertyNames.gperf" {"min-width", CSSPropertyMinWidth}, -#line 294 "CSSPropertyNames.gperf" +#line 297 "CSSPropertyNames.gperf" {"marker", CSSPropertyMarker}, -#line 296 "CSSPropertyNames.gperf" +#line 299 "CSSPropertyNames.gperf" {"marker-mid", CSSPropertyMarkerMid}, #line 97 "CSSPropertyNames.gperf" {"max-width", CSSPropertyMaxWidth}, @@ -257,11 +257,11 @@ {"-webkit-box-orient", CSSPropertyWebkitBoxOrient}, #line 176 "CSSPropertyNames.gperf" {"-webkit-border-end", CSSPropertyWebkitBorderEnd}, -#line 295 "CSSPropertyNames.gperf" +#line 298 "CSSPropertyNames.gperf" {"marker-end", CSSPropertyMarkerEnd}, #line 159 "CSSPropertyNames.gperf" {"z-index", CSSPropertyZIndex}, -#line 299 "CSSPropertyNames.gperf" +#line 302 "CSSPropertyNames.gperf" {"stroke", CSSPropertyStroke}, #line 148 "CSSPropertyNames.gperf" {"top", CSSPropertyTop}, @@ -269,9 +269,9 @@ {"-webkit-border-end-width", CSSPropertyWebkitBorderEndWidth}, #line 154 "CSSPropertyNames.gperf" {"widows", CSSPropertyWidows}, -#line 306 "CSSPropertyNames.gperf" +#line 309 "CSSPropertyNames.gperf" {"stroke-width", CSSPropertyStrokeWidth}, -#line 278 "CSSPropertyNames.gperf" +#line 281 "CSSPropertyNames.gperf" {"mask", CSSPropertyMask}, #line 66 "CSSPropertyNames.gperf" {"border-top", CSSPropertyBorderTop}, @@ -295,7 +295,7 @@ {"-webkit-border-start", CSSPropertyWebkitBorderStart}, #line 198 "CSSPropertyNames.gperf" {"-webkit-box-shadow", CSSPropertyWebkitBoxShadow}, -#line 297 "CSSPropertyNames.gperf" +#line 300 "CSSPropertyNames.gperf" {"marker-start", CSSPropertyMarkerStart}, #line 158 "CSSPropertyNames.gperf" {"word-wrap", CSSPropertyWordWrap}, @@ -311,7 +311,7 @@ {"-webkit-animation-name", CSSPropertyWebkitAnimationName}, #line 77 "CSSPropertyNames.gperf" {"content", CSSPropertyContent}, -#line 304 "CSSPropertyNames.gperf" +#line 307 "CSSPropertyNames.gperf" {"stroke-miterlimit", CSSPropertyStrokeMiterlimit}, #line 218 "CSSPropertyNames.gperf" {"-webkit-line-break", CSSPropertyWebkitLineBreak}, @@ -321,7 +321,7 @@ {"orphans", CSSPropertyOrphans}, #line 190 "CSSPropertyNames.gperf" {"-webkit-box-direction", CSSPropertyWebkitBoxDirection}, -#line 313 "CSSPropertyNames.gperf" +#line 316 "CSSPropertyNames.gperf" {"text-anchor", CSSPropertyTextAnchor}, #line 125 "CSSPropertyNames.gperf" {"src", CSSPropertySrc}, @@ -333,7 +333,7 @@ {"-webkit-mask-size", CSSPropertyWebkitMaskSize}, #line 193 "CSSPropertyNames.gperf" {"-webkit-box-lines", CSSPropertyWebkitBoxLines}, -#line 303 "CSSPropertyNames.gperf" +#line 306 "CSSPropertyNames.gperf" {"stroke-linejoin", CSSPropertyStrokeLinejoin}, #line 138 "CSSPropertyNames.gperf" {"text-overline-mode", CSSPropertyTextOverlineMode}, @@ -361,7 +361,7 @@ {"-webkit-animation-direction", CSSPropertyWebkitAnimationDirection}, #line 239 "CSSPropertyNames.gperf" {"-webkit-mask-position-x", CSSPropertyWebkitMaskPositionX}, -#line 309 "CSSPropertyNames.gperf" +#line 312 "CSSPropertyNames.gperf" {"dominant-baseline", CSSPropertyDominantBaseline}, #line 177 "CSSPropertyNames.gperf" {"-webkit-border-end-color", CSSPropertyWebkitBorderEndColor}, @@ -377,9 +377,11 @@ {"border-top-color", CSSPropertyBorderTopColor}, #line 258 "CSSPropertyNames.gperf" {"-webkit-text-stroke-color", CSSPropertyWebkitTextStrokeColor}, +#line 275 "CSSPropertyNames.gperf" + {"-webkit-haptic-tap", CSSPropertyWebkitHapticTap}, #line 185 "CSSPropertyNames.gperf" {"-webkit-border-start-color", CSSPropertyWebkitBorderStartColor}, -#line 284 "CSSPropertyNames.gperf" +#line 287 "CSSPropertyNames.gperf" {"stop-color", CSSPropertyStopColor}, #line 235 "CSSPropertyNames.gperf" {"-webkit-mask-composite", CSSPropertyWebkitMaskComposite}, @@ -387,7 +389,7 @@ {"right", CSSPropertyRight}, #line 84 "CSSPropertyNames.gperf" {"height", CSSPropertyHeight}, -#line 276 "CSSPropertyNames.gperf" +#line 279 "CSSPropertyNames.gperf" {"clip-path", CSSPropertyClipPath}, #line 169 "CSSPropertyNames.gperf" {"-webkit-appearance", CSSPropertyWebkitAppearance}, @@ -395,7 +397,7 @@ {"-webkit-mask-clip", CSSPropertyWebkitMaskClip}, #line 60 "CSSPropertyNames.gperf" {"border-right", CSSPropertyBorderRight}, -#line 302 "CSSPropertyNames.gperf" +#line 305 "CSSPropertyNames.gperf" {"stroke-linecap", CSSPropertyStrokeLinecap}, #line 98 "CSSPropertyNames.gperf" {"min-height", CSSPropertyMinHeight}, @@ -403,9 +405,9 @@ {"border-right-width", CSSPropertyBorderRightWidth}, #line 96 "CSSPropertyNames.gperf" {"max-height", CSSPropertyMaxHeight}, -#line 315 "CSSPropertyNames.gperf" +#line 318 "CSSPropertyNames.gperf" {"writing-mode", CSSPropertyWritingMode}, -#line 312 "CSSPropertyNames.gperf" +#line 315 "CSSPropertyNames.gperf" {"kerning", CSSPropertyKerning}, #line 137 "CSSPropertyNames.gperf" {"text-overline-color", CSSPropertyTextOverlineColor}, @@ -423,7 +425,7 @@ {"-webkit-border-image", CSSPropertyWebkitBorderImage}, #line 219 "CSSPropertyNames.gperf" {"-webkit-line-clamp", CSSPropertyWebkitLineClamp}, -#line 286 "CSSPropertyNames.gperf" +#line 289 "CSSPropertyNames.gperf" {"color-interpolation", CSSPropertyColorInterpolation}, #line 222 "CSSPropertyNames.gperf" {"-webkit-margin-end", CSSPropertyWebkitMarginEnd}, @@ -457,7 +459,7 @@ {"-webkit-margin-start", CSSPropertyWebkitMarginStart}, #line 247 "CSSPropertyNames.gperf" {"-webkit-padding-end", CSSPropertyWebkitPaddingEnd}, -#line 275 "CSSPropertyNames.gperf" +#line 278 "CSSPropertyNames.gperf" {"-webkit-dashboard-region", CSSPropertyWebkitDashboardRegion}, #line 189 "CSSPropertyNames.gperf" {"-webkit-box-align", CSSPropertyWebkitBoxAlign}, @@ -475,7 +477,7 @@ {"-webkit-border-radius", CSSPropertyWebkitBorderRadius}, #line 106 "CSSPropertyNames.gperf" {"outline-width", CSSPropertyOutlineWidth}, -#line 298 "CSSPropertyNames.gperf" +#line 301 "CSSPropertyNames.gperf" {"shape-rendering", CSSPropertyShapeRendering}, #line 118 "CSSPropertyNames.gperf" {"page-break-inside", CSSPropertyPageBreakInside}, @@ -491,7 +493,7 @@ {"text-underline-mode", CSSPropertyTextUnderlineMode}, #line 147 "CSSPropertyNames.gperf" {"text-underline-width", CSSPropertyTextUnderlineWidth}, -#line 316 "CSSPropertyNames.gperf" +#line 319 "CSSPropertyNames.gperf" {"-webkit-svg-shadow", CSSPropertyWebkitSvgShadow}, #line 61 "CSSPropertyNames.gperf" {"border-right-color", CSSPropertyBorderRightColor}, @@ -505,13 +507,13 @@ {"cursor", CSSPropertyCursor}, #line 268 "CSSPropertyNames.gperf" {"-webkit-transition-duration", CSSPropertyWebkitTransitionDuration}, -#line 289 "CSSPropertyNames.gperf" +#line 292 "CSSPropertyNames.gperf" {"color-rendering", CSSPropertyColorRendering}, #line 228 "CSSPropertyNames.gperf" {"-webkit-marquee-repetition", CSSPropertyWebkitMarqueeRepetition}, #line 30 "CSSPropertyNames.gperf" {"-webkit-text-size-adjust", CSSPropertyWebkitTextSizeAdjust}, -#line 300 "CSSPropertyNames.gperf" +#line 303 "CSSPropertyNames.gperf" {"stroke-dasharray", CSSPropertyStrokeDasharray}, #line 79 "CSSPropertyNames.gperf" {"counter-reset", CSSPropertyCounterReset}, @@ -547,11 +549,11 @@ {"-webkit-marquee-increment", CSSPropertyWebkitMarqueeIncrement}, #line 23 "CSSPropertyNames.gperf" {"font", CSSPropertyFont}, -#line 307 "CSSPropertyNames.gperf" +#line 310 "CSSPropertyNames.gperf" {"alignment-baseline", CSSPropertyAlignmentBaseline}, #line 186 "CSSPropertyNames.gperf" {"-webkit-border-start-style", CSSPropertyWebkitBorderStartStyle}, -#line 305 "CSSPropertyNames.gperf" +#line 308 "CSSPropertyNames.gperf" {"stroke-opacity", CSSPropertyStrokeOpacity}, #line 180 "CSSPropertyNames.gperf" {"-webkit-border-fit", CSSPropertyWebkitBorderFit}, @@ -571,15 +573,17 @@ {"letter-spacing", CSSPropertyLetterSpacing}, #line 103 "CSSPropertyNames.gperf" {"outline-color", CSSPropertyOutlineColor}, +#line 277 "CSSPropertyNames.gperf" + {"-webkit-haptic-tap-strength", CSSPropertyWebkitHapticTapStrength}, #line 94 "CSSPropertyNames.gperf" {"margin-right", CSSPropertyMarginRight}, #line 85 "CSSPropertyNames.gperf" {"left", CSSPropertyLeft}, -#line 285 "CSSPropertyNames.gperf" +#line 288 "CSSPropertyNames.gperf" {"stop-opacity", CSSPropertyStopOpacity}, #line 139 "CSSPropertyNames.gperf" {"text-overline-style", CSSPropertyTextOverlineStyle}, -#line 280 "CSSPropertyNames.gperf" +#line 283 "CSSPropertyNames.gperf" {"filter", CSSPropertyFilter}, #line 273 "CSSPropertyNames.gperf" {"-webkit-user-select", CSSPropertyWebkitUserSelect}, @@ -601,9 +605,9 @@ {"text-transform", CSSPropertyTextTransform}, #line 251 "CSSPropertyNames.gperf" {"-webkit-perspective-origin-x", CSSPropertyWebkitPerspectiveOriginX}, -#line 293 "CSSPropertyNames.gperf" +#line 296 "CSSPropertyNames.gperf" {"image-rendering", CSSPropertyImageRendering}, -#line 277 "CSSPropertyNames.gperf" +#line 280 "CSSPropertyNames.gperf" {"clip-rule", CSSPropertyClipRule}, #line 58 "CSSPropertyNames.gperf" {"border-left-width", CSSPropertyBorderLeftWidth}, @@ -621,13 +625,15 @@ {"padding-right", CSSPropertyPaddingRight}, #line 210 "CSSPropertyNames.gperf" {"-webkit-column-span", CSSPropertyWebkitColumnSpan}, +#line 276 "CSSPropertyNames.gperf" + {"-webkit-haptic-tap-type", CSSPropertyWebkitHapticTapType}, #line 181 "CSSPropertyNames.gperf" {"-webkit-border-horizontal-spacing", CSSPropertyWebkitBorderHorizontalSpacing}, #line 107 "CSSPropertyNames.gperf" {"overflow", CSSPropertyOverflow}, #line 108 "CSSPropertyNames.gperf" {"overflow-x", CSSPropertyOverflowX}, -#line 290 "CSSPropertyNames.gperf" +#line 293 "CSSPropertyNames.gperf" {"fill", CSSPropertyFill}, #line 135 "CSSPropertyNames.gperf" {"text-overflow", CSSPropertyTextOverflow}, @@ -657,7 +663,7 @@ {"text-line-through-width", CSSPropertyTextLineThroughWidth}, #line 213 "CSSPropertyNames.gperf" {"-webkit-font-size-delta", CSSPropertyWebkitFontSizeDelta}, -#line 308 "CSSPropertyNames.gperf" +#line 311 "CSSPropertyNames.gperf" {"baseline-shift", CSSPropertyBaselineShift}, #line 224 "CSSPropertyNames.gperf" {"-webkit-margin-top-collapse", CSSPropertyWebkitMarginTopCollapse}, @@ -673,19 +679,19 @@ {"unicode-range", CSSPropertyUnicodeRange}, #line 188 "CSSPropertyNames.gperf" {"-webkit-border-vertical-spacing", CSSPropertyWebkitBorderVerticalSpacing}, -#line 281 "CSSPropertyNames.gperf" +#line 284 "CSSPropertyNames.gperf" {"flood-color", CSSPropertyFloodColor}, #line 56 "CSSPropertyNames.gperf" {"border-left-color", CSSPropertyBorderLeftColor}, #line 194 "CSSPropertyNames.gperf" {"-webkit-box-ordinal-group", CSSPropertyWebkitBoxOrdinalGroup}, -#line 283 "CSSPropertyNames.gperf" +#line 286 "CSSPropertyNames.gperf" {"lighting-color", CSSPropertyLightingColor}, #line 45 "CSSPropertyNames.gperf" {"background-size", CSSPropertyBackgroundSize}, #line 42 "CSSPropertyNames.gperf" {"background-repeat", CSSPropertyBackgroundRepeat}, -#line 288 "CSSPropertyNames.gperf" +#line 291 "CSSPropertyNames.gperf" {"color-profile", CSSPropertyColorProfile}, #line 174 "CSSPropertyNames.gperf" {"-webkit-background-size", CSSPropertyWebkitBackgroundSize}, @@ -695,7 +701,7 @@ {"font-weight", CSSPropertyFontWeight}, #line 256 "CSSPropertyNames.gperf" {"-webkit-text-security", CSSPropertyWebkitTextSecurity}, -#line 279 "CSSPropertyNames.gperf" +#line 282 "CSSPropertyNames.gperf" {"enable-background", CSSPropertyEnableBackground}, #line 39 "CSSPropertyNames.gperf" {"background-position", CSSPropertyBackgroundPosition}, @@ -729,7 +735,7 @@ {"page-break-before", CSSPropertyPageBreakBefore}, #line 261 "CSSPropertyNames.gperf" {"-webkit-transform-origin", CSSPropertyWebkitTransformOrigin}, -#line 310 "CSSPropertyNames.gperf" +#line 313 "CSSPropertyNames.gperf" {"glyph-orientation-horizontal", CSSPropertyGlyphOrientationHorizontal}, #line 262 "CSSPropertyNames.gperf" {"-webkit-transform-origin-x", CSSPropertyWebkitTransformOriginX}, @@ -755,7 +761,7 @@ {"padding-left", CSSPropertyPaddingLeft}, #line 171 "CSSPropertyNames.gperf" {"-webkit-background-clip", CSSPropertyWebkitBackgroundClip}, -#line 287 "CSSPropertyNames.gperf" +#line 290 "CSSPropertyNames.gperf" {"color-interpolation-filters", CSSPropertyColorInterpolationFilters}, #line 26 "CSSPropertyNames.gperf" {"font-style", CSSPropertyFontStyle}, @@ -765,7 +771,7 @@ {"overflow-y", CSSPropertyOverflowY}, #line 49 "CSSPropertyNames.gperf" {"border-bottom-left-radius", CSSPropertyBorderBottomLeftRadius}, -#line 311 "CSSPropertyNames.gperf" +#line 314 "CSSPropertyNames.gperf" {"glyph-orientation-vertical", CSSPropertyGlyphOrientationVertical}, #line 38 "CSSPropertyNames.gperf" {"background-origin", CSSPropertyBackgroundOrigin}, @@ -777,7 +783,7 @@ {"border-top-left-radius", CSSPropertyBorderTopLeftRadius}, #line 57 "CSSPropertyNames.gperf" {"border-left-style", CSSPropertyBorderLeftStyle}, -#line 292 "CSSPropertyNames.gperf" +#line 295 "CSSPropertyNames.gperf" {"fill-rule", CSSPropertyFillRule}, #line 265 "CSSPropertyNames.gperf" {"-webkit-transform-style", CSSPropertyWebkitTransformStyle}, @@ -787,17 +793,17 @@ {"-webkit-column-rule-color", CSSPropertyWebkitColumnRuleColor}, #line 201 "CSSPropertyNames.gperf" {"-webkit-column-break-after", CSSPropertyWebkitColumnBreakAfter}, -#line 282 "CSSPropertyNames.gperf" +#line 285 "CSSPropertyNames.gperf" {"flood-opacity", CSSPropertyFloodOpacity}, #line 44 "CSSPropertyNames.gperf" {"background-repeat-y", CSSPropertyBackgroundRepeatY}, #line 133 "CSSPropertyNames.gperf" {"text-line-through-style", CSSPropertyTextLineThroughStyle}, -#line 291 "CSSPropertyNames.gperf" +#line 294 "CSSPropertyNames.gperf" {"fill-opacity", CSSPropertyFillOpacity}, #line 41 "CSSPropertyNames.gperf" {"background-position-y", CSSPropertyBackgroundPositionY}, -#line 301 "CSSPropertyNames.gperf" +#line 304 "CSSPropertyNames.gperf" {"stroke-dashoffset", CSSPropertyStrokeDashoffset}, #line 263 "CSSPropertyNames.gperf" {"-webkit-transform-origin-y", CSSPropertyWebkitTransformOriginY}, @@ -807,7 +813,7 @@ {"-webkit-backface-visibility", CSSPropertyWebkitBackfaceVisibility}, #line 192 "CSSPropertyNames.gperf" {"-webkit-box-flex-group", CSSPropertyWebkitBoxFlexGroup}, -#line 314 "CSSPropertyNames.gperf" +#line 317 "CSSPropertyNames.gperf" {"vector-effect", CSSPropertyVectorEffect}, #line 168 "CSSPropertyNames.gperf" {"-webkit-animation-timing-function", CSSPropertyWebkitAnimationTimingFunction}, @@ -873,168 +879,168 @@ -1, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 75, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 76, -1, -1, -1, -1, + -1, 75, -1, -1, -1, 76, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, - -1, -1, -1, -1, -1, -1, 80, -1, -1, -1, - 81, -1, -1, -1, -1, 82, 83, -1, -1, -1, - -1, -1, -1, -1, -1, 84, -1, 85, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 86, -1, -1, - -1, -1, -1, 87, -1, 88, -1, -1, -1, -1, - 89, -1, 90, -1, -1, 91, 92, -1, -1, -1, - 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 94, -1, -1, -1, -1, -1, 95, -1, -1, -1, - 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 97, -1, -1, -1, -1, - 98, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 79, 80, -1, -1, + -1, -1, -1, -1, -1, -1, 81, -1, -1, -1, + 82, -1, -1, -1, -1, 83, 84, -1, -1, -1, + -1, -1, -1, -1, -1, 85, -1, 86, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 87, -1, -1, + -1, -1, -1, 88, -1, 89, -1, -1, -1, -1, + 90, -1, 91, -1, -1, 92, 93, -1, -1, -1, + 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 95, -1, -1, -1, -1, -1, 96, -1, -1, -1, + 97, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, + 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 99, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 100, -1, -1, -1, -1, 101, -1, -1, -1, -1, + 100, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 101, -1, -1, -1, -1, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 102, -1, -1, -1, -1, 103, -1, -1, -1, -1, - 104, -1, 105, -1, -1, -1, -1, -1, -1, -1, - 106, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 107, 108, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 109, -1, -1, -1, 110, 111, -1, -1, -1, - 112, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 113, -1, -1, -1, -1, 114, 115, -1, -1, -1, - -1, 116, -1, -1, -1, -1, -1, -1, -1, -1, - 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 118, -1, -1, -1, -1, 119, -1, -1, -1, -1, - 120, -1, -1, -1, -1, 121, -1, -1, -1, -1, - 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 123, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 124, -1, -1, -1, - -1, -1, -1, -1, -1, 125, -1, -1, -1, -1, - 126, 127, -1, -1, -1, 128, -1, -1, -1, -1, - 129, 130, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 131, -1, -1, -1, -1, 132, -1, -1, - -1, 133, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 134, -1, -1, -1, -1, 135, -1, 136, -1, - -1, -1, -1, -1, -1, 137, -1, -1, -1, -1, - 138, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 139, -1, -1, -1, -1, + 103, -1, -1, -1, -1, 104, -1, -1, -1, -1, + 105, -1, 106, -1, -1, -1, -1, -1, -1, -1, + 107, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 108, 109, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 110, -1, -1, -1, 111, 112, -1, -1, -1, + 113, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 114, -1, -1, -1, -1, 115, 116, -1, -1, -1, + -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, + 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 119, -1, -1, -1, -1, 120, -1, -1, -1, -1, + 121, -1, -1, -1, -1, 122, -1, -1, -1, -1, + 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 124, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 125, -1, -1, -1, + -1, -1, -1, -1, -1, 126, -1, -1, -1, -1, + 127, 128, -1, -1, -1, 129, -1, -1, -1, -1, + 130, 131, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 132, -1, -1, -1, -1, 133, -1, -1, + -1, 134, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 135, -1, -1, -1, -1, 136, -1, 137, -1, + -1, -1, -1, -1, -1, 138, -1, -1, -1, -1, + 139, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 140, -1, -1, -1, -1, - -1, 141, -1, -1, -1, -1, -1, 142, -1, -1, - 143, -1, -1, -1, -1, -1, 144, 145, -1, -1, - -1, 146, -1, -1, -1, -1, 147, -1, -1, -1, - -1, -1, -1, -1, -1, 148, -1, -1, -1, -1, - 149, 150, -1, -1, -1, 151, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 152, -1, -1, -1, - -1, 153, -1, -1, -1, 154, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 155, -1, -1, -1, - -1, 156, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 157, -1, -1, -1, 158, -1, -1, -1, -1, - 159, -1, -1, -1, -1, 160, 161, -1, -1, -1, + -1, -1, -1, -1, -1, 141, -1, -1, -1, -1, + -1, 142, -1, -1, -1, -1, -1, 143, -1, -1, + 144, -1, -1, -1, -1, -1, 145, 146, -1, -1, + -1, 147, -1, -1, -1, -1, 148, -1, -1, -1, + -1, -1, -1, -1, -1, 149, -1, -1, -1, -1, + 150, 151, -1, -1, -1, 152, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 153, -1, -1, -1, + -1, 154, -1, -1, -1, 155, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 156, -1, -1, -1, + -1, 157, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 158, -1, -1, -1, 159, -1, -1, -1, -1, + 160, -1, -1, -1, -1, 161, 162, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 162, -1, -1, -1, 163, 164, -1, -1, -1, - 165, -1, -1, -1, -1, -1, 166, -1, -1, -1, - 167, -1, -1, -1, -1, -1, 168, -1, -1, -1, - -1, -1, -1, -1, -1, 169, -1, -1, -1, -1, + -1, 163, -1, -1, -1, 164, 165, -1, -1, -1, + 166, -1, -1, -1, -1, -1, 167, -1, -1, -1, + 168, -1, -1, -1, -1, -1, 169, -1, -1, -1, -1, -1, -1, -1, -1, 170, -1, -1, -1, -1, -1, -1, -1, -1, -1, 171, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 172, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 172, -1, -1, -1, - 173, 174, -1, 175, -1, 176, -1, -1, -1, -1, - 177, -1, -1, -1, -1, 178, 179, -1, -1, -1, - 180, 181, -1, -1, -1, 182, 183, -1, -1, -1, - 184, 185, 186, -1, -1, 187, -1, -1, -1, -1, - 188, 189, -1, -1, -1, 190, -1, 191, -1, -1, - -1, 192, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 173, -1, -1, -1, 174, -1, -1, -1, + 175, 176, -1, 177, -1, 178, -1, -1, -1, -1, + 179, -1, -1, -1, -1, 180, 181, -1, -1, -1, + 182, 183, -1, -1, -1, 184, 185, -1, -1, -1, + 186, 187, 188, -1, -1, 189, -1, -1, -1, -1, + 190, 191, -1, -1, -1, 192, -1, 193, -1, -1, + -1, 194, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 193, -1, -1, 194, -1, -1, -1, - -1, 195, -1, -1, -1, 196, -1, -1, -1, -1, - -1, 197, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 198, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 199, -1, -1, 200, -1, 201, -1, -1, - -1, -1, -1, -1, -1, -1, 202, -1, -1, -1, - -1, -1, -1, -1, -1, 203, 204, -1, -1, 205, - 206, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 207, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 208, -1, -1, -1, - -1, -1, -1, -1, -1, 209, -1, -1, -1, -1, + -1, -1, -1, 195, -1, -1, 196, -1, -1, -1, + -1, 197, -1, -1, -1, 198, -1, 199, -1, -1, + -1, 200, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 201, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 202, -1, -1, 203, -1, 204, -1, -1, + -1, -1, -1, -1, -1, -1, 205, -1, -1, -1, + -1, -1, -1, -1, -1, 206, 207, -1, -1, 208, + 209, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 210, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 211, -1, -1, -1, + -1, -1, -1, -1, -1, 212, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 210, -1, - -1, -1, -1, -1, -1, -1, -1, -1, 211, -1, - -1, -1, -1, -1, -1, -1, 212, -1, -1, 213, - 214, 215, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 213, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 214, -1, + -1, -1, -1, -1, -1, -1, 215, -1, -1, 216, + 217, 218, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 216, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 217, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 218, -1, -1, -1, - -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, + 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, 220, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 221, 222, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 221, -1, -1, -1, + -1, -1, 222, -1, -1, -1, -1, -1, -1, -1, 223, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 224, 225, -1, -1, -1, -1, -1, -1, -1, -1, + 226, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 224, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 227, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 225, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 226, -1, -1, -1, 227, -1, -1, -1, -1, + -1, 229, -1, -1, -1, 230, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, - 229, -1, -1, -1, -1, 230, 231, -1, -1, -1, + -1, -1, -1, -1, -1, 231, -1, -1, -1, -1, + 232, -1, -1, -1, -1, 233, 234, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 232, 233, -1, -1, + -1, -1, -1, -1, -1, -1, 235, 236, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 234, -1, -1, -1, -1, - 235, -1, -1, -1, -1, -1, 236, -1, -1, -1, - -1, 237, -1, -1, -1, -1, 238, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 239, -1, -1, -1, + -1, -1, -1, -1, -1, 237, -1, -1, -1, -1, + 238, -1, -1, -1, -1, -1, 239, -1, -1, -1, -1, 240, -1, -1, -1, -1, 241, -1, -1, -1, - 242, -1, -1, 243, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 242, -1, -1, -1, + -1, 243, -1, -1, -1, -1, 244, -1, -1, -1, + 245, -1, -1, 246, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 244, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 247, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 245, -1, -1, -1, -1, -1, 246, -1, -1, - -1, -1, -1, -1, -1, 247, -1, -1, -1, -1, + -1, 248, -1, -1, -1, -1, -1, 249, -1, -1, + -1, -1, -1, -1, -1, 250, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 248, -1, -1, -1, -1, 249, -1, -1, -1, -1, - 250, -1, -1, 251, -1, -1, -1, -1, -1, -1, - -1, 252, -1, -1, -1, 253, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 254, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 255, -1, -1, -1, - -1, -1, -1, -1, -1, 256, -1, -1, -1, -1, - 257, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 258, -1, 259, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 260, -1, -1, -1, -1, - -1, -1, 261, -1, -1, 262, -1, -1, -1, -1, - 263, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 251, -1, -1, -1, -1, 252, -1, -1, -1, -1, + 253, -1, -1, 254, -1, -1, -1, -1, -1, -1, + -1, 255, -1, -1, -1, 256, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 257, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 258, -1, -1, -1, + -1, -1, -1, -1, -1, 259, -1, -1, -1, -1, + 260, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 261, -1, 262, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 263, -1, -1, -1, -1, + -1, -1, 264, -1, -1, 265, -1, -1, -1, -1, + 266, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 264, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 267, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 265, -1, -1, -1, - -1, 266, 267, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 268, -1, -1, -1, + -1, 269, 270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 268, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 271, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 269, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 270, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 271, -1, -1, -1, -1, + -1, -1, -1, 272, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 273, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 274, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 272, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 275, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 273, -1, -1, -1, -1, -1, 274, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 275, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 276, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 277, -1, -1, -1, -1, + 276, -1, -1, -1, -1, -1, 277, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 278, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 279, 280, -1, -1, -1, + -1, 279, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 280, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 281, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 282, 283, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1045,17 +1051,17 @@ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 281, -1, -1, -1, - -1, -1, -1, -1, 282, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 283, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 284, -1, -1, -1, + -1, -1, -1, -1, 285, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 286, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 284, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 287, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 285, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1065,14 +1071,14 @@ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 286, -1, -1, -1, -1, 287, -1, -1, -1, - -1, -1, 288, -1, -1, -1, -1, -1, -1, -1, + -1, 289, -1, -1, -1, -1, 290, -1, -1, -1, + -1, -1, 291, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 289, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 292, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 290, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 293, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1082,13 +1088,13 @@ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 291, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 294, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 292, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 295, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 293, -1, -1, -1, -1, - -1, 294, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 296, -1, -1, -1, -1, + -1, 297, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, @@ -1110,15 +1116,18 @@ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 295, -1, -1, -1, -1, -1, -1, -1, -1, + -1, 298, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 296 + 299 }; #ifdef __GNUC__ __inline +#ifdef __GNUC_STDC_INLINE__ +__attribute__ ((__gnu_inline__)) +#endif #endif const struct Property * findProperty (register const char *str, register unsigned int len) @@ -1142,9 +1151,9 @@ } return 0; } -#line 317 "CSSPropertyNames.gperf" +#line 320 "CSSPropertyNames.gperf" -static const char * const propertyNameStrings[297] = { +static const char * const propertyNameStrings[300] = { "color", "direction", "display", @@ -1400,6 +1409,9 @@ "-webkit-user-modify", "-webkit-user-select", "-webkit-variable-declaration-block", +"-webkit-haptic-tap", +"-webkit-haptic-tap-type", +"-webkit-haptic-tap-strength", "-webkit-dashboard-region", "clip-path", "clip-rule", diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSPropertyNames.h --- a/WebCore/generated/CSSPropertyNames.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSPropertyNames.h Mon Oct 04 01:32:07 2010 +0300 @@ -260,52 +260,55 @@ CSSPropertyWebkitUserModify = 1253, CSSPropertyWebkitUserSelect = 1254, CSSPropertyWebkitVariableDeclarationBlock = 1255, - CSSPropertyWebkitDashboardRegion = 1256, - CSSPropertyClipPath = 1257, - CSSPropertyClipRule = 1258, - CSSPropertyMask = 1259, - CSSPropertyEnableBackground = 1260, - CSSPropertyFilter = 1261, - CSSPropertyFloodColor = 1262, - CSSPropertyFloodOpacity = 1263, - CSSPropertyLightingColor = 1264, - CSSPropertyStopColor = 1265, - CSSPropertyStopOpacity = 1266, - CSSPropertyColorInterpolation = 1267, - CSSPropertyColorInterpolationFilters = 1268, - CSSPropertyColorProfile = 1269, - CSSPropertyColorRendering = 1270, - CSSPropertyFill = 1271, - CSSPropertyFillOpacity = 1272, - CSSPropertyFillRule = 1273, - CSSPropertyImageRendering = 1274, - CSSPropertyMarker = 1275, - CSSPropertyMarkerEnd = 1276, - CSSPropertyMarkerMid = 1277, - CSSPropertyMarkerStart = 1278, - CSSPropertyShapeRendering = 1279, - CSSPropertyStroke = 1280, - CSSPropertyStrokeDasharray = 1281, - CSSPropertyStrokeDashoffset = 1282, - CSSPropertyStrokeLinecap = 1283, - CSSPropertyStrokeLinejoin = 1284, - CSSPropertyStrokeMiterlimit = 1285, - CSSPropertyStrokeOpacity = 1286, - CSSPropertyStrokeWidth = 1287, - CSSPropertyAlignmentBaseline = 1288, - CSSPropertyBaselineShift = 1289, - CSSPropertyDominantBaseline = 1290, - CSSPropertyGlyphOrientationHorizontal = 1291, - CSSPropertyGlyphOrientationVertical = 1292, - CSSPropertyKerning = 1293, - CSSPropertyTextAnchor = 1294, - CSSPropertyVectorEffect = 1295, - CSSPropertyWritingMode = 1296, - CSSPropertyWebkitSvgShadow = 1297, + CSSPropertyWebkitHapticTap = 1256, + CSSPropertyWebkitHapticTapType = 1257, + CSSPropertyWebkitHapticTapStrength = 1258, + CSSPropertyWebkitDashboardRegion = 1259, + CSSPropertyClipPath = 1260, + CSSPropertyClipRule = 1261, + CSSPropertyMask = 1262, + CSSPropertyEnableBackground = 1263, + CSSPropertyFilter = 1264, + CSSPropertyFloodColor = 1265, + CSSPropertyFloodOpacity = 1266, + CSSPropertyLightingColor = 1267, + CSSPropertyStopColor = 1268, + CSSPropertyStopOpacity = 1269, + CSSPropertyColorInterpolation = 1270, + CSSPropertyColorInterpolationFilters = 1271, + CSSPropertyColorProfile = 1272, + CSSPropertyColorRendering = 1273, + CSSPropertyFill = 1274, + CSSPropertyFillOpacity = 1275, + CSSPropertyFillRule = 1276, + CSSPropertyImageRendering = 1277, + CSSPropertyMarker = 1278, + CSSPropertyMarkerEnd = 1279, + CSSPropertyMarkerMid = 1280, + CSSPropertyMarkerStart = 1281, + CSSPropertyShapeRendering = 1282, + CSSPropertyStroke = 1283, + CSSPropertyStrokeDasharray = 1284, + CSSPropertyStrokeDashoffset = 1285, + CSSPropertyStrokeLinecap = 1286, + CSSPropertyStrokeLinejoin = 1287, + CSSPropertyStrokeMiterlimit = 1288, + CSSPropertyStrokeOpacity = 1289, + CSSPropertyStrokeWidth = 1290, + CSSPropertyAlignmentBaseline = 1291, + CSSPropertyBaselineShift = 1292, + CSSPropertyDominantBaseline = 1293, + CSSPropertyGlyphOrientationHorizontal = 1294, + CSSPropertyGlyphOrientationVertical = 1295, + CSSPropertyKerning = 1296, + CSSPropertyTextAnchor = 1297, + CSSPropertyVectorEffect = 1298, + CSSPropertyWritingMode = 1299, + CSSPropertyWebkitSvgShadow = 1300, }; const int firstCSSProperty = 1001; -const int numCSSProperties = 297; +const int numCSSProperties = 300; const size_t maxCSSPropertyNameLength = 43; const char* getPropertyName(CSSPropertyID); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSValueKeywords.cpp --- a/WebCore/generated/CSSValueKeywords.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSValueKeywords.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,4 +1,4 @@ -/* ANSI-C code produced by gperf version 3.0.1 */ +/* ANSI-C code produced by gperf version 3.0.3 */ /* Command-line: gperf --key-positions='*' -D -n -s 2 CSSValueKeywords.gperf */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ @@ -39,7 +39,7 @@ int id; }; #include -/* maximum key range = 10663, duplicates = 0 */ +/* maximum key range = 9998, duplicates = 0 */ #ifdef __GNUC__ __inline @@ -53,32 +53,32 @@ { static const unsigned short asso_values[] = { - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 510, 240, 10668, 10668, 20, - 55, 10, 15, 40, 5, 50, 45, 35, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 0, 250, 55, - 830, 5, 525, 995, 1290, 30, 2, 217, 25, 5, - 40, 15, 100, 1367, 400, 10, 10, 275, 117, 327, - 1670, 1290, 1820, 0, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, 10668, - 10668, 10668, 10668, 10668, 10668, 10668, 10668 + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 510, 1355, 10003, 10003, 20, + 55, 35, 15, 40, 5, 50, 45, 10, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 0, 250, 55, + 830, 5, 525, 995, 1485, 30, 2, 1565, 25, 5, + 40, 15, 100, 432, 400, 10, 10, 275, 92, 232, + 997, 1925, 905, 5, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, 10003, + 10003, 10003, 10003, 10003, 10003, 10003, 10003 }; register int hval = 0; @@ -195,17 +195,20 @@ #ifdef __GNUC__ __inline +#ifdef __GNUC_STDC_INLINE__ +__attribute__ ((__gnu_inline__)) +#endif #endif const struct Value * findValue (register const char *str, register unsigned int len) { enum { - TOTAL_KEYWORDS = 632, + TOTAL_KEYWORDS = 640, MIN_WORD_LENGTH = 2, MAX_WORD_LENGTH = 35, MIN_HASH_VALUE = 5, - MAX_HASH_VALUE = 10667 + MAX_HASH_VALUE = 10002 }; static const struct Value value_word_list[] = @@ -222,192 +225,182 @@ {"sidama", CSSValueSidama}, #line 362 "CSSValueKeywords.gperf" {"end", CSSValueEnd}, -#line 649 "CSSValueKeywords.gperf" +#line 657 "CSSValueKeywords.gperf" {"lr", CSSValueLr}, #line 309 "CSSValueKeywords.gperf" {"a4", CSSValueA4}, #line 54 "CSSValueKeywords.gperf" {"600", CSSValue600}, -#line 51 "CSSValueKeywords.gperf" - {"300", CSSValue300}, +#line 57 "CSSValueKeywords.gperf" + {"900", CSSValue900}, #line 52 "CSSValueKeywords.gperf" {"400", CSSValue400}, #line 464 "CSSValueKeywords.gperf" {"lines", CSSValueLines}, #line 49 "CSSValueKeywords.gperf" {"100", CSSValue100}, -#line 651 "CSSValueKeywords.gperf" +#line 659 "CSSValueKeywords.gperf" {"tb", CSSValueTb}, #line 24 "CSSValueKeywords.gperf" {"inset", CSSValueInset}, #line 90 "CSSValueKeywords.gperf" {"lime", CSSValueLime}, -#line 57 "CSSValueKeywords.gperf" - {"900", CSSValue900}, +#line 51 "CSSValueKeywords.gperf" + {"300", CSSValue300}, #line 53 "CSSValueKeywords.gperf" {"500", CSSValue500}, #line 357 "CSSValueKeywords.gperf" {"thin", CSSValueThin}, #line 56 "CSSValueKeywords.gperf" {"800", CSSValue800}, -#line 570 "CSSValueKeywords.gperf" +#line 578 "CSSValueKeywords.gperf" {"linen", CSSValueLinen}, #line 55 "CSSValueKeywords.gperf" {"700", CSSValue700}, -#line 616 "CSSValueKeywords.gperf" +#line 624 "CSSValueKeywords.gperf" {"thistle", CSSValueThistle}, #line 50 "CSSValueKeywords.gperf" {"200", CSSValue200}, #line 410 "CSSValueKeywords.gperf" {"listitem", CSSValueListitem}, -#line 586 "CSSValueKeywords.gperf" +#line 594 "CSSValueKeywords.gperf" {"oldlace", CSSValueOldlace}, #line 21 "CSSValueKeywords.gperf" {"initial", CSSValueInitial}, +#line 93 "CSSValueKeywords.gperf" + {"olive", CSSValueOlive}, #line 196 "CSSValueKeywords.gperf" {"tibetan", CSSValueTibetan}, #line 248 "CSSValueKeywords.gperf" {"inline", CSSValueInline}, -#line 510 "CSSValueKeywords.gperf" +#line 518 "CSSValueKeywords.gperf" {"crimson", CSSValueCrimson}, -#line 93 "CSSValueKeywords.gperf" - {"olive", CSSValueOlive}, #line 222 "CSSValueKeywords.gperf" {"oromo", CSSValueOromo}, #line 173 "CSSValueKeywords.gperf" {"circle", CSSValueCircle}, +#line 155 "CSSValueKeywords.gperf" + {"sub", CSSValueSub}, #line 22 "CSSValueKeywords.gperf" {"none", CSSValueNone}, #line 387 "CSSValueKeywords.gperf" {"clip", CSSValueClip}, #line 241 "CSSValueKeywords.gperf" {"armenian", CSSValueArmenian}, -#line 617 "CSSValueKeywords.gperf" +#line 625 "CSSValueKeywords.gperf" {"tomato", CSSValueTomato}, #line 45 "CSSValueKeywords.gperf" {"normal", CSSValueNormal}, -#line 155 "CSSValueKeywords.gperf" - {"sub", CSSValueSub}, #line 323 "CSSValueKeywords.gperf" {"cross", CSSValueCross}, -#line 507 "CSSValueKeywords.gperf" +#line 515 "CSSValueKeywords.gperf" {"coral", CSSValueCoral}, #line 388 "CSSValueKeywords.gperf" {"ellipsis", CSSValueEllipsis}, +#line 606 "CSSValueKeywords.gperf" + {"plum", CSSValuePlum}, #line 226 "CSSValueKeywords.gperf" {"somali", CSSValueSomali}, -#line 598 "CSSValueKeywords.gperf" - {"plum", CSSValuePlum}, +#line 627 "CSSValueKeywords.gperf" + {"violet", CSSValueViolet}, #line 456 "CSSValueKeywords.gperf" {"content", CSSValueContent}, #line 460 "CSSValueKeywords.gperf" {"contain", CSSValueContain}, +#line 311 "CSSValueKeywords.gperf" + {"above", CSSValueAbove}, #line 316 "CSSValueKeywords.gperf" {"b5", CSSValueB5}, -#line 619 "CSSValueKeywords.gperf" - {"violet", CSSValueViolet}, #line 322 "CSSValueKeywords.gperf" {"crop", CSSValueCrop}, #line 469 "CSSValueKeywords.gperf" {"ease", CSSValueEase}, -#line 615 "CSSValueKeywords.gperf" +#line 369 "CSSValueKeywords.gperf" + {"multiple", CSSValueMultiple}, +#line 623 "CSSValueKeywords.gperf" {"tan", CSSValueTan}, -#line 311 "CSSValueKeywords.gperf" - {"above", CSSValueAbove}, +#line 99 "CSSValueKeywords.gperf" + {"white", CSSValueWhite}, #line 315 "CSSValueKeywords.gperf" {"b4", CSSValueB4}, -#line 506 "CSSValueKeywords.gperf" +#line 80 "CSSValueKeywords.gperf" + {"cursive", CSSValueCursive}, +#line 514 "CSSValueKeywords.gperf" {"chocolate", CSSValueChocolate}, -#line 369 "CSSValueKeywords.gperf" - {"multiple", CSSValueMultiple}, #line 307 "CSSValueKeywords.gperf" {"collapse", CSSValueCollapse}, #line 82 "CSSValueKeywords.gperf" {"monospace", CSSValueMonospace}, #line 301 "CSSValueKeywords.gperf" {"ltr", CSSValueLtr}, -#line 356 "CSSValueKeywords.gperf" - {"thick", CSSValueThick}, #line 197 "CSSValueKeywords.gperf" {"thai", CSSValueThai}, -#line 603 "CSSValueKeywords.gperf" +#line 611 "CSSValueKeywords.gperf" {"salmon", CSSValueSalmon}, #line 440 "CSSValueKeywords.gperf" {"caret", CSSValueCaret}, -#line 597 "CSSValueKeywords.gperf" - {"pink", CSSValuePink}, +#line 95 "CSSValueKeywords.gperf" + {"purple", CSSValuePurple}, #line 91 "CSSValueKeywords.gperf" {"maroon", CSSValueMaroon}, -#line 80 "CSSValueKeywords.gperf" - {"cursive", CSSValueCursive}, +#line 271 "CSSValueKeywords.gperf" + {"move", CSSValueMove}, #line 254 "CSSValueKeywords.gperf" {"table", CSSValueTable}, +#line 375 "CSSValueKeywords.gperf" + {"slow", CSSValueSlow}, #line 60 "CSSValueKeywords.gperf" {"small", CSSValueSmall}, -#line 95 "CSSValueKeywords.gperf" - {"purple", CSSValuePurple}, +#line 86 "CSSValueKeywords.gperf" + {"blue", CSSValueBlue}, +#line 620 "CSSValueKeywords.gperf" + {"snow", CSSValueSnow}, #line 252 "CSSValueKeywords.gperf" {"compact", CSSValueCompact}, -#line 99 "CSSValueKeywords.gperf" - {"white", CSSValueWhite}, +#line 354 "CSSValueKeywords.gperf" + {"show", CSSValueShow}, #line 187 "CSSValueKeywords.gperf" {"lao", CSSValueLao}, -#line 86 "CSSValueKeywords.gperf" - {"blue", CSSValueBlue}, +#line 267 "CSSValueKeywords.gperf" + {"auto", CSSValueAuto}, #line 312 "CSSValueKeywords.gperf" {"absolute", CSSValueAbsolute}, -#line 650 "CSSValueKeywords.gperf" - {"rl", CSSValueRl}, -#line 267 "CSSValueKeywords.gperf" - {"auto", CSSValueAuto}, #line 463 "CSSValueKeywords.gperf" {"visual", CSSValueVisual}, +#line 658 "CSSValueKeywords.gperf" + {"rl", CSSValueRl}, #line 27 "CSSValueKeywords.gperf" {"outset", CSSValueOutset}, -#line 271 "CSSValueKeywords.gperf" - {"move", CSSValueMove}, #line 306 "CSSValueKeywords.gperf" {"visible", CSSValueVisible}, -#line 375 "CSSValueKeywords.gperf" - {"slow", CSSValueSlow}, #line 470 "CSSValueKeywords.gperf" {"linear", CSSValueLinear}, -#line 612 "CSSValueKeywords.gperf" - {"snow", CSSValueSnow}, -#line 354 "CSSValueKeywords.gperf" - {"show", CSSValueShow}, -#line 509 "CSSValueKeywords.gperf" - {"cornsilk", CSSValueCornsilk}, -#line 582 "CSSValueKeywords.gperf" - {"mintcream", CSSValueMintcream}, -#line 319 "CSSValueKeywords.gperf" - {"blink", CSSValueBlink}, #line 84 "CSSValueKeywords.gperf" {"aqua", CSSValueAqua}, +#line 296 "CSSValueKeywords.gperf" + {"wait", CSSValueWait}, +#line 590 "CSSValueKeywords.gperf" + {"mintcream", CSSValueMintcream}, +#line 505 "CSSValueKeywords.gperf" + {"azure", CSSValueAzure}, +#line 97 "CSSValueKeywords.gperf" + {"silver", CSSValueSilver}, #line 20 "CSSValueKeywords.gperf" {"inherit", CSSValueInherit}, -#line 497 "CSSValueKeywords.gperf" - {"azure", CSSValueAzure}, -#line 481 "CSSValueKeywords.gperf" - {"stroke", CSSValueStroke}, -#line 646 "CSSValueKeywords.gperf" - {"lr-tb", CSSValueLrTb}, -#line 97 "CSSValueKeywords.gperf" - {"silver", CSSValueSilver}, +#line 509 "CSSValueKeywords.gperf" + {"blueviolet", CSSValueBlueviolet}, #line 215 "CSSValueKeywords.gperf" {"ethiopic", CSSValueEthiopic}, +#line 159 "CSSValueKeywords.gperf" + {"top", CSSValueTop}, #line 209 "CSSValueKeywords.gperf" {"amharic", CSSValueAmharic}, #line 480 "CSSValueKeywords.gperf" {"fill", CSSValueFill}, #line 194 "CSSValueKeywords.gperf" {"urdu", CSSValueUrdu}, -#line 493 "CSSValueKeywords.gperf" +#line 501 "CSSValueKeywords.gperf" {"manual", CSSValueManual}, -#line 501 "CSSValueKeywords.gperf" - {"blueviolet", CSSValueBlueviolet}, -#line 296 "CSSValueKeywords.gperf" - {"wait", CSSValueWait}, #line 383 "CSSValueKeywords.gperf" {"element", CSSValueElement}, #line 250 "CSSValueKeywords.gperf" @@ -416,20 +409,20 @@ {"cell", CSSValueCell}, #line 153 "CSSValueKeywords.gperf" {"baseline", CSSValueBaseline}, -#line 607 "CSSValueKeywords.gperf" +#line 615 "CSSValueKeywords.gperf" {"sienna", CSSValueSienna}, -#line 494 "CSSValueKeywords.gperf" +#line 502 "CSSValueKeywords.gperf" {"aliceblue", CSSValueAliceblue}, -#line 621 "CSSValueKeywords.gperf" - {"whitesmoke", CSSValueWhitesmoke}, -#line 249 "CSSValueKeywords.gperf" - {"block", CSSValueBlock}, +#line 638 "CSSValueKeywords.gperf" + {"butt", CSSValueButt}, #line 355 "CSSValueKeywords.gperf" {"static", CSSValueStatic}, +#line 510 "CSSValueKeywords.gperf" + {"brown", CSSValueBrown}, #line 348 "CSSValueKeywords.gperf" {"pre", CSSValuePre}, -#line 630 "CSSValueKeywords.gperf" - {"butt", CSSValueButt}, +#line 68 "CSSValueKeywords.gperf" + {"wider", CSSValueWider}, #line 160 "CSSValueKeywords.gperf" {"bottom", CSSValueBottom}, #line 270 "CSSValueKeywords.gperf" @@ -440,49 +433,53 @@ {"italic", CSSValueItalic}, #line 302 "CSSValueKeywords.gperf" {"rtl", CSSValueRtl}, -#line 631 "CSSValueKeywords.gperf" +#line 403 "CSSValueKeywords.gperf" + {"button", CSSValueButton}, +#line 639 "CSSValueKeywords.gperf" {"miter", CSSValueMiter}, -#line 181 "CSSValueKeywords.gperf" - {"khmer", CSSValueKhmer}, +#line 329 "CSSValueKeywords.gperf" + {"invert", CSSValueInvert}, #line 400 "CSSValueKeywords.gperf" {"radio", CSSValueRadio}, -#line 403 "CSSValueKeywords.gperf" - {"button", CSSValueButton}, +#line 373 "CSSValueKeywords.gperf" + {"up", CSSValueUp}, #line 193 "CSSValueKeywords.gperf" {"persian", CSSValuePersian}, -#line 502 "CSSValueKeywords.gperf" - {"brown", CSSValueBrown}, -#line 648 "CSSValueKeywords.gperf" - {"tb-rl", CSSValueTbRl}, -#line 68 "CSSValueKeywords.gperf" - {"wider", CSSValueWider}, +#line 392 "CSSValueKeywords.gperf" + {"wave", CSSValueWave}, +#line 117 "CSSValueKeywords.gperf" + {"inactivecaption", CSSValueInactivecaption}, #line 379 "CSSValueKeywords.gperf" {"alternate", CSSValueAlternate}, -#line 549 "CSSValueKeywords.gperf" - {"khaki", CSSValueKhaki}, +#line 365 "CSSValueKeywords.gperf" + {"vertical", CSSValueVertical}, +#line 397 "CSSValueKeywords.gperf" + {"space", CSSValueSpace}, #line 66 "CSSValueKeywords.gperf" {"smaller", CSSValueSmaller}, -#line 117 "CSSValueKeywords.gperf" - {"inactivecaption", CSSValueInactivecaption}, -#line 365 "CSSValueKeywords.gperf" - {"vertical", CSSValueVertical}, -#line 85 "CSSValueKeywords.gperf" - {"black", CSSValueBlack}, -#line 329 "CSSValueKeywords.gperf" - {"invert", CSSValueInvert}, #line 467 "CSSValueKeywords.gperf" {"flat", CSSValueFlat}, +#line 461 "CSSValueKeywords.gperf" + {"cover", CSSValueCover}, #line 376 "CSSValueKeywords.gperf" {"fast", CSSValueFast}, +#line 628 "CSSValueKeywords.gperf" + {"wheat", CSSValueWheat}, #line 358 "CSSValueKeywords.gperf" {"underline", CSSValueUnderline}, #line 98 "CSSValueKeywords.gperf" {"teal", CSSValueTeal}, +#line 334 "CSSValueKeywords.gperf" + {"level", CSSValueLevel}, +#line 42 "CSSValueKeywords.gperf" + {"oblique", CSSValueOblique}, #line 34 "CSSValueKeywords.gperf" {"menu", CSSValueMenu}, #line 393 "CSSValueKeywords.gperf" {"continuous", CSSValueContinuous}, -#line 609 "CSSValueKeywords.gperf" +#line 32 "CSSValueKeywords.gperf" + {"caption", CSSValueCaption}, +#line 617 "CSSValueKeywords.gperf" {"slateblue", CSSValueSlateblue}, #line 61 "CSSValueKeywords.gperf" {"medium", CSSValueMedium}, @@ -494,27 +491,19 @@ {"middle", CSSValueMiddle}, #line 101 "CSSValueKeywords.gperf" {"transparent", CSSValueTransparent}, -#line 504 "CSSValueKeywords.gperf" +#line 626 "CSSValueKeywords.gperf" + {"turquoise", CSSValueTurquoise}, +#line 512 "CSSValueKeywords.gperf" {"cadetblue", CSSValueCadetblue}, #line 385 "CSSValueKeywords.gperf" {"intrinsic", CSSValueIntrinsic}, -#line 461 "CSSValueKeywords.gperf" - {"cover", CSSValueCover}, -#line 620 "CSSValueKeywords.gperf" - {"wheat", CSSValueWheat}, #line 428 "CSSValueKeywords.gperf" {"menulist", CSSValueMenulist}, #line 172 "CSSValueKeywords.gperf" {"disc", CSSValueDisc}, -#line 139 "CSSValueKeywords.gperf" - {"no-repeat", CSSValueNoRepeat}, -#line 647 "CSSValueKeywords.gperf" - {"rl-tb", CSSValueRlTb}, -#line 334 "CSSValueKeywords.gperf" - {"level", CSSValueLevel}, -#line 392 "CSSValueKeywords.gperf" - {"wave", CSSValueWave}, -#line 596 "CSSValueKeywords.gperf" +#line 174 "CSSValueKeywords.gperf" + {"square", CSSValueSquare}, +#line 604 "CSSValueKeywords.gperf" {"peru", CSSValuePeru}, #line 352 "CSSValueKeywords.gperf" {"scroll", CSSValueScroll}, @@ -524,83 +513,85 @@ {"inline-table", CSSValueInlineTable}, #line 96 "CSSValueKeywords.gperf" {"red", CSSValueRed}, -#line 174 "CSSValueKeywords.gperf" - {"square", CSSValueSquare}, #line 324 "CSSValueKeywords.gperf" {"embed", CSSValueEmbed}, +#line 156 "CSSValueKeywords.gperf" + {"super", CSSValueSuper}, #line 361 "CSSValueKeywords.gperf" {"start", CSSValueStart}, #line 475 "CSSValueKeywords.gperf" {"reset", CSSValueReset}, #line 262 "CSSValueKeywords.gperf" {"table-cell", CSSValueTableCell}, +#line 504 "CSSValueKeywords.gperf" + {"aquamarine", CSSValueAquamarine}, +#line 507 "CSSValueKeywords.gperf" + {"bisque", CSSValueBisque}, #line 30 "CSSValueKeywords.gperf" {"solid", CSSValueSolid}, #line 336 "CSSValueKeywords.gperf" {"local", CSSValueLocal}, #line 140 "CSSValueKeywords.gperf" {"clear", CSSValueClear}, -#line 496 "CSSValueKeywords.gperf" - {"aquamarine", CSSValueAquamarine}, -#line 245 "CSSValueKeywords.gperf" - {"katakana", CSSValueKatakana}, #line 33 "CSSValueKeywords.gperf" {"icon", CSSValueIcon}, #line 165 "CSSValueKeywords.gperf" {"center", CSSValueCenter}, +#line 477 "CSSValueKeywords.gperf" + {"visiblefill", CSSValueVisiblefill}, #line 44 "CSSValueKeywords.gperf" {"small-caps", CSSValueSmallCaps}, -#line 635 "CSSValueKeywords.gperf" +#line 317 "CSSValueKeywords.gperf" + {"below", CSSValueBelow}, +#line 643 "CSSValueKeywords.gperf" {"central", CSSValueCentral}, -#line 477 "CSSValueKeywords.gperf" - {"visiblefill", CSSValueVisiblefill}, +#line 640 "CSSValueKeywords.gperf" + {"bevel", CSSValueBevel}, +#line 337 "CSSValueKeywords.gperf" + {"loud", CSSValueLoud}, #line 298 "CSSValueKeywords.gperf" {"all-scroll", CSSValueAllScroll}, #line 368 "CSSValueKeywords.gperf" {"single", CSSValueSingle}, -#line 584 "CSSValueKeywords.gperf" +#line 351 "CSSValueKeywords.gperf" + {"relative", CSSValueRelative}, +#line 592 "CSSValueKeywords.gperf" {"moccasin", CSSValueMoccasin}, -#line 337 "CSSValueKeywords.gperf" - {"loud", CSSValueLoud}, #line 472 "CSSValueKeywords.gperf" {"ease-out", CSSValueEaseOut}, -#line 547 "CSSValueKeywords.gperf" +#line 251 "CSSValueKeywords.gperf" + {"run-in", CSSValueRunIn}, +#line 555 "CSSValueKeywords.gperf" {"indigo", CSSValueIndigo}, -#line 351 "CSSValueKeywords.gperf" - {"relative", CSSValueRelative}, -#line 478 "CSSValueKeywords.gperf" - {"visiblestroke", CSSValueVisiblestroke}, #line 78 "CSSValueKeywords.gperf" {"serif", CSSValueSerif}, #line 263 "CSSValueKeywords.gperf" {"table-caption", CSSValueTableCaption}, +#line 150 "CSSValueKeywords.gperf" + {"xor", CSSValueXor}, #line 36 "CSSValueKeywords.gperf" {"small-caption", CSSValueSmallCaption}, -#line 251 "CSSValueKeywords.gperf" - {"run-in", CSSValueRunIn}, -#line 317 "CSSValueKeywords.gperf" - {"below", CSSValueBelow}, -#line 632 "CSSValueKeywords.gperf" - {"bevel", CSSValueBevel}, +#line 133 "CSSValueKeywords.gperf" + {"currentcolor", CSSValueCurrentcolor}, #line 191 "CSSValueKeywords.gperf" {"octal", CSSValueOctal}, -#line 133 "CSSValueKeywords.gperf" - {"currentcolor", CSSValueCurrentcolor}, #line 377 "CSSValueKeywords.gperf" {"infinite", CSSValueInfinite}, #line 408 "CSSValueKeywords.gperf" {"list-button", CSSValueListButton}, +#line 497 "CSSValueKeywords.gperf" + {"fullscreen", CSSValueFullscreen}, #line 386 "CSSValueKeywords.gperf" {"min-intrinsic", CSSValueMinIntrinsic}, #line 46 "CSSValueKeywords.gperf" {"bold", CSSValueBold}, -#line 489 "CSSValueKeywords.gperf" - {"fullscreen", CSSValueFullscreen}, -#line 253 "CSSValueKeywords.gperf" - {"inline-block", CSSValueInlineBlock}, +#line 314 "CSSValueKeywords.gperf" + {"avoid", CSSValueAvoid}, #line 432 "CSSValueKeywords.gperf" {"meter", CSSValueMeter}, -#line 482 "CSSValueKeywords.gperf" +#line 25 "CSSValueKeywords.gperf" + {"groove", CSSValueGroove}, +#line 490 "CSSValueKeywords.gperf" {"antialiased", CSSValueAntialiased}, #line 189 "CSSValueKeywords.gperf" {"mongolian", CSSValueMongolian}, @@ -608,718 +599,722 @@ {"painted", CSSValuePainted}, #line 333 "CSSValueKeywords.gperf" {"letter", CSSValueLetter}, -#line 25 "CSSValueKeywords.gperf" - {"groove", CSSValueGroove}, +#line 143 "CSSValueKeywords.gperf" + {"source-in", CSSValueSourceIn}, #line 349 "CSSValueKeywords.gperf" {"pre-line", CSSValuePreLine}, -#line 143 "CSSValueKeywords.gperf" - {"source-in", CSSValueSourceIn}, +#line 519 "CSSValueKeywords.gperf" + {"cyan", CSSValueCyan}, +#line 170 "CSSValueKeywords.gperf" + {"outside", CSSValueOutside}, +#line 108 "CSSValueKeywords.gperf" + {"buttonface", CSSValueButtonface}, #line 261 "CSSValueKeywords.gperf" {"table-column", CSSValueTableColumn}, -#line 170 "CSSValueKeywords.gperf" - {"outside", CSSValueOutside}, +#line 346 "CSSValueKeywords.gperf" + {"overline", CSSValueOverline}, #line 62 "CSSValueKeywords.gperf" {"large", CSSValueLarge}, -#line 314 "CSSValueKeywords.gperf" - {"avoid", CSSValueAvoid}, +#line 466 "CSSValueKeywords.gperf" + {"paused", CSSValuePaused}, #line 330 "CSSValueKeywords.gperf" {"landscape", CSSValueLandscape}, -#line 108 "CSSValueKeywords.gperf" - {"buttonface", CSSValueButtonface}, -#line 340 "CSSValueKeywords.gperf" - {"mix", CSSValueMix}, -#line 327 "CSSValueKeywords.gperf" - {"hide", CSSValueHide}, -#line 466 "CSSValueKeywords.gperf" - {"paused", CSSValuePaused}, -#line 94 "CSSValueKeywords.gperf" - {"orange", CSSValueOrange}, -#line 192 "CSSValueKeywords.gperf" - {"oriya", CSSValueOriya}, #line 145 "CSSValueKeywords.gperf" {"source-atop", CSSValueSourceAtop}, #line 31 "CSSValueKeywords.gperf" {"double", CSSValueDouble}, -#line 185 "CSSValueKeywords.gperf" - {"kannada", CSSValueKannada}, -#line 546 "CSSValueKeywords.gperf" +#line 409 "CSSValueKeywords.gperf" + {"listbox", CSSValueListbox}, +#line 94 "CSSValueKeywords.gperf" + {"orange", CSSValueOrange}, +#line 129 "CSSValueKeywords.gperf" + {"window", CSSValueWindow}, +#line 489 "CSSValueKeywords.gperf" + {"strong", CSSValueStrong}, +#line 69 "CSSValueKeywords.gperf" + {"narrower", CSSValueNarrower}, +#line 554 "CSSValueKeywords.gperf" {"indianred", CSSValueIndianred}, -#line 346 "CSSValueKeywords.gperf" - {"overline", CSSValueOverline}, +#line 136 "CSSValueKeywords.gperf" + {"repeat", CSSValueRepeat}, +#line 353 "CSSValueKeywords.gperf" + {"separate", CSSValueSeparate}, #line 372 "CSSValueKeywords.gperf" {"ahead", CSSValueAhead}, -#line 614 "CSSValueKeywords.gperf" +#line 622 "CSSValueKeywords.gperf" {"steelblue", CSSValueSteelblue}, -#line 573 "CSSValueKeywords.gperf" +#line 581 "CSSValueKeywords.gperf" {"mediumblue", CSSValueMediumblue}, -#line 524 "CSSValueKeywords.gperf" - {"darksalmon", CSSValueDarksalmon}, #line 26 "CSSValueKeywords.gperf" {"ridge", CSSValueRidge}, -#line 505 "CSSValueKeywords.gperf" - {"chartreuse", CSSValueChartreuse}, -#line 69 "CSSValueKeywords.gperf" - {"narrower", CSSValueNarrower}, -#line 577 "CSSValueKeywords.gperf" - {"mediumslateblue", CSSValueMediumslateblue}, +#line 321 "CSSValueKeywords.gperf" + {"close-quote", CSSValueCloseQuote}, #line 476 "CSSValueKeywords.gperf" {"visiblepainted", CSSValueVisiblepainted}, +#line 513 "CSSValueKeywords.gperf" + {"chartreuse", CSSValueChartreuse}, +#line 585 "CSSValueKeywords.gperf" + {"mediumslateblue", CSSValueMediumslateblue}, +#line 453 "CSSValueKeywords.gperf" + {"round", CSSValueRound}, +#line 144 "CSSValueKeywords.gperf" + {"source-out", CSSValueSourceOut}, #line 125 "CSSValueKeywords.gperf" {"threedface", CSSValueThreedface}, -#line 159 "CSSValueKeywords.gperf" - {"top", CSSValueTop}, -#line 453 "CSSValueKeywords.gperf" - {"round", CSSValueRound}, -#line 536 "CSSValueKeywords.gperf" - {"firebrick", CSSValueFirebrick}, -#line 144 "CSSValueKeywords.gperf" - {"source-out", CSSValueSourceOut}, +#line 631 "CSSValueKeywords.gperf" + {"nonzero", CSSValueNonzero}, #line 105 "CSSValueKeywords.gperf" {"activecaption", CSSValueActivecaption}, -#line 530 "CSSValueKeywords.gperf" - {"darkviolet", CSSValueDarkviolet}, +#line 616 "CSSValueKeywords.gperf" + {"skyblue", CSSValueSkyblue}, +#line 327 "CSSValueKeywords.gperf" + {"hide", CSSValueHide}, +#line 259 "CSSValueKeywords.gperf" + {"table-row", CSSValueTableRow}, #line 180 "CSSValueKeywords.gperf" {"cambodian", CSSValueCambodian}, -#line 129 "CSSValueKeywords.gperf" - {"window", CSSValueWindow}, -#line 569 "CSSValueKeywords.gperf" +#line 577 "CSSValueKeywords.gperf" {"limegreen", CSSValueLimegreen}, -#line 462 "CSSValueKeywords.gperf" - {"logical", CSSValueLogical}, +#line 338 "CSSValueKeywords.gperf" + {"lower", CSSValueLower}, #line 163 "CSSValueKeywords.gperf" {"left", CSSValueLeft}, -#line 487 "CSSValueKeywords.gperf" - {"srgb", CSSValueSrgb}, -#line 395 "CSSValueKeywords.gperf" - {"break-all", CSSValueBreakAll}, +#line 634 "CSSValueKeywords.gperf" + {"new", CSSValueNew}, #line 123 "CSSValueKeywords.gperf" {"scrollbar", CSSValueScrollbar}, +#line 404 "CSSValueKeywords.gperf" + {"button-bevel", CSSValueButtonBevel}, #line 89 "CSSValueKeywords.gperf" {"green", CSSValueGreen}, -#line 188 "CSSValueKeywords.gperf" - {"malayalam", CSSValueMalayalam}, +#line 363 "CSSValueKeywords.gperf" + {"reverse", CSSValueReverse}, #line 47 "CSSValueKeywords.gperf" {"bolder", CSSValueBolder}, #line 454 "CSSValueKeywords.gperf" {"border", CSSValueBorder}, -#line 259 "CSSValueKeywords.gperf" - {"table-row", CSSValueTableRow}, -#line 571 "CSSValueKeywords.gperf" - {"magenta", CSSValueMagenta}, -#line 404 "CSSValueKeywords.gperf" - {"button-bevel", CSSValueButtonBevel}, -#line 587 "CSSValueKeywords.gperf" +#line 305 "CSSValueKeywords.gperf" + {"lowercase", CSSValueLowercase}, +#line 595 "CSSValueKeywords.gperf" {"olivedrab", CSSValueOlivedrab}, +#line 190 "CSSValueKeywords.gperf" + {"myanmar", CSSValueMyanmar}, +#line 485 "CSSValueKeywords.gperf" + {"link", CSSValueLink}, +#line 465 "CSSValueKeywords.gperf" + {"running", CSSValueRunning}, +#line 304 "CSSValueKeywords.gperf" + {"uppercase", CSSValueUppercase}, #line 276 "CSSValueKeywords.gperf" {"progress", CSSValueProgress}, -#line 465 "CSSValueKeywords.gperf" - {"running", CSSValueRunning}, -#line 373 "CSSValueKeywords.gperf" - {"up", CSSValueUp}, +#line 343 "CSSValueKeywords.gperf" + {"nowrap", CSSValueNowrap}, #line 206 "CSSValueKeywords.gperf" {"afar", CSSValueAfar}, -#line 360 "CSSValueKeywords.gperf" - {"stretch", CSSValueStretch}, +#line 654 "CSSValueKeywords.gperf" + {"lr-tb", CSSValueLrTb}, #line 473 "CSSValueKeywords.gperf" {"ease-in-out", CSSValueEaseInOut}, -#line 363 "CSSValueKeywords.gperf" - {"reverse", CSSValueReverse}, -#line 67 "CSSValueKeywords.gperf" - {"larger", CSSValueLarger}, -#line 397 "CSSValueKeywords.gperf" - {"space", CSSValueSpace}, -#line 488 "CSSValueKeywords.gperf" - {"floating", CSSValueFloating}, -#line 228 "CSSValueKeywords.gperf" - {"tigre", CSSValueTigre}, -#line 277 "CSSValueKeywords.gperf" - {"no-drop", CSSValueNoDrop}, +#line 356 "CSSValueKeywords.gperf" + {"thick", CSSValueThick}, +#line 366 "CSSValueKeywords.gperf" + {"inline-axis", CSSValueInlineAxis}, +#line 605 "CSSValueKeywords.gperf" + {"pink", CSSValuePink}, #line 142 "CSSValueKeywords.gperf" {"source-over", CSSValueSourceOver}, +#line 67 "CSSValueKeywords.gperf" + {"larger", CSSValueLarger}, +#line 111 "CSSValueKeywords.gperf" + {"buttontext", CSSValueButtontext}, +#line 496 "CSSValueKeywords.gperf" + {"floating", CSSValueFloating}, +#line 462 "CSSValueKeywords.gperf" + {"logical", CSSValueLogical}, +#line 303 "CSSValueKeywords.gperf" + {"capitalize", CSSValueCapitalize}, #line 583 "CSSValueKeywords.gperf" - {"mistyrose", CSSValueMistyrose}, -#line 575 "CSSValueKeywords.gperf" {"mediumpurple", CSSValueMediumpurple}, -#line 42 "CSSValueKeywords.gperf" - {"oblique", CSSValueOblique}, -#line 384 "CSSValueKeywords.gperf" - {"ignore", CSSValueIgnore}, +#line 495 "CSSValueKeywords.gperf" + {"srgb", CSSValueSrgb}, +#line 118 "CSSValueKeywords.gperf" + {"inactivecaptiontext", CSSValueInactivecaptiontext}, #line 79 "CSSValueKeywords.gperf" {"sans-serif", CSSValueSansSerif}, -#line 32 "CSSValueKeywords.gperf" - {"caption", CSSValueCaption}, -#line 183 "CSSValueKeywords.gperf" - {"gujarati", CSSValueGujarati}, -#line 498 "CSSValueKeywords.gperf" +#line 601 "CSSValueKeywords.gperf" + {"palevioletred", CSSValuePalevioletred}, +#line 506 "CSSValueKeywords.gperf" {"beige", CSSValueBeige}, -#line 150 "CSSValueKeywords.gperf" - {"xor", CSSValueXor}, -#line 593 "CSSValueKeywords.gperf" - {"palevioletred", CSSValuePalevioletred}, -#line 591 "CSSValueKeywords.gperf" +#line 558 "CSSValueKeywords.gperf" + {"lavender", CSSValueLavender}, +#line 579 "CSSValueKeywords.gperf" + {"magenta", CSSValueMagenta}, +#line 599 "CSSValueKeywords.gperf" {"palegreen", CSSValuePalegreen}, -#line 295 "CSSValueKeywords.gperf" - {"text", CSSValueText}, -#line 618 "CSSValueKeywords.gperf" - {"turquoise", CSSValueTurquoise}, +#line 600 "CSSValueKeywords.gperf" + {"paleturquoise", CSSValuePaleturquoise}, +#line 499 "CSSValueKeywords.gperf" + {"minimized", CSSValueMinimized}, +#line 517 "CSSValueKeywords.gperf" + {"cornsilk", CSSValueCornsilk}, #line 179 "CSSValueKeywords.gperf" {"bengali", CSSValueBengali}, -#line 512 "CSSValueKeywords.gperf" - {"darkblue", CSSValueDarkblue}, -#line 332 "CSSValueKeywords.gperf" - {"legal", CSSValueLegal}, -#line 121 "CSSValueKeywords.gperf" - {"match", CSSValueMatch}, -#line 550 "CSSValueKeywords.gperf" - {"lavender", CSSValueLavender}, +#line 122 "CSSValueKeywords.gperf" + {"menutext", CSSValueMenutext}, +#line 656 "CSSValueKeywords.gperf" + {"tb-rl", CSSValueTbRl}, +#line 360 "CSSValueKeywords.gperf" + {"stretch", CSSValueStretch}, +#line 112 "CSSValueKeywords.gperf" + {"captiontext", CSSValueCaptiontext}, +#line 319 "CSSValueKeywords.gperf" + {"blink", CSSValueBlink}, +#line 350 "CSSValueKeywords.gperf" + {"pre-wrap", CSSValuePreWrap}, +#line 629 "CSSValueKeywords.gperf" + {"whitesmoke", CSSValueWhitesmoke}, +#line 481 "CSSValueKeywords.gperf" + {"stroke", CSSValueStroke}, #line 72 "CSSValueKeywords.gperf" {"condensed", CSSValueCondensed}, -#line 156 "CSSValueKeywords.gperf" - {"super", CSSValueSuper}, +#line 228 "CSSValueKeywords.gperf" + {"tigre", CSSValueTigre}, +#line 650 "CSSValueKeywords.gperf" + {"use-script", CSSValueUseScript}, +#line 549 "CSSValueKeywords.gperf" + {"gold", CSSValueGold}, +#line 340 "CSSValueKeywords.gperf" + {"mix", CSSValueMix}, +#line 384 "CSSValueKeywords.gperf" + {"ignore", CSSValueIgnore}, +#line 192 "CSSValueKeywords.gperf" + {"oriya", CSSValueOriya}, +#line 331 "CSSValueKeywords.gperf" + {"ledger", CSSValueLedger}, +#line 516 "CSSValueKeywords.gperf" + {"cornflowerblue", CSSValueCornflowerblue}, +#line 374 "CSSValueKeywords.gperf" + {"down", CSSValueDown}, +#line 249 "CSSValueKeywords.gperf" + {"block", CSSValueBlock}, +#line 547 "CSSValueKeywords.gperf" + {"gainsboro", CSSValueGainsboro}, +#line 609 "CSSValueKeywords.gperf" + {"royalblue", CSSValueRoyalblue}, +#line 40 "CSSValueKeywords.gperf" + {"status-bar", CSSValueStatusBar}, +#line 429 "CSSValueKeywords.gperf" + {"menulist-button", CSSValueMenulistButton}, +#line 457 "CSSValueKeywords.gperf" + {"content-box", CSSValueContentBox}, +#line 139 "CSSValueKeywords.gperf" + {"no-repeat", CSSValueNoRepeat}, +#line 402 "CSSValueKeywords.gperf" + {"square-button", CSSValueSquareButton}, +#line 655 "CSSValueKeywords.gperf" + {"rl-tb", CSSValueRlTb}, +#line 637 "CSSValueKeywords.gperf" + {"crispedges", CSSValueCrispedges}, +#line 293 "CSSValueKeywords.gperf" + {"col-resize", CSSValueColResize}, +#line 274 "CSSValueKeywords.gperf" + {"context-menu", CSSValueContextMenu}, +#line 580 "CSSValueKeywords.gperf" + {"mediumaquamarine", CSSValueMediumaquamarine}, +#line 181 "CSSValueKeywords.gperf" + {"khmer", CSSValueKhmer}, +#line 28 "CSSValueKeywords.gperf" + {"dotted", CSSValueDotted}, +#line 278 "CSSValueKeywords.gperf" + {"not-allowed", CSSValueNotAllowed}, +#line 332 "CSSValueKeywords.gperf" + {"legal", CSSValueLegal}, +#line 610 "CSSValueKeywords.gperf" + {"saddlebrown", CSSValueSaddlebrown}, +#line 121 "CSSValueKeywords.gperf" + {"match", CSSValueMatch}, +#line 120 "CSSValueKeywords.gperf" + {"infotext", CSSValueInfotext}, +#line 195 "CSSValueKeywords.gperf" + {"telugu", CSSValueTelugu}, +#line 177 "CSSValueKeywords.gperf" + {"arabic-indic", CSSValueArabicIndic}, +#line 635 "CSSValueKeywords.gperf" + {"linearrgb", CSSValueLinearrgb}, +#line 474 "CSSValueKeywords.gperf" + {"document", CSSValueDocument}, #line 268 "CSSValueKeywords.gperf" {"crosshair", CSSValueCrosshair}, -#line 92 "CSSValueKeywords.gperf" - {"navy", CSSValueNavy}, -#line 499 "CSSValueKeywords.gperf" - {"bisque", CSSValueBisque}, -#line 526 "CSSValueKeywords.gperf" - {"darkslateblue", CSSValueDarkslateblue}, +#line 546 "CSSValueKeywords.gperf" + {"forestgreen", CSSValueForestgreen}, +#line 370 "CSSValueKeywords.gperf" + {"forwards", CSSValueForwards}, #line 320 "CSSValueKeywords.gperf" {"both", CSSValueBoth}, #line 297 "CSSValueKeywords.gperf" {"help", CSSValueHelp}, -#line 642 "CSSValueKeywords.gperf" - {"use-script", CSSValueUseScript}, -#line 541 "CSSValueKeywords.gperf" - {"gold", CSSValueGold}, -#line 641 "CSSValueKeywords.gperf" - {"mathematical", CSSValueMathematical}, -#line 331 "CSSValueKeywords.gperf" - {"ledger", CSSValueLedger}, -#line 178 "CSSValueKeywords.gperf" - {"binary", CSSValueBinary}, -#line 350 "CSSValueKeywords.gperf" - {"pre-wrap", CSSValuePreWrap}, -#line 59 "CSSValueKeywords.gperf" - {"x-small", CSSValueXSmall}, -#line 539 "CSSValueKeywords.gperf" - {"gainsboro", CSSValueGainsboro}, -#line 409 "CSSValueKeywords.gperf" - {"listbox", CSSValueListbox}, -#line 166 "CSSValueKeywords.gperf" - {"justify", CSSValueJustify}, -#line 40 "CSSValueKeywords.gperf" - {"status-bar", CSSValueStatusBar}, -#line 429 "CSSValueKeywords.gperf" - {"menulist-button", CSSValueMenulistButton}, -#line 629 "CSSValueKeywords.gperf" - {"crispedges", CSSValueCrispedges}, -#line 402 "CSSValueKeywords.gperf" - {"square-button", CSSValueSquareButton}, -#line 28 "CSSValueKeywords.gperf" - {"dotted", CSSValueDotted}, -#line 545 "CSSValueKeywords.gperf" - {"hotpink", CSSValueHotpink}, -#line 508 "CSSValueKeywords.gperf" - {"cornflowerblue", CSSValueCornflowerblue}, -#line 195 "CSSValueKeywords.gperf" - {"telugu", CSSValueTelugu}, -#line 177 "CSSValueKeywords.gperf" - {"arabic-indic", CSSValueArabicIndic}, -#line 627 "CSSValueKeywords.gperf" - {"linearrgb", CSSValueLinearrgb}, -#line 474 "CSSValueKeywords.gperf" - {"document", CSSValueDocument}, -#line 81 "CSSValueKeywords.gperf" - {"fantasy", CSSValueFantasy}, -#line 538 "CSSValueKeywords.gperf" - {"forestgreen", CSSValueForestgreen}, #line 147 "CSSValueKeywords.gperf" {"destination-in", CSSValueDestinationIn}, -#line 281 "CSSValueKeywords.gperf" - {"e-resize", CSSValueEResize}, +#line 85 "CSSValueKeywords.gperf" + {"black", CSSValueBlack}, #line 389 "CSSValueKeywords.gperf" {"discard", CSSValueDiscard}, -#line 287 "CSSValueKeywords.gperf" - {"s-resize", CSSValueSResize}, -#line 606 "CSSValueKeywords.gperf" - {"seashell", CSSValueSeashell}, -#line 548 "CSSValueKeywords.gperf" - {"ivory", CSSValueIvory}, -#line 278 "CSSValueKeywords.gperf" - {"not-allowed", CSSValueNotAllowed}, -#line 602 "CSSValueKeywords.gperf" - {"saddlebrown", CSSValueSaddlebrown}, -#line 284 "CSSValueKeywords.gperf" - {"n-resize", CSSValueNResize}, -#line 511 "CSSValueKeywords.gperf" - {"cyan", CSSValueCyan}, -#line 23 "CSSValueKeywords.gperf" - {"hidden", CSSValueHidden}, +#line 203 "CSSValueKeywords.gperf" + {"lower-latin", CSSValueLowerLatin}, +#line 649 "CSSValueKeywords.gperf" + {"mathematical", CSSValueMathematical}, +#line 205 "CSSValueKeywords.gperf" + {"upper-latin", CSSValueUpperLatin}, +#line 500 "CSSValueKeywords.gperf" + {"windowed", CSSValueWindowed}, #line 149 "CSSValueKeywords.gperf" {"destination-atop", CSSValueDestinationAtop}, -#line 100 "CSSValueKeywords.gperf" - {"yellow", CSSValueYellow}, -#line 338 "CSSValueKeywords.gperf" - {"lower", CSSValueLower}, -#line 370 "CSSValueKeywords.gperf" - {"forwards", CSSValueForwards}, -#line 605 "CSSValueKeywords.gperf" +#line 188 "CSSValueKeywords.gperf" + {"malayalam", CSSValueMalayalam}, +#line 613 "CSSValueKeywords.gperf" {"seagreen", CSSValueSeagreen}, -#line 626 "CSSValueKeywords.gperf" - {"new", CSSValueNew}, -#line 452 "CSSValueKeywords.gperf" - {"textarea", CSSValueTextarea}, #line 175 "CSSValueKeywords.gperf" {"decimal", CSSValueDecimal}, #line 458 "CSSValueKeywords.gperf" {"padding", CSSValuePadding}, -#line 625 "CSSValueKeywords.gperf" +#line 633 "CSSValueKeywords.gperf" {"accumulate", CSSValueAccumulate}, +#line 588 "CSSValueKeywords.gperf" + {"mediumvioletred", CSSValueMediumvioletred}, +#line 344 "CSSValueKeywords.gperf" + {"open-quote", CSSValueOpenQuote}, +#line 130 "CSSValueKeywords.gperf" + {"windowframe", CSSValueWindowframe}, #line 406 "CSSValueKeywords.gperf" {"inner-spin-button", CSSValueInnerSpinButton}, -#line 305 "CSSValueKeywords.gperf" - {"lowercase", CSSValueLowercase}, -#line 580 "CSSValueKeywords.gperf" - {"mediumvioletred", CSSValueMediumvioletred}, -#line 585 "CSSValueKeywords.gperf" +#line 647 "CSSValueKeywords.gperf" + {"alphabetic", CSSValueAlphabetic}, +#line 272 "CSSValueKeywords.gperf" + {"vertical-text", CSSValueVerticalText}, +#line 587 "CSSValueKeywords.gperf" + {"mediumturquoise", CSSValueMediumturquoise}, +#line 593 "CSSValueKeywords.gperf" {"navajowhite", CSSValueNavajowhite}, -#line 576 "CSSValueKeywords.gperf" +#line 584 "CSSValueKeywords.gperf" {"mediumseagreen", CSSValueMediumseagreen}, -#line 136 "CSSValueKeywords.gperf" - {"repeat", CSSValueRepeat}, -#line 343 "CSSValueKeywords.gperf" - {"nowrap", CSSValueNowrap}, -#line 353 "CSSValueKeywords.gperf" - {"separate", CSSValueSeparate}, -#line 244 "CSSValueKeywords.gperf" - {"hiragana", CSSValueHiragana}, -#line 366 "CSSValueKeywords.gperf" - {"inline-axis", CSSValueInlineAxis}, +#line 281 "CSSValueKeywords.gperf" + {"e-resize", CSSValueEResize}, +#line 287 "CSSValueKeywords.gperf" + {"s-resize", CSSValueSResize}, +#line 614 "CSSValueKeywords.gperf" + {"seashell", CSSValueSeashell}, +#line 131 "CSSValueKeywords.gperf" + {"windowtext", CSSValueWindowtext}, #line 148 "CSSValueKeywords.gperf" {"destination-out", CSSValueDestinationOut}, -#line 492 "CSSValueKeywords.gperf" - {"windowed", CSSValueWindowed}, -#line 321 "CSSValueKeywords.gperf" - {"close-quote", CSSValueCloseQuote}, -#line 519 "CSSValueKeywords.gperf" - {"darkmagenta", CSSValueDarkmagenta}, -#line 531 "CSSValueKeywords.gperf" - {"deeppink", CSSValueDeeppink}, +#line 284 "CSSValueKeywords.gperf" + {"n-resize", CSSValueNResize}, +#line 23 "CSSValueKeywords.gperf" + {"hidden", CSSValueHidden}, #line 419 "CSSValueKeywords.gperf" {"media-slider", CSSValueMediaSlider}, -#line 326 "CSSValueKeywords.gperf" - {"hand", CSSValueHand}, -#line 623 "CSSValueKeywords.gperf" - {"nonzero", CSSValueNonzero}, -#line 111 "CSSValueKeywords.gperf" - {"buttontext", CSSValueButtontext}, #line 437 "CSSValueKeywords.gperf" {"slider-vertical", CSSValueSliderVertical}, -#line 608 "CSSValueKeywords.gperf" - {"skyblue", CSSValueSkyblue}, +#line 591 "CSSValueKeywords.gperf" + {"mistyrose", CSSValueMistyrose}, #line 116 "CSSValueKeywords.gperf" {"inactiveborder", CSSValueInactiveborder}, -#line 288 "CSSValueKeywords.gperf" - {"w-resize", CSSValueWResize}, -#line 130 "CSSValueKeywords.gperf" - {"windowframe", CSSValueWindowframe}, -#line 118 "CSSValueKeywords.gperf" - {"inactivecaptiontext", CSSValueInactivecaptiontext}, -#line 157 "CSSValueKeywords.gperf" - {"text-top", CSSValueTextTop}, +#line 652 "CSSValueKeywords.gperf" + {"reset-size", CSSValueResetSize}, +#line 59 "CSSValueKeywords.gperf" + {"x-small", CSSValueXSmall}, +#line 478 "CSSValueKeywords.gperf" + {"visiblestroke", CSSValueVisiblestroke}, +#line 430 "CSSValueKeywords.gperf" + {"menulist-text", CSSValueMenulistText}, +#line 92 "CSSValueKeywords.gperf" + {"navy", CSSValueNavy}, +#line 295 "CSSValueKeywords.gperf" + {"text", CSSValueText}, +#line 632 "CSSValueKeywords.gperf" + {"evenodd", CSSValueEvenodd}, #line 412 "CSSValueKeywords.gperf" {"media-mute-button", CSSValueMediaMuteButton}, -#line 122 "CSSValueKeywords.gperf" - {"menutext", CSSValueMenutext}, -#line 190 "CSSValueKeywords.gperf" - {"myanmar", CSSValueMyanmar}, +#line 199 "CSSValueKeywords.gperf" + {"lower-roman", CSSValueLowerRoman}, +#line 141 "CSSValueKeywords.gperf" + {"copy", CSSValueCopy}, +#line 200 "CSSValueKeywords.gperf" + {"upper-roman", CSSValueUpperRoman}, #line 468 "CSSValueKeywords.gperf" {"preserve-3d", CSSValuePreserve3d}, -#line 523 "CSSValueKeywords.gperf" - {"darkred", CSSValueDarkred}, -#line 88 "CSSValueKeywords.gperf" - {"gray", CSSValueGray}, -#line 588 "CSSValueKeywords.gperf" +#line 244 "CSSValueKeywords.gperf" + {"hiragana", CSSValueHiragana}, +#line 253 "CSSValueKeywords.gperf" + {"inline-block", CSSValueInlineBlock}, +#line 596 "CSSValueKeywords.gperf" {"orangered", CSSValueOrangered}, +#line 288 "CSSValueKeywords.gperf" + {"w-resize", CSSValueWResize}, +#line 146 "CSSValueKeywords.gperf" + {"destination-over", CSSValueDestinationOver}, +#line 488 "CSSValueKeywords.gperf" + {"weak", CSSValueWeak}, +#line 318 "CSSValueKeywords.gperf" + {"bidi-override", CSSValueBidiOverride}, +#line 326 "CSSValueKeywords.gperf" + {"hand", CSSValueHand}, +#line 433 "CSSValueKeywords.gperf" + {"outer-spin-button", CSSValueOuterSpinButton}, +#line 178 "CSSValueKeywords.gperf" + {"binary", CSSValueBinary}, +#line 166 "CSSValueKeywords.gperf" + {"justify", CSSValueJustify}, +#line 364 "CSSValueKeywords.gperf" + {"horizontal", CSSValueHorizontal}, +#line 492 "CSSValueKeywords.gperf" + {"optimizespeed", CSSValueOptimizespeed}, +#line 269 "CSSValueKeywords.gperf" + {"default", CSSValueDefault}, +#line 291 "CSSValueKeywords.gperf" + {"nesw-resize", CSSValueNeswResize}, +#line 556 "CSSValueKeywords.gperf" + {"ivory", CSSValueIvory}, +#line 185 "CSSValueKeywords.gperf" + {"kannada", CSSValueKannada}, +#line 240 "CSSValueKeywords.gperf" + {"hebrew", CSSValueHebrew}, +#line 100 "CSSValueKeywords.gperf" + {"yellow", CSSValueYellow}, +#line 81 "CSSValueKeywords.gperf" + {"fantasy", CSSValueFantasy}, +#line 532 "CSSValueKeywords.gperf" + {"darksalmon", CSSValueDarksalmon}, +#line 560 "CSSValueKeywords.gperf" + {"lawngreen", CSSValueLawngreen}, #line 290 "CSSValueKeywords.gperf" {"ns-resize", CSSValueNsResize}, -#line 624 "CSSValueKeywords.gperf" - {"evenodd", CSSValueEvenodd}, +#line 434 "CSSValueKeywords.gperf" + {"progress-bar", CSSValueProgressBar}, +#line 503 "CSSValueKeywords.gperf" + {"antiquewhite", CSSValueAntiquewhite}, +#line 401 "CSSValueKeywords.gperf" + {"push-button", CSSValuePushButton}, +#line 491 "CSSValueKeywords.gperf" + {"subpixel-antialiased", CSSValueSubpixelAntialiased}, +#line 494 "CSSValueKeywords.gperf" + {"geometricprecision", CSSValueGeometricprecision}, +#line 545 "CSSValueKeywords.gperf" + {"floralwhite", CSSValueFloralwhite}, +#line 538 "CSSValueKeywords.gperf" + {"darkviolet", CSSValueDarkviolet}, +#line 277 "CSSValueKeywords.gperf" + {"no-drop", CSSValueNoDrop}, +#line 544 "CSSValueKeywords.gperf" + {"firebrick", CSSValueFirebrick}, +#line 341 "CSSValueKeywords.gperf" + {"no-close-quote", CSSValueNoCloseQuote}, +#line 452 "CSSValueKeywords.gperf" + {"textarea", CSSValueTextarea}, +#line 137 "CSSValueKeywords.gperf" + {"repeat-x", CSSValueRepeatX}, +#line 543 "CSSValueKeywords.gperf" + {"dodgerblue", CSSValueDodgerblue}, +#line 342 "CSSValueKeywords.gperf" + {"no-open-quote", CSSValueNoOpenQuote}, +#line 548 "CSSValueKeywords.gperf" + {"ghostwhite", CSSValueGhostwhite}, +#line 395 "CSSValueKeywords.gperf" + {"break-all", CSSValueBreakAll}, +#line 292 "CSSValueKeywords.gperf" + {"nwse-resize", CSSValueNwseResize}, +#line 313 "CSSValueKeywords.gperf" + {"always", CSSValueAlways}, +#line 73 "CSSValueKeywords.gperf" + {"semi-condensed", CSSValueSemiCondensed}, +#line 621 "CSSValueKeywords.gperf" + {"springgreen", CSSValueSpringgreen}, +#line 87 "CSSValueKeywords.gperf" + {"fuchsia", CSSValueFuchsia}, +#line 607 "CSSValueKeywords.gperf" + {"powderblue", CSSValuePowderblue}, +#line 220 "CSSValueKeywords.gperf" + {"hangul", CSSValueHangul}, +#line 182 "CSSValueKeywords.gperf" + {"devanagari", CSSValueDevanagari}, +#line 242 "CSSValueKeywords.gperf" + {"georgian", CSSValueGeorgian}, +#line 394 "CSSValueKeywords.gperf" + {"skip-white-space", CSSValueSkipWhiteSpace}, +#line 183 "CSSValueKeywords.gperf" + {"gujarati", CSSValueGujarati}, +#line 570 "CSSValueKeywords.gperf" + {"lightsalmon", CSSValueLightsalmon}, +#line 157 "CSSValueKeywords.gperf" + {"text-top", CSSValueTextTop}, #line 345 "CSSValueKeywords.gperf" {"overlay", CSSValueOverlay}, -#line 146 "CSSValueKeywords.gperf" - {"destination-over", CSSValueDestinationOver}, -#line 151 "CSSValueKeywords.gperf" - {"plus-darker", CSSValuePlusDarker}, -#line 318 "CSSValueKeywords.gperf" - {"bidi-override", CSSValueBidiOverride}, -#line 240 "CSSValueKeywords.gperf" - {"hebrew", CSSValueHebrew}, -#line 433 "CSSValueKeywords.gperf" - {"outer-spin-button", CSSValueOuterSpinButton}, -#line 401 "CSSValueKeywords.gperf" - {"push-button", CSSValuePushButton}, -#line 374 "CSSValueKeywords.gperf" - {"down", CSSValueDown}, +#line 589 "CSSValueKeywords.gperf" + {"midnightblue", CSSValueMidnightblue}, +#line 104 "CSSValueKeywords.gperf" + {"activeborder", CSSValueActiveborder}, +#line 217 "CSSValueKeywords.gperf" + {"ethiopic-abegede", CSSValueEthiopicAbegede}, +#line 211 "CSSValueKeywords.gperf" + {"amharic-abegede", CSSValueAmharicAbegede}, +#line 88 "CSSValueKeywords.gperf" + {"gray", CSSValueGray}, +#line 381 "CSSValueKeywords.gperf" + {"read-write", CSSValueReadWrite}, +#line 597 "CSSValueKeywords.gperf" + {"orchid", CSSValueOrchid}, +#line 520 "CSSValueKeywords.gperf" + {"darkblue", CSSValueDarkblue}, +#line 550 "CSSValueKeywords.gperf" + {"goldenrod", CSSValueGoldenrod}, +#line 285 "CSSValueKeywords.gperf" + {"se-resize", CSSValueSeResize}, +#line 106 "CSSValueKeywords.gperf" + {"appworkspace", CSSValueAppworkspace}, +#line 110 "CSSValueKeywords.gperf" + {"buttonshadow", CSSValueButtonshadow}, +#line 534 "CSSValueKeywords.gperf" + {"darkslateblue", CSSValueDarkslateblue}, +#line 282 "CSSValueKeywords.gperf" + {"ne-resize", CSSValueNeResize}, #line 158 "CSSValueKeywords.gperf" {"text-bottom", CSSValueTextBottom}, #line 325 "CSSValueKeywords.gperf" {"fixed", CSSValueFixed}, -#line 269 "CSSValueKeywords.gperf" - {"default", CSSValueDefault}, -#line 341 "CSSValueKeywords.gperf" - {"no-close-quote", CSSValueNoCloseQuote}, -#line 457 "CSSValueKeywords.gperf" - {"content-box", CSSValueContentBox}, -#line 513 "CSSValueKeywords.gperf" - {"darkcyan", CSSValueDarkcyan}, -#line 274 "CSSValueKeywords.gperf" - {"context-menu", CSSValueContextMenu}, -#line 562 "CSSValueKeywords.gperf" - {"lightsalmon", CSSValueLightsalmon}, -#line 537 "CSSValueKeywords.gperf" - {"floralwhite", CSSValueFloralwhite}, -#line 342 "CSSValueKeywords.gperf" - {"no-open-quote", CSSValueNoOpenQuote}, -#line 491 "CSSValueKeywords.gperf" - {"minimized", CSSValueMinimized}, -#line 592 "CSSValueKeywords.gperf" - {"paleturquoise", CSSValuePaleturquoise}, -#line 120 "CSSValueKeywords.gperf" - {"infotext", CSSValueInfotext}, -#line 516 "CSSValueKeywords.gperf" - {"darkgreen", CSSValueDarkgreen}, -#line 521 "CSSValueKeywords.gperf" - {"darkorange", CSSValueDarkorange}, -#line 643 "CSSValueKeywords.gperf" - {"no-change", CSSValueNoChange}, -#line 525 "CSSValueKeywords.gperf" - {"darkseagreen", CSSValueDarkseagreen}, -#line 434 "CSSValueKeywords.gperf" - {"progress-bar", CSSValueProgressBar}, -#line 87 "CSSValueKeywords.gperf" - {"fuchsia", CSSValueFuchsia}, -#line 540 "CSSValueKeywords.gperf" - {"ghostwhite", CSSValueGhostwhite}, -#line 486 "CSSValueKeywords.gperf" - {"geometricprecision", CSSValueGeometricprecision}, -#line 141 "CSSValueKeywords.gperf" - {"copy", CSSValueCopy}, -#line 203 "CSSValueKeywords.gperf" - {"lower-latin", CSSValueLowerLatin}, +#line 70 "CSSValueKeywords.gperf" + {"ultra-condensed", CSSValueUltraCondensed}, +#line 422 "CSSValueKeywords.gperf" + {"media-volume-slider", CSSValueMediaVolumeSlider}, +#line 561 "CSSValueKeywords.gperf" + {"lemonchiffon", CSSValueLemonchiffon}, +#line 35 "CSSValueKeywords.gperf" + {"message-box", CSSValueMessageBox}, +#line 294 "CSSValueKeywords.gperf" + {"row-resize", CSSValueRowResize}, +#line 455 "CSSValueKeywords.gperf" + {"border-box", CSSValueBorderBox}, +#line 608 "CSSValueKeywords.gperf" + {"rosybrown", CSSValueRosybrown}, +#line 164 "CSSValueKeywords.gperf" + {"right", CSSValueRight}, +#line 511 "CSSValueKeywords.gperf" + {"burlywood", CSSValueBurlywood}, +#line 29 "CSSValueKeywords.gperf" + {"dashed", CSSValueDashed}, +#line 48 "CSSValueKeywords.gperf" + {"lighter", CSSValueLighter}, +#line 557 "CSSValueKeywords.gperf" + {"khaki", CSSValueKhaki}, +#line 134 "CSSValueKeywords.gperf" + {"grey", CSSValueGrey}, +#line 128 "CSSValueKeywords.gperf" + {"threedshadow", CSSValueThreedshadow}, +#line 266 "CSSValueKeywords.gperf" + {"-wap-marquee", CSSValueWapMarquee}, #line 399 "CSSValueKeywords.gperf" {"checkbox", CSSValueCheckbox}, -#line 134 "CSSValueKeywords.gperf" - {"grey", CSSValueGrey}, -#line 600 "CSSValueKeywords.gperf" - {"rosybrown", CSSValueRosybrown}, +#line 563 "CSSValueKeywords.gperf" + {"lightcoral", CSSValueLightcoral}, +#line 598 "CSSValueKeywords.gperf" + {"palegoldenrod", CSSValuePalegoldenrod}, #line 367 "CSSValueKeywords.gperf" {"block-axis", CSSValueBlockAxis}, -#line 220 "CSSValueKeywords.gperf" - {"hangul", CSSValueHangul}, -#line 503 "CSSValueKeywords.gperf" - {"burlywood", CSSValueBurlywood}, -#line 535 "CSSValueKeywords.gperf" - {"dodgerblue", CSSValueDodgerblue}, -#line 601 "CSSValueKeywords.gperf" - {"royalblue", CSSValueRoyalblue}, -#line 581 "CSSValueKeywords.gperf" - {"midnightblue", CSSValueMidnightblue}, -#line 184 "CSSValueKeywords.gperf" - {"gurmukhi", CSSValueGurmukhi}, -#line 293 "CSSValueKeywords.gperf" - {"col-resize", CSSValueColResize}, -#line 520 "CSSValueKeywords.gperf" - {"darkolivegreen", CSSValueDarkolivegreen}, -#line 73 "CSSValueKeywords.gperf" - {"semi-condensed", CSSValueSemiCondensed}, -#line 610 "CSSValueKeywords.gperf" +#line 411 "CSSValueKeywords.gperf" + {"media-fullscreen-button", CSSValueMediaFullscreenButton}, +#line 562 "CSSValueKeywords.gperf" + {"lightblue", CSSValueLightblue}, +#line 260 "CSSValueKeywords.gperf" + {"table-column-group", CSSValueTableColumnGroup}, +#line 553 "CSSValueKeywords.gperf" + {"hotpink", CSSValueHotpink}, +#line 618 "CSSValueKeywords.gperf" {"slategray", CSSValueSlategray}, -#line 572 "CSSValueKeywords.gperf" - {"mediumaquamarine", CSSValueMediumaquamarine}, -#line 611 "CSSValueKeywords.gperf" +#line 619 "CSSValueKeywords.gperf" {"slategrey", CSSValueSlategrey}, -#line 313 "CSSValueKeywords.gperf" - {"always", CSSValueAlways}, -#line 272 "CSSValueKeywords.gperf" - {"vertical-text", CSSValueVerticalText}, -#line 645 "CSSValueKeywords.gperf" - {"non-scaling-stroke", CSSValueNonScalingStroke}, -#line 394 "CSSValueKeywords.gperf" - {"skip-white-space", CSSValueSkipWhiteSpace}, -#line 164 "CSSValueKeywords.gperf" - {"right", CSSValueRight}, -#line 561 "CSSValueKeywords.gperf" - {"lightpink", CSSValueLightpink}, -#line 589 "CSSValueKeywords.gperf" - {"orchid", CSSValueOrchid}, -#line 639 "CSSValueKeywords.gperf" - {"alphabetic", CSSValueAlphabetic}, -#line 48 "CSSValueKeywords.gperf" - {"lighter", CSSValueLighter}, -#line 285 "CSSValueKeywords.gperf" - {"se-resize", CSSValueSeResize}, -#line 518 "CSSValueKeywords.gperf" - {"darkkhaki", CSSValueDarkkhaki}, -#line 282 "CSSValueKeywords.gperf" - {"ne-resize", CSSValueNeResize}, -#line 396 "CSSValueKeywords.gperf" - {"break-word", CSSValueBreakWord}, -#line 242 "CSSValueKeywords.gperf" - {"georgian", CSSValueGeorgian}, -#line 430 "CSSValueKeywords.gperf" - {"menulist-text", CSSValueMenulistText}, -#line 555 "CSSValueKeywords.gperf" - {"lightcoral", CSSValueLightcoral}, -#line 371 "CSSValueKeywords.gperf" - {"backwards", CSSValueBackwards}, -#line 553 "CSSValueKeywords.gperf" - {"lemonchiffon", CSSValueLemonchiffon}, -#line 217 "CSSValueKeywords.gperf" - {"ethiopic-abegede", CSSValueEthiopicAbegede}, -#line 182 "CSSValueKeywords.gperf" - {"devanagari", CSSValueDevanagari}, -#line 211 "CSSValueKeywords.gperf" - {"amharic-abegede", CSSValueAmharicAbegede}, -#line 104 "CSSValueKeywords.gperf" - {"activeborder", CSSValueActiveborder}, -#line 199 "CSSValueKeywords.gperf" - {"lower-roman", CSSValueLowerRoman}, -#line 554 "CSSValueKeywords.gperf" - {"lightblue", CSSValueLightblue}, -#line 110 "CSSValueKeywords.gperf" - {"buttonshadow", CSSValueButtonshadow}, -#line 131 "CSSValueKeywords.gperf" - {"windowtext", CSSValueWindowtext}, -#line 29 "CSSValueKeywords.gperf" - {"dashed", CSSValueDashed}, -#line 542 "CSSValueKeywords.gperf" - {"goldenrod", CSSValueGoldenrod}, -#line 567 "CSSValueKeywords.gperf" +#line 575 "CSSValueKeywords.gperf" {"lightsteelblue", CSSValueLightsteelblue}, -#line 579 "CSSValueKeywords.gperf" - {"mediumturquoise", CSSValueMediumturquoise}, -#line 247 "CSSValueKeywords.gperf" - {"katakana-iroha", CSSValueKatakanaIroha}, -#line 446 "CSSValueKeywords.gperf" - {"textfield", CSSValueTextfield}, -#line 543 "CSSValueKeywords.gperf" - {"greenyellow", CSSValueGreenyellow}, -#line 58 "CSSValueKeywords.gperf" - {"xx-small", CSSValueXxSmall}, -#line 381 "CSSValueKeywords.gperf" - {"read-write", CSSValueReadWrite}, -#line 70 "CSSValueKeywords.gperf" - {"ultra-condensed", CSSValueUltraCondensed}, +#line 646 "CSSValueKeywords.gperf" + {"ideographic", CSSValueIdeographic}, +#line 202 "CSSValueKeywords.gperf" + {"lower-alpha", CSSValueLowerAlpha}, +#line 582 "CSSValueKeywords.gperf" + {"mediumorchid", CSSValueMediumorchid}, +#line 204 "CSSValueKeywords.gperf" + {"upper-alpha", CSSValueUpperAlpha}, +#line 152 "CSSValueKeywords.gperf" + {"plus-lighter", CSSValuePlusLighter}, +#line 245 "CSSValueKeywords.gperf" + {"katakana", CSSValueKatakana}, +#line 435 "CSSValueKeywords.gperf" + {"progress-bar-value", CSSValueProgressBarValue}, +#line 527 "CSSValueKeywords.gperf" + {"darkmagenta", CSSValueDarkmagenta}, +#line 289 "CSSValueKeywords.gperf" + {"ew-resize", CSSValueEwResize}, +#line 539 "CSSValueKeywords.gperf" + {"deeppink", CSSValueDeeppink}, +#line 286 "CSSValueKeywords.gperf" + {"sw-resize", CSSValueSwResize}, +#line 416 "CSSValueKeywords.gperf" + {"media-rewind-button", CSSValueMediaRewindButton}, +#line 283 "CSSValueKeywords.gperf" + {"nw-resize", CSSValueNwResize}, #line 63 "CSSValueKeywords.gperf" {"x-large", CSSValueXLarge}, -#line 644 "CSSValueKeywords.gperf" - {"reset-size", CSSValueResetSize}, -#line 422 "CSSValueKeywords.gperf" - {"media-volume-slider", CSSValueMediaVolumeSlider}, -#line 364 "CSSValueKeywords.gperf" - {"horizontal", CSSValueHorizontal}, -#line 128 "CSSValueKeywords.gperf" - {"threedshadow", CSSValueThreedshadow}, -#line 604 "CSSValueKeywords.gperf" - {"sandybrown", CSSValueSandybrown}, -#line 552 "CSSValueKeywords.gperf" - {"lawngreen", CSSValueLawngreen}, -#line 638 "CSSValueKeywords.gperf" - {"ideographic", CSSValueIdeographic}, -#line 414 "CSSValueKeywords.gperf" - {"media-seek-back-button", CSSValueMediaSeekBackButton}, -#line 112 "CSSValueKeywords.gperf" - {"captiontext", CSSValueCaptiontext}, -#line 574 "CSSValueKeywords.gperf" - {"mediumorchid", CSSValueMediumorchid}, -#line 304 "CSSValueKeywords.gperf" - {"uppercase", CSSValueUppercase}, -#line 152 "CSSValueKeywords.gperf" - {"plus-lighter", CSSValuePlusLighter}, -#line 483 "CSSValueKeywords.gperf" - {"subpixel-antialiased", CSSValueSubpixelAntialiased}, -#line 590 "CSSValueKeywords.gperf" - {"palegoldenrod", CSSValuePalegoldenrod}, -#line 411 "CSSValueKeywords.gperf" - {"media-fullscreen-button", CSSValueMediaFullscreenButton}, -#line 533 "CSSValueKeywords.gperf" - {"dimgray", CSSValueDimgray}, -#line 534 "CSSValueKeywords.gperf" - {"dimgrey", CSSValueDimgrey}, -#line 260 "CSSValueKeywords.gperf" - {"table-column-group", CSSValueTableColumnGroup}, +#line 405 "CSSValueKeywords.gperf" + {"default-button", CSSValueDefaultButton}, #line 219 "CSSValueKeywords.gperf" {"hangul-consonant", CSSValueHangulConsonant}, -#line 234 "CSSValueKeywords.gperf" - {"tigrinya-et", CSSValueTigrinyaEt}, -#line 303 "CSSValueKeywords.gperf" - {"capitalize", CSSValueCapitalize}, -#line 413 "CSSValueKeywords.gperf" - {"media-play-button", CSSValueMediaPlayButton}, -#line 640 "CSSValueKeywords.gperf" +#line 221 "CSSValueKeywords.gperf" + {"lower-norwegian", CSSValueLowerNorwegian}, +#line 256 "CSSValueKeywords.gperf" + {"table-row-group", CSSValueTableRowGroup}, +#line 551 "CSSValueKeywords.gperf" + {"greenyellow", CSSValueGreenyellow}, +#line 138 "CSSValueKeywords.gperf" + {"repeat-y", CSSValueRepeatY}, +#line 648 "CSSValueKeywords.gperf" {"hanging", CSSValueHanging}, -#line 495 "CSSValueKeywords.gperf" - {"antiquewhite", CSSValueAntiquewhite}, -#line 622 "CSSValueKeywords.gperf" - {"yellowgreen", CSSValueYellowgreen}, -#line 500 "CSSValueKeywords.gperf" +#line 239 "CSSValueKeywords.gperf" + {"upper-norwegian", CSSValueUpperNorwegian}, +#line 559 "CSSValueKeywords.gperf" + {"lavenderblush", CSSValueLavenderblush}, +#line 508 "CSSValueKeywords.gperf" {"blanchedalmond", CSSValueBlanchedalmond}, -#line 595 "CSSValueKeywords.gperf" +#line 603 "CSSValueKeywords.gperf" {"peachpuff", CSSValuePeachpuff}, -#line 599 "CSSValueKeywords.gperf" - {"powderblue", CSSValuePowderblue}, -#line 291 "CSSValueKeywords.gperf" - {"nesw-resize", CSSValueNeswResize}, -#line 529 "CSSValueKeywords.gperf" - {"darkturquoise", CSSValueDarkturquoise}, -#line 435 "CSSValueKeywords.gperf" - {"progress-bar-value", CSSValueProgressBarValue}, -#line 551 "CSSValueKeywords.gperf" - {"lavenderblush", CSSValueLavenderblush}, -#line 405 "CSSValueKeywords.gperf" - {"default-button", CSSValueDefaultButton}, -#line 416 "CSSValueKeywords.gperf" - {"media-rewind-button", CSSValueMediaRewindButton}, +#line 431 "CSSValueKeywords.gperf" + {"menulist-textfield", CSSValueMenulistTextfield}, +#line 586 "CSSValueKeywords.gperf" + {"mediumspringgreen", CSSValueMediumspringgreen}, +#line 446 "CSSValueKeywords.gperf" + {"textfield", CSSValueTextfield}, +#line 531 "CSSValueKeywords.gperf" + {"darkred", CSSValueDarkred}, +#line 151 "CSSValueKeywords.gperf" + {"plus-darker", CSSValuePlusDarker}, +#line 74 "CSSValueKeywords.gperf" + {"semi-expanded", CSSValueSemiExpanded}, +#line 612 "CSSValueKeywords.gperf" + {"sandybrown", CSSValueSandybrown}, +#line 498 "CSSValueKeywords.gperf" + {"maximized", CSSValueMaximized}, +#line 642 "CSSValueKeywords.gperf" + {"after-edge", CSSValueAfterEdge}, +#line 459 "CSSValueKeywords.gperf" + {"padding-box", CSSValuePaddingBox}, #line 390 "CSSValueKeywords.gperf" {"dot-dash", CSSValueDotDash}, -#line 544 "CSSValueKeywords.gperf" - {"honeydew", CSSValueHoneydew}, -#line 106 "CSSValueKeywords.gperf" - {"appworkspace", CSSValueAppworkspace}, -#line 578 "CSSValueKeywords.gperf" - {"mediumspringgreen", CSSValueMediumspringgreen}, +#line 407 "CSSValueKeywords.gperf" + {"input-speech-button", CSSValueInputSpeechButton}, +#line 75 "CSSValueKeywords.gperf" + {"expanded", CSSValueExpanded}, +#line 651 "CSSValueKeywords.gperf" + {"no-change", CSSValueNoChange}, +#line 524 "CSSValueKeywords.gperf" + {"darkgreen", CSSValueDarkgreen}, +#line 537 "CSSValueKeywords.gperf" + {"darkturquoise", CSSValueDarkturquoise}, +#line 529 "CSSValueKeywords.gperf" + {"darkorange", CSSValueDarkorange}, +#line 533 "CSSValueKeywords.gperf" + {"darkseagreen", CSSValueDarkseagreen}, +#line 258 "CSSValueKeywords.gperf" + {"table-footer-group", CSSValueTableFooterGroup}, +#line 441 "CSSValueKeywords.gperf" + {"searchfield", CSSValueSearchfield}, +#line 630 "CSSValueKeywords.gperf" + {"yellowgreen", CSSValueYellowgreen}, +#line 212 "CSSValueKeywords.gperf" + {"ethiopic-abegede-am-et", CSSValueEthiopicAbegedeAmEt}, +#line 541 "CSSValueKeywords.gperf" + {"dimgray", CSSValueDimgray}, +#line 542 "CSSValueKeywords.gperf" + {"dimgrey", CSSValueDimgrey}, +#line 113 "CSSValueKeywords.gperf" + {"graytext", CSSValueGraytext}, +#line 237 "CSSValueKeywords.gperf" + {"ethiopic-abegede-ti-et", CSSValueEthiopicAbegedeTiEt}, +#line 413 "CSSValueKeywords.gperf" + {"media-play-button", CSSValueMediaPlayButton}, +#line 528 "CSSValueKeywords.gperf" + {"darkolivegreen", CSSValueDarkolivegreen}, +#line 77 "CSSValueKeywords.gperf" + {"ultra-expanded", CSSValueUltraExpanded}, +#line 653 "CSSValueKeywords.gperf" + {"non-scaling-stroke", CSSValueNonScalingStroke}, +#line 396 "CSSValueKeywords.gperf" + {"break-word", CSSValueBreakWord}, +#line 58 "CSSValueKeywords.gperf" + {"xx-small", CSSValueXxSmall}, +#line 371 "CSSValueKeywords.gperf" + {"backwards", CSSValueBackwards}, +#line 636 "CSSValueKeywords.gperf" + {"optimizequality", CSSValueOptimizequality}, +#line 420 "CSSValueKeywords.gperf" + {"media-sliderthumb", CSSValueMediaSliderthumb}, +#line 439 "CSSValueKeywords.gperf" + {"sliderthumb-vertical", CSSValueSliderthumbVertical}, +#line 421 "CSSValueKeywords.gperf" + {"media-volume-slider-container", CSSValueMediaVolumeSliderContainer}, +#line 234 "CSSValueKeywords.gperf" + {"tigrinya-et", CSSValueTigrinyaEt}, +#line 567 "CSSValueKeywords.gperf" + {"lightgreen", CSSValueLightgreen}, +#line 184 "CSSValueKeywords.gperf" + {"gurmukhi", CSSValueGurmukhi}, +#line 571 "CSSValueKeywords.gperf" + {"lightseagreen", CSSValueLightseagreen}, #line 380 "CSSValueKeywords.gperf" {"read-only", CSSValueReadOnly}, -#line 256 "CSSValueKeywords.gperf" - {"table-row-group", CSSValueTableRowGroup}, -#line 613 "CSSValueKeywords.gperf" - {"springgreen", CSSValueSpringgreen}, -#line 522 "CSSValueKeywords.gperf" - {"darkorchid", CSSValueDarkorchid}, -#line 441 "CSSValueKeywords.gperf" - {"searchfield", CSSValueSearchfield}, -#line 230 "CSSValueKeywords.gperf" - {"tigrinya-er", CSSValueTigrinyaEr}, -#line 515 "CSSValueKeywords.gperf" - {"darkgray", CSSValueDarkgray}, -#line 35 "CSSValueKeywords.gperf" - {"message-box", CSSValueMessageBox}, -#line 517 "CSSValueKeywords.gperf" - {"darkgrey", CSSValueDarkgrey}, -#line 556 "CSSValueKeywords.gperf" - {"lightcyan", CSSValueLightcyan}, -#line 634 "CSSValueKeywords.gperf" - {"after-edge", CSSValueAfterEdge}, +#line 641 "CSSValueKeywords.gperf" + {"before-edge", CSSValueBeforeEdge}, +#line 602 "CSSValueKeywords.gperf" + {"papayawhip", CSSValuePapayawhip}, +#line 451 "CSSValueKeywords.gperf" + {"rating-level-indicator", CSSValueRatingLevelIndicator}, +#line 552 "CSSValueKeywords.gperf" + {"honeydew", CSSValueHoneydew}, +#line 233 "CSSValueKeywords.gperf" + {"ethiopic-abegede-ti-er", CSSValueEthiopicAbegedeTiEr}, +#line 398 "CSSValueKeywords.gperf" + {"after-white-space", CSSValueAfterWhiteSpace}, +#line 521 "CSSValueKeywords.gperf" + {"darkcyan", CSSValueDarkcyan}, +#line 436 "CSSValueKeywords.gperf" + {"slider-horizontal", CSSValueSliderHorizontal}, #line 162 "CSSValueKeywords.gperf" {"-webkit-auto", CSSValueWebkitAuto}, -#line 205 "CSSValueKeywords.gperf" - {"upper-latin", CSSValueUpperLatin}, -#line 102 "CSSValueKeywords.gperf" - {"-webkit-link", CSSValueWebkitLink}, -#line 455 "CSSValueKeywords.gperf" - {"border-box", CSSValueBorderBox}, -#line 527 "CSSValueKeywords.gperf" - {"darkslategray", CSSValueDarkslategray}, -#line 528 "CSSValueKeywords.gperf" - {"darkslategrey", CSSValueDarkslategrey}, -#line 532 "CSSValueKeywords.gperf" - {"deepskyblue", CSSValueDeepskyblue}, -#line 559 "CSSValueKeywords.gperf" - {"lightgreen", CSSValueLightgreen}, -#line 563 "CSSValueKeywords.gperf" - {"lightseagreen", CSSValueLightseagreen}, -#line 107 "CSSValueKeywords.gperf" - {"background", CSSValueBackground}, -#line 138 "CSSValueKeywords.gperf" - {"repeat-y", CSSValueRepeatY}, -#line 214 "CSSValueKeywords.gperf" - {"cjk-heavenly-stem", CSSValueCjkHeavenlyStem}, -#line 258 "CSSValueKeywords.gperf" - {"table-footer-group", CSSValueTableFooterGroup}, -#line 202 "CSSValueKeywords.gperf" - {"lower-alpha", CSSValueLowerAlpha}, -#line 344 "CSSValueKeywords.gperf" - {"open-quote", CSSValueOpenQuote}, -#line 119 "CSSValueKeywords.gperf" - {"infobackground", CSSValueInfobackground}, -#line 212 "CSSValueKeywords.gperf" - {"ethiopic-abegede-am-et", CSSValueEthiopicAbegedeAmEt}, -#line 289 "CSSValueKeywords.gperf" - {"ew-resize", CSSValueEwResize}, -#line 286 "CSSValueKeywords.gperf" - {"sw-resize", CSSValueSwResize}, -#line 420 "CSSValueKeywords.gperf" - {"media-sliderthumb", CSSValueMediaSliderthumb}, -#line 237 "CSSValueKeywords.gperf" - {"ethiopic-abegede-ti-et", CSSValueEthiopicAbegedeTiEt}, -#line 283 "CSSValueKeywords.gperf" - {"nw-resize", CSSValueNwResize}, -#line 439 "CSSValueKeywords.gperf" - {"sliderthumb-vertical", CSSValueSliderthumbVertical}, +#line 569 "CSSValueKeywords.gperf" + {"lightpink", CSSValueLightpink}, +#line 230 "CSSValueKeywords.gperf" + {"tigrinya-er", CSSValueTigrinyaEr}, +#line 447 "CSSValueKeywords.gperf" + {"caps-lock-indicator", CSSValueCapsLockIndicator}, +#line 417 "CSSValueKeywords.gperf" + {"media-return-to-realtime-button", CSSValueMediaReturnToRealtimeButton}, +#line 328 "CSSValueKeywords.gperf" + {"higher", CSSValueHigher}, #line 169 "CSSValueKeywords.gperf" {"-webkit-center", CSSValueWebkitCenter}, -#line 113 "CSSValueKeywords.gperf" - {"graytext", CSSValueGraytext}, -#line 103 "CSSValueKeywords.gperf" - {"-webkit-activelink", CSSValueWebkitActivelink}, -#line 490 "CSSValueKeywords.gperf" - {"maximized", CSSValueMaximized}, -#line 328 "CSSValueKeywords.gperf" - {"higher", CSSValueHigher}, +#line 483 "CSSValueKeywords.gperf" + {"latched-button-up", CSSValueLatchedButtonUp}, +#line 71 "CSSValueKeywords.gperf" + {"extra-condensed", CSSValueExtraCondensed}, #line 39 "CSSValueKeywords.gperf" {"-webkit-control", CSSValueWebkitControl}, #line 167 "CSSValueKeywords.gperf" {"-webkit-left", CSSValueWebkitLeft}, -#line 568 "CSSValueKeywords.gperf" - {"lightyellow", CSSValueLightyellow}, -#line 71 "CSSValueKeywords.gperf" - {"extra-condensed", CSSValueExtraCondensed}, +#line 246 "CSSValueKeywords.gperf" + {"hiragana-iroha", CSSValueHiraganaIroha}, #line 201 "CSSValueKeywords.gperf" {"lower-greek", CSSValueLowerGreek}, -#line 75 "CSSValueKeywords.gperf" - {"expanded", CSSValueExpanded}, -#line 200 "CSSValueKeywords.gperf" - {"upper-roman", CSSValueUpperRoman}, -#line 447 "CSSValueKeywords.gperf" - {"caps-lock-indicator", CSSValueCapsLockIndicator}, -#line 421 "CSSValueKeywords.gperf" - {"media-volume-slider-container", CSSValueMediaVolumeSliderContainer}, -#line 514 "CSSValueKeywords.gperf" - {"darkgoldenrod", CSSValueDarkgoldenrod}, -#line 137 "CSSValueKeywords.gperf" - {"repeat-x", CSSValueRepeatX}, -#line 484 "CSSValueKeywords.gperf" - {"optimizespeed", CSSValueOptimizespeed}, -#line 292 "CSSValueKeywords.gperf" - {"nwse-resize", CSSValueNwseResize}, -#line 431 "CSSValueKeywords.gperf" - {"menulist-textfield", CSSValueMenulistTextfield}, -#line 398 "CSSValueKeywords.gperf" - {"after-white-space", CSSValueAfterWhiteSpace}, -#line 633 "CSSValueKeywords.gperf" - {"before-edge", CSSValueBeforeEdge}, -#line 243 "CSSValueKeywords.gperf" - {"cjk-ideographic", CSSValueCjkIdeographic}, -#line 221 "CSSValueKeywords.gperf" - {"lower-norwegian", CSSValueLowerNorwegian}, -#line 246 "CSSValueKeywords.gperf" - {"hiragana-iroha", CSSValueHiraganaIroha}, -#line 74 "CSSValueKeywords.gperf" - {"semi-expanded", CSSValueSemiExpanded}, -#line 451 "CSSValueKeywords.gperf" - {"rating-level-indicator", CSSValueRatingLevelIndicator}, -#line 359 "CSSValueKeywords.gperf" - {"-webkit-nowrap", CSSValueWebkitNowrap}, -#line 233 "CSSValueKeywords.gperf" - {"ethiopic-abegede-ti-er", CSSValueEthiopicAbegedeTiEr}, -#line 64 "CSSValueKeywords.gperf" - {"xx-large", CSSValueXxLarge}, +#line 493 "CSSValueKeywords.gperf" + {"optimizelegibility", CSSValueOptimizelegibility}, +#line 238 "CSSValueKeywords.gperf" + {"upper-greek", CSSValueUpperGreek}, #line 564 "CSSValueKeywords.gperf" - {"lightskyblue", CSSValueLightskyblue}, -#line 459 "CSSValueKeywords.gperf" - {"padding-box", CSSValuePaddingBox}, + {"lightcyan", CSSValueLightcyan}, #line 207 "CSSValueKeywords.gperf" {"ethiopic-halehame-aa-et", CSSValueEthiopicHalehameAaEt}, #line 210 "CSSValueKeywords.gperf" @@ -1330,150 +1325,174 @@ {"ethiopic-halehame-so-et", CSSValueEthiopicHalehameSoEt}, #line 235 "CSSValueKeywords.gperf" {"ethiopic-halehame-ti-et", CSSValueEthiopicHalehameTiEt}, -#line 594 "CSSValueKeywords.gperf" - {"papayawhip", CSSValuePapayawhip}, -#line 407 "CSSValueKeywords.gperf" - {"input-speech-button", CSSValueInputSpeechButton}, -#line 124 "CSSValueKeywords.gperf" - {"threeddarkshadow", CSSValueThreeddarkshadow}, +#line 359 "CSSValueKeywords.gperf" + {"-webkit-nowrap", CSSValueWebkitNowrap}, +#line 424 "CSSValueKeywords.gperf" + {"media-volume-slider-mute-button", CSSValueMediaVolumeSliderMuteButton}, #line 335 "CSSValueKeywords.gperf" {"line-through", CSSValueLineThrough}, -#line 417 "CSSValueKeywords.gperf" - {"media-return-to-realtime-button", CSSValueMediaReturnToRealtimeButton}, -#line 38 "CSSValueKeywords.gperf" - {"-webkit-small-control", CSSValueWebkitSmallControl}, -#line 37 "CSSValueKeywords.gperf" - {"-webkit-mini-control", CSSValueWebkitMiniControl}, -#line 77 "CSSValueKeywords.gperf" - {"ultra-expanded", CSSValueUltraExpanded}, -#line 294 "CSSValueKeywords.gperf" - {"row-resize", CSSValueRowResize}, -#line 448 "CSSValueKeywords.gperf" - {"relevancy-level-indicator", CSSValueRelevancyLevelIndicator}, -#line 208 "CSSValueKeywords.gperf" - {"ethiopic-halehame-aa-er", CSSValueEthiopicHalehameAaEr}, -#line 266 "CSSValueKeywords.gperf" - {"-wap-marquee", CSSValueWapMarquee}, -#line 231 "CSSValueKeywords.gperf" - {"ethiopic-halehame-ti-er", CSSValueEthiopicHalehameTiEr}, +#line 576 "CSSValueKeywords.gperf" + {"lightyellow", CSSValueLightyellow}, #line 423 "CSSValueKeywords.gperf" {"media-volume-sliderthumb", CSSValueMediaVolumeSliderthumb}, #line 391 "CSSValueKeywords.gperf" {"dot-dot-dash", CSSValueDotDotDash}, +#line 135 "CSSValueKeywords.gperf" + {"-webkit-text", CSSValueWebkitText}, +#line 107 "CSSValueKeywords.gperf" + {"background", CSSValueBackground}, +#line 530 "CSSValueKeywords.gperf" + {"darkorchid", CSSValueDarkorchid}, +#line 186 "CSSValueKeywords.gperf" + {"lower-hexadecimal", CSSValueLowerHexadecimal}, +#line 119 "CSSValueKeywords.gperf" + {"infobackground", CSSValueInfobackground}, +#line 208 "CSSValueKeywords.gperf" + {"ethiopic-halehame-aa-er", CSSValueEthiopicHalehameAaEr}, +#line 198 "CSSValueKeywords.gperf" + {"upper-hexadecimal", CSSValueUpperHexadecimal}, +#line 339 "CSSValueKeywords.gperf" + {"-webkit-marquee", CSSValueWebkitMarquee}, +#line 231 "CSSValueKeywords.gperf" + {"ethiopic-halehame-ti-er", CSSValueEthiopicHalehameTiEr}, +#line 38 "CSSValueKeywords.gperf" + {"-webkit-small-control", CSSValueWebkitSmallControl}, +#line 218 "CSSValueKeywords.gperf" + {"ethiopic-abegede-gez", CSSValueEthiopicAbegedeGez}, +#line 37 "CSSValueKeywords.gperf" + {"-webkit-mini-control", CSSValueWebkitMiniControl}, #line 229 "CSSValueKeywords.gperf" {"ethiopic-halehame-tig", CSSValueEthiopicHalehameTig}, -#line 425 "CSSValueKeywords.gperf" - {"media-controls-background", CSSValueMediaControlsBackground}, -#line 424 "CSSValueKeywords.gperf" - {"media-volume-slider-mute-button", CSSValueMediaVolumeSliderMuteButton}, -#line 558 "CSSValueKeywords.gperf" - {"lightgray", CSSValueLightgray}, -#line 560 "CSSValueKeywords.gperf" - {"lightgrey", CSSValueLightgrey}, -#line 204 "CSSValueKeywords.gperf" - {"upper-alpha", CSSValueUpperAlpha}, -#line 565 "CSSValueKeywords.gperf" - {"lightslategray", CSSValueLightslategray}, -#line 566 "CSSValueKeywords.gperf" - {"lightslategrey", CSSValueLightslategrey}, +#line 448 "CSSValueKeywords.gperf" + {"relevancy-level-indicator", CSSValueRelevancyLevelIndicator}, +#line 264 "CSSValueKeywords.gperf" + {"-webkit-box", CSSValueWebkitBox}, +#line 482 "CSSValueKeywords.gperf" + {"latched-button-down", CSSValueLatchedButtonDown}, +#line 64 "CSSValueKeywords.gperf" + {"xx-large", CSSValueXxLarge}, +#line 522 "CSSValueKeywords.gperf" + {"darkgoldenrod", CSSValueDarkgoldenrod}, +#line 257 "CSSValueKeywords.gperf" + {"table-header-group", CSSValueTableHeaderGroup}, +#line 279 "CSSValueKeywords.gperf" + {"-webkit-zoom-in", CSSValueWebkitZoomIn}, +#line 76 "CSSValueKeywords.gperf" + {"extra-expanded", CSSValueExtraExpanded}, +#line 445 "CSSValueKeywords.gperf" + {"searchfield-cancel-button", CSSValueSearchfieldCancelButton}, +#line 225 "CSSValueKeywords.gperf" + {"ethiopic-halehame-sid-et", CSSValueEthiopicHalehameSidEt}, +#line 523 "CSSValueKeywords.gperf" + {"darkgray", CSSValueDarkgray}, +#line 525 "CSSValueKeywords.gperf" + {"darkgrey", CSSValueDarkgrey}, +#line 127 "CSSValueKeywords.gperf" + {"threedlightshadow", CSSValueThreedlightshadow}, +#line 535 "CSSValueKeywords.gperf" + {"darkslategray", CSSValueDarkslategray}, +#line 536 "CSSValueKeywords.gperf" + {"darkslategrey", CSSValueDarkslategrey}, +#line 540 "CSSValueKeywords.gperf" + {"deepskyblue", CSSValueDeepskyblue}, #line 299 "CSSValueKeywords.gperf" {"-webkit-grab", CSSValueWebkitGrab}, -#line 436 "CSSValueKeywords.gperf" - {"slider-horizontal", CSSValueSliderHorizontal}, -#line 135 "CSSValueKeywords.gperf" - {"-webkit-text", CSSValueWebkitText}, -#line 415 "CSSValueKeywords.gperf" - {"media-seek-forward-button", CSSValueMediaSeekForwardButton}, +#line 442 "CSSValueKeywords.gperf" + {"searchfield-decoration", CSSValueSearchfieldDecoration}, +#line 102 "CSSValueKeywords.gperf" + {"-webkit-link", CSSValueWebkitLink}, #line 449 "CSSValueKeywords.gperf" {"continuous-capacity-level-indicator", CSSValueContinuousCapacityLevelIndicator}, -#line 238 "CSSValueKeywords.gperf" - {"upper-greek", CSSValueUpperGreek}, -#line 225 "CSSValueKeywords.gperf" - {"ethiopic-halehame-sid-et", CSSValueEthiopicHalehameSidEt}, +#line 243 "CSSValueKeywords.gperf" + {"cjk-ideographic", CSSValueCjkIdeographic}, +#line 247 "CSSValueKeywords.gperf" + {"katakana-iroha", CSSValueKatakanaIroha}, +#line 280 "CSSValueKeywords.gperf" + {"-webkit-zoom-out", CSSValueWebkitZoomOut}, +#line 414 "CSSValueKeywords.gperf" + {"media-seek-back-button", CSSValueMediaSeekBackButton}, +#line 103 "CSSValueKeywords.gperf" + {"-webkit-activelink", CSSValueWebkitActivelink}, #line 426 "CSSValueKeywords.gperf" {"media-current-time-display", CSSValueMediaCurrentTimeDisplay}, -#line 637 "CSSValueKeywords.gperf" +#line 124 "CSSValueKeywords.gperf" + {"threeddarkshadow", CSSValueThreeddarkshadow}, +#line 645 "CSSValueKeywords.gperf" {"text-after-edge", CSSValueTextAfterEdge}, -#line 264 "CSSValueKeywords.gperf" - {"-webkit-box", CSSValueWebkitBox}, -#line 257 "CSSValueKeywords.gperf" - {"table-header-group", CSSValueTableHeaderGroup}, -#line 127 "CSSValueKeywords.gperf" - {"threedlightshadow", CSSValueThreedlightshadow}, -#line 445 "CSSValueKeywords.gperf" - {"searchfield-cancel-button", CSSValueSearchfieldCancelButton}, -#line 239 "CSSValueKeywords.gperf" - {"upper-norwegian", CSSValueUpperNorwegian}, -#line 339 "CSSValueKeywords.gperf" - {"-webkit-marquee", CSSValueWebkitMarquee}, -#line 442 "CSSValueKeywords.gperf" - {"searchfield-decoration", CSSValueSearchfieldDecoration}, -#line 636 "CSSValueKeywords.gperf" +#line 214 "CSSValueKeywords.gperf" + {"cjk-heavenly-stem", CSSValueCjkHeavenlyStem}, +#line 566 "CSSValueKeywords.gperf" + {"lightgray", CSSValueLightgray}, +#line 568 "CSSValueKeywords.gperf" + {"lightgrey", CSSValueLightgrey}, +#line 265 "CSSValueKeywords.gperf" + {"-webkit-inline-box", CSSValueWebkitInlineBox}, +#line 573 "CSSValueKeywords.gperf" + {"lightslategray", CSSValueLightslategray}, +#line 574 "CSSValueKeywords.gperf" + {"lightslategrey", CSSValueLightslategrey}, +#line 418 "CSSValueKeywords.gperf" + {"media-toggle-closed-captions-button", CSSValueMediaToggleClosedCaptionsButton}, +#line 484 "CSSValueKeywords.gperf" + {"latched-button-stuck", CSSValueLatchedButtonStuck}, +#line 216 "CSSValueKeywords.gperf" + {"ethiopic-halehame-gez", CSSValueEthiopicHalehameGez}, +#line 444 "CSSValueKeywords.gperf" + {"searchfield-results-button", CSSValueSearchfieldResultsButton}, +#line 176 "CSSValueKeywords.gperf" + {"decimal-leading-zero", CSSValueDecimalLeadingZero}, +#line 644 "CSSValueKeywords.gperf" {"text-before-edge", CSSValueTextBeforeEdge}, -#line 76 "CSSValueKeywords.gperf" - {"extra-expanded", CSSValueExtraExpanded}, +#line 425 "CSSValueKeywords.gperf" + {"media-controls-background", CSSValueMediaControlsBackground}, #line 450 "CSSValueKeywords.gperf" {"discrete-capacity-level-indicator", CSSValueDiscreteCapacityLevelIndicator}, #line 427 "CSSValueKeywords.gperf" {"media-time-remaining-display", CSSValueMediaTimeRemainingDisplay}, -#line 83 "CSSValueKeywords.gperf" - {"-webkit-body", CSSValueWebkitBody}, -#line 279 "CSSValueKeywords.gperf" - {"-webkit-zoom-in", CSSValueWebkitZoomIn}, -#line 236 "CSSValueKeywords.gperf" - {"tigrinya-et-abegede", CSSValueTigrinyaEtAbegede}, +#line 415 "CSSValueKeywords.gperf" + {"media-seek-forward-button", CSSValueMediaSeekForwardButton}, +#line 438 "CSSValueKeywords.gperf" + {"sliderthumb-horizontal", CSSValueSliderthumbHorizontal}, +#line 161 "CSSValueKeywords.gperf" + {"-webkit-baseline-middle", CSSValueWebkitBaselineMiddle}, #line 114 "CSSValueKeywords.gperf" {"highlight", CSSValueHighlight}, -#line 485 "CSSValueKeywords.gperf" - {"optimizelegibility", CSSValueOptimizelegibility}, -#line 444 "CSSValueKeywords.gperf" - {"searchfield-results-button", CSSValueSearchfieldResultsButton}, -#line 161 "CSSValueKeywords.gperf" - {"-webkit-baseline-middle", CSSValueWebkitBaselineMiddle}, -#line 265 "CSSValueKeywords.gperf" - {"-webkit-inline-box", CSSValueWebkitInlineBox}, -#line 213 "CSSValueKeywords.gperf" - {"cjk-earthly-branch", CSSValueCjkEarthlyBranch}, -#line 280 "CSSValueKeywords.gperf" - {"-webkit-zoom-out", CSSValueWebkitZoomOut}, +#line 236 "CSSValueKeywords.gperf" + {"tigrinya-et-abegede", CSSValueTigrinyaEtAbegede}, +#line 572 "CSSValueKeywords.gperf" + {"lightskyblue", CSSValueLightskyblue}, +#line 109 "CSSValueKeywords.gperf" + {"buttonhighlight", CSSValueButtonhighlight}, +#line 443 "CSSValueKeywords.gperf" + {"searchfield-results-decoration", CSSValueSearchfieldResultsDecoration}, +#line 526 "CSSValueKeywords.gperf" + {"darkkhaki", CSSValueDarkkhaki}, #line 168 "CSSValueKeywords.gperf" {"-webkit-right", CSSValueWebkitRight}, -#line 418 "CSSValueKeywords.gperf" - {"media-toggle-closed-captions-button", CSSValueMediaToggleClosedCaptionsButton}, -#line 218 "CSSValueKeywords.gperf" - {"ethiopic-abegede-gez", CSSValueEthiopicAbegedeGez}, -#line 628 "CSSValueKeywords.gperf" - {"optimizequality", CSSValueOptimizequality}, +#line 300 "CSSValueKeywords.gperf" + {"-webkit-grabbing", CSSValueWebkitGrabbing}, #line 232 "CSSValueKeywords.gperf" {"tigrinya-er-abegede", CSSValueTigrinyaErAbegede}, -#line 186 "CSSValueKeywords.gperf" - {"lower-hexadecimal", CSSValueLowerHexadecimal}, -#line 109 "CSSValueKeywords.gperf" - {"buttonhighlight", CSSValueButtonhighlight}, -#line 300 "CSSValueKeywords.gperf" - {"-webkit-grabbing", CSSValueWebkitGrabbing}, +#line 83 "CSSValueKeywords.gperf" + {"-webkit-body", CSSValueWebkitBody}, #line 126 "CSSValueKeywords.gperf" {"threedhighlight", CSSValueThreedhighlight}, -#line 216 "CSSValueKeywords.gperf" - {"ethiopic-halehame-gez", CSSValueEthiopicHalehameGez}, -#line 443 "CSSValueKeywords.gperf" - {"searchfield-results-decoration", CSSValueSearchfieldResultsDecoration}, -#line 438 "CSSValueKeywords.gperf" - {"sliderthumb-horizontal", CSSValueSliderthumbHorizontal}, -#line 176 "CSSValueKeywords.gperf" - {"decimal-leading-zero", CSSValueDecimalLeadingZero}, -#line 557 "CSSValueKeywords.gperf" - {"lightgoldenrodyellow", CSSValueLightgoldenrodyellow}, #line 382 "CSSValueKeywords.gperf" {"read-write-plaintext-only", CSSValueReadWritePlaintextOnly}, +#line 486 "CSSValueKeywords.gperf" + {"checked-checkbox", CSSValueCheckedCheckbox}, +#line 115 "CSSValueKeywords.gperf" + {"highlighttext", CSSValueHighlighttext}, #line 132 "CSSValueKeywords.gperf" {"-webkit-focus-ring-color", CSSValueWebkitFocusRingColor}, -#line 198 "CSSValueKeywords.gperf" - {"upper-hexadecimal", CSSValueUpperHexadecimal}, -#line 115 "CSSValueKeywords.gperf" - {"highlighttext", CSSValueHighlighttext}, +#line 565 "CSSValueKeywords.gperf" + {"lightgoldenrodyellow", CSSValueLightgoldenrodyellow}, +#line 213 "CSSValueKeywords.gperf" + {"cjk-earthly-branch", CSSValueCjkEarthlyBranch}, #line 65 "CSSValueKeywords.gperf" - {"-webkit-xxx-large", CSSValueWebkitXxxLarge} + {"-webkit-xxx-large", CSSValueWebkitXxxLarge}, +#line 487 "CSSValueKeywords.gperf" + {"unchecked-checkbox", CSSValueUncheckedCheckbox} }; static const short lookup[] = @@ -1489,1062 +1508,996 @@ 17, -1, 18, -1, -1, 19, -1, 20, -1, -1, 21, -1, 22, -1, -1, 23, -1, 24, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 25, -1, 26, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 27, -1, -1, 28, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 29, -1, -1, - -1, -1, -1, -1, 30, 31, -1, -1, -1, -1, - -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, - 33, -1, 34, -1, -1, 35, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 36, -1, -1, -1, -1, - 37, -1, 38, -1, -1, 39, -1, -1, -1, -1, + 25, -1, 26, -1, -1, -1, -1, -1, -1, 27, + -1, -1, 28, -1, -1, 29, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 30, -1, -1, + -1, -1, -1, -1, -1, 31, -1, -1, -1, -1, + -1, -1, 32, -1, -1, -1, -1, 33, -1, -1, + 34, -1, 35, -1, -1, 36, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, + 38, -1, -1, -1, -1, 39, -1, -1, -1, -1, 40, -1, -1, -1, -1, 41, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 43, -1, -1, - -1, -1, -1, -1, -1, 44, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 45, -1, -1, -1, -1, 46, -1, -1, -1, 47, - -1, -1, -1, -1, -1, 48, -1, -1, -1, -1, - 49, -1, -1, -1, -1, 50, -1, 51, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 52, -1, -1, -1, -1, 53, -1, 54, -1, -1, - 55, -1, -1, -1, -1, 56, -1, -1, -1, -1, - 57, -1, -1, -1, 58, -1, -1, -1, -1, -1, - 59, -1, -1, -1, -1, 60, -1, -1, -1, -1, - 61, -1, -1, -1, 62, 63, -1, -1, -1, -1, - -1, -1, -1, -1, 64, 65, -1, -1, -1, -1, - 66, -1, -1, -1, -1, -1, -1, 67, -1, -1, - 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 69, 70, -1, 71, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 72, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 73, -1, 74, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 75, - -1, -1, 76, -1, -1, -1, -1, 77, -1, 78, - -1, -1, 79, -1, -1, -1, -1, 80, -1, -1, - -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 82, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 83, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 84, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 85, -1, -1, 86, -1, -1, - 87, -1, 88, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 89, -1, -1, 90, -1, -1, -1, 91, - 92, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 93, -1, 94, -1, -1, - -1, -1, -1, -1, -1, 95, -1, -1, -1, -1, - 96, -1, -1, -1, -1, -1, -1, -1, -1, 97, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, - -1, -1, -1, -1, -1, 99, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 100, -1, -1, - 101, -1, -1, -1, -1, 102, -1, 103, -1, -1, - -1, -1, 104, -1, -1, -1, 105, 106, -1, -1, + -1, -1, 42, -1, -1, 43, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 44, 45, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 46, -1, 47, -1, -1, 48, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 49, -1, -1, -1, -1, + 50, -1, 51, -1, -1, 52, -1, -1, -1, 53, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 54, -1, -1, -1, 55, 56, -1, -1, -1, -1, + 57, -1, -1, -1, -1, 58, -1, -1, -1, -1, + 59, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 60, -1, -1, -1, -1, 61, -1, -1, -1, -1, + 62, -1, 63, -1, -1, 64, -1, -1, -1, -1, + -1, -1, 65, -1, -1, 66, -1, 67, -1, -1, + 68, -1, 69, -1, -1, -1, -1, 70, -1, -1, + 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 72, -1, -1, 73, -1, -1, -1, -1, + -1, -1, 74, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 75, -1, -1, -1, -1, + -1, -1, -1, -1, 76, 77, -1, 78, -1, -1, + -1, -1, -1, -1, 79, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 80, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 81, -1, 82, -1, -1, 83, -1, -1, + -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 85, -1, -1, -1, -1, -1, + 86, -1, -1, -1, -1, -1, -1, -1, -1, 87, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 88, -1, 89, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 90, -1, 91, -1, -1, + -1, -1, -1, -1, -1, 92, -1, -1, -1, -1, + 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, + 96, -1, -1, -1, -1, 97, -1, 98, -1, -1, + -1, -1, 99, -1, -1, -1, -1, 100, -1, -1, + 101, -1, 102, -1, -1, 103, -1, -1, -1, -1, + -1, -1, -1, -1, 104, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 105, -1, 106, -1, -1, 107, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 109, -1, -1, 110, -1, 111, -1, -1, - 112, -1, -1, -1, -1, 113, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 114, -1, -1, -1, -1, -1, -1, 115, -1, -1, - -1, -1, 116, -1, -1, -1, -1, -1, -1, -1, - 117, -1, -1, -1, -1, -1, -1, 118, -1, -1, - -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 120, -1, -1, - 121, -1, -1, -1, -1, -1, -1, -1, -1, 122, - 123, -1, -1, -1, 124, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 125, -1, -1, -1, -1, - -1, -1, 126, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 127, -1, -1, -1, -1, 128, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 129, -1, -1, + 109, -1, 110, -1, -1, -1, -1, 111, -1, -1, + -1, -1, 112, -1, -1, -1, -1, -1, -1, -1, + 113, -1, -1, -1, -1, -1, -1, 114, -1, -1, + -1, -1, -1, -1, -1, 115, -1, -1, -1, 116, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 117, -1, -1, + 118, -1, -1, -1, -1, -1, -1, 119, -1, -1, + -1, -1, 120, -1, -1, 121, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 122, -1, 123, -1, -1, 124, -1, 125, -1, -1, + 126, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 127, -1, 128, -1, -1, -1, -1, 129, -1, -1, 130, -1, -1, -1, -1, 131, -1, -1, -1, -1, - 132, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 133, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 134, -1, -1, -1, -1, 135, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 136, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 137, -1, -1, -1, -1, - 138, -1, 139, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 140, -1, -1, 141, -1, -1, -1, -1, - 142, -1, -1, -1, -1, 143, -1, 144, -1, -1, - -1, -1, 145, -1, -1, 146, -1, 147, -1, -1, - 148, -1, -1, -1, -1, 149, -1, 150, -1, 151, - 152, -1, -1, -1, -1, 153, -1, -1, -1, -1, - 154, -1, -1, -1, -1, 155, -1, -1, -1, -1, - 156, -1, 157, -1, -1, 158, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 159, -1, -1, -1, -1, + -1, -1, 132, -1, -1, 133, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 134, -1, -1, -1, -1, + 135, -1, 136, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 137, -1, -1, 138, -1, -1, -1, 139, + 140, -1, -1, -1, -1, 141, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 142, -1, 143, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 144, -1, -1, + 145, -1, -1, -1, -1, 146, -1, -1, -1, -1, + 147, -1, -1, -1, -1, 148, -1, -1, -1, -1, + 149, -1, -1, -1, -1, 150, -1, -1, -1, 151, + -1, -1, -1, -1, -1, 152, -1, -1, -1, -1, + 153, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 154, -1, -1, -1, -1, + -1, -1, 155, -1, 156, 157, -1, -1, -1, -1, + 158, -1, -1, -1, -1, 159, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 160, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 161, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 162, -1, -1, -1, -1, - 163, -1, -1, -1, -1, 164, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 165, -1, 166, - 167, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 168, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 169, -1, -1, -1, -1, - 170, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 171, -1, -1, -1, -1, -1, - 172, -1, 173, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 174, -1, 175, -1, -1, -1, -1, -1, -1, -1, - 176, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 177, -1, 178, -1, -1, -1, 179, -1, -1, -1, - 180, -1, -1, -1, -1, 181, -1, -1, -1, -1, - 182, -1, 183, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 184, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 185, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 186, -1, 187, -1, -1, - -1, -1, -1, -1, -1, 188, -1, 189, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 190, -1, -1, - -1, -1, -1, -1, -1, 191, -1, 192, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 193, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 194, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 195, -1, -1, -1, -1, 196, -1, -1, -1, -1, + 161, -1, -1, -1, -1, -1, -1, -1, -1, 162, + -1, -1, -1, -1, -1, 163, -1, 164, -1, -1, + 165, -1, -1, -1, -1, -1, -1, 166, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 167, -1, -1, + 168, -1, 169, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 170, -1, -1, + 171, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 172, -1, -1, -1, -1, -1, -1, 173, -1, -1, + 174, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 175, -1, -1, -1, -1, 176, -1, 177, -1, -1, + 178, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 179, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 180, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 181, -1, 182, -1, -1, + -1, -1, 183, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 184, -1, -1, + -1, -1, -1, -1, -1, 185, -1, -1, -1, -1, + -1, -1, 186, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 187, -1, -1, -1, -1, -1, -1, 188, -1, -1, + 189, -1, -1, -1, -1, 190, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 191, -1, -1, + 192, -1, 193, -1, -1, 194, -1, -1, -1, -1, + 195, -1, -1, -1, -1, -1, -1, 196, -1, -1, -1, -1, -1, -1, -1, -1, -1, 197, -1, -1, - 198, -1, 199, -1, -1, 200, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 201, -1, -1, - 202, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 203, -1, -1, 204, -1, 205, -1, -1, - 206, -1, 207, -1, -1, -1, -1, 208, -1, -1, - -1, -1, 209, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 210, -1, -1, 211, -1, 212, -1, -1, - -1, -1, 213, -1, -1, -1, -1, 214, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 215, -1, -1, 216, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 217, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 218, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, - 220, -1, 221, -1, -1, -1, -1, 222, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 223, -1, -1, -1, -1, -1, -1, 224, -1, -1, - 225, -1, -1, -1, 226, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 227, -1, 228, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 229, -1, -1, - -1, -1, -1, -1, 230, -1, -1, 231, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 232, -1, 233, - 234, -1, -1, -1, -1, -1, 235, 236, -1, -1, - -1, -1, -1, -1, -1, 237, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 238, -1, -1, -1, -1, - 239, -1, 240, -1, -1, 241, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 242, -1, -1, -1, -1, - 243, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 244, -1, -1, -1, -1, 245, -1, 246, -1, -1, - 247, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 248, - -1, -1, -1, -1, 249, -1, -1, -1, -1, -1, - 250, -1, -1, -1, -1, -1, -1, 251, -1, -1, - -1, -1, 252, -1, -1, 253, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 254, -1, -1, -1, -1, - 255, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 256, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 257, -1, 258, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 259, -1, 260, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 261, -1, -1, -1, -1, - -1, -1, -1, -1, 262, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 263, -1, -1, - 264, -1, 265, -1, -1, 266, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 267, -1, 268, -1, 269, + 198, -1, 199, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 200, -1, 201, -1, -1, + 202, -1, -1, -1, -1, -1, -1, 203, -1, -1, + -1, -1, 204, -1, -1, -1, -1, -1, -1, 205, + -1, -1, -1, -1, -1, 206, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 207, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 208, -1, -1, -1, -1, + -1, -1, 209, -1, -1, 210, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 211, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 212, -1, -1, 213, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 214, -1, -1, -1, -1, + 215, -1, -1, -1, -1, -1, -1, 216, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 217, -1, -1, -1, -1, -1, -1, 218, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 219, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 220, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 221, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 222, -1, -1, 223, -1, -1, -1, -1, + 224, -1, 225, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 226, -1, 227, -1, -1, + -1, -1, 228, -1, -1, -1, -1, -1, -1, -1, + 229, -1, -1, -1, -1, -1, -1, 230, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 231, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 232, -1, -1, -1, -1, + -1, -1, 233, -1, -1, 234, -1, -1, -1, 235, + -1, -1, -1, -1, -1, 236, -1, 237, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 238, -1, -1, -1, -1, 239, -1, 240, -1, 241, + -1, -1, -1, -1, -1, 242, -1, 243, -1, -1, + -1, -1, 244, -1, 245, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 246, -1, -1, -1, -1, -1, -1, 247, -1, -1, + -1, -1, -1, -1, -1, 248, -1, -1, -1, -1, + 249, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 250, -1, 251, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 252, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 253, -1, 254, 255, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 256, 257, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 258, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 259, -1, -1, -1, -1, -1, -1, -1, + 260, -1, -1, -1, -1, 261, -1, -1, -1, 262, + -1, -1, -1, -1, -1, 263, -1, -1, -1, -1, + -1, -1, 264, -1, -1, -1, -1, 265, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 266, -1, -1, + -1, -1, -1, -1, -1, 267, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 268, -1, -1, -1, -1, + -1, -1, 269, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 270, -1, -1, - 271, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 272, -1, -1, - -1, -1, -1, -1, -1, 273, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 274, -1, -1, -1, 275, - 276, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 277, -1, -1, 278, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 279, -1, -1, -1, -1, - -1, -1, 280, -1, -1, -1, -1, -1, -1, -1, - 281, -1, -1, -1, -1, -1, -1, -1, -1, 282, - -1, -1, -1, -1, -1, 283, -1, 284, -1, 285, - -1, -1, 286, -1, -1, 287, -1, -1, -1, -1, - 288, -1, -1, -1, -1, 289, -1, -1, -1, -1, - 290, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 291, -1, -1, -1, -1, 292, -1, 293, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 294, -1, -1, 295, -1, 296, -1, -1, - -1, -1, 297, -1, 298, -1, -1, -1, -1, -1, - 299, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 300, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 301, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 302, -1, -1, -1, -1, -1, -1, -1, - 303, -1, 304, -1, -1, -1, -1, 305, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 306, -1, -1, -1, -1, - 307, -1, 308, -1, -1, 309, -1, -1, -1, -1, - 310, -1, -1, -1, -1, 311, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 312, -1, -1, -1, -1, 313, -1, 314, -1, -1, - 315, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 316, -1, -1, -1, -1, -1, -1, 317, -1, -1, - -1, -1, 318, -1, -1, -1, -1, 319, -1, -1, - 320, -1, -1, -1, -1, 321, -1, -1, -1, -1, - -1, -1, 322, -1, -1, 323, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 324, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 325, -1, 326, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 327, -1, -1, -1, -1, 328, -1, -1, -1, -1, - 329, -1, -1, -1, -1, 330, -1, -1, -1, -1, - 331, -1, -1, -1, -1, 332, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 333, -1, -1, -1, -1, - 334, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 335, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 336, -1, -1, -1, - -1, -1, -1, -1, -1, 337, -1, 338, -1, -1, - 339, -1, -1, -1, -1, -1, -1, 340, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 341, -1, -1, + -1, -1, -1, -1, -1, 271, -1, -1, -1, -1, + 272, -1, 273, -1, -1, 274, -1, -1, -1, -1, + 275, -1, -1, -1, 276, -1, -1, -1, -1, -1, + -1, -1, 277, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 278, -1, 279, + 280, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 281, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 282, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 283, -1, -1, -1, -1, + 284, -1, 285, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 286, -1, 287, -1, -1, 288, -1, -1, -1, -1, + -1, -1, 289, -1, -1, -1, -1, 290, -1, -1, + -1, -1, -1, -1, -1, 291, -1, 292, -1, -1, + -1, -1, -1, -1, -1, 293, -1, -1, -1, -1, + 294, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 295, -1, 296, -1, -1, + -1, -1, -1, -1, -1, 297, -1, 298, -1, -1, + 299, -1, 300, -1, -1, 301, -1, 302, -1, -1, + -1, -1, 303, -1, -1, -1, -1, -1, -1, -1, + 304, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 305, -1, -1, -1, -1, -1, -1, 306, -1, -1, + 307, -1, 308, -1, -1, -1, -1, -1, -1, -1, + 309, -1, -1, -1, -1, -1, -1, 310, -1, -1, + -1, -1, -1, -1, -1, 311, -1, -1, -1, -1, + 312, -1, 313, -1, -1, 314, -1, -1, -1, -1, + 315, -1, -1, -1, -1, 316, -1, 317, -1, -1, + 318, -1, -1, -1, -1, 319, -1, -1, -1, -1, + 320, -1, -1, -1, -1, 321, -1, 322, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 323, -1, -1, 324, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 325, + -1, 326, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 327, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 328, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 329, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 330, -1, -1, -1, -1, + 331, -1, -1, -1, -1, 332, -1, 333, -1, 334, + -1, 335, -1, -1, -1, 336, -1, -1, -1, -1, + -1, -1, 337, -1, -1, -1, -1, -1, -1, 338, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 339, -1, -1, + -1, 340, -1, -1, -1, 341, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 342, -1, -1, -1, -1, - 343, 344, -1, -1, -1, -1, -1, 345, -1, -1, - -1, -1, 346, -1, -1, -1, -1, 347, -1, -1, - -1, -1, -1, -1, -1, 348, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 349, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 350, -1, -1, -1, -1, - -1, -1, 351, -1, 352, -1, -1, -1, -1, -1, - 353, -1, 354, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 355, -1, -1, - -1, 356, -1, -1, -1, -1, -1, 357, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 358, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 359, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 360, -1, -1, -1, -1, - 361, -1, 362, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 363, -1, -1, 364, -1, -1, -1, -1, - 365, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 366, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 367, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 368, -1, -1, -1, -1, 369, -1, -1, - -1, -1, -1, -1, 370, -1, -1, -1, -1, 371, - -1, -1, 372, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 373, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 374, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 375, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 376, -1, 377, -1, -1, -1, -1, -1, -1, -1, + 343, -1, -1, -1, -1, 344, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 345, -1, + 346, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 347, -1, -1, -1, -1, -1, -1, 348, -1, -1, + -1, -1, -1, -1, -1, 349, -1, -1, -1, 350, + -1, -1, 351, -1, -1, -1, -1, 352, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 353, -1, -1, -1, -1, -1, -1, 354, -1, 355, + -1, -1, -1, -1, -1, -1, -1, 356, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 357, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 358, -1, -1, -1, -1, -1, -1, 359, -1, -1, + 360, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 361, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 362, -1, 363, -1, -1, -1, -1, -1, + -1, -1, 364, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 365, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 366, -1, -1, -1, -1, + 367, -1, 368, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 369, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 370, -1, 371, -1, -1, -1, -1, -1, + 372, -1, -1, -1, -1, -1, -1, 373, -1, -1, + -1, -1, 374, -1, 375, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 376, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 377, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 378, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 379, -1, -1, -1, -1, -1, -1, -1, - 380, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 381, -1, -1, -1, -1, -1, -1, -1, - 382, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 383, -1, -1, -1, -1, 384, -1, -1, - -1, -1, 385, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 386, -1, -1, -1, -1, 387, -1, -1, - 388, -1, 389, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 390, -1, -1, 391, -1, 392, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 393, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 394, -1, -1, -1, -1, 395, -1, -1, - 396, -1, 397, -1, -1, 398, -1, 399, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 380, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 381, -1, 382, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 383, -1, -1, + -1, -1, -1, -1, -1, 384, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 385, -1, -1, -1, -1, -1, -1, 386, -1, -1, + 387, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 388, -1, -1, -1, 389, -1, -1, 390, -1, -1, + -1, -1, -1, -1, 391, -1, -1, -1, -1, -1, + 392, -1, -1, -1, -1, -1, -1, 393, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 394, -1, -1, -1, -1, -1, -1, -1, + 395, -1, 396, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 397, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 398, -1, -1, -1, 399, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 400, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 401, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 402, -1, -1, - 403, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 404, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 405, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 406, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 407, -1, -1, -1, -1, -1, -1, 408, - 409, -1, -1, -1, 410, 411, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 412, -1, 413, -1, -1, - 414, -1, -1, -1, -1, 415, -1, 416, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 417, -1, 418, + -1, -1, 401, -1, -1, -1, -1, 402, -1, -1, + 403, -1, -1, -1, -1, -1, -1, 404, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 405, -1, -1, + -1, -1, -1, -1, -1, 406, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 407, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 408, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 409, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 410, -1, -1, -1, -1, + -1, -1, 411, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 412, -1, -1, -1, 413, + -1, -1, 414, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 415, -1, -1, 416, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 417, -1, -1, -1, -1, 418, -1, -1, -1, -1, 419, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 420, 421, -1, -1, -1, -1, - -1, -1, 422, -1, -1, -1, -1, -1, -1, -1, + 420, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 421, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 422, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 423, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 424, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 425, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 426, -1, -1, -1, -1, - -1, -1, -1, -1, 427, 428, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 429, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 430, -1, 431, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 432, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 433, -1, -1, -1, -1, -1, -1, 434, -1, -1, - -1, -1, -1, -1, -1, 435, -1, 436, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 437, -1, 438, -1, -1, -1, -1, -1, -1, 439, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 440, -1, -1, -1, 441, -1, -1, -1, -1, - 442, -1, -1, -1, -1, -1, -1, 443, -1, -1, - -1, -1, 444, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 445, -1, -1, -1, -1, -1, - 446, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 447, -1, -1, 448, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 449, -1, -1, - -1, -1, -1, -1, -1, 450, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 424, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 425, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 426, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 427, 428, -1, -1, -1, + -1, -1, -1, -1, 429, -1, -1, -1, -1, -1, + 430, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 432, -1, 433, -1, -1, + -1, -1, -1, -1, -1, 434, -1, -1, -1, -1, + -1, -1, 435, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 436, -1, 437, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 438, -1, -1, -1, -1, 439, -1, -1, + -1, -1, 440, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 441, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 442, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 443, -1, 444, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 445, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 446, -1, -1, -1, -1, + -1, -1, 447, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 448, + -1, -1, 449, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 450, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 451, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 452, -1, 453, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 454, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 455, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 456, -1, -1, - 457, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 458, -1, -1, -1, -1, - -1, -1, -1, -1, 459, -1, -1, -1, -1, -1, - -1, -1, 460, -1, -1, 461, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 462, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 463, -1, -1, - -1, -1, 464, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 465, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 466, -1, -1, -1, -1, -1, -1, 467, -1, -1, - -1, -1, 468, -1, -1, 469, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 470, -1, 471, -1, -1, - -1, -1, 472, -1, -1, -1, -1, -1, -1, -1, - 473, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 474, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 475, - -1, -1, 476, -1, -1, -1, -1, -1, -1, -1, - 477, -1, -1, -1, -1, 478, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 479, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 480, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 481, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 482, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 483, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 484, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 485, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 452, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 453, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 454, -1, -1, 455, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 456, -1, -1, -1, -1, + 457, -1, -1, -1, -1, 458, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 459, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 460, -1, -1, -1, -1, -1, -1, 461, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 462, -1, -1, -1, 463, -1, -1, 464, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 465, -1, 466, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 467, -1, 468, -1, -1, 469, -1, 470, -1, -1, + -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 472, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 473, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 474, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 475, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 476, -1, -1, 477, -1, -1, + -1, -1, 478, -1, -1, -1, -1, 479, -1, -1, + 480, 481, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 482, -1, -1, 483, -1, -1, -1, -1, + 484, -1, 485, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 486, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 487, 488, -1, 489, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, - -1, -1, 491, -1, -1, -1, -1, 492, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 493, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 494, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 495, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 496, -1, -1, 497, -1, 498, -1, -1, - -1, -1, 499, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 500, -1, 501, -1, -1, -1, -1, -1, -1, 502, - -1, -1, -1, -1, 503, -1, -1, -1, -1, -1, - 504, -1, 505, -1, -1, -1, -1, 506, -1, -1, - -1, -1, 507, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 508, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 509, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 510, -1, -1, -1, -1, 511, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 512, - 513, -1, -1, -1, -1, 514, -1, -1, -1, 515, + -1, -1, -1, -1, -1, 487, -1, -1, -1, -1, + 488, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 489, -1, -1, + -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 491, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 492, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 493, -1, 494, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 495, -1, 496, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 497, -1, -1, + -1, -1, -1, -1, -1, 498, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 499, -1, -1, -1, -1, -1, -1, 500, -1, -1, + 501, -1, -1, -1, -1, 502, -1, -1, -1, -1, + 503, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 504, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 505, -1, -1, -1, -1, -1, -1, -1, + 506, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 507, -1, -1, -1, -1, 508, -1, -1, + -1, -1, 509, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 510, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 511, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 512, -1, -1, + -1, -1, 513, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 514, -1, 515, -1, -1, -1, -1, 516, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 517, -1, -1, -1, -1, 518, -1, -1, -1, -1, - 519, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 520, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 521, -1, -1, -1, -1, - 522, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 523, -1, -1, 524, -1, -1, - 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 526, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 517, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 518, -1, -1, -1, -1, -1, + 519, -1, -1, -1, 520, -1, -1, 521, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 522, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 523, -1, -1, -1, -1, 524, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 526, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 527, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 528, -1, -1, - -1, -1, 529, -1, -1, -1, -1, 530, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 531, -1, -1, -1, -1, -1, - 532, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 528, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 529, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 530, -1, -1, + -1, -1, -1, -1, -1, 531, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 532, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 534, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 535, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 536, -1, -1, -1, -1, -1, - -1, -1, 537, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 538, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 539, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 540, -1, -1, - -1, -1, -1, -1, -1, 541, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 542, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 543, -1, -1, - -1, -1, -1, -1, -1, 544, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 545, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 535, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 536, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 537, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 538, -1, -1, + 539, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 540, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 541, -1, -1, -1, -1, -1, -1, -1, + 542, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 543, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 544, -1, -1, + -1, -1, 545, -1, -1, -1, -1, -1, -1, -1, -1, -1, 546, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 547, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 548, -1, 549, -1, -1, - -1, -1, -1, -1, 550, 551, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 552, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 553, - -1, -1, -1, -1, -1, 554, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 547, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 548, -1, 549, -1, -1, 550, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 551, -1, -1, -1, -1, + 552, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 553, -1, -1, -1, -1, + 554, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 555, -1, -1, -1, -1, - 556, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 557, -1, -1, -1, -1, - 558, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 559, -1, -1, -1, -1, - -1, -1, -1, -1, 560, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 561, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 556, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 557, -1, -1, + -1, -1, 558, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 559, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 560, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 561, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 562, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 563, -1, -1, -1, -1, -1, -1, -1, - 564, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 565, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 566, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 567, -1, -1, -1, -1, - 568, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 569, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 570, -1, 571, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 563, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 564, -1, -1, -1, 565, -1, -1, -1, -1, -1, + 566, -1, -1, -1, -1, 567, -1, -1, -1, -1, + -1, 568, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 569, + -1, -1, -1, -1, -1, 570, -1, -1, -1, -1, + -1, -1, 571, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 573, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 574, -1, -1, -1, -1, 575, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 576, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 573, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 574, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 576, -1, -1, 577, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 578, -1, -1, -1, -1, 579, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 580, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 581, -1, -1, -1, -1, 582, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 583, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 584, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 585, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 586, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 587, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 588, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 589, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 590, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 591, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 592, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 593, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 579, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 580, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 581, -1, -1, + -1, -1, 582, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 583, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 584, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 585, -1, -1, -1, -1, + 586, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 587, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 588, -1, -1, -1, -1, + 589, -1, -1, -1, -1, 590, -1, -1, -1, -1, + -1, -1, 591, -1, -1, -1, -1, -1, -1, -1, + 592, -1, -1, -1, -1, -1, -1, 593, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 594, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 595, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 596, -1, -1, 597, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 598, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 599, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 600, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 601, 602, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 603, -1, -1, + 595, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 596, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 597, -1, -1, + 598, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 599, + 600, -1, -1, -1, -1, -1, -1, 601, -1, -1, + -1, -1, -1, -1, -1, 602, -1, -1, -1, -1, + -1, -1, 603, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 604, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 605, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 606, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 605, -1, -1, -1, -1, -1, -1, 606, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 607, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 608, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 609, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 610, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 611, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 612, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 613, -1, -1, - 614, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 615, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 616, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 617, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 618, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 608, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 609, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 610, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 611, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 612, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 613, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 614, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 615, -1, -1, -1, 616, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 617, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 618, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 619, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 620, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 621, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 622, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 623, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 624, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 625, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 626, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 620, -1, -1, + -1, -1, 621, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 622, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 623, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 624, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 625, -1, -1, -1, -1, + 626, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 627, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 628, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 629, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 629, -1, -1, -1, -1, -1, -1, -1, -1, -1, 630, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 631 + 631, -1, -1, -1, 632, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 634, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 635, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 636, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, 637, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 638, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 639 }; if (len <= MAX_WORD_LENGTH && len >= MIN_WORD_LENGTH) @@ -2566,7 +2519,7 @@ } return 0; } -#line 652 "CSSValueKeywords.gperf" +#line 660 "CSSValueKeywords.gperf" static const char * const valueList[] = { "", @@ -3032,6 +2985,14 @@ "painted", "fill", "stroke", +"latched-button-down", +"latched-button-up", +"latched-button-stuck", +"link", +"checked-checkbox", +"unchecked-checkbox", +"weak", +"strong", "antialiased", "subpixel-antialiased", "optimizespeed", diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/CSSValueKeywords.h --- a/WebCore/generated/CSSValueKeywords.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/CSSValueKeywords.h Mon Oct 04 01:32:07 2010 +0300 @@ -466,177 +466,185 @@ const int CSSValuePainted = 460; const int CSSValueFill = 461; const int CSSValueStroke = 462; -const int CSSValueAntialiased = 463; -const int CSSValueSubpixelAntialiased = 464; -const int CSSValueOptimizespeed = 465; -const int CSSValueOptimizelegibility = 466; -const int CSSValueGeometricprecision = 467; -const int CSSValueSrgb = 468; -const int CSSValueFloating = 469; -const int CSSValueFullscreen = 470; -const int CSSValueMaximized = 471; -const int CSSValueMinimized = 472; -const int CSSValueWindowed = 473; -const int CSSValueManual = 474; -const int CSSValueAliceblue = 475; -const int CSSValueAntiquewhite = 476; -const int CSSValueAquamarine = 477; -const int CSSValueAzure = 478; -const int CSSValueBeige = 479; -const int CSSValueBisque = 480; -const int CSSValueBlanchedalmond = 481; -const int CSSValueBlueviolet = 482; -const int CSSValueBrown = 483; -const int CSSValueBurlywood = 484; -const int CSSValueCadetblue = 485; -const int CSSValueChartreuse = 486; -const int CSSValueChocolate = 487; -const int CSSValueCoral = 488; -const int CSSValueCornflowerblue = 489; -const int CSSValueCornsilk = 490; -const int CSSValueCrimson = 491; -const int CSSValueCyan = 492; -const int CSSValueDarkblue = 493; -const int CSSValueDarkcyan = 494; -const int CSSValueDarkgoldenrod = 495; -const int CSSValueDarkgray = 496; -const int CSSValueDarkgreen = 497; -const int CSSValueDarkgrey = 498; -const int CSSValueDarkkhaki = 499; -const int CSSValueDarkmagenta = 500; -const int CSSValueDarkolivegreen = 501; -const int CSSValueDarkorange = 502; -const int CSSValueDarkorchid = 503; -const int CSSValueDarkred = 504; -const int CSSValueDarksalmon = 505; -const int CSSValueDarkseagreen = 506; -const int CSSValueDarkslateblue = 507; -const int CSSValueDarkslategray = 508; -const int CSSValueDarkslategrey = 509; -const int CSSValueDarkturquoise = 510; -const int CSSValueDarkviolet = 511; -const int CSSValueDeeppink = 512; -const int CSSValueDeepskyblue = 513; -const int CSSValueDimgray = 514; -const int CSSValueDimgrey = 515; -const int CSSValueDodgerblue = 516; -const int CSSValueFirebrick = 517; -const int CSSValueFloralwhite = 518; -const int CSSValueForestgreen = 519; -const int CSSValueGainsboro = 520; -const int CSSValueGhostwhite = 521; -const int CSSValueGold = 522; -const int CSSValueGoldenrod = 523; -const int CSSValueGreenyellow = 524; -const int CSSValueHoneydew = 525; -const int CSSValueHotpink = 526; -const int CSSValueIndianred = 527; -const int CSSValueIndigo = 528; -const int CSSValueIvory = 529; -const int CSSValueKhaki = 530; -const int CSSValueLavender = 531; -const int CSSValueLavenderblush = 532; -const int CSSValueLawngreen = 533; -const int CSSValueLemonchiffon = 534; -const int CSSValueLightblue = 535; -const int CSSValueLightcoral = 536; -const int CSSValueLightcyan = 537; -const int CSSValueLightgoldenrodyellow = 538; -const int CSSValueLightgray = 539; -const int CSSValueLightgreen = 540; -const int CSSValueLightgrey = 541; -const int CSSValueLightpink = 542; -const int CSSValueLightsalmon = 543; -const int CSSValueLightseagreen = 544; -const int CSSValueLightskyblue = 545; -const int CSSValueLightslategray = 546; -const int CSSValueLightslategrey = 547; -const int CSSValueLightsteelblue = 548; -const int CSSValueLightyellow = 549; -const int CSSValueLimegreen = 550; -const int CSSValueLinen = 551; -const int CSSValueMagenta = 552; -const int CSSValueMediumaquamarine = 553; -const int CSSValueMediumblue = 554; -const int CSSValueMediumorchid = 555; -const int CSSValueMediumpurple = 556; -const int CSSValueMediumseagreen = 557; -const int CSSValueMediumslateblue = 558; -const int CSSValueMediumspringgreen = 559; -const int CSSValueMediumturquoise = 560; -const int CSSValueMediumvioletred = 561; -const int CSSValueMidnightblue = 562; -const int CSSValueMintcream = 563; -const int CSSValueMistyrose = 564; -const int CSSValueMoccasin = 565; -const int CSSValueNavajowhite = 566; -const int CSSValueOldlace = 567; -const int CSSValueOlivedrab = 568; -const int CSSValueOrangered = 569; -const int CSSValueOrchid = 570; -const int CSSValuePalegoldenrod = 571; -const int CSSValuePalegreen = 572; -const int CSSValuePaleturquoise = 573; -const int CSSValuePalevioletred = 574; -const int CSSValuePapayawhip = 575; -const int CSSValuePeachpuff = 576; -const int CSSValuePeru = 577; -const int CSSValuePink = 578; -const int CSSValuePlum = 579; -const int CSSValuePowderblue = 580; -const int CSSValueRosybrown = 581; -const int CSSValueRoyalblue = 582; -const int CSSValueSaddlebrown = 583; -const int CSSValueSalmon = 584; -const int CSSValueSandybrown = 585; -const int CSSValueSeagreen = 586; -const int CSSValueSeashell = 587; -const int CSSValueSienna = 588; -const int CSSValueSkyblue = 589; -const int CSSValueSlateblue = 590; -const int CSSValueSlategray = 591; -const int CSSValueSlategrey = 592; -const int CSSValueSnow = 593; -const int CSSValueSpringgreen = 594; -const int CSSValueSteelblue = 595; -const int CSSValueTan = 596; -const int CSSValueThistle = 597; -const int CSSValueTomato = 598; -const int CSSValueTurquoise = 599; -const int CSSValueViolet = 600; -const int CSSValueWheat = 601; -const int CSSValueWhitesmoke = 602; -const int CSSValueYellowgreen = 603; -const int CSSValueNonzero = 604; -const int CSSValueEvenodd = 605; -const int CSSValueAccumulate = 606; -const int CSSValueNew = 607; -const int CSSValueLinearrgb = 608; -const int CSSValueOptimizequality = 609; -const int CSSValueCrispedges = 610; -const int CSSValueButt = 611; -const int CSSValueMiter = 612; -const int CSSValueBevel = 613; -const int CSSValueBeforeEdge = 614; -const int CSSValueAfterEdge = 615; -const int CSSValueCentral = 616; -const int CSSValueTextBeforeEdge = 617; -const int CSSValueTextAfterEdge = 618; -const int CSSValueIdeographic = 619; -const int CSSValueAlphabetic = 620; -const int CSSValueHanging = 621; -const int CSSValueMathematical = 622; -const int CSSValueUseScript = 623; -const int CSSValueNoChange = 624; -const int CSSValueResetSize = 625; -const int CSSValueNonScalingStroke = 626; -const int CSSValueLrTb = 627; -const int CSSValueRlTb = 628; -const int CSSValueTbRl = 629; -const int CSSValueLr = 630; -const int CSSValueRl = 631; -const int CSSValueTb = 632; -const int numCSSValueKeywords = 633; +const int CSSValueLatchedButtonDown = 463; +const int CSSValueLatchedButtonUp = 464; +const int CSSValueLatchedButtonStuck = 465; +const int CSSValueLink = 466; +const int CSSValueCheckedCheckbox = 467; +const int CSSValueUncheckedCheckbox = 468; +const int CSSValueWeak = 469; +const int CSSValueStrong = 470; +const int CSSValueAntialiased = 471; +const int CSSValueSubpixelAntialiased = 472; +const int CSSValueOptimizespeed = 473; +const int CSSValueOptimizelegibility = 474; +const int CSSValueGeometricprecision = 475; +const int CSSValueSrgb = 476; +const int CSSValueFloating = 477; +const int CSSValueFullscreen = 478; +const int CSSValueMaximized = 479; +const int CSSValueMinimized = 480; +const int CSSValueWindowed = 481; +const int CSSValueManual = 482; +const int CSSValueAliceblue = 483; +const int CSSValueAntiquewhite = 484; +const int CSSValueAquamarine = 485; +const int CSSValueAzure = 486; +const int CSSValueBeige = 487; +const int CSSValueBisque = 488; +const int CSSValueBlanchedalmond = 489; +const int CSSValueBlueviolet = 490; +const int CSSValueBrown = 491; +const int CSSValueBurlywood = 492; +const int CSSValueCadetblue = 493; +const int CSSValueChartreuse = 494; +const int CSSValueChocolate = 495; +const int CSSValueCoral = 496; +const int CSSValueCornflowerblue = 497; +const int CSSValueCornsilk = 498; +const int CSSValueCrimson = 499; +const int CSSValueCyan = 500; +const int CSSValueDarkblue = 501; +const int CSSValueDarkcyan = 502; +const int CSSValueDarkgoldenrod = 503; +const int CSSValueDarkgray = 504; +const int CSSValueDarkgreen = 505; +const int CSSValueDarkgrey = 506; +const int CSSValueDarkkhaki = 507; +const int CSSValueDarkmagenta = 508; +const int CSSValueDarkolivegreen = 509; +const int CSSValueDarkorange = 510; +const int CSSValueDarkorchid = 511; +const int CSSValueDarkred = 512; +const int CSSValueDarksalmon = 513; +const int CSSValueDarkseagreen = 514; +const int CSSValueDarkslateblue = 515; +const int CSSValueDarkslategray = 516; +const int CSSValueDarkslategrey = 517; +const int CSSValueDarkturquoise = 518; +const int CSSValueDarkviolet = 519; +const int CSSValueDeeppink = 520; +const int CSSValueDeepskyblue = 521; +const int CSSValueDimgray = 522; +const int CSSValueDimgrey = 523; +const int CSSValueDodgerblue = 524; +const int CSSValueFirebrick = 525; +const int CSSValueFloralwhite = 526; +const int CSSValueForestgreen = 527; +const int CSSValueGainsboro = 528; +const int CSSValueGhostwhite = 529; +const int CSSValueGold = 530; +const int CSSValueGoldenrod = 531; +const int CSSValueGreenyellow = 532; +const int CSSValueHoneydew = 533; +const int CSSValueHotpink = 534; +const int CSSValueIndianred = 535; +const int CSSValueIndigo = 536; +const int CSSValueIvory = 537; +const int CSSValueKhaki = 538; +const int CSSValueLavender = 539; +const int CSSValueLavenderblush = 540; +const int CSSValueLawngreen = 541; +const int CSSValueLemonchiffon = 542; +const int CSSValueLightblue = 543; +const int CSSValueLightcoral = 544; +const int CSSValueLightcyan = 545; +const int CSSValueLightgoldenrodyellow = 546; +const int CSSValueLightgray = 547; +const int CSSValueLightgreen = 548; +const int CSSValueLightgrey = 549; +const int CSSValueLightpink = 550; +const int CSSValueLightsalmon = 551; +const int CSSValueLightseagreen = 552; +const int CSSValueLightskyblue = 553; +const int CSSValueLightslategray = 554; +const int CSSValueLightslategrey = 555; +const int CSSValueLightsteelblue = 556; +const int CSSValueLightyellow = 557; +const int CSSValueLimegreen = 558; +const int CSSValueLinen = 559; +const int CSSValueMagenta = 560; +const int CSSValueMediumaquamarine = 561; +const int CSSValueMediumblue = 562; +const int CSSValueMediumorchid = 563; +const int CSSValueMediumpurple = 564; +const int CSSValueMediumseagreen = 565; +const int CSSValueMediumslateblue = 566; +const int CSSValueMediumspringgreen = 567; +const int CSSValueMediumturquoise = 568; +const int CSSValueMediumvioletred = 569; +const int CSSValueMidnightblue = 570; +const int CSSValueMintcream = 571; +const int CSSValueMistyrose = 572; +const int CSSValueMoccasin = 573; +const int CSSValueNavajowhite = 574; +const int CSSValueOldlace = 575; +const int CSSValueOlivedrab = 576; +const int CSSValueOrangered = 577; +const int CSSValueOrchid = 578; +const int CSSValuePalegoldenrod = 579; +const int CSSValuePalegreen = 580; +const int CSSValuePaleturquoise = 581; +const int CSSValuePalevioletred = 582; +const int CSSValuePapayawhip = 583; +const int CSSValuePeachpuff = 584; +const int CSSValuePeru = 585; +const int CSSValuePink = 586; +const int CSSValuePlum = 587; +const int CSSValuePowderblue = 588; +const int CSSValueRosybrown = 589; +const int CSSValueRoyalblue = 590; +const int CSSValueSaddlebrown = 591; +const int CSSValueSalmon = 592; +const int CSSValueSandybrown = 593; +const int CSSValueSeagreen = 594; +const int CSSValueSeashell = 595; +const int CSSValueSienna = 596; +const int CSSValueSkyblue = 597; +const int CSSValueSlateblue = 598; +const int CSSValueSlategray = 599; +const int CSSValueSlategrey = 600; +const int CSSValueSnow = 601; +const int CSSValueSpringgreen = 602; +const int CSSValueSteelblue = 603; +const int CSSValueTan = 604; +const int CSSValueThistle = 605; +const int CSSValueTomato = 606; +const int CSSValueTurquoise = 607; +const int CSSValueViolet = 608; +const int CSSValueWheat = 609; +const int CSSValueWhitesmoke = 610; +const int CSSValueYellowgreen = 611; +const int CSSValueNonzero = 612; +const int CSSValueEvenodd = 613; +const int CSSValueAccumulate = 614; +const int CSSValueNew = 615; +const int CSSValueLinearrgb = 616; +const int CSSValueOptimizequality = 617; +const int CSSValueCrispedges = 618; +const int CSSValueButt = 619; +const int CSSValueMiter = 620; +const int CSSValueBevel = 621; +const int CSSValueBeforeEdge = 622; +const int CSSValueAfterEdge = 623; +const int CSSValueCentral = 624; +const int CSSValueTextBeforeEdge = 625; +const int CSSValueTextAfterEdge = 626; +const int CSSValueIdeographic = 627; +const int CSSValueAlphabetic = 628; +const int CSSValueHanging = 629; +const int CSSValueMathematical = 630; +const int CSSValueUseScript = 631; +const int CSSValueNoChange = 632; +const int CSSValueResetSize = 633; +const int CSSValueNonScalingStroke = 634; +const int CSSValueLrTb = 635; +const int CSSValueRlTb = 636; +const int CSSValueTbRl = 637; +const int CSSValueLr = 638; +const int CSSValueRl = 639; +const int CSSValueTb = 640; +const int numCSSValueKeywords = 641; const size_t maxCSSValueKeywordLength = 35; const char* getValueName(unsigned short id); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/ColorData.cpp --- a/WebCore/generated/ColorData.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/ColorData.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,5 +1,5 @@ -/* ANSI-C code produced by gperf version 3.0.1 */ -/* Command-line: gperf --key-positions='*' -D -s 2 U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf */ +/* ANSI-C code produced by gperf version 3.0.3 */ +/* Command-line: gperf --key-positions='*' -D -s 2 /home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ @@ -28,7 +28,7 @@ #error "gperf generated tables don't work with this execution character set. Please report a bug to ." #endif -#line 2 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 2 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" struct NamedColor { const char *name; int RGBValue; @@ -154,303 +154,303 @@ static const struct NamedColor wordlist[] = { -#line 135 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 135 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"red", 0xff0000}, -#line 47 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 47 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkred", 0x8b0000}, -#line 152 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 152 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"tan", 0xd2b48c}, -#line 100 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 100 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"linen", 0xfaf0e6}, -#line 143 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 143 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"sienna", 0xa0522d}, -#line 74 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 74 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"indianred", 0xcd5c5c}, -#line 153 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 153 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"teal", 0x008080}, -#line 69 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 69 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"grey", 0x808080}, -#line 70 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 70 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"green", 0x008000}, -#line 68 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 68 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"gray", 0x808080}, -#line 40 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 40 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkgrey", 0xa9a9a9}, -#line 41 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 41 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkgreen", 0x006400}, -#line 20 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 20 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"beige", 0xf5f5dc}, -#line 121 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 121 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"orange", 0xffa500}, -#line 39 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 39 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkgray", 0xa9a9a9}, -#line 122 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 122 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"orangered", 0xff4500}, -#line 77 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 77 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"khaki", 0xf0e68c}, -#line 141 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 141 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"seagreen", 0x2e8b57}, -#line 66 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 66 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"gold", 0xffd700}, -#line 45 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 45 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkorange", 0xff8c00}, -#line 42 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 42 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkkhaki", 0xbdb76b}, -#line 75 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 75 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"indigo", 0x4b0082}, -#line 67 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 67 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"goldenrod", 0xdaa520}, -#line 102 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 102 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"maroon", 0x800000}, -#line 64 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 64 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"gainsboro", 0xdcdcdc}, -#line 98 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 98 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lime", 0x00ff00}, -#line 71 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 71 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"greenyellow", 0xadff2f}, -#line 38 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 38 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkgoldenrod", 0xb8860b}, -#line 148 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 148 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"slategrey", 0x708090}, -#line 147 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 147 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"slategray", 0x708090}, -#line 139 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 139 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"salmon", 0xfa8072}, -#line 49 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 49 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkseagreen", 0x8fbc8f}, -#line 142 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 142 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"seashell", 0xfff5ee}, -#line 48 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 48 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darksalmon", 0xe9967a}, -#line 155 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 155 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"tomato", 0xff6347}, -#line 154 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 154 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"thistle", 0xd8bfd8}, -#line 52 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 52 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkslategrey", 0x2f4f4f}, -#line 35 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 35 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"cyan", 0x00ffff}, -#line 62 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 62 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"forestgreen", 0x228b22}, -#line 58 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 58 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"dimgrey", 0x696969}, -#line 51 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 51 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkslategray", 0x2f4f4f}, -#line 114 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 114 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mistyrose", 0xffe4e1}, -#line 57 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 57 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"dimgray", 0x696969}, -#line 37 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 37 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkcyan", 0x008b8b}, -#line 22 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 22 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"black", 0x000000}, -#line 101 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 101 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"magenta", 0xff00ff}, -#line 99 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 99 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"limegreen", 0x32cd32}, -#line 31 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 31 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"coral", 0xff7f50}, -#line 43 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 43 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkmagenta", 0x8b008b}, -#line 19 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 19 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"azure", 0xf0ffff}, -#line 24 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 24 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"blue", 0x0000ff}, -#line 118 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 118 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"oldlace", 0xfdf5e6}, -#line 33 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 33 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"cornsilk", 0xfff8dc}, -#line 36 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 36 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkblue", 0x00008b}, -#line 145 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 145 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"skyblue", 0x87ceeb}, -#line 60 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 60 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"firebrick", 0xb22222}, -#line 123 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 123 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"orchid", 0xda70d6}, -#line 87 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 87 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightgrey", 0xd3d3d3}, -#line 88 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 88 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightgreen", 0x90ee90}, -#line 97 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 97 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightyellow", 0xffffe0}, -#line 86 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 86 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightgray", 0xd3d3d3}, -#line 46 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 46 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkorchid", 0x9932cc}, -#line 137 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 137 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"royalblue", 0x4169e1}, -#line 17 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 17 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"aqua", 0x00ffff}, -#line 151 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 151 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"steelblue", 0x4682b4}, -#line 21 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 21 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"bisque", 0xffe4c4}, -#line 34 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 34 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"crimson", 0xdc143c}, -#line 146 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 146 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"slateblue", 0x6a5acd}, -#line 59 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 59 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"dodgerblue", 0x1e90ff}, -#line 23 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 23 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"blanchedalmond", 0xffebcd}, -#line 91 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 91 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightseagreen", 0x20b2aa}, -#line 95 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 95 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightslategrey", 0x778899}, -#line 94 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 94 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightslategray", 0x778899}, -#line 26 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 26 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"brown", 0xa52a2a}, -#line 90 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 90 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightsalmon", 0xffa07a}, -#line 149 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 149 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"snow", 0xfffafa}, -#line 84 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 84 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightcyan", 0xe0ffff}, -#line 136 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 136 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"rosybrown", 0xbc8f8f}, -#line 140 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 140 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"sandybrown", 0xf4a460}, -#line 50 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 50 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkslateblue", 0x483d8b}, -#line 162 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 162 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"yellow", 0xffff00}, -#line 83 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 83 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightcoral", 0xf08080}, -#line 113 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 113 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mintcream", 0xf5fffa}, -#line 18 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 18 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"aquamarine", 0x7fffd4}, -#line 138 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 138 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"saddlebrown", 0x8b4513}, -#line 72 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 72 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"honeydew", 0xf0fff0}, -#line 131 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 131 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"pink", 0xffc0cb}, -#line 82 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 82 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightblue", 0xadd8e6}, -#line 28 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 28 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"cadetblue", 0x5f9ea0}, -#line 159 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 159 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"wheat", 0xf5deb3}, -#line 80 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 80 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lawngreen", 0x7cfc00}, -#line 160 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 160 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"white", 0xffffff}, -#line 15 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 15 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"aliceblue", 0xf0f8ff}, -#line 30 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 30 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"chocolate", 0xd2691e}, -#line 163 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 163 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"yellowgreen", 0x9acd32}, -#line 115 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 115 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"moccasin", 0xffe4b5}, -#line 117 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 117 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"navy", 0x000080}, -#line 29 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 29 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"chartreuse", 0x7fff00}, -#line 76 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 76 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"ivory", 0xfffff0}, -#line 125 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 125 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"palegreen", 0x98fb98}, -#line 78 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 78 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lavender", 0xe6e6fa}, -#line 73 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 73 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"hotpink", 0xff69b4}, -#line 119 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 119 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"olive", 0x808000}, -#line 63 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 63 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"fuchsia", 0xff00ff}, -#line 107 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 107 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumseagreen", 0x3cb371}, -#line 144 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 144 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"silver", 0xc0c0c0}, -#line 120 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 120 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"olivedrab", 0x6b8e23}, -#line 53 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 53 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkturquoise", 0x00ced1}, -#line 156 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 156 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"turquoise", 0x40e0d0}, -#line 157 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 157 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"violet", 0xee82ee}, -#line 158 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 158 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"violetred", 0xd02090}, -#line 54 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 54 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkviolet", 0x9400d3}, -#line 124 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 124 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"palegoldenrod", 0xeee8aa}, -#line 161 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 161 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"whitesmoke", 0xf5f5f5}, -#line 150 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 150 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"springgreen", 0x00ff7f}, -#line 27 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 27 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"burlywood", 0xdeb887}, -#line 130 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 130 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"peru", 0xcd853f}, -#line 61 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 61 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"floralwhite", 0xfffaf0}, -#line 89 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 89 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightpink", 0xffb6c1}, -#line 44 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 44 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"darkolivegreen", 0x556b2f}, -#line 65 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 65 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"ghostwhite", 0xf8f8ff}, -#line 104 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 104 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumblue", 0x0000cd}, -#line 105 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 105 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumorchid", 0xba55d3}, -#line 96 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 96 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightsteelblue", 0xb0c4de}, -#line 93 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 93 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightslateblue", 0x8470ff}, -#line 56 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 56 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"deepskyblue", 0x00bfff}, -#line 92 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 92 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightskyblue", 0x87cefa}, -#line 85 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 85 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lightgoldenrodyellow", 0xfafad2}, -#line 132 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 132 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"plum", 0xdda0dd}, -#line 103 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 103 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumaquamarine", 0x66cdaa}, -#line 108 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 108 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumslateblue", 0x7b68ee}, -#line 25 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 25 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"blueviolet", 0x8a2be2}, -#line 112 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 112 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"midnightblue", 0x191970}, -#line 55 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 55 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"deeppink", 0xff1493}, -#line 81 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 81 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lemonchiffon", 0xfffacd}, -#line 16 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 16 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"antiquewhite", 0xfaebd7}, -#line 126 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 126 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"paleturquoise", 0xafeeee}, -#line 133 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 133 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"powderblue", 0xb0e0e6}, -#line 116 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 116 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"navajowhite", 0xffdead}, -#line 109 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 109 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumspringgreen", 0x00fa9a}, -#line 32 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 32 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"cornflowerblue", 0x6495ed}, -#line 127 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 127 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"palevioletred", 0xd87093}, -#line 111 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 111 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumvioletred", 0xc71585}, -#line 134 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 134 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"purple", 0x800080}, -#line 79 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 79 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"lavenderblush", 0xfff0f5}, -#line 110 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 110 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumturquoise", 0x48d1cc}, -#line 129 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 129 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"peachpuff", 0xffdab9}, -#line 106 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 106 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"mediumpurple", 0x9370d8}, -#line 128 "U:/yaels-qtwebkit/WebCore/platform/ColorData.gperf" +#line 128 "/home/hg/repos/qtwebkit-rel/WebCore/platform/ColorData.gperf" {"papayawhip", 0xffefd5} }; @@ -566,6 +566,9 @@ #ifdef __GNUC__ __inline +#ifdef __GNUC_STDC_INLINE__ +__attribute__ ((__gnu_inline__)) +#endif #endif const struct NamedColor * findColor (register const char *str, register unsigned int len) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/DocTypeStrings.cpp --- a/WebCore/generated/DocTypeStrings.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/DocTypeStrings.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,5 +1,5 @@ -/* ANSI-C code produced by gperf version 3.0.1 */ -/* Command-line: gperf --key-positions='*' -s 2 U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf */ +/* ANSI-C code produced by gperf version 3.0.3 */ +/* Command-line: gperf --key-positions='*' -s 2 /home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ @@ -28,7 +28,7 @@ #error "gperf generated tables don't work with this execution character set. Please report a bug to ." #endif -#line 2 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 2 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" struct PubIDInfo { enum eMode { eQuirks, @@ -345,7 +345,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 99 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 99 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"html", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -455,7 +455,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 90 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 90 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd w3 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -474,153 +474,153 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 57 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 57 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 37 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 37 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 82 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 82 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 3.2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 54 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 54 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 44 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 44 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 42 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 42 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 52 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 52 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 3//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 38 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 38 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 50 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 50 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 36 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 36 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 3.2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 46 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 46 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 78 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 78 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w30//dtd w3 html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 33 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 33 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 3.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 59 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 59 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 34 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 34 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 40 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 40 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 31 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 31 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 58 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 58 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 56 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 56 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 45 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 45 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 3//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 48 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 48 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 30 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 30 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0 strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 55 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 55 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 53 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 53 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 3//en//3.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 27 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 27 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0 level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 43 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 43 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 2//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 81 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 81 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 3.2 final//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 32 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 32 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.1e//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 84 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 84 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 4.0 frameset//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}, -#line 39 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 39 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 0//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 29 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 29 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0 strict level 2//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 51 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 51 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 2//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 93 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 93 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3o//dtd w3 html 3.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 97 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 97 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//webtechs//dtd mozilla html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 94 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 94 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3o//dtd w3 html 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 47 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 47 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 0//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 79 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 79 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 3 1995-03-24//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 89 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 89 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html experimental 970421//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 95 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 95 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3o//dtd w3 html strict 3.0//en//", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 26 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 26 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0 level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 41 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 41 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html level 1//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 35 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 35 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 3.2 final//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 91 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 91 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd xhtml 1.0 frameset//en", PubIDInfo::eAlmostStandards, PubIDInfo::eAlmostStandards}, -#line 28 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 28 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html 2.0 strict level 1//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 49 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 49 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//ietf//dtd html strict level 1//en//2.0", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 86 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 86 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 4.01 frameset//en", PubIDInfo::eQuirks, PubIDInfo::eAlmostStandards}, -#line 80 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 80 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 3.2 draft//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 83 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 83 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 3.2s draft//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 60 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 60 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//metrius//dtd metrius presentational//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 96 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 96 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//webtechs//dtd mozilla html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 88 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 88 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html experimental 19960712//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -633,11 +633,11 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 98 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 98 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-/w3c/dtd html 4.0 transitional/en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 85 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 85 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 4.0 transitional//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -654,27 +654,27 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 74 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 74 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//spyglass//dtd html 2.0 extended//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 92 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 92 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd xhtml 1.0 transitional//en", PubIDInfo::eAlmostStandards, PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 67 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 67 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//netscape comm. corp.//dtd html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 87 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 87 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//w3c//dtd html 4.01 transitional//en", PubIDInfo::eQuirks, PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 68 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 68 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//netscape comm. corp.//dtd strict html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -685,9 +685,9 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 25 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 25 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//as//dtd html 3.0 aswedit + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 75 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 75 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//sq//dtd html 2.0 hotmetal + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -720,7 +720,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 76 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 76 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//sun microsystems corp.//dtd hotjava html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -728,7 +728,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 77 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 77 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//sun microsystems corp.//dtd hotjava strict html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -739,40 +739,40 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 69 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 69 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//o'reilly and associates//dtd html 2.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 65 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 65 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 3.0 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 62 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 62 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 2.0 html//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 23 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 23 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"+//silmaril//dtd html pro v0r11 19970101//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, -#line 64 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 64 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 3.0 html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 61 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 61 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 2.0 html strict//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 66 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 66 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 3.0 tables//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 63 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 63 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//microsoft//dtd internet explorer 2.0 tables//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -862,12 +862,12 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 24 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 24 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//advasoft ltd//dtd html 3.0 aswedit + extensions//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 70 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 70 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//o'reilly and associates//dtd html extended 1.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -926,7 +926,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 71 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 71 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//o'reilly and associates//dtd html extended relaxed 1.0//en", PubIDInfo::eQuirks3, PubIDInfo::eQuirks3}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -1057,7 +1057,7 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 73 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 73 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, @@ -1132,12 +1132,15 @@ {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, {"",PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards}, -#line 72 "U:/yaels-qtwebkit/WebCore/html/DocTypeStrings.gperf" +#line 72 "/home/hg/repos/qtwebkit-rel/WebCore/html/DocTypeStrings.gperf" {"-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//en", PubIDInfo::eQuirks, PubIDInfo::eQuirks} }; #ifdef __GNUC__ __inline +#ifdef __GNUC_STDC_INLINE__ +__attribute__ ((__gnu_inline__)) +#endif #endif const struct PubIDInfo * findDoctypeEntry (register const char *str, register unsigned int len) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/HTMLEntityNames.cpp --- a/WebCore/generated/HTMLEntityNames.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/HTMLEntityNames.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,5 +1,5 @@ -/* ANSI-C code produced by gperf version 3.0.1 */ -/* Command-line: gperf --key-positions='*' -D -s 2 U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf */ +/* ANSI-C code produced by gperf version 3.0.3 */ +/* Command-line: gperf --key-positions='*' -D -s 2 /home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf */ #if !((' ' == 32) && ('!' == 33) && ('"' == 34) && ('#' == 35) \ && ('%' == 37) && ('&' == 38) && ('\'' == 39) && ('(' == 40) \ @@ -28,7 +28,7 @@ #error "gperf generated tables don't work with this execution character set. Please report a bug to ." #endif -#line 1 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 1 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" /* Copyright (C) 1999 Lars Knoll (knoll@mpi-hd.mpg.de) @@ -54,7 +54,7 @@ HTMLEntityNames.gperf: input file to generate a hash table for entities HTMLEntityNames.cpp: DO NOT EDIT! generated by WebCore/make-hash-tools.pl */ -#line 28 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 28 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" struct Entity { const char *name; int code; @@ -144,529 +144,529 @@ static const struct Entity wordlist[] = { -#line 208 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 208 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"not", 0x00ac}, -#line 234 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 234 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"phi", 0x03c6}, -#line 211 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 211 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"nsup", 0x2285}, -#line 242 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 242 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"psi", 0x03c8}, -#line 179 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 179 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"isin", 0x2208}, -#line 209 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 209 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"notin", 0x2209}, -#line 278 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 278 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"there4", 0x2234}, -#line 277 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 277 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"tau", 0x03c4}, -#line 210 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 210 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"nsub", 0x2284}, -#line 129 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 129 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"chi", 0x03c7}, -#line 288 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 288 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"uarr", 0x2191}, -#line 248 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 248 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rarr", 0x2192}, -#line 125 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 125 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"cap", 0x2229}, -#line 230 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 230 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"part", 0x2202}, -#line 254 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 254 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rho", 0x03c1}, -#line 148 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 148 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"emsp", 0x2003}, -#line 238 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 238 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"pound", 0x00a3}, -#line 176 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 176 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"int", 0x222b}, -#line 144 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 144 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"eacute", 0x00e9}, -#line 85 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 85 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Phi", 0x03a6}, -#line 287 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 287 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"uacute", 0x00fa}, -#line 88 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 88 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Psi", 0x03a8}, -#line 139 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 139 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"darr", 0x2193}, -#line 282 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 282 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"thorn", 0x00fe}, -#line 170 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 170 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"iacute", 0x00ed}, -#line 213 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 213 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"nu", 0x03bd}, -#line 91 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 91 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Rho", 0x03a1}, -#line 145 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 145 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ecirc", 0x00ea}, -#line 73 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 73 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Mu", 0x039c}, -#line 95 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 95 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Tau", 0x03a4}, -#line 204 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 204 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"nbsp", 0x00a0}, -#line 289 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 289 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ucirc", 0x00fb}, -#line 103 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 103 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Yacute", 0x00dd}, -#line 222 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 222 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"or", 0x2228}, -#line 152 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 152 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"eta", 0x03b7}, -#line 171 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 171 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"icirc", 0x00ee}, -#line 178 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 178 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"iquest", 0x00bf}, -#line 75 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 75 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Nu", 0x039d}, -#line 113 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 113 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"amp", 38}, -#line 281 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 281 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"thinsp", 0x2009}, -#line 63 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 63 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"GT", 62}, -#line 90 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 90 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"REG", 0x00ae}, -#line 149 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 149 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ensp", 0x2002}, -#line 245 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 245 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"radic", 0x221a}, -#line 53 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 53 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Chi", 0x03a7}, -#line 260 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 260 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sdot", 0x22c5}, -#line 151 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 151 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"equiv", 0x2261}, -#line 214 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 214 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"oacute", 0x00f3}, -#line 196 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 196 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lt", 60}, -#line 291 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 291 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"uml", 0x00a8}, -#line 241 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 241 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"prop", 0x221d}, -#line 71 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 71 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"LT", 60}, -#line 135 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 135 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"cup", 0x222a}, -#line 177 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 177 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"iota", 0x03b9}, -#line 215 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 215 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ocirc", 0x00f4}, -#line 57 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 57 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Eacute", 0x00c9}, -#line 192 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 192 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"loz", 0x25ca}, -#line 229 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 229 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"para", 0x00b6}, -#line 279 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 279 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"theta", 0x03b8}, -#line 136 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 136 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"curren", 0x00a4}, -#line 220 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 220 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"omicron", 0x03bf}, -#line 155 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 155 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"euro", 0x20ac}, -#line 181 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 181 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"kappa", 0x03ba}, -#line 240 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 240 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"prod", 0x220f}, -#line 58 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 58 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ecirc", 0x00ca}, -#line 77 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 77 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Oacute", 0x00d3}, -#line 270 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 270 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sup", 0x2283}, -#line 274 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 274 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"supe", 0x2287}, -#line 108 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 108 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"acute", 0x00b4}, -#line 61 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 61 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Eta", 0x0397}, -#line 186 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 186 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"larr", 0x2190}, -#line 147 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 147 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"empty", 0x2205}, -#line 267 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 267 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sub", 0x2282}, -#line 268 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 268 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sube", 0x2286}, -#line 78 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 78 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ocirc", 0x00d4}, -#line 106 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 106 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"aacute", 0x00e1}, -#line 165 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 165 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"gt", 62}, -#line 56 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 56 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ETH", 0x00d0}, -#line 271 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 271 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sup1", 0x00b9}, -#line 70 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 70 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Kappa", 0x039a}, -#line 212 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 212 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ntilde", 0x00f1}, -#line 81 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 81 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Omicron", 0x039f}, -#line 114 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 114 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"and", 0x2227}, -#line 273 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 273 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sup3", 0x00b3}, -#line 249 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 249 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rceil", 0x2309}, -#line 97 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 97 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Uacute", 0x00da}, -#line 133 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 133 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"copy", 0x00a9}, -#line 107 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 107 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"acirc", 0x00e2}, -#line 286 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 286 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"uArr", 0x21d1}, -#line 96 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 96 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Theta", 0x0398}, -#line 74 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 74 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ntilde", 0x00d1}, -#line 244 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 244 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rArr", 0x21d2}, -#line 98 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 98 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ucirc", 0x00db}, -#line 92 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 92 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Scaron", 0x0160}, -#line 262 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 262 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"shy", 0x00ad}, -#line 246 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 246 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rang", 0x3009}, -#line 134 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 134 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"crarr", 0x21b5}, -#line 132 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 132 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"cong", 0x2245}, -#line 285 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 285 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"trade", 0x2122}, -#line 297 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 297 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"yacute", 0x00fd}, -#line 272 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 272 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sup2", 0x00b2}, -#line 218 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 218 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"oline", 0x203e}, -#line 197 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 197 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"macr", 0x00af}, -#line 156 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 156 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"exist", 0x2203}, -#line 226 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 226 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"otilde", 0x00f5}, -#line 42 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 42 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"AMP", 38}, -#line 137 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 137 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"dArr", 0x21d3}, -#line 43 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 43 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Aacute", 0x00c1}, -#line 51 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 51 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"COPY", 0x00a9}, -#line 65 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 65 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Iacute", 0x00cd}, -#line 89 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 89 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"QUOT", 34}, -#line 239 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 239 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"prime", 0x2032}, -#line 126 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 126 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ccedil", 0x00e7}, -#line 44 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 44 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Acirc", 0x00c2}, -#line 202 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 202 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"mu", 0x03bc}, -#line 66 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 66 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Icirc", 0x00ce}, -#line 259 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 259 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"scaron", 0x0161}, -#line 83 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 83 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Otilde", 0x00d5}, -#line 203 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 203 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"nabla", 0x2207}, -#line 131 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 131 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"clubs", 0x2663}, -#line 119 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 119 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"atilde", 0x00e3}, -#line 275 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 275 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"supl", 0x00b9}, -#line 174 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 174 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"image", 0x2111}, -#line 227 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 227 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"otimes", 0x2297}, -#line 206 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 206 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ne", 0x2260}, -#line 68 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 68 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Iota", 0x0399}, -#line 87 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 87 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Prime", 0x2033}, -#line 187 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 187 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lceil", 0x2308}, -#line 224 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 224 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ordm", 0x00ba}, -#line 123 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 123 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"brvbar", 0x00a6}, -#line 269 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 269 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sum", 0x2211}, -#line 182 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 182 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lArr", 0x21d0}, -#line 250 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 250 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rdquo", 0x201d}, -#line 52 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 52 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ccedil", 0x00c7}, -#line 115 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 115 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ang", 0x2220}, -#line 184 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 184 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lang", 0x3008}, -#line 219 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 219 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"omega", 0x03c9}, -#line 233 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 233 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"perp", 0x22a5}, -#line 121 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 121 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"bdquo", 0x201e}, -#line 191 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 191 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lowast", 0x2217}, -#line 257 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 257 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rsquo", 0x2019}, -#line 255 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 255 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rlm", 0x200f}, -#line 128 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 128 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"cent", 0x00a2}, -#line 247 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 247 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"raquo", 0x00bb}, -#line 48 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 48 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Atilde", 0x00c3}, -#line 193 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 193 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lrm", 0x200e}, -#line 117 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 117 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"aring", 0x00e5}, -#line 295 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 295 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"weierp", 0x2118}, -#line 80 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 80 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Omega", 0x03a9}, -#line 124 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 124 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"bull", 0x2022}, -#line 175 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 175 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"infin", 0x221e}, -#line 231 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 231 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"percnt", 0x0025}, -#line 94 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 94 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"THORN", 0x00de}, -#line 153 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 153 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"eth", 0x00f0}, -#line 276 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 276 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"szlig", 0x00df}, -#line 72 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 72 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Lambda", 0x039b}, -#line 154 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 154 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"euml", 0x00eb}, -#line 294 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 294 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"uuml", 0x00fc}, -#line 54 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 54 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Dagger", 0x2021}, -#line 180 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 180 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"iuml", 0x00ef}, -#line 258 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 258 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sbquo", 0x201a}, -#line 261 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 261 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sect", 0x00a7}, -#line 104 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 104 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Yuml", 0x0178}, -#line 47 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 47 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Aring", 0x00c5}, -#line 237 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 237 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"plusmn", 0x00b1}, -#line 243 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 243 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"quot", 34}, -#line 189 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 189 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"le", 0x2264}, -#line 167 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 167 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"harr", 0x2194}, -#line 253 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 253 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rfloor", 0x230b}, -#line 300 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 300 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"zeta", 0x03b6}, -#line 228 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 228 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ouml", 0x00f6}, -#line 188 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 188 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ldquo", 0x201c}, -#line 138 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 138 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"dagger", 0x2020}, -#line 298 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 298 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"yen", 0x00a5}, -#line 122 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 122 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"beta", 0x03b2}, -#line 118 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 118 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"asymp", 0x2248}, -#line 256 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 256 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"rsaquo", 0x203a}, -#line 223 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 223 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ordf", 0x00aa}, -#line 62 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 62 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Euml", 0x00cb}, -#line 195 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 195 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lsquo", 0x2018}, -#line 105 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 105 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Zeta", 0x0396}, -#line 185 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 185 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"laquo", 0x00ab}, -#line 116 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 116 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"apos", 0x0027}, -#line 64 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 64 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Gamma", 0x0393}, -#line 84 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 84 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ouml", 0x00d6}, -#line 172 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 172 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"iexcl", 0x00a1}, -#line 164 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 164 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ge", 0x2265}, -#line 76 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 76 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"OElig", 0x0152}, -#line 183 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 183 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lambda", 0x03bb}, -#line 207 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 207 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ni", 0x220b}, -#line 252 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 252 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"reg", 0x00ae}, -#line 120 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 120 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"auml", 0x00e4}, -#line 296 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 296 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"xi", 0x03be}, -#line 221 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 221 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"oplus", 0x2295}, -#line 235 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 235 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"pi", 0x03c0}, -#line 101 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 101 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Uuml", 0x00dc}, -#line 150 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 150 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"epsilon", 0x03b5}, -#line 301 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 301 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"zwj", 0x200d}, -#line 302 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 302 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"zwnj", 0x200c}, -#line 127 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 127 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"cedil", 0x00b8}, -#line 160 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 160 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"frac14", 0x00bc}, -#line 293 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 293 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"upsilon", 0x03c5}, -#line 161 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 161 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"frac34", 0x00be}, -#line 102 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 102 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Xi", 0x039e}, -#line 140 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 140 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"deg", 0x00b0}, -#line 266 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 266 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"spades", 0x2660}, -#line 280 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 280 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"thetasym", 0x03d1}, -#line 299 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 299 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"yuml", 0x00ff}, -#line 251 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 251 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"real", 0x211c}, -#line 205 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 205 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ndash", 0x2013}, -#line 190 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 190 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lfloor", 0x230a}, -#line 55 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 55 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Delta", 0x0394}, -#line 86 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 86 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Pi", 0x03a0}, -#line 49 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 49 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Auml", 0x00c4}, -#line 69 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 69 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Iuml", 0x00cf}, -#line 41 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 41 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"AElig", 0x00c6}, -#line 194 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 194 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"lsaquo", 0x2039}, -#line 130 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 130 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"circ", 0x02c6}, -#line 159 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 159 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"frac12", 0x00bd}, -#line 60 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 60 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Epsilon", 0x0395}, -#line 166 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 166 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"hArr", 0x21d4}, -#line 141 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 141 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"delta", 0x03b4}, -#line 146 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 146 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"egrave", 0x00e8}, -#line 50 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 50 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Beta", 0x0392}, -#line 290 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 290 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ugrave", 0x00f9}, -#line 236 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 236 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"piv", 0x03d6}, -#line 173 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 173 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"igrave", 0x00ec}, -#line 100 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 100 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Upsilon", 0x03a5}, -#line 232 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 232 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"permil", 0x2030}, -#line 217 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 217 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"ograve", 0x00f2}, -#line 163 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 163 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"gamma", 0x03b3}, -#line 162 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 162 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"frasl", 0x2044}, -#line 59 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 59 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Egrave", 0x00c8}, -#line 216 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 216 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"oelig", 0x0153}, -#line 79 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 79 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ograve", 0x00d2}, -#line 283 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 283 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"tilde", 0x02dc}, -#line 158 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 158 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"forall", 0x2200}, -#line 143 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 143 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"divide", 0x00f7}, -#line 110 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 110 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"agrave", 0x00e0}, -#line 157 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 157 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"fnof", 0x0192}, -#line 99 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 99 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Ugrave", 0x00d9}, -#line 198 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 198 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"mdash", 0x2014}, -#line 292 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 292 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"upsih", 0x03d2}, -#line 265 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 265 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sim", 0x223c}, -#line 109 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 109 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"aelig", 0x00e6}, -#line 201 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 201 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"minus", 0x2212}, -#line 225 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 225 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"oslash", 0x00f8}, -#line 284 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 284 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"times", 0x00d7}, -#line 199 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 199 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"micro", 0x00b5}, -#line 45 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 45 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Agrave", 0x00c0}, -#line 67 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 67 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Igrave", 0x00cc}, -#line 112 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 112 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"alpha", 0x03b1}, -#line 82 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 82 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Oslash", 0x00d8}, -#line 200 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 200 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"middot", 0x00b7}, -#line 46 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 46 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Alpha", 0x0391}, -#line 142 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 142 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"diams", 0x2666}, -#line 168 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 168 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"hearts", 0x2665}, -#line 111 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 111 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"alefsym", 0x2135}, -#line 93 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 93 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"Sigma", 0x03a3}, -#line 169 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 169 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"hellip", 0x2026}, -#line 263 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 263 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sigma", 0x03c3}, -#line 264 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 264 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" {"sigmaf", 0x03c2} }; @@ -786,6 +786,9 @@ #ifdef __GNUC__ __inline +#ifdef __GNUC_STDC_INLINE__ +__attribute__ ((__gnu_inline__)) +#endif #endif const struct Entity * findEntity (register const char *str, register unsigned int len) @@ -809,5 +812,5 @@ } return 0; } -#line 303 "U:/yaels-qtwebkit/WebCore/html/HTMLEntityNames.gperf" +#line 303 "/home/hg/repos/qtwebkit-rel/WebCore/html/HTMLEntityNames.gperf" diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/JSDocument.cpp --- a/WebCore/generated/JSDocument.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/JSDocument.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -254,7 +254,7 @@ #define THUNK_GENERATOR(generator) #endif -static const HashTableValue JSDocumentPrototypeTableValues[38] = +static const HashTableValue JSDocumentPrototypeTableValues[39] = { { "createElement", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionCreateElement), (intptr_t)1 THUNK_GENERATOR(0) }, { "createDocumentFragment", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionCreateDocumentFragment), (intptr_t)0 THUNK_GENERATOR(0) }, @@ -286,6 +286,7 @@ { "queryCommandSupported", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionQueryCommandSupported), (intptr_t)1 THUNK_GENERATOR(0) }, { "queryCommandValue", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionQueryCommandValue), (intptr_t)1 THUNK_GENERATOR(0) }, { "getElementsByName", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionGetElementsByName), (intptr_t)1 THUNK_GENERATOR(0) }, + { "nodesFromRect", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionNodesFromRect), (intptr_t)5 THUNK_GENERATOR(0) }, { "elementFromPoint", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionElementFromPoint), (intptr_t)2 THUNK_GENERATOR(0) }, { "caretRangeFromPoint", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionCaretRangeFromPoint), (intptr_t)2 THUNK_GENERATOR(0) }, { "getSelection", DontDelete | Function, (intptr_t)static_cast(jsDocumentPrototypeFunctionGetSelection), (intptr_t)0 THUNK_GENERATOR(0) }, @@ -297,7 +298,7 @@ }; #undef THUNK_GENERATOR -static JSC_CONST_HASHTABLE HashTable JSDocumentPrototypeTable = { 135, 127, JSDocumentPrototypeTableValues, 0 }; +static JSC_CONST_HASHTABLE HashTable JSDocumentPrototypeTable = { 136, 127, JSDocumentPrototypeTableValues, 0 }; const ClassInfo JSDocumentPrototype::s_info = { "DocumentPrototype", 0, &JSDocumentPrototypeTable, 0 }; JSObject* JSDocumentPrototype::self(ExecState* exec, JSGlobalObject* globalObject) @@ -2161,6 +2162,24 @@ return JSValue::encode(result); } +EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionNodesFromRect(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSDocument::s_info)) + return throwVMTypeError(exec); + JSDocument* castedThis = static_cast(asObject(thisValue)); + Document* imp = static_cast(castedThis->impl()); + int x = exec->argument(0).toInt32(exec); + int y = exec->argument(1).toInt32(exec); + unsigned hPadding = exec->argument(2).toInt32(exec); + unsigned vPadding = exec->argument(3).toInt32(exec); + bool ignoreClipping = exec->argument(4).toBoolean(exec); + + + JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->nodesFromRect(x, y, hPadding, vPadding, ignoreClipping))); + return JSValue::encode(result); +} + EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionElementFromPoint(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/JSDocument.h --- a/WebCore/generated/JSDocument.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/JSDocument.h Mon Oct 04 01:32:07 2010 +0300 @@ -124,6 +124,7 @@ JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionQueryCommandSupported(JSC::ExecState*); JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionQueryCommandValue(JSC::ExecState*); JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionGetElementsByName(JSC::ExecState*); +JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionNodesFromRect(JSC::ExecState*); JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionElementFromPoint(JSC::ExecState*); JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionCaretRangeFromPoint(JSC::ExecState*); JSC::EncodedJSValue JSC_HOST_CALL jsDocumentPrototypeFunctionGetSelection(JSC::ExecState*); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/JSNavigator.cpp --- a/WebCore/generated/JSNavigator.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/JSNavigator.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -23,10 +23,8 @@ #include "DOMMimeTypeArray.h" #include "DOMPluginArray.h" -#include "Geolocation.h" #include "JSDOMMimeTypeArray.h" #include "JSDOMPluginArray.h" -#include "JSGeolocation.h" #include "KURL.h" #include "Navigator.h" #include @@ -46,7 +44,7 @@ #define THUNK_GENERATOR(generator) #endif -static const HashTableValue JSNavigatorTableValues[16] = +static const HashTableValue JSNavigatorTableValues[15] = { { "appCodeName", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorAppCodeName), (intptr_t)0 THUNK_GENERATOR(0) }, { "appName", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorAppName), (intptr_t)0 THUNK_GENERATOR(0) }, @@ -62,7 +60,6 @@ { "vendorSub", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorVendorSub), (intptr_t)0 THUNK_GENERATOR(0) }, { "cookieEnabled", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorCookieEnabled), (intptr_t)0 THUNK_GENERATOR(0) }, { "onLine", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorOnLine), (intptr_t)0 THUNK_GENERATOR(0) }, - { "geolocation", DontDelete | ReadOnly, (intptr_t)static_cast(jsNavigatorGeolocation), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; @@ -255,16 +252,6 @@ return result; } -JSValue jsNavigatorGeolocation(ExecState* exec, JSValue slotBase, const Identifier&) -{ - JSNavigator* castedThis = static_cast(asObject(slotBase)); - UNUSED_PARAM(exec); - Navigator* imp = static_cast(castedThis->impl()); -// :HACK: JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->geolocation())); - JSValue result; // :HACK: - return result; -} - EncodedJSValue JSC_HOST_CALL jsNavigatorPrototypeFunctionJavaEnabled(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/JSNavigator.h --- a/WebCore/generated/JSNavigator.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/JSNavigator.h Mon Oct 04 01:32:07 2010 +0300 @@ -96,7 +96,6 @@ JSC::JSValue jsNavigatorVendorSub(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&); JSC::JSValue jsNavigatorCookieEnabled(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&); JSC::JSValue jsNavigatorOnLine(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&); -JSC::JSValue jsNavigatorGeolocation(JSC::ExecState*, JSC::JSValue, const JSC::Identifier&); } // namespace WebCore diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/UserAgentStyleSheets.h --- a/WebCore/generated/UserAgentStyleSheets.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/UserAgentStyleSheets.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,5 +1,5 @@ namespace WebCore { -extern const char htmlUserAgentStyleSheet[11679]; +extern const char htmlUserAgentStyleSheet[12377]; extern const char quirksUserAgentStyleSheet[359]; extern const char mathmlUserAgentStyleSheet[3646]; extern const char svgUserAgentStyleSheet[351]; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/UserAgentStyleSheetsData.cpp --- a/WebCore/generated/UserAgentStyleSheetsData.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/UserAgentStyleSheetsData.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,5 +1,5 @@ namespace WebCore { -extern const char htmlUserAgentStyleSheet[11679] = { +extern const char htmlUserAgentStyleSheet[12377] = { 64, 110, 97, 109, 101, 115, 112, 97, 99, 101, 32, 34, 104, 116, 116, 112, 58, 47, 47, 119, 119, 119, 46, 119, 51, 46, 111, 114, 103, 47, 49, 57, 57, 57, 47, 120, 104, 116, 109, 108, 34, 59, 32, 104, 116, 109, 108, 32, @@ -729,7 +729,51 @@ 32, 123, 32, 115, 105, 122, 101, 58, 32, 97, 117, 116, 111, 59, 32, 109, 97, 114, 103, 105, 110, 58, 32, 97, 117, 116, 111, 59, 32, 112, 97, 100, 100, 105, 110, 103, 58, 32, 48, 112, 120, 59, 32, 98, 111, 114, 100, 101, - 114, 45, 119, 105, 100, 116, 104, 58, 32, 48, 112, 120, 59, 32, 125 + 114, 45, 119, 105, 100, 116, 104, 58, 32, 48, 112, 120, 59, 32, 125, 32, + 98, 117, 116, 116, 111, 110, 44, 32, 105, 110, 112, 117, 116, 91, 116, 121, + 112, 101, 61, 34, 98, 117, 116, 116, 111, 110, 34, 93, 44, 32, 105, 110, + 112, 117, 116, 91, 116, 121, 112, 101, 61, 34, 115, 117, 98, 109, 105, 116, + 34, 93, 44, 32, 105, 110, 112, 117, 116, 91, 116, 121, 112, 101, 61, 34, + 114, 101, 115, 101, 116, 34, 93, 44, 32, 105, 110, 112, 117, 116, 91, 116, + 121, 112, 101, 61, 34, 102, 105, 108, 101, 34, 93, 32, 123, 32, 45, 119, + 101, 98, 107, 105, 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, 112, + 45, 116, 121, 112, 101, 58, 32, 98, 117, 116, 116, 111, 110, 59, 32, 45, + 119, 101, 98, 107, 105, 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, + 112, 45, 115, 116, 114, 101, 110, 103, 116, 104, 58, 32, 109, 101, 100, 105, + 117, 109, 59, 32, 125, 32, 97, 58, 45, 119, 101, 98, 107, 105, 116, 45, + 97, 110, 121, 45, 108, 105, 110, 107, 32, 123, 32, 45, 119, 101, 98, 107, + 105, 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 116, 121, + 112, 101, 58, 32, 108, 105, 110, 107, 59, 32, 45, 119, 101, 98, 107, 105, + 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 115, 116, 114, + 101, 110, 103, 116, 104, 58, 32, 109, 101, 100, 105, 117, 109, 59, 32, 125, + 32, 105, 110, 112, 117, 116, 91, 116, 121, 112, 101, 61, 34, 99, 104, 101, + 99, 107, 98, 111, 120, 34, 93, 32, 123, 32, 45, 119, 101, 98, 107, 105, + 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 116, 121, 112, + 101, 58, 32, 117, 110, 99, 104, 101, 99, 107, 101, 100, 45, 99, 104, 101, + 99, 107, 98, 111, 120, 59, 32, 45, 119, 101, 98, 107, 105, 116, 45, 104, + 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 115, 116, 114, 101, 110, 103, + 116, 104, 58, 32, 109, 101, 100, 105, 117, 109, 59, 32, 125, 32, 105, 110, + 112, 117, 116, 91, 116, 121, 112, 101, 61, 34, 99, 104, 101, 99, 107, 98, + 111, 120, 34, 93, 58, 99, 104, 101, 99, 107, 101, 100, 32, 123, 32, 45, + 119, 101, 98, 107, 105, 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, + 112, 45, 116, 121, 112, 101, 58, 32, 99, 104, 101, 99, 107, 101, 100, 45, + 99, 104, 101, 99, 107, 98, 111, 120, 59, 32, 45, 119, 101, 98, 107, 105, + 116, 45, 104, 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 115, 116, 114, + 101, 110, 103, 116, 104, 58, 32, 109, 101, 100, 105, 117, 109, 59, 32, 125, + 32, 105, 110, 112, 117, 116, 91, 116, 121, 112, 101, 61, 34, 114, 97, 100, + 105, 111, 34, 93, 32, 123, 32, 45, 119, 101, 98, 107, 105, 116, 45, 104, + 97, 112, 116, 105, 99, 45, 116, 97, 112, 45, 116, 121, 112, 101, 58, 32, + 108, 97, 116, 99, 104, 101, 100, 45, 98, 117, 116, 116, 111, 110, 45, 117, + 112, 59, 32, 45, 119, 101, 98, 107, 105, 116, 45, 104, 97, 112, 116, 105, + 99, 45, 116, 97, 112, 45, 115, 116, 114, 101, 110, 103, 116, 104, 58, 32, + 119, 101, 97, 107, 59, 32, 125, 32, 105, 110, 112, 117, 116, 91, 116, 121, + 112, 101, 61, 34, 114, 97, 100, 105, 111, 34, 93, 58, 99, 104, 101, 99, + 107, 101, 100, 32, 123, 32, 45, 119, 101, 98, 107, 105, 116, 45, 104, 97, + 112, 116, 105, 99, 45, 116, 97, 112, 45, 116, 121, 112, 101, 58, 32, 108, + 97, 116, 99, 104, 101, 100, 45, 98, 117, 116, 116, 111, 110, 45, 115, 116, + 117, 99, 107, 59, 32, 45, 119, 101, 98, 107, 105, 116, 45, 104, 97, 112, + 116, 105, 99, 45, 116, 97, 112, 45, 115, 116, 114, 101, 110, 103, 116, 104, + 58, 32, 119, 101, 97, 107, 59, 32, 125 }; extern const char quirksUserAgentStyleSheet[359] = { 105, 109, 103, 91, 97, 108, 105, 103, 110, 61, 34, 108, 101, 102, 116, 34, diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/XPathGrammar.cpp --- a/WebCore/generated/XPathGrammar.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/XPathGrammar.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -76,7 +76,7 @@ /* Copy the first part of user declarations. */ /* Line 189 of yacc.c */ -#line 28 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 28 "xml/XPathGrammar.y" #include "config.h" @@ -162,7 +162,7 @@ { /* Line 214 of yacc.c */ -#line 60 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 60 "xml/XPathGrammar.y" Step::Axis axis; Step::NodeTest* nodeTest; @@ -189,7 +189,7 @@ /* Copy the second part of user declarations. */ /* Line 264 of yacc.c */ -#line 73 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 73 "xml/XPathGrammar.y" static int xpathyylex(YYSTYPE* yylval) { return Parser::current()->lex(yylval); } @@ -1483,7 +1483,7 @@ case 2: /* Line 1455 of yacc.c */ -#line 122 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 122 "xml/XPathGrammar.y" { PARSER->m_topExpr = (yyvsp[(1) - (1)].expr); ;} @@ -1492,7 +1492,7 @@ case 3: /* Line 1455 of yacc.c */ -#line 129 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 129 "xml/XPathGrammar.y" { (yyval.locationPath)->setAbsolute(false); ;} @@ -1501,7 +1501,7 @@ case 4: /* Line 1455 of yacc.c */ -#line 134 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 134 "xml/XPathGrammar.y" { (yyval.locationPath)->setAbsolute(true); ;} @@ -1510,7 +1510,7 @@ case 5: /* Line 1455 of yacc.c */ -#line 141 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 141 "xml/XPathGrammar.y" { (yyval.locationPath) = new LocationPath; PARSER->registerParseNode((yyval.locationPath)); @@ -1520,7 +1520,7 @@ case 6: /* Line 1455 of yacc.c */ -#line 147 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 147 "xml/XPathGrammar.y" { (yyval.locationPath) = (yyvsp[(2) - (2)].locationPath); ;} @@ -1529,7 +1529,7 @@ case 7: /* Line 1455 of yacc.c */ -#line 152 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 152 "xml/XPathGrammar.y" { (yyval.locationPath) = (yyvsp[(2) - (2)].locationPath); (yyval.locationPath)->insertFirstStep((yyvsp[(1) - (2)].step)); @@ -1540,7 +1540,7 @@ case 8: /* Line 1455 of yacc.c */ -#line 161 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 161 "xml/XPathGrammar.y" { (yyval.locationPath) = new LocationPath; (yyval.locationPath)->appendStep((yyvsp[(1) - (1)].step)); @@ -1552,7 +1552,7 @@ case 9: /* Line 1455 of yacc.c */ -#line 169 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 169 "xml/XPathGrammar.y" { (yyval.locationPath)->appendStep((yyvsp[(3) - (3)].step)); PARSER->unregisterParseNode((yyvsp[(3) - (3)].step)); @@ -1562,7 +1562,7 @@ case 10: /* Line 1455 of yacc.c */ -#line 175 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 175 "xml/XPathGrammar.y" { (yyval.locationPath)->appendStep((yyvsp[(2) - (3)].step)); (yyval.locationPath)->appendStep((yyvsp[(3) - (3)].step)); @@ -1574,7 +1574,7 @@ case 11: /* Line 1455 of yacc.c */ -#line 185 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 185 "xml/XPathGrammar.y" { if ((yyvsp[(2) - (2)].predList)) { (yyval.step) = new Step(Step::ChildAxis, *(yyvsp[(1) - (2)].nodeTest), *(yyvsp[(2) - (2)].predList)); @@ -1589,7 +1589,7 @@ case 12: /* Line 1455 of yacc.c */ -#line 196 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 196 "xml/XPathGrammar.y" { String localName; String namespaceURI; @@ -1611,7 +1611,7 @@ case 13: /* Line 1455 of yacc.c */ -#line 214 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 214 "xml/XPathGrammar.y" { if ((yyvsp[(3) - (3)].predList)) { (yyval.step) = new Step((yyvsp[(1) - (3)].axis), *(yyvsp[(2) - (3)].nodeTest), *(yyvsp[(3) - (3)].predList)); @@ -1626,7 +1626,7 @@ case 14: /* Line 1455 of yacc.c */ -#line 225 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 225 "xml/XPathGrammar.y" { String localName; String namespaceURI; @@ -1648,7 +1648,7 @@ case 17: /* Line 1455 of yacc.c */ -#line 249 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 249 "xml/XPathGrammar.y" { (yyval.axis) = Step::AttributeAxis; ;} @@ -1657,7 +1657,7 @@ case 18: /* Line 1455 of yacc.c */ -#line 256 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 256 "xml/XPathGrammar.y" { if (*(yyvsp[(1) - (3)].str) == "node") (yyval.nodeTest) = new Step::NodeTest(Step::NodeTest::AnyNodeTest); @@ -1674,7 +1674,7 @@ case 19: /* Line 1455 of yacc.c */ -#line 269 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 269 "xml/XPathGrammar.y" { (yyval.nodeTest) = new Step::NodeTest(Step::NodeTest::ProcessingInstructionNodeTest); PARSER->deleteString((yyvsp[(1) - (3)].str)); @@ -1685,7 +1685,7 @@ case 20: /* Line 1455 of yacc.c */ -#line 276 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 276 "xml/XPathGrammar.y" { (yyval.nodeTest) = new Step::NodeTest(Step::NodeTest::ProcessingInstructionNodeTest, (yyvsp[(3) - (4)].str)->stripWhiteSpace()); PARSER->deleteString((yyvsp[(1) - (4)].str)); @@ -1697,7 +1697,7 @@ case 21: /* Line 1455 of yacc.c */ -#line 286 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 286 "xml/XPathGrammar.y" { (yyval.predList) = 0; ;} @@ -1706,7 +1706,7 @@ case 23: /* Line 1455 of yacc.c */ -#line 295 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 295 "xml/XPathGrammar.y" { (yyval.predList) = new Vector; (yyval.predList)->append(new Predicate((yyvsp[(1) - (1)].expr))); @@ -1718,7 +1718,7 @@ case 24: /* Line 1455 of yacc.c */ -#line 303 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 303 "xml/XPathGrammar.y" { (yyval.predList)->append(new Predicate((yyvsp[(2) - (2)].expr))); PARSER->unregisterParseNode((yyvsp[(2) - (2)].expr)); @@ -1728,7 +1728,7 @@ case 25: /* Line 1455 of yacc.c */ -#line 311 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 311 "xml/XPathGrammar.y" { (yyval.expr) = (yyvsp[(2) - (3)].expr); ;} @@ -1737,7 +1737,7 @@ case 26: /* Line 1455 of yacc.c */ -#line 318 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 318 "xml/XPathGrammar.y" { (yyval.step) = new Step(Step::DescendantOrSelfAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest)); PARSER->registerParseNode((yyval.step)); @@ -1747,7 +1747,7 @@ case 27: /* Line 1455 of yacc.c */ -#line 326 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 326 "xml/XPathGrammar.y" { (yyval.step) = new Step(Step::SelfAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest)); PARSER->registerParseNode((yyval.step)); @@ -1757,7 +1757,7 @@ case 28: /* Line 1455 of yacc.c */ -#line 332 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 332 "xml/XPathGrammar.y" { (yyval.step) = new Step(Step::ParentAxis, Step::NodeTest(Step::NodeTest::AnyNodeTest)); PARSER->registerParseNode((yyval.step)); @@ -1767,7 +1767,7 @@ case 29: /* Line 1455 of yacc.c */ -#line 340 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 340 "xml/XPathGrammar.y" { (yyval.expr) = new VariableReference(*(yyvsp[(1) - (1)].str)); PARSER->deleteString((yyvsp[(1) - (1)].str)); @@ -1778,7 +1778,7 @@ case 30: /* Line 1455 of yacc.c */ -#line 347 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 347 "xml/XPathGrammar.y" { (yyval.expr) = (yyvsp[(2) - (3)].expr); ;} @@ -1787,7 +1787,7 @@ case 31: /* Line 1455 of yacc.c */ -#line 352 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 352 "xml/XPathGrammar.y" { (yyval.expr) = new StringExpression(*(yyvsp[(1) - (1)].str)); PARSER->deleteString((yyvsp[(1) - (1)].str)); @@ -1798,7 +1798,7 @@ case 32: /* Line 1455 of yacc.c */ -#line 359 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 359 "xml/XPathGrammar.y" { (yyval.expr) = new Number((yyvsp[(1) - (1)].str)->toDouble()); PARSER->deleteString((yyvsp[(1) - (1)].str)); @@ -1809,7 +1809,7 @@ case 34: /* Line 1455 of yacc.c */ -#line 370 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 370 "xml/XPathGrammar.y" { (yyval.expr) = createFunction(*(yyvsp[(1) - (3)].str)); if (!(yyval.expr)) @@ -1822,7 +1822,7 @@ case 35: /* Line 1455 of yacc.c */ -#line 379 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 379 "xml/XPathGrammar.y" { (yyval.expr) = createFunction(*(yyvsp[(1) - (4)].str), *(yyvsp[(3) - (4)].argList)); if (!(yyval.expr)) @@ -1836,7 +1836,7 @@ case 36: /* Line 1455 of yacc.c */ -#line 391 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 391 "xml/XPathGrammar.y" { (yyval.argList) = new Vector; (yyval.argList)->append((yyvsp[(1) - (1)].expr)); @@ -1848,7 +1848,7 @@ case 37: /* Line 1455 of yacc.c */ -#line 399 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 399 "xml/XPathGrammar.y" { (yyval.argList)->append((yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(3) - (3)].expr)); @@ -1858,7 +1858,7 @@ case 40: /* Line 1455 of yacc.c */ -#line 413 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 413 "xml/XPathGrammar.y" { (yyval.expr) = new Union; (yyval.expr)->addSubExpression((yyvsp[(1) - (3)].expr)); @@ -1872,7 +1872,7 @@ case 41: /* Line 1455 of yacc.c */ -#line 425 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 425 "xml/XPathGrammar.y" { (yyval.expr) = (yyvsp[(1) - (1)].locationPath); ;} @@ -1881,7 +1881,7 @@ case 43: /* Line 1455 of yacc.c */ -#line 432 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 432 "xml/XPathGrammar.y" { (yyvsp[(3) - (3)].locationPath)->setAbsolute(true); (yyval.expr) = new Path(static_cast((yyvsp[(1) - (3)].expr)), (yyvsp[(3) - (3)].locationPath)); @@ -1894,7 +1894,7 @@ case 44: /* Line 1455 of yacc.c */ -#line 441 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 441 "xml/XPathGrammar.y" { (yyvsp[(3) - (3)].locationPath)->insertFirstStep((yyvsp[(2) - (3)].step)); (yyvsp[(3) - (3)].locationPath)->setAbsolute(true); @@ -1909,7 +1909,7 @@ case 46: /* Line 1455 of yacc.c */ -#line 456 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 456 "xml/XPathGrammar.y" { (yyval.expr) = new Filter((yyvsp[(1) - (2)].expr), *(yyvsp[(2) - (2)].predList)); PARSER->unregisterParseNode((yyvsp[(1) - (2)].expr)); @@ -1921,7 +1921,7 @@ case 48: /* Line 1455 of yacc.c */ -#line 468 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 468 "xml/XPathGrammar.y" { (yyval.expr) = new LogicalOp(LogicalOp::OP_Or, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1933,7 +1933,7 @@ case 50: /* Line 1455 of yacc.c */ -#line 480 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 480 "xml/XPathGrammar.y" { (yyval.expr) = new LogicalOp(LogicalOp::OP_And, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1945,7 +1945,7 @@ case 52: /* Line 1455 of yacc.c */ -#line 492 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 492 "xml/XPathGrammar.y" { (yyval.expr) = new EqTestOp((yyvsp[(2) - (3)].eqop), (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1957,7 +1957,7 @@ case 54: /* Line 1455 of yacc.c */ -#line 504 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 504 "xml/XPathGrammar.y" { (yyval.expr) = new EqTestOp((yyvsp[(2) - (3)].eqop), (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1969,7 +1969,7 @@ case 56: /* Line 1455 of yacc.c */ -#line 516 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 516 "xml/XPathGrammar.y" { (yyval.expr) = new NumericOp(NumericOp::OP_Add, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1981,7 +1981,7 @@ case 57: /* Line 1455 of yacc.c */ -#line 524 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 524 "xml/XPathGrammar.y" { (yyval.expr) = new NumericOp(NumericOp::OP_Sub, (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -1993,7 +1993,7 @@ case 59: /* Line 1455 of yacc.c */ -#line 536 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 536 "xml/XPathGrammar.y" { (yyval.expr) = new NumericOp((yyvsp[(2) - (3)].numop), (yyvsp[(1) - (3)].expr), (yyvsp[(3) - (3)].expr)); PARSER->unregisterParseNode((yyvsp[(1) - (3)].expr)); @@ -2005,7 +2005,7 @@ case 61: /* Line 1455 of yacc.c */ -#line 548 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 548 "xml/XPathGrammar.y" { (yyval.expr) = new Negative; (yyval.expr)->addSubExpression((yyvsp[(2) - (2)].expr)); @@ -2229,7 +2229,7 @@ /* Line 1675 of yacc.c */ -#line 556 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 556 "xml/XPathGrammar.y" #endif diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/XPathGrammar.h --- a/WebCore/generated/XPathGrammar.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/XPathGrammar.h Mon Oct 04 01:32:07 2010 +0300 @@ -67,7 +67,7 @@ { /* Line 1676 of yacc.c */ -#line 60 "u:\\yaels-qtwebkit\\WebCore\\xml\\XPathGrammar.y" +#line 60 "xml/XPathGrammar.y" Step::Axis axis; Step::NodeTest* nodeTest; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/generated/tokenizer.cpp --- a/WebCore/generated/tokenizer.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/generated/tokenizer.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -65,49 +65,56 @@ #endif /* ! C99 */ #define YY_NUM_RULES 85 #define YY_END_OF_BUFFER 86 -static yyconst short int yy_accept[592] = +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static yyconst flex_int16_t yy_accept[592] = { 0, 0, 0, 0, 0, 0, 0, 86, 84, 2, 2, 84, 84, 84, 84, 84, 84, 84, 84, 84, 84, - 73, 84, 84, 84, 84, 15, 15, 15, 84, 84, + 73, 84, 84, 15, 15, 15, 84, 84, 84, 84, 83, 15, 15, 15, 82, 15, 2, 0, 0, 0, - 14, 0, 0, 0, 0, 18, 18, 8, 0, 0, - 9, 0, 16, 0, 0, 15, 15, 15, 74, 0, - 72, 0, 0, 73, 0, 71, 71, 71, 71, 71, - 71, 71, 71, 71, 71, 16, 71, 71, 68, 71, - 0, 0, 0, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 51, 51, 15, 15, 7, 79, 15, 0, + 14, 0, 0, 0, 18, 18, 0, 8, 0, 0, + 9, 0, 16, 0, 15, 15, 15, 0, 74, 0, + 72, 0, 0, 73, 71, 71, 71, 71, 71, 71, + 71, 71, 71, 16, 71, 71, 68, 71, 0, 71, + 0, 0, 51, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 51, 0, 79, 15, 0, 0, 15, 15, - 0, 15, 15, 0, 15, 6, 5, 15, 15, 15, + 0, 15, 15, 15, 7, 6, 5, 15, 15, 15, 15, 0, 0, 0, 14, 0, 0, 0, 18, 18, - 18, 0, 18, 0, 0, 14, 0, 0, 4, 15, - 0, 0, 71, 71, 71, 0, 71, 58, 71, 53, - 56, 71, 69, 60, 71, 59, 67, 71, 62, 61, - 57, 71, 71, 71, 0, 51, 51, 51, 51, 0, + 0, 18, 18, 0, 0, 14, 0, 0, 4, 15, + 0, 0, 71, 0, 58, 71, 53, 56, 71, 69, + 60, 71, 59, 67, 71, 62, 61, 57, 71, 71, + 71, 71, 71, 71, 0, 51, 51, 0, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 15, 15, 15, 16, 15, 15, 80, 80, 15, 12, - 10, 15, 13, 0, 0, 0, 17, 18, 18, 18, - 17, 0, 0, 15, 0, 1, 71, 71, 71, 71, + 15, 15, 16, 15, 15, 80, 80, 15, 15, 12, + 10, 15, 13, 0, 0, 0, 17, 17, 18, 18, + 18, 0, 0, 15, 0, 1, 71, 71, 63, 71, - 63, 71, 70, 16, 64, 54, 71, 3, 51, 51, + 70, 16, 64, 54, 71, 71, 71, 3, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, - 51, 51, 15, 15, 75, 0, 80, 80, 80, 79, + 51, 51, 15, 75, 0, 80, 80, 80, 79, 15, 11, 0, 0, 0, 18, 18, 18, 0, 15, 0, - 0, 71, 71, 71, 65, 66, 51, 51, 51, 51, - 51, 51, 51, 51, 51, 51, 20, 51, 51, 15, - 15, 81, 80, 80, 80, 80, 0, 0, 0, 0, - 77, 0, 0, 0, 0, 18, 18, 18, 0, 15, + 0, 71, 65, 66, 71, 71, 51, 51, 51, 51, + 51, 51, 51, 51, 51, 20, 51, 51, 51, 15, + 81, 80, 80, 80, 80, 0, 0, 0, 0, 77, + 0, 15, 0, 0, 0, 18, 18, 18, 0, 15, 71, 71, 55, 51, 51, 51, 51, 51, 51, 51, - 51, 37, 51, 51, 51, 51, 51, 15, 15, 81, + 37, 51, 51, 51, 51, 51, 51, 15, 81, 80, - 80, 80, 80, 80, 80, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 77, 0, 0, 0, 0, 17, - 18, 18, 17, 0, 15, 71, 71, 51, 51, 51, - 51, 51, 51, 19, 51, 51, 51, 51, 51, 51, - 51, 51, 15, 15, 81, 80, 80, 80, 80, 80, - 80, 0, 76, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 18, 18, 0, 15, - 71, 71, 51, 51, 51, 51, 39, 51, 51, 51, + 80, 80, 80, 80, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 77, 0, 0, 15, 0, 0, 17, + 17, 18, 18, 0, 15, 71, 71, 51, 51, 51, + 51, 51, 19, 51, 51, 51, 51, 51, 51, 51, + 51, 51, 15, 81, 80, 80, 80, 80, 80, 80, + 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 18, 18, 0, 15, + 71, 71, 51, 51, 51, 39, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 15, 81, 80, 80, 80, 80, 80, 80, 80, 0, 76, 0, @@ -123,7 +130,7 @@ 51, 51, 51, 0, 0, 0, 0, 0, 0, 51, 51, 51, 51, 41, 51, 51, 51, 51, 51, 29, - 36, 35, 51, 51, 0, 0, 0, 78, 0, 0, + 36, 35, 51, 51, 0, 78, 0, 0, 0, 0, 42, 51, 51, 51, 51, 43, 51, 28, 51, 51, 51, 51, 0, 0, 0, 0, 47, 51, 51, 51, 51, 51, 51, 51, 51, 0, 0, 0, 51, 51, @@ -135,7 +142,7 @@ } ; -static yyconst int yy_ec[256] = +static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 4, 5, 1, 1, 1, 1, 1, 1, 1, @@ -143,469 +150,939 @@ 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 12, 18, 19, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 12, 22, 23, - 24, 25, 26, 27, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, - 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, - 12, 28, 12, 29, 30, 12, 31, 32, 33, 34, + 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, + 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, + 12, 54, 12, 55, 56, 12, 57, 58, 59, 60, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - 55, 56, 57, 58, 12, 59, 1, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, + 61, 62, 63, 64, 65, 37, 66, 67, 68, 69, + 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + 80, 81, 82, 83, 12, 84, 1, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, - 60, 60, 60, 60, 60 + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85, 85, 85, 85, 85, 85, + 85, 85, 85, 85, 85 } ; -static yyconst int yy_meta[61] = +static yyconst flex_int32_t yy_meta[86] = { 0, - 1, 2, 3, 3, 3, 4, 5, 5, 5, 5, - 5, 5, 5, 6, 7, 5, 5, 8, 5, 5, - 9, 5, 5, 5, 5, 10, 5, 11, 5, 11, - 12, 12, 12, 12, 12, 12, 11, 11, 11, 11, - 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, - 11, 11, 11, 11, 11, 11, 5, 5, 5, 11 + 1, 2, 3, 4, 4, 5, 6, 7, 6, 6, + 6, 6, 7, 8, 9, 6, 6, 10, 6, 6, + 11, 6, 6, 6, 6, 12, 6, 13, 13, 13, + 13, 13, 13, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 6, 14, 13, 13, 13, 13, + 13, 13, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, + 14, 6, 6, 6, 14 } ; -static yyconst short int yy_base[629] = +static yyconst flex_int16_t yy_base[661] = { 0, - 0, 0, 39, 41, 2424, 2423, 2458, 2461, 62, 71, - 76, 61, 69, 2433, 78, 2432, 50, 89, 2434, 2438, - 132, 2446, 175, 87, 2417, 81, 110, 97, 2413, 2412, - 2461, 85, 219, 102, 2461, 112, 192, 236, 2378, 84, - 2461, 274, 113, 222, 238, 2392, 265, 2461, 119, 309, - 2461, 114, 119, 2393, 300, 176, 232, 252, 244, 2401, - 2405, 2383, 2363, 0, 317, 124, 2332, 116, 121, 240, - 204, 133, 217, 163, 275, 298, 326, 292, 2321, 216, - 2328, 363, 334, 2308, 206, 253, 301, 261, 257, 328, - 171, 297, 319, 329, 234, 415, 2461, 2461, 347, 351, + 0, 0, 64, 66, 54, 56, 1734, 6635, 93, 98, + 107, 83, 155, 1709, 77, 1666, 98, 99, 1666, 1670, + 207, 1677, 275, 100, 108, 146, 340, 1657, 1655, 1654, + 6635, 101, 110, 151, 6635, 127, 227, 294, 89, 136, + 6635, 401, 140, 0, 443, 1623, 485, 6635, 117, 546, + 6635, 138, 157, 1649, 142, 360, 362, 588, 343, 1656, + 1635, 1576, 1601, 0, 1558, 325, 150, 356, 93, 304, + 152, 328, 371, 372, 390, 424, 1532, 147, 630, 154, + 1565, 675, 1528, 373, 384, 400, 327, 386, 396, 170, + 423, 430, 437, 733, 6635, 208, 775, 1558, 432, 478, - 2309, 350, 365, 406, 380, 2461, 2461, 363, 375, 384, - 376, 2267, 425, 311, 402, 452, 487, 431, 2231, 522, - 2217, 478, 513, 431, 360, 448, 557, 592, 2461, 465, - 2190, 415, 2153, 627, 2150, 548, 447, 2137, 111, 2125, - 2121, 440, 2109, 2101, 442, 2100, 2099, 453, 2098, 2097, - 2096, 256, 473, 454, 2105, 468, 2093, 662, 2077, 583, - 364, 441, 489, 504, 501, 472, 508, 502, 503, 540, - 618, 524, 697, 2081, 656, 559, 546, 2073, 584, 593, - 594, 657, 628, 2045, 629, 688, 704, 713, 2061, 748, - 739, 659, 755, 664, 2072, 2461, 764, 2047, 799, 507, + 1552, 454, 468, 836, 6635, 6635, 6635, 480, 482, 485, + 509, 337, 527, 367, 479, 897, 958, 0, 1506, 1000, + 1042, 1494, 1103, 477, 506, 507, 1164, 1225, 6635, 512, + 1523, 183, 1473, 1267, 1472, 530, 1465, 1464, 534, 1446, + 1433, 474, 1422, 1403, 517, 1388, 1372, 1362, 538, 518, + 540, 1358, 1328, 529, 1366, 536, 1323, 1370, 548, 568, + 558, 572, 577, 580, 574, 590, 601, 598, 1320, 1431, + 575, 1492, 1344, 616, 618, 276, 1325, 619, 1534, 622, + 624, 643, 640, 495, 648, 1595, 0, 1637, 1285, 1698, + 1759, 672, 1820, 663, 1322, 6635, 1281, 1881, 1267, 649, - 2046, 537, 2012, 546, 2011, 2009, 645, 2461, 571, 790, - 2008, 834, 373, 658, 619, 646, 654, 538, 574, 606, - 572, 583, 825, 841, 2461, 850, 617, 1986, 1978, 885, - 699, 1955, 871, 887, 893, 909, 915, 931, 727, 1986, - 620, 937, 953, 683, 1944, 1943, 647, 959, 975, 714, - 715, 689, 729, 740, 476, 764, 1901, 728, 868, 981, - 997, 1003, 620, 1878, 1876, 1874, 1038, 1052, 786, 780, - 2461, 1079, 1817, 1038, 1070, 1087, 1095, 1103, 1111, 801, - 1119, 1127, 1837, 778, 1135, 1143, 784, 680, 782, 791, - 1036, 1769, 817, 824, 781, 815, 825, 1151, 1159, 1167, + 1266, 644, 1260, 1240, 627, 1923, 652, 6635, 670, 1223, + 1984, 632, 665, 685, 703, 702, 676, 715, 720, 716, + 682, 2026, 2087, 6635, 0, 365, 1250, 1224, 807, 2129, + 713, 686, 2190, 0, 2232, 2293, 2354, 2415, 764, 1231, + 275, 2476, 1182, 1160, 2518, 718, 717, 2579, 747, 770, + 767, 774, 769, 797, 799, 1118, 801, 877, 2621, 2682, + 0, 648, 1062, 1043, 1023, 968, 990, 760, 789, 6635, + 2743, 2785, 751, 2846, 0, 2888, 2949, 3010, 3071, 3132, + 3206, 3248, 3309, 795, 3370, 816, 798, 825, 831, 1083, + 989, 820, 828, 854, 856, 878, 3412, 3473, 0, 854, - 891, 1723, 1691, 1690, 1641, 1202, 820, 1207, 1221, 866, - 1256, 1235, 1268, 1295, 1309, 1336, 1371, 1552, 1199, 2461, - 1295, 1327, 1503, 1362, 1034, 1379, 1387, 883, 1395, 1403, - 826, 884, 648, 1501, 850, 1022, 852, 734, 1236, 871, - 903, 1060, 1438, 1424, 1440, 935, 1471, 1439, 1391, 1321, - 1252, 1330, 2461, 929, 927, 1475, 1502, 1537, 1291, 947, - 1483, 1572, 1607, 1481, 1221, 1528, 995, 1563, 1598, 1081, - 1350, 1615, 1071, 1516, 1623, 1420, 1187, 60, 926, 682, - 910, 949, 975, 1188, 976, 931, 955, 1190, 1658, 1644, - 1163, 2461, 2461, 2461, 2461, 2461, 2461, 1679, 1017, 1019, + 984, 976, 951, 938, 1021, 867, 1035, 3534, 858, 3595, + 1062, 1144, 1185, 1205, 3656, 3717, 3759, 455, 3820, 6635, + 894, 3881, 3942, 4003, 4064, 4125, 4186, 866, 4247, 865, + 892, 881, 891, 895, 888, 898, 947, 1308, 928, 945, + 946, 4289, 4350, 0, 863, 908, 878, 836, 771, 762, + 1076, 6635, 869, 1039, 1258, 4411, 4472, 879, 1032, 1265, + 4533, 4594, 4655, 1092, 758, 1178, 4697, 4739, 1238, 1034, + 4781, 4842, 893, 4903, 1411, 725, 954, 1001, 1059, 1071, + 1085, 1075, 1180, 1084, 1124, 1158, 1237, 1300, 1305, 0, + 757, 6635, 6635, 6635, 6635, 6635, 6635, 1338, 1119, 1149, - 1667, 1706, 1050, 1062, 1692, 1708, 1027, 1522, 1418, 1551, - 1704, 1585, 991, 1161, 1208, 1186, 1048, 733, 951, 1216, - 1169, 1353, 1234, 1247, 1267, 1217, 1727, 1733, 1749, 1755, - 2461, 1419, 1274, 1290, 1315, 1337, 1354, 1423, 1097, 1121, - 1454, 950, 1456, 1265, 821, 1442, 1435, 819, 1218, 1466, - 1362, 2461, 1771, 1777, 1793, 1292, 1515, 450, 1518, 1422, - 1467, 1538, 1564, 1573, 1363, 1504, 1465, 1624, 1539, 779, - 1625, 1588, 1799, 1815, 1821, 1687, 1676, 1587, 1137, 1667, - 1589, 1590, 1594, 1692, 1638, 1609, 1646, 735, 686, 1694, - 1722, 1318, 1669, 1837, 1843, 1878, 1883, 1876, 1888, 1068, + 4945, 1365, 1262, 1360, 4987, 5048, 959, 1391, 1028, 1402, + 5080, 1418, 1220, 1261, 1183, 1318, 1363, 1321, 681, 1386, + 1392, 1394, 1293, 1412, 1033, 1404, 0, 5137, 5179, 5221, + 6635, 1272, 1421, 1445, 1448, 1395, 1449, 957, 1414, 1453, + 1474, 667, 1086, 1462, 629, 1457, 1481, 628, 1460, 1259, + 1035, 6635, 5263, 5305, 5347, 653, 1514, 1122, 1486, 1491, + 1503, 1535, 1484, 1530, 1521, 1550, 1556, 1565, 1567, 533, + 1578, 1415, 5389, 5431, 1635, 1657, 1575, 1507, 1582, 1628, + 1619, 1651, 1533, 1652, 1653, 1066, 1661, 526, 502, 1669, + 1659, 1671, 1668, 1743, 1773, 1840, 1913, 1800, 5473, 1678, - 1277, 1554, 1640, 653, 1702, 1743, 1705, 1727, 1718, 1877, - 652, 617, 1381, 1745, 1915, 1942, 1920, 2461, 1934, 1920, - 616, 1744, 1746, 1768, 1766, 578, 1767, 548, 1772, 1790, - 1809, 1794, 1977, 1963, 1985, 2012, 547, 1817, 1811, 1870, - 1871, 1773, 1886, 1813, 1831, 1988, 2023, 2021, 1899, 1930, - 1815, 1931, 1941, 1958, 513, 1982, 2028, 2037, 1983, 2037, - 449, 1791, 1932, 2006, 417, 2045, 2061, 2039, 372, 994, - 1914, 2055, 1933, 2077, 2083, 1980, 334, 2007, 332, 2058, - 2099, 1922, 2056, 289, 2072, 1900, 172, 1965, 2073, 34, - 2461, 2134, 2139, 2150, 2155, 2164, 2171, 2182, 2191, 2196, + 1699, 1696, 1064, 444, 1617, 1739, 1147, 1728, 1713, 1125, + 435, 434, 1729, 1740, 1832, 6635, 1893, 5515, 1918, 5576, + 413, 1778, 1664, 1816, 1814, 382, 1177, 359, 1742, 1810, + 1839, 1821, 1955, 5637, 1995, 5679, 333, 1741, 1853, 1892, + 1837, 1891, 1895, 1921, 1871, 2016, 5721, 5763, 1874, 1941, + 1923, 1971, 1909, 1979, 312, 1994, 5805, 5847, 2020, 2006, + 247, 2007, 1974, 1938, 180, 5889, 5931, 2023, 148, 1776, + 1195, 2024, 1976, 5973, 2097, 1986, 135, 2044, 97, 2060, + 2119, 1937, 2074, 91, 2075, 2083, 78, 2072, 2109, 39, + 6635, 6034, 6039, 6052, 6057, 6064, 6074, 6087, 375, 6092, - 2207, 2219, 2221, 2230, 2235, 2244, 2249, 2258, 2267, 2279, - 2288, 2297, 2302, 2314, 2319, 2330, 2335, 2346, 2357, 2368, - 2373, 2384, 2395, 2400, 2411, 2420, 2431, 2440 + 6102, 6115, 6129, 276, 6134, 6144, 6149, 6159, 6169, 6173, + 771, 6182, 6195, 6208, 6222, 6236, 6246, 6256, 6261, 1142, + 6274, 1204, 6279, 6291, 6304, 1398, 6318, 1402, 6323, 6335, + 6348, 6361, 6374, 6387, 1523, 6392, 6405, 1558, 6410, 6422, + 6435, 6448, 6461, 6474, 6487, 6492, 6505, 1600, 6510, 6522, + 6535, 6548, 6561, 6574, 1620, 1632, 6587, 6600, 6610, 6620 } ; -static yyconst short int yy_def[629] = +static yyconst flex_int16_t yy_def[661] = { 0, 591, 1, 1, 1, 1, 1, 591, 591, 591, 591, 591, 592, 593, 591, 594, 591, 591, 595, 591, 591, - 591, 591, 591, 596, 591, 597, 597, 597, 591, 591, - 591, 597, 597, 597, 591, 597, 591, 591, 591, 592, - 591, 598, 593, 591, 599, 600, 600, 591, 594, 601, - 591, 591, 591, 591, 596, 597, 597, 597, 21, 602, - 591, 603, 591, 21, 604, 605, 605, 605, 605, 605, - 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, - 591, 23, 606, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 597, 597, 591, 591, 597, 608, + 591, 591, 591, 596, 596, 596, 597, 591, 591, 591, + 591, 596, 596, 596, 591, 596, 591, 591, 591, 592, + 591, 598, 593, 599, 600, 600, 601, 591, 594, 602, + 591, 591, 591, 591, 596, 596, 596, 597, 21, 603, + 591, 604, 591, 21, 605, 605, 605, 605, 605, 605, + 605, 605, 605, 605, 605, 605, 605, 605, 606, 605, + 591, 23, 607, 607, 607, 607, 607, 607, 607, 607, + 607, 607, 607, 608, 591, 596, 609, 591, 596, 596, - 591, 597, 597, 591, 597, 591, 591, 597, 597, 597, - 597, 591, 592, 592, 592, 592, 598, 591, 600, 47, - 600, 609, 47, 594, 594, 594, 594, 601, 591, 597, - 602, 610, 605, 605, 605, 611, 605, 605, 605, 605, + 610, 596, 596, 596, 591, 591, 591, 596, 596, 596, + 596, 591, 592, 592, 592, 592, 598, 611, 600, 600, + 612, 600, 120, 613, 613, 613, 613, 614, 591, 596, + 615, 616, 605, 617, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, 605, - 605, 605, 605, 605, 591, 607, 607, 607, 607, 612, + 605, 605, 605, 605, 591, 607, 607, 618, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 96, 597, 96, 591, 597, 597, 613, 591, 597, 597, - 597, 597, 597, 591, 592, 116, 591, 120, 600, 120, - 47, 594, 127, 597, 614, 591, 134, 605, 134, 605, + 596, 104, 591, 596, 596, 619, 591, 596, 104, 596, + 596, 596, 596, 591, 592, 592, 620, 120, 600, 120, + 120, 613, 613, 596, 621, 591, 605, 153, 605, 605, - 605, 605, 605, 605, 605, 605, 605, 591, 607, 158, - 607, 158, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 96, 173, 591, 591, 615, 591, 591, 616, - 597, 591, 116, 591, 120, 190, 47, 127, 597, 614, - 610, 134, 199, 605, 605, 605, 607, 158, 212, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 607, 96, - 173, 591, 617, 591, 591, 591, 616, 616, 618, 619, - 591, 620, 591, 116, 591, 120, 190, 47, 127, 597, - 134, 199, 605, 607, 158, 212, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 96, 173, 591, + 605, 605, 605, 605, 605, 153, 605, 591, 607, 607, + 170, 607, 607, 607, 607, 607, 607, 607, 607, 607, + 607, 170, 104, 591, 622, 623, 591, 591, 624, 104, + 596, 591, 625, 626, 120, 120, 120, 613, 596, 621, + 627, 153, 605, 605, 153, 605, 607, 170, 607, 607, + 607, 607, 607, 607, 607, 607, 607, 607, 170, 104, + 628, 629, 591, 591, 591, 630, 630, 631, 632, 591, + 633, 104, 591, 634, 635, 636, 636, 277, 637, 104, + 153, 153, 153, 607, 170, 607, 607, 607, 607, 607, + 607, 607, 607, 607, 607, 607, 170, 104, 638, 639, - 621, 591, 591, 591, 591, 591, 618, 591, 622, 619, - 623, 616, 616, 616, 616, 616, 620, 591, 116, 591, - 120, 190, 600, 127, 597, 134, 199, 607, 158, 212, + 591, 591, 591, 591, 591, 631, 591, 640, 641, 642, + 643, 643, 643, 643, 643, 644, 104, 591, 645, 591, + 646, 646, 322, 647, 104, 153, 326, 607, 170, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 597, 173, 591, 624, 591, 591, 591, 591, - 591, 591, 591, 618, 618, 618, 618, 622, 619, 619, - 619, 619, 623, 316, 591, 116, 600, 190, 127, 597, - 605, 199, 607, 607, 212, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 607, 607, 597, 591, - 591, 591, 591, 591, 591, 591, 591, 618, 618, 618, + 607, 170, 104, 648, 649, 591, 591, 591, 591, 591, + 591, 591, 650, 650, 650, 650, 651, 652, 652, 652, + 652, 653, 654, 325, 591, 645, 322, 323, 647, 325, + 326, 326, 607, 170, 607, 607, 607, 607, 607, 607, + 607, 607, 607, 607, 607, 607, 607, 607, 325, 655, + 591, 591, 591, 591, 591, 591, 591, 650, 650, 650, - 357, 619, 619, 619, 362, 316, 591, 600, 597, 605, + 356, 652, 652, 652, 361, 654, 591, 368, 325, 372, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 607, 591, 357, 362, 316, - 591, 597, 607, 607, 607, 607, 607, 607, 607, 607, + 607, 607, 607, 607, 607, 607, 656, 356, 361, 406, + 591, 325, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 591, 357, 362, 316, 597, 607, 607, 607, 607, + 607, 591, 356, 361, 406, 325, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 357, 362, 316, 625, 607, 607, 607, 607, + 607, 607, 356, 361, 654, 657, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 357, 362, 625, 496, 626, 627, 607, + 607, 607, 607, 650, 652, 657, 657, 658, 659, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 607, 607, 627, 627, 591, 591, 627, 628, + 607, 607, 607, 607, 591, 591, 658, 660, 658, 658, 607, 607, 607, 607, 607, 607, 607, 607, 607, 607, - 607, 607, 627, 516, 627, 516, 607, 607, 607, 607, - 607, 607, 607, 607, 607, 516, 627, 536, 607, 607, - 607, 607, 607, 607, 607, 607, 516, 536, 607, 607, - 607, 607, 607, 607, 607, 516, 536, 607, 607, 607, - 607, 607, 607, 516, 536, 607, 607, 607, 607, 607, - 536, 607, 607, 607, 607, 607, 607, 607, 607, 607, + 607, 607, 658, 520, 658, 520, 607, 607, 607, 607, + 607, 607, 607, 607, 607, 658, 534, 520, 607, 607, + 607, 607, 607, 607, 607, 607, 534, 520, 607, 607, + 607, 607, 607, 607, 607, 534, 520, 607, 607, 607, + 607, 607, 607, 534, 658, 607, 607, 607, 607, 607, + 658, 607, 607, 607, 607, 607, 607, 607, 607, 607, 0, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 591, 591, 591, 591, 591, 591, 591, 591 + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591 } ; -static yyconst short int yy_nxt[2522] = +static yyconst flex_int16_t yy_nxt[6721] = { 0, 8, 9, 10, 9, 9, 9, 11, 12, 13, 14, 8, 8, 15, 8, 8, 16, 17, 18, 19, 20, - 21, 8, 22, 8, 8, 8, 23, 24, 25, 26, - 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, - 26, 26, 26, 27, 26, 26, 26, 26, 26, 26, - 28, 26, 26, 26, 26, 26, 8, 29, 30, 26, - 31, 160, 31, 37, 37, 37, 37, 37, 41, 32, - 52, 32, 37, 37, 37, 37, 37, 38, 38, 38, - 38, 38, 33, 34, 33, 34, 43, 160, 42, 44, - 41, 41, 416, 53, 98, 35, 45, 35, 98, 47, + 21, 8, 22, 8, 8, 8, 23, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, + 25, 24, 24, 24, 24, 24, 24, 26, 24, 24, + 24, 24, 24, 27, 28, 24, 24, 24, 24, 24, + 24, 24, 24, 24, 24, 24, 24, 24, 25, 24, + 24, 24, 24, 24, 24, 26, 24, 24, 24, 24, + 24, 8, 29, 30, 24, 31, 36, 31, 36, 41, + 41, 32, 158, 32, 37, 37, 37, 37, 37, 37, + + 37, 37, 37, 37, 33, 34, 33, 34, 38, 38, + 38, 38, 38, 95, 95, 36, 54, 36, 52, 52, + 32, 95, 32, 95, 98, 99, 98, 99, 112, 41, + 50, 158, 33, 34, 33, 34, 42, 139, 53, 56, + 95, 108, 39, 41, 158, 35, 134, 35, 57, 100, + 158, 109, 58, 97, 97, 95, 112, 591, 52, 95, + 591, 97, 101, 97, 95, 139, 53, 56, 111, 108, + 50, 39, 43, 98, 98, 44, 57, 100, 53, 109, + 97, 136, 45, 45, 45, 45, 45, 45, 158, 42, + 102, 110, 141, 47, 151, 97, 111, 165, 132, 97, + + 134, 158, 196, 134, 97, 134, 53, 134, 47, 154, + 136, 45, 45, 45, 45, 45, 45, 61, 102, 110, + 141, 95, 151, 158, 62, 63, 165, 64, 37, 37, + 37, 37, 37, 158, 65, 65, 66, 67, 68, 65, + 69, 70, 71, 65, 72, 65, 73, 74, 65, 75, + 65, 76, 77, 78, 65, 65, 65, 65, 65, 65, + 79, 97, 80, 65, 65, 66, 67, 68, 65, 69, + 70, 71, 72, 65, 73, 74, 65, 75, 65, 76, + 77, 78, 65, 65, 65, 65, 65, 65, 65, 65, + 241, 65, 82, 225, 196, 38, 38, 38, 38, 38, - 47, 47, 47, 47, 47, 50, 54, 96, 100, 52, - 98, 42, 100, 104, 39, 98, 55, 96, 96, 96, - 96, 96, 96, 98, 100, 98, 101, 102, 108, 100, - 591, 41, 57, 591, 52, 101, 101, 100, 136, 100, - 45, 58, 61, 136, 105, 110, 50, 201, 136, 62, - 63, 136, 64, 137, 103, 139, 111, 53, 138, 65, - 136, 66, 67, 67, 68, 69, 70, 67, 71, 72, - 73, 67, 74, 67, 75, 76, 67, 77, 67, 78, - 79, 80, 67, 67, 67, 67, 67, 67, 143, 98, - 136, 67, 82, 37, 37, 37, 37, 37, 160, 160, + 158, 227, 83, 84, 85, 83, 83, 86, 83, 83, + 87, 83, 83, 88, 89, 90, 83, 91, 83, 92, + 83, 93, 83, 83, 83, 83, 83, 83, 94, 39, + 83, 83, 84, 85, 83, 83, 86, 83, 83, 87, + 83, 88, 89, 90, 83, 91, 83, 92, 83, 93, + 83, 83, 83, 83, 83, 83, 140, 134, 39, 83, + 104, 591, 142, 59, 135, 158, 162, 104, 104, 104, + 104, 104, 104, 95, 41, 95, 98, 99, 134, 184, + 158, 134, 225, 65, 140, 118, 158, 118, 98, 145, + 263, 142, 135, 130, 162, 137, 104, 104, 104, 104, + + 104, 104, 40, 40, 40, 113, 138, 184, 115, 134, + 143, 65, 158, 97, 159, 97, 144, 163, 160, 146, + 42, 116, 130, 137, 134, 134, 158, 164, 116, 116, + 116, 116, 116, 116, 138, 158, 147, 158, 143, 158, + 148, 161, 159, 134, 144, 95, 163, 160, 146, 158, + 166, 149, 174, 158, 117, 150, 164, 116, 116, 116, + 116, 116, 116, 120, 147, 167, 158, 95, 148, 161, + 120, 120, 120, 120, 120, 120, 158, 134, 168, 166, + 149, 95, 365, 158, 150, 97, 41, 158, 158, 41, + 158, 95, 178, 95, 167, 95, 121, 158, 95, 120, + + 120, 120, 120, 120, 120, 123, 168, 97, 591, 591, + 180, 365, 123, 123, 123, 123, 123, 123, 41, 41, + 178, 97, 95, 182, 175, 95, 201, 134, 181, 40, + 50, 97, 42, 97, 41, 97, 232, 202, 97, 180, + 194, 123, 123, 123, 123, 123, 123, 49, 49, 49, + 124, 182, 175, 183, 201, 158, 181, 204, 126, 50, + 50, 200, 97, 199, 232, 97, 127, 209, 203, 194, + 134, 134, 207, 127, 127, 127, 127, 127, 127, 158, + 42, 183, 134, 134, 205, 204, 158, 134, 95, 158, + 200, 134, 199, 134, 212, 213, 209, 203, 214, 128, + + 207, 158, 127, 127, 127, 127, 127, 127, 104, 216, + 217, 158, 205, 218, 215, 104, 104, 104, 104, 104, + 104, 158, 212, 219, 213, 158, 214, 158, 97, 95, + 158, 224, 229, 158, 220, 95, 174, 224, 216, 217, + 221, 218, 215, 158, 104, 104, 104, 104, 104, 104, + 153, 158, 219, 95, 158, 41, 95, 153, 153, 153, + 153, 153, 153, 220, 202, 225, 476, 244, 221, 97, + 96, 97, 97, 301, 591, 97, 95, 97, 249, 243, + 134, 158, 158, 246, 41, 158, 153, 153, 153, 153, + 153, 153, 591, 97, 231, 244, 97, 134, 247, 258, - 145, 167, 83, 100, 84, 84, 85, 86, 84, 84, - 87, 84, 84, 88, 84, 84, 89, 90, 91, 84, - 92, 84, 93, 84, 94, 84, 84, 84, 84, 84, - 84, 136, 98, 160, 84, 101, 102, 38, 38, 38, - 38, 38, 118, 136, 136, 98, 100, 98, 101, 102, - 161, 142, 118, 118, 118, 118, 118, 118, 120, 100, - 144, 100, 591, 109, 59, 98, 154, 136, 120, 120, - 120, 120, 120, 120, 39, 40, 40, 40, 113, 100, - 160, 115, 140, 136, 160, 123, 130, 67, 160, 205, - 162, 165, 122, 141, 116, 123, 123, 123, 123, 123, + 239, 42, 134, 83, 83, 134, 249, 83, 243, 250, + 83, 254, 246, 83, 83, 83, 97, 83, 158, 83, + 158, 83, 231, 158, 156, 50, 95, 247, 239, 158, + 273, 251, 83, 83, 158, 158, 83, 250, 158, 83, + 254, 83, 83, 83, 252, 83, 255, 83, 253, 83, + 257, 256, 156, 170, 284, 158, 158, 283, 273, 251, + 170, 170, 170, 170, 170, 170, 97, 307, 158, 158, + 158, 134, 252, 158, 225, 255, 253, 95, 158, 257, + 256, 187, 284, 187, 288, 283, 290, 397, 286, 170, + 170, 170, 170, 170, 170, 172, 396, 318, 407, 280, + + 158, 307, 172, 172, 172, 172, 172, 172, 266, 266, + 266, 266, 266, 308, 268, 287, 286, 97, 289, 269, + 158, 270, 158, 158, 291, 318, 407, 158, 280, 331, + 328, 172, 172, 172, 172, 172, 172, 103, 103, 103, + 103, 103, 310, 287, 292, 338, 289, 293, 158, 95, + 158, 158, 158, 291, 158, 330, 179, 332, 331, 328, + 271, 395, 337, 179, 179, 179, 179, 179, 179, 158, + 307, 225, 292, 158, 307, 293, 307, 333, 158, 346, + 225, 158, 375, 330, 158, 339, 332, 340, 392, 97, + 337, 307, 179, 179, 179, 179, 179, 179, 114, 185, + + 185, 185, 114, 394, 41, 333, 294, 158, 377, 158, + 411, 310, 373, 341, 339, 295, 340, 186, 158, 158, + 308, 296, 308, 379, 186, 186, 186, 186, 186, 186, + 158, 158, 310, 393, 158, 294, 378, 377, 376, 380, + 373, 158, 341, 295, 158, 158, 158, 121, 158, 296, + 42, 158, 379, 186, 186, 186, 186, 186, 186, 40, + 40, 40, 113, 350, 378, 115, 376, 380, 385, 266, + 266, 266, 266, 266, 381, 268, 349, 386, 116, 387, + 269, 158, 270, 416, 462, 116, 116, 116, 116, 116, + 116, 305, 305, 305, 305, 305, 385, 591, 158, 158, + + 158, 348, 591, 381, 270, 431, 386, 158, 387, 347, + 158, 117, 416, 462, 116, 116, 116, 116, 116, 116, + 188, 271, 305, 305, 305, 305, 305, 188, 188, 188, + 188, 188, 188, 431, 591, 270, 351, 351, 351, 351, + 351, 591, 158, 271, 307, 96, 307, 417, 304, 352, + 450, 96, 472, 121, 158, 432, 188, 188, 188, 188, + 188, 188, 190, 305, 305, 305, 305, 305, 303, 190, + 190, 190, 190, 190, 190, 417, 270, 351, 351, 351, + 351, 351, 409, 509, 432, 310, 158, 302, 158, 418, + 352, 524, 308, 103, 103, 103, 103, 103, 190, 190, - 123, 117, 136, 164, 116, 116, 116, 116, 116, 116, - 49, 49, 49, 124, 101, 148, 160, 146, 41, 136, - 96, 126, 152, 147, 160, 136, 153, 168, 160, 127, - 96, 96, 96, 96, 96, 96, 128, 134, 42, 127, - 127, 127, 127, 127, 127, 163, 160, 134, 134, 134, - 134, 134, 134, 136, 158, 160, 160, 169, 149, 160, - 98, 160, 166, 98, 158, 158, 158, 158, 158, 158, - 175, 173, 41, 170, 100, 150, 98, 100, 98, 151, - 591, 173, 173, 173, 173, 173, 173, 50, 98, 98, - 100, 160, 100, 98, 84, 84, 180, 98, 84, 160, + 190, 190, 190, 190, 122, 122, 122, 122, 122, 96, + 409, 334, 158, 419, 420, 271, 421, 158, 418, 158, + 524, 591, 335, 191, 158, 423, 307, 466, 158, 336, + 191, 191, 191, 191, 191, 191, 158, 158, 158, 158, + 334, 419, 530, 420, 421, 305, 305, 305, 305, 305, + 335, 591, 234, 423, 234, 466, 307, 336, 270, 191, + 191, 191, 191, 191, 191, 125, 192, 192, 192, 125, + 424, 158, 308, 479, 527, 158, 41, 158, 158, 114, + 185, 185, 185, 114, 193, 41, 305, 305, 305, 305, + 305, 193, 193, 193, 193, 193, 193, 271, 424, 270, + + 158, 479, 308, 527, 425, 541, 305, 305, 305, 305, + 305, 158, 578, 134, 261, 422, 261, 50, 441, 270, + 193, 193, 193, 193, 193, 193, 49, 49, 49, 124, + 158, 42, 425, 158, 541, 134, 158, 126, 271, 125, + 192, 192, 192, 125, 422, 127, 241, 441, 158, 265, + 41, 439, 127, 127, 127, 127, 127, 127, 271, 398, + 351, 351, 351, 398, 591, 307, 402, 351, 351, 351, + 402, 426, 399, 158, 307, 264, 158, 307, 128, 403, + 439, 127, 127, 127, 127, 127, 127, 198, 471, 96, + 158, 50, 440, 134, 198, 198, 198, 198, 198, 198, - 160, 84, 100, 100, 84, 84, 84, 100, 84, 41, - 84, 100, 84, 213, 176, 156, 95, 95, 95, 95, - 95, 179, 250, 183, 181, 182, 177, 40, 98, 42, - 132, 178, 41, 49, 196, 171, 177, 177, 177, 177, - 177, 177, 100, 41, 160, 171, 171, 171, 171, 171, - 171, 187, 42, 114, 185, 185, 185, 114, 50, 41, - 41, 187, 187, 187, 187, 187, 187, 136, 160, 136, - 202, 214, 186, 204, 136, 50, 160, 160, 98, 42, - 136, 136, 186, 186, 186, 186, 186, 186, 40, 40, - 40, 113, 100, 200, 115, 160, 194, 203, 190, 160, + 426, 169, 169, 169, 169, 169, 171, 171, 171, 171, + 171, 308, 158, 134, 158, 310, 456, 471, 310, 134, + 134, 440, 96, 198, 198, 198, 198, 198, 198, 152, + 152, 152, 152, 152, 134, 448, 382, 241, 121, 398, + 351, 351, 351, 398, 456, 307, 158, 383, 206, 442, + 228, 444, 399, 158, 384, 206, 206, 206, 206, 206, + 206, 158, 591, 448, 173, 382, 402, 351, 351, 351, + 402, 158, 307, 158, 158, 383, 158, 307, 442, 403, + 444, 134, 384, 208, 206, 206, 206, 206, 206, 206, + 211, 308, 189, 189, 189, 189, 189, 211, 211, 211, + + 211, 211, 211, 197, 197, 197, 197, 197, 275, 443, + 275, 134, 299, 310, 299, 134, 158, 445, 310, 210, + 210, 210, 210, 210, 447, 134, 211, 211, 211, 211, + 211, 211, 169, 169, 169, 169, 169, 443, 446, 158, + 413, 134, 460, 449, 493, 158, 445, 158, 158, 414, + 451, 222, 457, 447, 463, 415, 134, 158, 222, 222, + 222, 222, 222, 222, 158, 158, 446, 158, 158, 413, + 460, 158, 449, 493, 158, 134, 458, 414, 451, 459, + 461, 457, 463, 415, 158, 464, 134, 222, 222, 222, + 222, 222, 222, 171, 171, 171, 171, 171, 158, 134, - 136, 207, 209, 160, 479, 218, 292, 116, 190, 190, - 190, 190, 190, 190, 117, 206, 160, 116, 116, 116, - 116, 116, 116, 119, 119, 119, 119, 119, 160, 160, - 160, 160, 215, 191, 136, 160, 217, 98, 220, 221, - 160, 244, 188, 191, 191, 191, 191, 191, 191, 216, - 219, 100, 188, 188, 188, 188, 188, 188, 125, 192, - 192, 192, 125, 226, 136, 160, 204, 160, 199, 41, - 245, 228, 225, 136, 160, 160, 255, 193, 199, 199, - 199, 199, 199, 199, 50, 222, 100, 193, 193, 193, - 193, 193, 193, 49, 49, 49, 124, 230, 160, 160, + 467, 158, 158, 468, 470, 458, 158, 465, 459, 461, + 158, 469, 223, 158, 464, 158, 480, 134, 134, 223, + 223, 223, 223, 223, 223, 134, 134, 158, 467, 481, + 485, 468, 470, 320, 158, 320, 465, 158, 132, 158, + 469, 482, 501, 477, 158, 480, 478, 121, 223, 223, + 223, 223, 223, 223, 230, 487, 158, 481, 485, 121, + 158, 230, 230, 230, 230, 230, 230, 158, 344, 482, + 344, 501, 477, 483, 158, 478, 486, 177, 173, 484, + 506, 158, 155, 158, 487, 134, 158, 489, 158, 488, + 230, 230, 230, 230, 230, 230, 114, 185, 185, 185, + + 114, 483, 41, 158, 486, 491, 490, 484, 506, 158, + 390, 134, 390, 500, 502, 233, 489, 488, 158, 492, + 158, 59, 233, 233, 233, 233, 233, 233, 158, 79, + 427, 158, 427, 491, 490, 158, 311, 311, 311, 311, + 311, 500, 452, 502, 452, 61, 525, 492, 42, 270, + 504, 233, 233, 233, 233, 233, 233, 235, 496, 496, + 496, 496, 496, 503, 235, 235, 235, 235, 235, 235, + 158, 132, 158, 129, 497, 525, 121, 107, 106, 504, + 105, 158, 505, 81, 508, 60, 59, 507, 271, 51, + 512, 538, 503, 235, 235, 235, 235, 235, 235, 189, + + 189, 189, 189, 189, 158, 158, 158, 510, 511, 514, + 499, 505, 158, 508, 158, 513, 507, 158, 236, 512, + 538, 158, 158, 521, 158, 236, 236, 236, 236, 236, + 236, 158, 48, 591, 591, 510, 511, 514, 591, 522, + 523, 591, 529, 513, 354, 400, 400, 400, 354, 158, + 307, 521, 158, 591, 236, 236, 236, 236, 236, 236, + 122, 122, 122, 122, 122, 591, 158, 522, 523, 531, + 526, 529, 528, 591, 359, 404, 404, 404, 359, 237, + 549, 158, 158, 542, 532, 307, 237, 237, 237, 237, + 237, 237, 158, 158, 158, 158, 308, 531, 591, 526, - 259, 160, 247, 212, 126, 160, 98, 225, 256, 258, - 160, 100, 127, 212, 212, 212, 212, 212, 212, 128, - 100, 100, 127, 127, 127, 127, 127, 127, 133, 133, - 133, 133, 133, 160, 226, 241, 41, 226, 223, 196, - 257, 98, 264, 160, 160, 302, 160, 197, 223, 223, - 223, 223, 223, 223, 136, 100, 42, 197, 197, 197, - 197, 197, 197, 157, 157, 157, 157, 157, 252, 98, - 98, 41, 136, 160, 160, 160, 175, 98, 378, 160, - 160, 160, 210, 100, 100, 160, 50, 284, 246, 160, - 253, 100, 210, 210, 210, 210, 210, 210, 172, 172, + 528, 515, 515, 515, 515, 515, 591, 591, 549, 537, + 591, 542, 532, 591, 516, 237, 237, 237, 237, 237, + 237, 125, 192, 192, 192, 125, 310, 577, 591, 158, + 591, 158, 41, 515, 515, 515, 515, 515, 537, 543, + 238, 496, 496, 496, 496, 496, 516, 238, 238, 238, + 238, 238, 238, 518, 591, 577, 591, 497, 591, 539, + 540, 545, 591, 158, 591, 591, 591, 158, 543, 158, + 544, 591, 591, 50, 158, 552, 238, 238, 238, 238, + 238, 238, 197, 197, 197, 197, 197, 539, 540, 545, + 158, 591, 158, 499, 515, 515, 515, 515, 515, 544, + + 550, 242, 556, 552, 591, 559, 158, 516, 242, 242, + 242, 242, 242, 242, 591, 591, 591, 591, 591, 515, + 515, 515, 515, 515, 158, 591, 591, 158, 550, 591, + 591, 556, 516, 551, 559, 553, 554, 242, 242, 242, + 242, 242, 242, 245, 158, 158, 518, 591, 158, 563, + 245, 245, 245, 245, 245, 245, 515, 515, 515, 515, + 515, 551, 158, 553, 554, 555, 499, 561, 591, 516, + 591, 518, 560, 591, 158, 585, 158, 563, 573, 245, + 245, 245, 245, 245, 245, 210, 210, 210, 210, 210, + 158, 158, 591, 555, 158, 561, 515, 515, 515, 515, - 172, 172, 172, 254, 239, 251, 289, 160, 233, 160, - 136, 231, 98, 160, 332, 418, 160, 224, 233, 233, - 233, 233, 233, 233, 234, 283, 100, 224, 224, 224, - 224, 224, 224, 235, 234, 234, 234, 234, 234, 234, - 98, 160, 160, 235, 235, 235, 235, 235, 235, 189, - 189, 189, 189, 189, 100, 160, 160, 291, 287, 237, - 160, 160, 160, 288, 382, 280, 444, 160, 236, 237, - 237, 237, 237, 237, 237, 238, 290, 294, 236, 236, - 236, 236, 236, 236, 242, 238, 238, 238, 238, 238, - 238, 160, 308, 308, 242, 242, 242, 242, 242, 242, + 515, 560, 562, 585, 248, 572, 573, 580, 518, 516, + 591, 248, 248, 248, 248, 248, 248, 515, 515, 515, + 515, 515, 591, 564, 158, 591, 591, 158, 591, 158, + 516, 562, 158, 582, 572, 591, 580, 568, 565, 158, + 248, 248, 248, 248, 248, 248, 259, 158, 518, 591, + 570, 564, 571, 259, 259, 259, 259, 259, 259, 158, + 158, 582, 591, 591, 591, 569, 565, 576, 579, 518, + 591, 591, 591, 158, 583, 591, 158, 158, 570, 591, + 571, 591, 259, 259, 259, 259, 259, 259, 171, 171, + 171, 171, 171, 569, 591, 576, 579, 158, 535, 535, + + 535, 535, 535, 583, 584, 586, 587, 260, 591, 591, + 589, 516, 588, 158, 260, 260, 260, 260, 260, 260, + 546, 546, 546, 546, 546, 158, 591, 158, 158, 591, + 591, 591, 584, 516, 586, 587, 158, 591, 589, 591, + 591, 588, 591, 260, 260, 260, 260, 260, 260, 272, + 518, 591, 591, 591, 590, 591, 272, 272, 272, 272, + 272, 272, 158, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 518, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 590, 591, 591, 272, 272, 272, 272, 272, + 272, 114, 185, 185, 185, 114, 591, 41, 591, 591, - 198, 198, 198, 198, 198, 160, 160, 311, 160, 160, - 248, 160, 293, 309, 98, 340, 328, 333, 160, 243, - 248, 248, 248, 248, 248, 248, 331, 308, 100, 243, - 243, 243, 243, 243, 243, 211, 211, 211, 211, 211, - 334, 339, 160, 376, 160, 260, 160, 309, 160, 341, - 325, 160, 160, 160, 249, 260, 260, 260, 260, 260, - 260, 261, 338, 342, 249, 249, 249, 249, 249, 249, - 262, 261, 261, 261, 261, 261, 261, 160, 308, 160, - 262, 262, 262, 262, 262, 262, 267, 267, 267, 267, - 267, 274, 269, 311, 379, 160, 381, 270, 160, 271, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 274, 591, 591, 591, 591, 591, 591, 274, 274, 274, + 274, 274, 274, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 42, 591, 591, 274, 274, 274, 274, + 274, 274, 276, 591, 591, 591, 591, 591, 591, 276, + 276, 276, 276, 276, 276, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 276, 276, + 276, 276, 276, 276, 189, 189, 189, 189, 189, 591, + + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 277, 591, 591, 591, 591, 591, 591, + 277, 277, 277, 277, 277, 277, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 277, + 277, 277, 277, 277, 277, 122, 122, 122, 122, 122, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 278, 591, 591, 591, 591, 591, + 591, 278, 278, 278, 278, 278, 278, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 278, 278, 278, 278, 278, 278, 125, 192, 192, 192, + 125, 591, 591, 591, 591, 591, 591, 41, 591, 591, + 591, 591, 591, 591, 591, 279, 591, 591, 591, 591, + 591, 591, 279, 279, 279, 279, 279, 279, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 50, 591, + 591, 279, 279, 279, 279, 279, 279, 197, 197, 197, + 197, 197, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 281, 591, 591, 591, + + 591, 591, 591, 281, 281, 281, 281, 281, 281, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 281, 281, 281, 281, 281, 281, 282, 591, + 591, 591, 591, 591, 591, 282, 282, 282, 282, 282, + 282, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 282, 282, 282, 282, 282, 282, + 210, 210, 210, 210, 210, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 285, - 295, 274, 274, 274, 274, 274, 274, 275, 226, 296, - 160, 160, 272, 276, 386, 297, 347, 275, 275, 275, - 275, 275, 275, 276, 276, 276, 276, 276, 276, 277, - 160, 307, 373, 377, 308, 278, 308, 160, 387, 277, - 277, 277, 277, 277, 277, 278, 278, 278, 278, 278, - 278, 279, 226, 160, 309, 419, 309, 281, 160, 308, - 392, 279, 279, 279, 279, 279, 279, 281, 281, 281, - 281, 281, 281, 282, 311, 417, 160, 160, 160, 285, - 424, 420, 160, 282, 282, 282, 282, 282, 282, 285, - 285, 285, 285, 285, 285, 286, 119, 119, 119, 119, + 591, 591, 591, 591, 591, 591, 285, 285, 285, 285, + 285, 285, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 285, 285, 285, 285, 285, + 285, 297, 591, 591, 591, 591, 591, 591, 297, 297, + 297, 297, 297, 297, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 297, 297, 297, + 297, 297, 297, 171, 171, 171, 171, 171, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 298, 591, 591, 591, 591, 591, 591, 298, + 298, 298, 298, 298, 298, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 298, 298, + 298, 298, 298, 298, 305, 305, 305, 305, 311, 591, + 313, 591, 591, 591, 591, 313, 313, 314, 591, 591, + 591, 591, 591, 315, 591, 591, 591, 591, 591, 591, + 315, 315, 315, 315, 315, 315, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 316, 591, 591, 315, - 119, 298, 160, 160, 425, 286, 286, 286, 286, 286, - 286, 298, 298, 298, 298, 298, 298, 299, 160, 421, - 423, 160, 122, 300, 308, 439, 308, 299, 299, 299, - 299, 299, 299, 300, 300, 300, 300, 300, 300, 267, - 267, 267, 267, 267, 309, 269, 309, 98, 577, 160, - 270, 370, 271, 306, 306, 306, 306, 306, 319, 591, - 380, 100, 308, 160, 591, 272, 271, 335, 319, 319, - 319, 319, 319, 319, 308, 160, 431, 311, 336, 272, - 306, 306, 306, 306, 312, 337, 314, 160, 411, 311, - 320, 314, 314, 315, 98, 160, 388, 443, 160, 316, + 315, 315, 315, 315, 315, 317, 591, 591, 591, 591, + 591, 591, 317, 317, 317, 317, 317, 317, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 317, 317, 317, 317, 317, 317, 114, 185, 185, + 185, 114, 591, 41, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 319, 591, 591, 591, + 591, 591, 591, 319, 319, 319, 319, 319, 319, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 42, + + 591, 591, 319, 319, 319, 319, 319, 319, 321, 591, + 591, 591, 591, 591, 591, 321, 321, 321, 321, 321, + 321, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 121, 591, 591, 321, 321, 321, 321, 321, 321, + 189, 189, 189, 189, 189, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 322, + 591, 591, 591, 591, 591, 591, 322, 322, 322, 322, + 322, 322, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 320, 320, 320, 320, 320, 320, 317, 321, 100, 316, - 316, 316, 316, 316, 316, 322, 521, 321, 321, 321, - 321, 321, 321, 323, 160, 322, 322, 322, 322, 322, - 322, 324, 409, 323, 323, 323, 323, 323, 323, 326, - 463, 324, 324, 324, 324, 324, 324, 327, 160, 326, - 326, 326, 326, 326, 326, 329, 464, 327, 327, 327, - 327, 327, 327, 330, 160, 329, 329, 329, 329, 329, - 329, 343, 502, 330, 330, 330, 330, 330, 330, 344, - 226, 343, 343, 343, 343, 343, 343, 345, 160, 344, - 344, 344, 344, 344, 344, 440, 160, 345, 345, 345, + 591, 591, 121, 591, 591, 322, 322, 322, 322, 322, + 322, 122, 122, 122, 122, 122, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 323, 591, 591, 591, 591, 591, 591, 323, 323, 323, + 323, 323, 323, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 323, 323, 323, 323, + 323, 323, 125, 192, 192, 192, 125, 591, 591, 591, + 591, 591, 591, 41, 591, 591, 591, 591, 591, 591, + 591, 324, 591, 591, 591, 591, 591, 591, 324, 324, + + 324, 324, 324, 324, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 50, 591, 591, 324, 324, 324, + 324, 324, 324, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 96, 591, 591, 591, 591, 591, 591, 96, + 96, 96, 96, 96, 96, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 325, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 96, 96, + 96, 96, 96, 96, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 325, 197, 197, 197, + 197, 197, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 326, 591, 591, 591, + 591, 591, 591, 326, 326, 326, 326, 326, 326, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 326, 326, 326, 326, 326, 326, 327, 591, + 591, 591, 591, 591, 591, 327, 327, 327, 327, 327, + 327, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 345, 345, 345, 306, 306, 306, 306, 306, 352, 352, - 352, 352, 352, 160, 160, 160, 271, 160, 446, 366, - 442, 353, 307, 307, 307, 354, 422, 426, 356, 366, - 366, 366, 366, 366, 366, 160, 306, 306, 306, 306, - 306, 357, 591, 160, 160, 160, 441, 591, 358, 271, - 445, 357, 357, 357, 357, 357, 357, 310, 310, 310, - 359, 160, 272, 160, 407, 470, 451, 383, 361, 306, - 306, 306, 306, 306, 160, 591, 362, 397, 384, 448, - 591, 449, 271, 363, 450, 385, 362, 362, 362, 362, - 362, 362, 160, 310, 160, 272, 306, 306, 306, 306, + 591, 591, 591, 591, 327, 327, 327, 327, 327, 327, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 133, + 591, 591, 591, 591, 591, 591, 133, 133, 133, 133, + 133, 133, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 133, 133, 133, 133, 133, + 133, 210, 210, 210, 210, 210, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 329, 591, 591, 591, 591, 591, 591, 329, 329, 329, + + 329, 329, 329, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 329, 329, 329, 329, + 329, 329, 342, 591, 591, 591, 591, 591, 591, 342, + 342, 342, 342, 342, 342, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 342, 342, + 342, 342, 342, 342, 171, 171, 171, 171, 171, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 343, 591, 591, 591, 591, 591, 591, + + 343, 343, 343, 343, 343, 343, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 343, + 343, 343, 343, 343, 343, 306, 306, 306, 353, 591, + 591, 355, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 356, 591, 591, 591, 591, 591, + 591, 356, 356, 356, 356, 356, 356, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 357, 591, 591, + 356, 356, 356, 356, 356, 356, 309, 309, 309, 358, + + 591, 591, 591, 591, 591, 591, 591, 360, 591, 591, + 591, 591, 591, 591, 591, 361, 591, 591, 591, 591, + 591, 591, 361, 361, 361, 361, 361, 361, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 362, 591, + 591, 361, 361, 361, 361, 361, 361, 311, 311, 311, + 311, 311, 591, 591, 591, 591, 591, 591, 591, 591, + 270, 591, 591, 591, 591, 591, 363, 591, 591, 591, + 591, 591, 591, 363, 363, 363, 363, 363, 363, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 306, 160, 591, 308, 160, 476, 467, 591, 457, 271, - 306, 306, 306, 306, 306, 367, 591, 160, 311, 100, - 522, 591, 272, 271, 458, 367, 367, 367, 367, 367, - 367, 352, 352, 352, 352, 352, 272, 312, 312, 312, - 312, 312, 160, 591, 353, 160, 396, 368, 591, 459, - 271, 133, 133, 133, 133, 133, 364, 368, 368, 368, - 368, 368, 368, 272, 160, 513, 364, 364, 364, 364, - 364, 364, 306, 306, 306, 306, 312, 136, 314, 472, - 160, 160, 369, 314, 314, 315, 447, 460, 461, 160, - 160, 316, 369, 369, 369, 369, 369, 369, 317, 371, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 271, + 591, 591, 363, 363, 363, 363, 363, 363, 305, 305, + 305, 305, 311, 591, 313, 591, 591, 591, 591, 313, + 313, 314, 591, 591, 591, 591, 591, 315, 591, 591, + 591, 591, 591, 591, 315, 315, 315, 315, 315, 315, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 316, 591, 591, 315, 315, 315, 315, 315, 315, 364, + 591, 591, 591, 591, 591, 591, 364, 364, 364, 364, + 364, 364, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 364, 364, 364, 364, 364, + 364, 114, 185, 185, 185, 114, 591, 41, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 366, 591, 591, 591, 591, 591, 591, 366, 366, 366, + 366, 366, 366, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 42, 591, 591, 366, 366, 366, 366, + 366, 366, 189, 189, 189, 189, 189, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 367, 591, 591, 591, 591, 591, 591, 367, 367, + 367, 367, 367, 367, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 121, 591, 591, 367, 367, 367, + 367, 367, 367, 122, 122, 122, 122, 122, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 368, 591, 591, 591, 591, 591, 591, 368, + 368, 368, 368, 368, 368, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 368, 368, + + 368, 368, 368, 368, 125, 192, 192, 192, 125, 591, + 591, 591, 591, 591, 591, 41, 591, 591, 591, 591, + 591, 591, 591, 369, 591, 591, 591, 591, 591, 591, + 369, 369, 369, 369, 369, 369, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 50, 591, 591, 369, + 369, 369, 369, 369, 369, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 370, 591, 591, 96, 591, 591, 591, 591, 591, + 591, 96, 96, 96, 96, 96, 96, 591, 591, 591, - 487, 316, 316, 316, 316, 316, 316, 372, 160, 371, - 371, 371, 371, 371, 371, 374, 395, 372, 372, 372, - 372, 372, 372, 375, 531, 374, 374, 374, 374, 374, - 374, 98, 98, 375, 375, 375, 375, 375, 375, 95, - 95, 95, 95, 95, 389, 100, 100, 160, 432, 160, - 160, 98, 413, 462, 389, 389, 389, 389, 389, 389, - 390, 414, 160, 481, 394, 100, 456, 415, 469, 160, - 390, 390, 390, 390, 390, 390, 398, 352, 352, 352, - 398, 160, 308, 160, 402, 352, 352, 352, 402, 399, - 465, 468, 160, 160, 160, 308, 393, 403, 471, 489, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 96, 96, 96, 96, 96, 96, 197, 197, 197, 197, + 197, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 371, 591, 591, 591, 591, + 591, 591, 371, 371, 371, 371, 371, 371, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 371, 371, 371, 371, 371, 371, 152, 152, 152, + 152, 152, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 372, 591, 591, 591, + 591, 591, 591, 372, 372, 372, 372, 372, 372, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 372, 372, 372, 372, 372, 372, 210, 210, + 210, 210, 210, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 374, 591, 591, + 591, 591, 591, 591, 374, 374, 374, 374, 374, 374, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 466, 406, 309, 355, 400, 400, 400, 355, 482, 308, - 311, 406, 406, 406, 406, 406, 406, 157, 157, 157, - 157, 157, 401, 189, 189, 189, 189, 189, 160, 309, - 122, 160, 401, 401, 401, 401, 401, 401, 307, 307, - 307, 354, 160, 160, 356, 160, 488, 477, 40, 122, - 478, 480, 198, 198, 198, 198, 198, 357, 40, 40, - 40, 40, 40, 40, 358, 160, 160, 357, 357, 357, - 357, 357, 357, 360, 404, 404, 404, 360, 136, 483, - 491, 160, 365, 408, 308, 484, 211, 211, 211, 211, - 211, 160, 405, 408, 408, 408, 408, 408, 408, 311, + 591, 591, 591, 374, 374, 374, 374, 374, 374, 388, + 591, 591, 591, 591, 591, 591, 388, 388, 388, 388, + 388, 388, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 388, 388, 388, 388, 388, + 388, 171, 171, 171, 171, 171, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 389, 591, 591, 591, 591, 591, 591, 389, 389, 389, + 389, 389, 389, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 389, 389, 389, 389, + 389, 389, 354, 400, 400, 400, 354, 591, 307, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 401, 591, 591, 591, 591, 591, 591, 401, 401, + 401, 401, 401, 401, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 308, 591, 591, 401, 401, 401, + 401, 401, 401, 306, 306, 306, 353, 591, 591, 355, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 356, 591, 591, 591, 591, 591, 591, 356, - 160, 523, 405, 405, 405, 405, 405, 405, 310, 310, - 310, 359, 160, 485, 160, 160, 160, 160, 49, 361, - 493, 160, 486, 504, 505, 501, 509, 362, 49, 49, - 49, 49, 49, 49, 363, 410, 160, 362, 362, 362, - 362, 362, 362, 412, 506, 410, 410, 410, 410, 410, - 410, 160, 160, 412, 412, 412, 412, 412, 412, 172, - 172, 172, 172, 172, 427, 160, 351, 160, 490, 492, - 524, 98, 508, 160, 427, 427, 427, 427, 427, 427, - 398, 352, 352, 352, 398, 100, 308, 428, 496, 496, - 496, 496, 496, 399, 160, 510, 160, 428, 428, 428, + 356, 356, 356, 356, 356, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 357, 591, 591, 356, 356, + 356, 356, 356, 356, 359, 404, 404, 404, 359, 591, + 591, 591, 591, 591, 591, 307, 591, 591, 591, 591, + 591, 591, 591, 405, 591, 591, 591, 591, 591, 591, + 405, 405, 405, 405, 405, 405, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 310, 591, 591, 405, + 405, 405, 405, 405, 405, 309, 309, 309, 358, 591, + + 591, 591, 591, 591, 591, 591, 360, 591, 591, 591, + 591, 591, 591, 591, 361, 591, 591, 591, 591, 591, + 591, 361, 361, 361, 361, 361, 361, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 362, 591, 591, + 361, 361, 361, 361, 361, 361, 311, 311, 311, 311, + 311, 591, 591, 591, 591, 591, 591, 591, 591, 270, + 591, 591, 591, 591, 591, 406, 591, 591, 591, 591, + 591, 591, 406, 406, 406, 406, 406, 406, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 591, 591, 271, 591, + 591, 406, 406, 406, 406, 406, 406, 408, 591, 591, + 591, 591, 591, 591, 408, 408, 408, 408, 408, 408, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 408, 408, 408, 408, 408, 408, 119, + 591, 591, 591, 591, 591, 591, 119, 119, 119, 119, + 119, 119, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 119, 119, 119, 119, 119, + + 119, 410, 591, 591, 591, 591, 591, 591, 410, 410, + 410, 410, 410, 410, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 410, 410, 410, + 410, 410, 410, 152, 152, 152, 152, 152, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 133, 591, 591, 591, 591, 591, 591, 133, + 133, 133, 133, 133, 133, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 133, 133, - 428, 428, 428, 160, 497, 503, 309, 402, 352, 352, - 352, 402, 429, 514, 498, 350, 349, 500, 308, 160, - 403, 160, 429, 429, 429, 429, 429, 429, 430, 160, - 507, 160, 160, 311, 525, 527, 511, 433, 430, 430, - 430, 430, 430, 430, 434, 160, 435, 452, 348, 160, - 529, 436, 437, 453, 160, 438, 512, 452, 452, 452, - 452, 452, 452, 453, 453, 453, 453, 453, 453, 454, - 160, 160, 160, 160, 528, 455, 538, 526, 537, 454, - 454, 454, 454, 454, 454, 455, 455, 455, 455, 455, - 455, 473, 532, 160, 160, 160, 160, 474, 541, 160, + 133, 133, 133, 133, 210, 210, 210, 210, 210, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 412, 591, 591, 591, 591, 591, 591, + 412, 412, 412, 412, 412, 412, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 412, + 412, 412, 412, 412, 412, 428, 591, 591, 591, 591, + 591, 591, 428, 428, 428, 428, 428, 428, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 428, 428, 428, 428, 428, 428, 429, 591, 591, + 591, 591, 591, 591, 429, 429, 429, 429, 429, 429, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 429, 429, 429, 429, 429, 429, 311, + 311, 311, 311, 311, 591, 591, 591, 591, 591, 591, + 591, 591, 270, 591, 591, 591, 591, 591, 430, 591, + 591, 591, 591, 591, 591, 430, 430, 430, 430, 430, + 430, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 160, 473, 473, 473, 473, 473, 473, 474, 474, 474, - 474, 474, 474, 475, 539, 540, 542, 160, 160, 494, - 553, 160, 543, 475, 475, 475, 475, 475, 475, 494, - 494, 494, 494, 494, 494, 495, 160, 545, 160, 571, - 160, 268, 160, 544, 160, 495, 495, 495, 495, 495, - 495, 268, 268, 268, 268, 268, 268, 307, 160, 549, - 555, 550, 561, 310, 136, 556, 318, 307, 307, 307, - 307, 307, 307, 310, 310, 310, 310, 310, 310, 496, - 496, 496, 496, 496, 591, 591, 591, 591, 591, 517, - 517, 517, 517, 517, 530, 497, 516, 160, 160, 305, + 591, 271, 591, 591, 430, 430, 430, 430, 430, 430, + 433, 591, 591, 591, 591, 591, 591, 434, 591, 435, + 591, 591, 591, 591, 436, 437, 591, 591, 438, 591, + 591, 591, 591, 158, 591, 591, 591, 591, 591, 433, + 591, 591, 591, 591, 591, 434, 591, 435, 591, 591, + 591, 591, 436, 437, 591, 591, 438, 453, 591, 591, + 591, 591, 591, 591, 453, 453, 453, 453, 453, 453, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 453, 453, 453, 453, 453, 453, 454, + + 591, 591, 591, 591, 591, 591, 454, 454, 454, 454, + 454, 454, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 454, 454, 454, 454, 454, + 454, 455, 591, 591, 591, 591, 591, 591, 455, 455, + 455, 455, 455, 455, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 455, 455, 455, + 455, 455, 455, 473, 591, 591, 591, 591, 591, 591, + 473, 473, 473, 473, 473, 473, 591, 591, 591, 591, - 591, 304, 518, 303, 160, 498, 516, 516, 516, 516, - 516, 516, 552, 160, 551, 520, 517, 517, 517, 517, - 517, 517, 517, 517, 517, 517, 160, 160, 160, 518, - 554, 578, 588, 559, 518, 517, 517, 517, 517, 517, - 536, 160, 520, 533, 533, 533, 533, 533, 518, 160, - 536, 536, 536, 536, 536, 536, 518, 160, 160, 160, - 160, 520, 534, 585, 560, 562, 572, 580, 160, 520, - 136, 136, 534, 534, 534, 534, 534, 534, 517, 517, - 517, 517, 517, 546, 563, 160, 517, 517, 517, 517, - 517, 518, 160, 546, 546, 546, 546, 546, 546, 518, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 473, + 473, 473, 473, 473, 473, 474, 591, 591, 591, 591, + 591, 591, 474, 474, 474, 474, 474, 474, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 474, 474, 474, 474, 474, 474, 475, 591, 591, + 591, 591, 591, 591, 475, 475, 475, 475, 475, 475, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + + 591, 591, 591, 475, 475, 475, 475, 475, 475, 494, + 591, 591, 591, 591, 591, 591, 494, 494, 494, 494, + 494, 494, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 494, 494, 494, 494, 494, + 494, 495, 591, 591, 591, 591, 591, 591, 495, 495, + 495, 495, 495, 495, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 495, 495, 495, + 495, 495, 495, 520, 591, 591, 591, 591, 591, 591, + + 520, 520, 520, 520, 520, 520, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 520, + 520, 520, 520, 520, 520, 534, 591, 591, 591, 591, + 591, 591, 534, 534, 534, 534, 534, 534, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 534, 534, 534, 534, 534, 534, 535, 535, 535, + 535, 535, 591, 591, 591, 591, 591, 591, 591, 591, + 516, 591, 591, 591, 591, 591, 536, 591, 591, 591, + + 591, 591, 591, 536, 536, 536, 536, 536, 536, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 518, + 591, 591, 536, 536, 536, 536, 536, 536, 546, 546, + 546, 546, 546, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 547, 591, 591, + 591, 591, 591, 591, 547, 547, 547, 547, 547, 547, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 547, 547, 547, 547, 547, 547, 548, - 568, 241, 273, 266, 520, 564, 589, 160, 557, 160, - 160, 265, 520, 547, 547, 547, 547, 547, 557, 557, - 557, 557, 557, 557, 517, 517, 517, 517, 517, 565, - 582, 569, 548, 160, 160, 160, 136, 518, 136, 136, - 583, 558, 548, 548, 548, 548, 548, 548, 566, 573, - 520, 558, 558, 558, 558, 558, 558, 567, 566, 566, - 566, 566, 566, 566, 160, 574, 160, 567, 567, 567, - 567, 567, 567, 136, 136, 574, 574, 574, 574, 574, - 574, 575, 160, 160, 570, 160, 576, 241, 122, 232, - 586, 575, 575, 575, 575, 575, 575, 519, 229, 160, + 591, 591, 591, 591, 591, 591, 548, 548, 548, 548, + 548, 548, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 548, 548, 548, 548, 548, + 548, 557, 591, 591, 591, 591, 591, 591, 557, 557, + 557, 557, 557, 557, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 557, 557, 557, + 557, 557, 557, 558, 591, 591, 591, 591, 591, 591, + 558, 558, 558, 558, 558, 558, 591, 591, 591, 591, + + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 558, + 558, 558, 558, 558, 558, 566, 591, 591, 591, 591, + 591, 591, 566, 566, 566, 566, 566, 566, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 566, 566, 566, 566, 566, 566, 567, 591, 591, + 591, 591, 591, 591, 567, 567, 567, 567, 567, 567, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 160, 174, 579, 581, 160, 584, 587, 519, 519, 519, - 519, 519, 519, 581, 581, 581, 581, 581, 581, 519, - 160, 590, 208, 136, 136, 136, 136, 136, 136, 519, - 519, 519, 519, 519, 519, 40, 136, 40, 40, 40, - 40, 40, 40, 40, 40, 40, 46, 46, 136, 46, - 46, 49, 136, 49, 49, 49, 49, 49, 49, 49, - 49, 49, 56, 56, 136, 56, 56, 95, 95, 95, - 95, 95, 95, 95, 95, 95, 99, 136, 99, 99, - 136, 99, 99, 114, 114, 114, 114, 114, 114, 114, - 114, 114, 114, 114, 119, 119, 119, 119, 119, 119, + 591, 591, 591, 567, 567, 567, 567, 567, 567, 574, + 591, 591, 591, 591, 591, 591, 574, 574, 574, 574, + 574, 574, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 574, 574, 574, 574, 574, + 574, 575, 591, 591, 591, 591, 591, 591, 575, 575, + 575, 575, 575, 575, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 575, 575, 575, + 575, 575, 575, 581, 591, 591, 591, 591, 591, 591, - 119, 119, 119, 121, 121, 132, 121, 121, 125, 125, + 581, 581, 581, 581, 581, 581, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 581, + 581, 581, 581, 581, 581, 40, 591, 591, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 46, 46, + 591, 46, 46, 49, 591, 591, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 55, 55, 591, 55, + 55, 96, 591, 96, 96, 591, 96, 96, 103, 103, + 103, 103, 103, 103, 103, 103, 103, 103, 114, 114, + 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, + + 114, 119, 119, 591, 119, 119, 122, 122, 122, 122, + 122, 122, 122, 122, 122, 122, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, - 131, 67, 67, 133, 133, 133, 133, 133, 133, 133, - 133, 133, 135, 135, 122, 135, 135, 157, 157, 157, - 157, 157, 157, 157, 157, 157, 159, 159, 122, 159, - 159, 172, 172, 172, 172, 172, 172, 172, 172, 172, - 189, 189, 189, 189, 189, 189, 189, 189, 189, 195, + 131, 131, 131, 133, 133, 591, 133, 133, 152, 152, + 152, 152, 152, 152, 152, 152, 152, 152, 157, 157, + 591, 157, 157, 169, 169, 169, 169, 169, 169, 169, + 169, 169, 169, 171, 171, 171, 171, 171, 171, 171, + 171, 171, 171, 176, 176, 176, 189, 189, 189, 189, + 189, 189, 189, 189, 189, 189, 49, 49, 591, 49, + + 49, 49, 49, 49, 49, 49, 49, 49, 49, 125, + 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, + 125, 125, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 131, 131, 131, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, - 195, 198, 198, 198, 198, 198, 198, 198, 198, 198, + 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, + 210, 210, 210, 210, 210, 210, 210, 210, 210, 210, + 226, 226, 226, 226, 240, 240, 240, 240, 240, 240, + 240, 240, 240, 240, 240, 240, 240, 240, 262, 262, + 262, 262, 267, 267, 267, 267, 267, 267, 591, 267, + + 267, 267, 267, 267, 267, 40, 40, 40, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 195, 195, + 195, 195, 195, 195, 195, 195, 195, 195, 195, 195, + 195, 195, 300, 300, 300, 300, 267, 267, 267, 267, + 267, 267, 591, 267, 267, 267, 267, 267, 267, 306, + 591, 591, 306, 306, 306, 306, 306, 306, 306, 306, + 306, 306, 309, 591, 591, 309, 309, 309, 309, 309, + 309, 309, 309, 309, 309, 312, 312, 312, 312, 312, + 312, 312, 312, 312, 312, 312, 312, 312, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 211, 211, 211, 211, 211, 211, 211, 211, 211, 227, - 227, 227, 184, 227, 240, 240, 240, 240, 240, 240, - 240, 240, 240, 240, 240, 240, 263, 263, 263, 174, - 263, 268, 268, 268, 268, 160, 268, 268, 268, 268, - 268, 268, 301, 301, 301, 155, 301, 307, 136, 307, - 307, 307, 307, 307, 307, 307, 307, 307, 310, 136, - 310, 310, 310, 310, 310, 310, 310, 310, 310, 313, - 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, - 346, 346, 346, 59, 346, 355, 355, 355, 355, 355, - 355, 355, 355, 355, 355, 355, 360, 360, 360, 360, + 40, 119, 119, 591, 119, 119, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 345, + 345, 345, 345, 354, 354, 354, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 309, 591, 591, 309, + 309, 309, 309, 309, 309, 309, 309, 309, 309, 359, + 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, + 359, 359, 267, 267, 267, 267, 267, 591, 591, 267, + 267, 267, 267, 267, 267, 312, 312, 312, 312, 312, + 312, 312, 312, 312, 312, 312, 312, 312, 40, 40, + 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, - 360, 360, 360, 360, 360, 360, 360, 391, 391, 391, - 65, 391, 499, 499, 499, 61, 132, 129, 499, 122, - 112, 499, 499, 515, 515, 515, 515, 515, 515, 515, - 515, 515, 519, 519, 519, 107, 106, 519, 519, 519, - 97, 519, 519, 535, 535, 535, 535, 535, 535, 535, - 535, 535, 81, 60, 59, 51, 48, 591, 36, 36, - 7, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 40, 119, 119, 591, 119, 119, 49, 49, 49, 49, + 49, 49, 49, 49, 49, 49, 49, 49, 49, 391, + 391, 391, 391, 306, 306, 591, 306, 306, 306, 306, + 306, 306, 306, 306, 306, 306, 354, 354, 354, 354, + 354, 354, 354, 354, 354, 354, 354, 354, 354, 309, + 309, 591, 309, 309, 309, 309, 309, 309, 309, 309, + 309, 309, 359, 359, 359, 359, 359, 359, 359, 359, + 359, 359, 359, 359, 359, 267, 267, 267, 267, 267, + 591, 591, 267, 267, 267, 267, 267, 267, 498, 498, + 498, 498, 591, 591, 591, 591, 498, 591, 591, 498, + + 498, 517, 517, 517, 517, 591, 591, 591, 517, 517, + 517, 591, 517, 517, 519, 519, 519, 519, 519, 519, + 519, 519, 519, 519, 533, 533, 533, 533, 533, 533, + 533, 533, 533, 533, 7, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 591 + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591 } ; -static yyconst short int yy_chk[2522] = +static yyconst flex_int16_t yy_chk[6721] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, @@ -613,309 +1090,767 @@ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 3, 590, 4, 9, 9, 9, 9, 9, 12, 3, - 17, 4, 10, 10, 10, 10, 10, 11, 11, 11, - 11, 11, 3, 3, 4, 4, 13, 378, 12, 13, - 15, 40, 378, 17, 26, 3, 13, 4, 32, 13, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 3, 5, 4, 6, 15, + 12, 3, 590, 4, 9, 9, 9, 9, 9, 10, - 13, 13, 13, 13, 13, 15, 18, 24, 26, 18, - 28, 40, 32, 28, 11, 34, 18, 24, 24, 24, - 24, 24, 24, 27, 28, 36, 27, 27, 32, 34, - 43, 49, 18, 43, 52, 53, 53, 27, 139, 36, - 43, 18, 21, 68, 28, 34, 49, 139, 69, 21, - 21, 66, 21, 66, 27, 69, 36, 52, 68, 21, - 72, 21, 21, 21, 21, 21, 21, 21, 21, 21, + 10, 10, 10, 10, 3, 3, 4, 4, 11, 11, + 11, 11, 11, 24, 32, 5, 18, 6, 17, 18, + 3, 25, 4, 33, 25, 25, 33, 33, 39, 49, + 15, 587, 3, 3, 4, 4, 12, 69, 17, 18, + 36, 32, 11, 40, 584, 3, 69, 4, 18, 25, + 579, 33, 18, 24, 32, 55, 39, 43, 52, 26, + 43, 25, 26, 33, 34, 69, 17, 18, 36, 32, + 49, 11, 13, 53, 53, 13, 18, 25, 52, 33, + 36, 67, 13, 13, 13, 13, 13, 13, 577, 40, + 26, 34, 71, 43, 78, 55, 36, 90, 132, 26, + + 78, 569, 132, 67, 34, 71, 52, 80, 13, 80, + 67, 13, 13, 13, 13, 13, 13, 21, 26, 34, + 71, 96, 78, 90, 21, 21, 90, 21, 37, 37, + 37, 37, 37, 565, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, - 21, 21, 21, 21, 21, 21, 21, 21, 72, 56, - 74, 21, 23, 37, 37, 37, 37, 37, 91, 587, + 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, + 21, 96, 21, 21, 21, 21, 21, 21, 21, 21, + 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, + 21, 21, 21, 21, 21, 21, 21, 21, 604, 604, + 241, 21, 23, 176, 241, 38, 38, 38, 38, 38, - 74, 91, 23, 56, 23, 23, 23, 23, 23, 23, + 561, 176, 23, 23, 23, 23, 23, 23, 23, 23, + 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, + 23, 23, 23, 23, 23, 23, 23, 23, 23, 38, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, - 23, 71, 33, 85, 23, 33, 33, 38, 38, 38, - 38, 38, 44, 80, 73, 57, 33, 95, 57, 57, - 85, 71, 44, 44, 44, 44, 44, 44, 45, 57, - 73, 95, 59, 33, 59, 58, 80, 70, 45, 45, - 45, 45, 45, 45, 38, 42, 42, 42, 42, 58, - 86, 42, 70, 152, 89, 47, 58, 59, 88, 152, - 86, 89, 47, 70, 42, 47, 47, 47, 47, 47, + 23, 23, 23, 23, 23, 23, 70, 70, 38, 23, + 27, 59, 72, 59, 66, 555, 87, 27, 27, 27, + 27, 27, 27, 56, 114, 57, 56, 56, 66, 112, + 87, 72, 226, 59, 70, 599, 537, 599, 74, 74, + 226, 72, 66, 57, 87, 68, 27, 27, 27, 27, + + 27, 27, 42, 42, 42, 42, 68, 112, 42, 68, + 73, 59, 528, 56, 84, 57, 73, 88, 85, 75, + 114, 42, 57, 68, 73, 74, 84, 89, 42, 42, + 42, 42, 42, 42, 68, 526, 75, 85, 73, 88, + 75, 86, 84, 75, 73, 99, 88, 85, 75, 89, + 91, 76, 99, 86, 42, 76, 89, 42, 42, 42, + 42, 42, 42, 45, 75, 92, 521, 102, 75, 86, + 45, 45, 45, 45, 45, 45, 91, 76, 93, 91, + 76, 103, 318, 92, 76, 99, 115, 512, 511, 124, + 93, 100, 102, 108, 92, 109, 45, 504, 110, 45, + + 45, 45, 45, 45, 45, 47, 93, 102, 125, 126, + 108, 318, 47, 47, 47, 47, 47, 47, 125, 126, + 102, 103, 111, 110, 100, 130, 142, 142, 109, 113, + 124, 100, 115, 108, 113, 109, 184, 145, 110, 108, + 130, 47, 47, 47, 47, 47, 47, 50, 50, 50, + 50, 110, 100, 111, 142, 489, 109, 150, 50, 125, + 126, 139, 111, 136, 184, 130, 50, 156, 149, 130, + 145, 150, 154, 50, 50, 50, 50, 50, 50, 488, + 113, 111, 154, 136, 151, 150, 470, 139, 171, 156, + 139, 149, 136, 151, 159, 160, 156, 149, 161, 50, + + 154, 159, 50, 50, 50, 50, 50, 50, 58, 163, + 164, 161, 151, 165, 162, 58, 58, 58, 58, 58, + 58, 160, 159, 166, 160, 162, 161, 165, 171, 174, + 163, 175, 178, 164, 167, 180, 174, 181, 163, 164, + 168, 165, 162, 166, 58, 58, 58, 58, 58, 58, + 79, 168, 166, 183, 167, 185, 182, 79, 79, 79, + 79, 79, 79, 167, 202, 262, 456, 205, 168, 174, + 456, 175, 178, 262, 192, 180, 194, 181, 212, 200, + 205, 448, 445, 207, 192, 212, 79, 79, 79, 79, + 79, 79, 82, 183, 182, 205, 182, 202, 209, 221, - 47, 42, 75, 88, 42, 42, 42, 42, 42, 42, - 50, 50, 50, 50, 76, 76, 584, 75, 114, 78, - 55, 50, 78, 75, 92, 76, 78, 92, 87, 50, - 55, 55, 55, 55, 55, 55, 50, 65, 114, 50, - 50, 50, 50, 50, 50, 87, 93, 65, 65, 65, - 65, 65, 65, 77, 83, 90, 94, 93, 77, 579, - 99, 577, 90, 102, 83, 83, 83, 83, 83, 83, - 102, 100, 125, 94, 99, 77, 108, 102, 103, 77, - 82, 100, 100, 100, 100, 100, 100, 125, 109, 111, - 108, 161, 103, 105, 82, 82, 108, 110, 82, 569, + 194, 185, 200, 82, 82, 207, 212, 82, 200, 213, + 82, 217, 207, 82, 82, 82, 194, 82, 213, 82, + 442, 82, 182, 209, 82, 192, 231, 209, 194, 217, + 232, 214, 82, 82, 419, 221, 82, 213, 214, 82, + 217, 82, 82, 82, 215, 82, 218, 82, 216, 82, + 220, 219, 82, 94, 247, 216, 215, 246, 232, 214, + 94, 94, 94, 94, 94, 94, 231, 268, 218, 220, + 247, 246, 215, 219, 391, 218, 216, 239, 376, 220, + 219, 611, 247, 611, 251, 246, 253, 350, 249, 94, + 94, 94, 94, 94, 94, 97, 349, 273, 365, 239, + + 249, 269, 97, 97, 97, 97, 97, 97, 229, 229, + 229, 229, 229, 268, 229, 250, 249, 239, 252, 229, + 251, 229, 253, 250, 254, 273, 365, 252, 239, 287, + 284, 97, 97, 97, 97, 97, 97, 104, 104, 104, + 104, 104, 269, 250, 255, 293, 252, 257, 284, 104, + 254, 287, 255, 254, 257, 286, 104, 288, 287, 284, + 229, 348, 292, 104, 104, 104, 104, 104, 104, 286, + 309, 300, 255, 292, 306, 257, 353, 289, 288, 300, + 345, 293, 330, 286, 289, 294, 288, 295, 345, 104, + 292, 358, 104, 104, 104, 104, 104, 104, 116, 116, + + 116, 116, 116, 347, 116, 289, 258, 294, 332, 295, + 373, 309, 328, 296, 294, 258, 295, 116, 330, 328, + 306, 258, 353, 335, 116, 116, 116, 116, 116, 116, + 258, 296, 358, 346, 332, 258, 334, 332, 331, 336, + 328, 335, 296, 258, 333, 331, 373, 321, 334, 258, + 116, 336, 335, 116, 116, 116, 116, 116, 116, 117, + 117, 117, 117, 304, 334, 117, 331, 336, 339, 266, + 266, 266, 266, 266, 337, 266, 303, 340, 117, 341, + 266, 339, 266, 377, 438, 117, 117, 117, 117, 117, + 117, 267, 267, 267, 267, 267, 339, 267, 340, 341, + + 337, 302, 267, 337, 267, 407, 340, 377, 341, 301, + 438, 117, 377, 438, 117, 117, 117, 117, 117, 117, + 120, 266, 305, 305, 305, 305, 305, 120, 120, 120, + 120, 120, 120, 407, 359, 305, 307, 307, 307, 307, + 307, 354, 291, 267, 359, 409, 354, 378, 265, 307, + 425, 370, 451, 120, 378, 409, 120, 120, 120, 120, + 120, 120, 121, 311, 311, 311, 311, 311, 264, 121, + 121, 121, 121, 121, 121, 378, 311, 351, 351, 351, + 351, 351, 370, 486, 409, 359, 425, 263, 451, 379, + 351, 503, 354, 364, 364, 364, 364, 364, 121, 121, - 213, 82, 109, 111, 82, 82, 82, 105, 82, 115, - 82, 110, 82, 161, 103, 82, 96, 96, 96, 96, - 96, 105, 213, 111, 109, 110, 104, 113, 96, 115, - 132, 104, 113, 124, 132, 96, 104, 104, 104, 104, - 104, 104, 96, 124, 565, 96, 96, 96, 96, 96, - 96, 118, 113, 116, 116, 116, 116, 116, 124, 116, - 126, 118, 118, 118, 118, 118, 118, 142, 162, 145, - 142, 162, 116, 148, 137, 126, 561, 458, 130, 116, - 148, 154, 116, 116, 116, 116, 116, 116, 117, 117, - 117, 117, 130, 137, 117, 156, 130, 145, 122, 166, + 121, 121, 121, 121, 123, 123, 123, 123, 123, 364, + 370, 290, 379, 380, 381, 311, 382, 503, 379, 486, + 503, 399, 290, 123, 380, 384, 399, 443, 382, 290, + 123, 123, 123, 123, 123, 123, 290, 384, 381, 443, + 290, 380, 510, 381, 382, 312, 312, 312, 312, 312, + 290, 400, 620, 384, 620, 443, 400, 290, 312, 123, + 123, 123, 123, 123, 123, 127, 127, 127, 127, 127, + 385, 256, 399, 458, 507, 458, 127, 385, 510, 366, + 366, 366, 366, 366, 127, 366, 313, 313, 313, 313, + 313, 127, 127, 127, 127, 127, 127, 312, 385, 313, + + 507, 458, 400, 507, 386, 527, 314, 314, 314, 314, + 314, 386, 571, 244, 622, 383, 622, 127, 415, 314, + 127, 127, 127, 127, 127, 127, 128, 128, 128, 128, + 527, 366, 386, 383, 527, 243, 415, 128, 313, 369, + 369, 369, 369, 369, 383, 128, 240, 415, 571, 228, + 369, 413, 128, 128, 128, 128, 128, 128, 314, 355, + 355, 355, 355, 355, 403, 355, 360, 360, 360, 360, + 360, 387, 355, 413, 403, 227, 210, 360, 128, 360, + 413, 128, 128, 128, 128, 128, 128, 134, 450, 432, + 387, 369, 414, 204, 134, 134, 134, 134, 134, 134, + + 387, 388, 388, 388, 388, 388, 389, 389, 389, 389, + 389, 355, 450, 203, 414, 403, 432, 450, 360, 201, + 199, 414, 389, 134, 134, 134, 134, 134, 134, 153, + 153, 153, 153, 153, 197, 423, 338, 195, 189, 398, + 398, 398, 398, 398, 432, 398, 423, 338, 153, 416, + 177, 418, 398, 388, 338, 153, 153, 153, 153, 153, + 153, 338, 404, 423, 173, 338, 402, 402, 402, 402, + 402, 416, 404, 169, 418, 338, 157, 402, 416, 402, + 418, 153, 338, 155, 153, 153, 153, 153, 153, 153, + 158, 398, 408, 408, 408, 408, 408, 158, 158, 158, + + 158, 158, 158, 410, 410, 410, 410, 410, 626, 417, + 626, 152, 628, 404, 628, 148, 417, 420, 402, 412, + 412, 412, 412, 412, 422, 147, 158, 158, 158, 158, + 158, 158, 170, 170, 170, 170, 170, 417, 421, 420, + 375, 146, 436, 424, 472, 421, 420, 422, 436, 375, + 426, 170, 433, 422, 439, 375, 144, 426, 170, 170, + 170, 170, 170, 170, 375, 424, 421, 439, 472, 375, + 436, 412, 424, 472, 433, 143, 434, 375, 426, 435, + 437, 433, 439, 375, 170, 440, 141, 170, 170, 170, + 170, 170, 170, 172, 172, 172, 172, 172, 434, 140, - 153, 154, 156, 255, 458, 166, 255, 117, 122, 122, - 122, 122, 122, 122, 117, 153, 163, 117, 117, 117, - 117, 117, 117, 120, 120, 120, 120, 120, 165, 168, - 169, 164, 163, 123, 200, 167, 165, 172, 168, 169, - 555, 200, 120, 123, 123, 123, 123, 123, 123, 164, - 167, 172, 120, 120, 120, 120, 120, 120, 127, 127, - 127, 127, 127, 177, 202, 218, 204, 170, 136, 127, - 202, 177, 176, 204, 537, 528, 218, 127, 136, 136, - 136, 136, 136, 136, 127, 170, 176, 127, 127, 127, - 127, 127, 127, 128, 128, 128, 128, 179, 209, 221, + 444, 435, 437, 446, 449, 434, 440, 441, 435, 437, + 446, 447, 172, 449, 440, 444, 459, 138, 137, 172, + 172, 172, 172, 172, 172, 135, 133, 441, 444, 460, + 463, 446, 449, 635, 447, 635, 441, 463, 131, 459, + 447, 461, 478, 457, 460, 459, 457, 122, 172, 172, + 172, 172, 172, 172, 179, 465, 461, 460, 463, 119, + 478, 179, 179, 179, 179, 179, 179, 457, 638, 461, + 638, 478, 457, 462, 465, 457, 464, 101, 98, 462, + 483, 83, 81, 464, 465, 77, 483, 467, 462, 466, + 179, 179, 179, 179, 179, 179, 186, 186, 186, 186, + + 186, 462, 186, 466, 464, 469, 468, 462, 483, 467, + 648, 65, 648, 477, 479, 186, 467, 466, 468, 471, + 469, 63, 186, 186, 186, 186, 186, 186, 477, 62, + 655, 471, 655, 469, 468, 479, 475, 475, 475, 475, + 475, 477, 656, 479, 656, 61, 505, 471, 186, 475, + 481, 186, 186, 186, 186, 186, 186, 188, 476, 476, + 476, 476, 476, 480, 188, 188, 188, 188, 188, 188, + 505, 60, 481, 54, 476, 505, 46, 30, 29, 481, + 28, 480, 482, 22, 485, 20, 19, 484, 475, 16, + 491, 523, 480, 188, 188, 188, 188, 188, 188, 190, - 222, 219, 209, 160, 128, 526, 180, 181, 219, 221, - 222, 179, 128, 160, 160, 160, 160, 160, 160, 128, - 180, 181, 128, 128, 128, 128, 128, 128, 134, 134, - 134, 134, 134, 220, 227, 241, 185, 263, 171, 241, - 220, 183, 227, 521, 512, 263, 215, 134, 171, 171, - 171, 171, 171, 171, 134, 183, 185, 134, 134, 134, - 134, 134, 134, 158, 158, 158, 158, 158, 215, 175, - 182, 192, 207, 216, 247, 333, 175, 194, 333, 511, - 504, 217, 158, 175, 182, 214, 192, 247, 207, 158, - 216, 194, 158, 158, 158, 158, 158, 158, 173, 173, + 190, 190, 190, 190, 482, 484, 485, 487, 490, 493, + 476, 482, 491, 485, 487, 492, 484, 523, 190, 491, + 523, 493, 490, 500, 492, 190, 190, 190, 190, 190, + 190, 500, 14, 7, 0, 487, 490, 493, 0, 501, + 502, 0, 509, 492, 494, 494, 494, 494, 494, 502, + 494, 500, 501, 0, 190, 190, 190, 190, 190, 190, + 191, 191, 191, 191, 191, 0, 509, 501, 502, 513, + 506, 509, 508, 0, 495, 495, 495, 495, 495, 191, + 538, 508, 513, 529, 514, 495, 191, 191, 191, 191, + 191, 191, 506, 514, 538, 529, 494, 513, 0, 506, + + 508, 498, 498, 498, 498, 498, 0, 0, 538, 522, + 0, 529, 514, 0, 498, 191, 191, 191, 191, 191, + 191, 193, 193, 193, 193, 193, 495, 570, 0, 570, + 0, 522, 193, 515, 515, 515, 515, 515, 522, 530, + 193, 496, 496, 496, 496, 496, 515, 193, 193, 193, + 193, 193, 193, 498, 0, 570, 0, 496, 0, 524, + 525, 532, 0, 530, 0, 0, 0, 525, 530, 524, + 531, 0, 0, 193, 532, 541, 193, 193, 193, 193, + 193, 193, 198, 198, 198, 198, 198, 524, 525, 532, + 541, 0, 531, 496, 517, 517, 517, 517, 517, 531, - 173, 173, 173, 217, 194, 214, 252, 288, 186, 380, - 244, 182, 231, 489, 288, 380, 252, 173, 186, 186, - 186, 186, 186, 186, 187, 244, 231, 173, 173, 173, - 173, 173, 173, 188, 187, 187, 187, 187, 187, 187, - 239, 250, 251, 188, 188, 188, 188, 188, 188, 190, - 190, 190, 190, 190, 239, 258, 253, 254, 250, 191, - 418, 338, 488, 251, 338, 239, 418, 254, 190, 191, - 191, 191, 191, 191, 191, 193, 253, 258, 190, 190, - 190, 190, 190, 190, 197, 193, 193, 193, 193, 193, - 193, 256, 270, 269, 197, 197, 197, 197, 197, 197, + 539, 198, 545, 541, 0, 549, 539, 517, 198, 198, + 198, 198, 198, 198, 497, 497, 497, 497, 497, 519, + 519, 519, 519, 519, 545, 0, 0, 549, 539, 0, + 497, 545, 519, 540, 549, 542, 543, 198, 198, 198, + 198, 198, 198, 206, 542, 540, 517, 0, 543, 553, + 206, 206, 206, 206, 206, 206, 533, 533, 533, 533, + 533, 540, 553, 542, 543, 544, 497, 551, 0, 533, + 0, 519, 550, 0, 544, 582, 551, 553, 564, 206, + 206, 206, 206, 206, 206, 211, 211, 211, 211, 211, + 582, 564, 0, 544, 550, 551, 535, 535, 535, 535, + + 535, 550, 552, 582, 211, 563, 564, 573, 533, 535, + 0, 211, 211, 211, 211, 211, 211, 546, 546, 546, + 546, 546, 0, 554, 552, 0, 0, 563, 0, 573, + 546, 552, 554, 576, 563, 0, 573, 559, 556, 576, + 211, 211, 211, 211, 211, 211, 222, 556, 535, 0, + 560, 554, 562, 222, 222, 222, 222, 222, 222, 560, + 562, 576, 0, 0, 0, 559, 556, 568, 572, 546, + 0, 0, 0, 559, 578, 0, 568, 572, 560, 0, + 562, 0, 222, 222, 222, 222, 222, 222, 223, 223, + 223, 223, 223, 559, 0, 568, 572, 578, 575, 575, + + 575, 575, 575, 578, 580, 583, 585, 223, 0, 0, + 588, 575, 586, 580, 223, 223, 223, 223, 223, 223, + 581, 581, 581, 581, 581, 588, 0, 583, 585, 0, + 0, 0, 580, 581, 583, 585, 586, 0, 588, 0, + 0, 586, 0, 223, 223, 223, 223, 223, 223, 230, + 575, 0, 0, 0, 589, 0, 230, 230, 230, 230, + 230, 230, 589, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 581, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 589, 0, 0, 230, 230, 230, 230, 230, + 230, 233, 233, 233, 233, 233, 0, 233, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 233, 0, 0, 0, 0, 0, 0, 233, 233, 233, + 233, 233, 233, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 233, 0, 0, 233, 233, 233, 233, + 233, 233, 235, 0, 0, 0, 0, 0, 0, 235, + 235, 235, 235, 235, 235, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 235, 235, + 235, 235, 235, 235, 236, 236, 236, 236, 236, 0, - 199, 199, 199, 199, 199, 284, 470, 270, 295, 289, - 210, 287, 256, 269, 280, 295, 284, 289, 290, 199, - 210, 210, 210, 210, 210, 210, 287, 307, 280, 199, - 199, 199, 199, 199, 199, 212, 212, 212, 212, 212, - 290, 294, 296, 331, 293, 223, 448, 307, 445, 296, - 280, 294, 297, 331, 212, 223, 223, 223, 223, 223, - 223, 224, 293, 297, 212, 212, 212, 212, 212, 212, - 226, 224, 224, 224, 224, 224, 224, 335, 310, 337, - 226, 226, 226, 226, 226, 226, 230, 230, 230, 230, - 230, 233, 230, 310, 335, 259, 337, 230, 340, 230, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 236, 0, 0, 0, 0, 0, 0, + 236, 236, 236, 236, 236, 236, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, + 236, 236, 236, 236, 236, 237, 237, 237, 237, 237, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 237, 0, 0, 0, 0, 0, + 0, 237, 237, 237, 237, 237, 237, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 237, 237, 237, 237, 237, 237, 238, 238, 238, 238, + 238, 0, 0, 0, 0, 0, 0, 238, 0, 0, + 0, 0, 0, 0, 0, 238, 0, 0, 0, 0, + 0, 0, 238, 238, 238, 238, 238, 238, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 238, 0, + 0, 238, 238, 238, 238, 238, 238, 242, 242, 242, + 242, 242, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 242, 0, 0, 0, - 259, 233, 233, 233, 233, 233, 233, 234, 301, 259, - 328, 332, 230, 235, 340, 259, 301, 234, 234, 234, - 234, 234, 234, 235, 235, 235, 235, 235, 235, 236, - 341, 354, 328, 332, 355, 237, 354, 381, 341, 236, - 236, 236, 236, 236, 236, 237, 237, 237, 237, 237, - 237, 238, 346, 379, 355, 381, 354, 242, 386, 360, - 346, 238, 238, 238, 238, 238, 238, 242, 242, 242, - 242, 242, 242, 243, 360, 379, 382, 442, 419, 248, - 386, 382, 387, 243, 243, 243, 243, 243, 243, 248, - 248, 248, 248, 248, 248, 249, 367, 367, 367, 367, + 0, 0, 0, 242, 242, 242, 242, 242, 242, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 242, 242, 242, 242, 242, 242, 245, 0, + 0, 0, 0, 0, 0, 245, 245, 245, 245, 245, + 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 245, 245, 245, 245, 245, 245, + 248, 248, 248, 248, 248, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, + + 0, 0, 0, 0, 0, 0, 248, 248, 248, 248, + 248, 248, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 248, 248, 248, 248, 248, + 248, 259, 0, 0, 0, 0, 0, 0, 259, 259, + 259, 259, 259, 259, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 259, 259, 259, + 259, 259, 259, 260, 260, 260, 260, 260, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 367, 260, 383, 385, 387, 249, 249, 249, 249, 249, - 249, 260, 260, 260, 260, 260, 260, 261, 413, 383, - 385, 570, 367, 262, 399, 413, 400, 261, 261, 261, - 261, 261, 261, 262, 262, 262, 262, 262, 262, 267, - 267, 267, 267, 267, 399, 267, 400, 325, 570, 336, - 267, 325, 267, 268, 268, 268, 268, 268, 274, 268, - 336, 325, 403, 291, 268, 267, 268, 291, 274, 274, - 274, 274, 274, 274, 404, 417, 407, 403, 291, 268, - 272, 272, 272, 272, 272, 291, 272, 342, 373, 404, - 275, 272, 272, 272, 370, 500, 342, 417, 373, 272, + 0, 0, 260, 0, 0, 0, 0, 0, 0, 260, + 260, 260, 260, 260, 260, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 260, 260, + 260, 260, 260, 260, 271, 271, 271, 271, 271, 0, + 271, 0, 0, 0, 0, 271, 271, 271, 0, 0, + 0, 0, 0, 271, 0, 0, 0, 0, 0, 0, + 271, 271, 271, 271, 271, 271, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 271, 0, 0, 271, + + 271, 271, 271, 271, 271, 272, 0, 0, 0, 0, + 0, 0, 272, 272, 272, 272, 272, 272, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 272, 272, 272, 272, 272, 272, 274, 274, 274, + 274, 274, 0, 274, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 274, 0, 0, 0, + 0, 0, 0, 274, 274, 274, 274, 274, 274, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, + + 0, 0, 274, 274, 274, 274, 274, 274, 276, 0, + 0, 0, 0, 0, 0, 276, 276, 276, 276, 276, + 276, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 276, 0, 0, 276, 276, 276, 276, 276, 276, + 277, 277, 277, 277, 277, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, + 0, 0, 0, 0, 0, 0, 277, 277, 277, 277, + 277, 277, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 277, 0, 0, 277, 277, 277, 277, 277, + 277, 278, 278, 278, 278, 278, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 278, 0, 0, 0, 0, 0, 0, 278, 278, 278, + 278, 278, 278, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 278, 278, 278, 278, + 278, 278, 279, 279, 279, 279, 279, 0, 0, 0, + 0, 0, 0, 279, 0, 0, 0, 0, 0, 0, + 0, 279, 0, 0, 0, 0, 0, 0, 279, 279, - 275, 275, 275, 275, 275, 275, 272, 276, 370, 272, - 272, 272, 272, 272, 272, 277, 500, 276, 276, 276, - 276, 276, 276, 278, 439, 277, 277, 277, 277, 277, - 277, 279, 370, 278, 278, 278, 278, 278, 278, 281, - 439, 279, 279, 279, 279, 279, 279, 282, 440, 281, - 281, 281, 281, 281, 281, 285, 440, 282, 282, 282, - 282, 282, 282, 286, 479, 285, 285, 285, 285, 285, - 285, 298, 479, 286, 286, 286, 286, 286, 286, 299, - 391, 298, 298, 298, 298, 298, 298, 300, 414, 299, - 299, 299, 299, 299, 299, 414, 421, 300, 300, 300, + 279, 279, 279, 279, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 279, 0, 0, 279, 279, 279, + 279, 279, 279, 280, 280, 280, 280, 280, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 280, 0, 0, 0, 0, 0, 0, 280, + 280, 280, 280, 280, 280, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 280, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 280, 280, + 280, 280, 280, 280, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 280, 281, 281, 281, + 281, 281, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 281, 0, 0, 0, + 0, 0, 0, 281, 281, 281, 281, 281, 281, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 281, 281, 281, 281, 281, 281, 282, 0, + 0, 0, 0, 0, 0, 282, 282, 282, 282, 282, + 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 300, 300, 300, 306, 306, 306, 306, 306, 308, 308, - 308, 308, 308, 416, 377, 384, 306, 388, 421, 319, - 416, 308, 309, 309, 309, 309, 384, 388, 309, 319, - 319, 319, 319, 319, 319, 415, 312, 312, 312, 312, - 312, 309, 312, 420, 426, 449, 415, 312, 309, 312, - 420, 309, 309, 309, 309, 309, 309, 311, 311, 311, - 311, 423, 312, 339, 365, 449, 426, 339, 311, 313, - 313, 313, 313, 313, 424, 313, 311, 351, 339, 423, - 313, 424, 313, 311, 425, 339, 311, 311, 311, 311, - 311, 311, 444, 359, 425, 313, 314, 314, 314, 314, + 0, 0, 0, 0, 282, 282, 282, 282, 282, 282, + 283, 283, 283, 283, 283, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, + 0, 0, 0, 0, 0, 0, 283, 283, 283, 283, + 283, 283, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 283, 283, 283, 283, 283, + 283, 285, 285, 285, 285, 285, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 285, 0, 0, 0, 0, 0, 0, 285, 285, 285, + + 285, 285, 285, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 285, 285, 285, 285, + 285, 285, 297, 0, 0, 0, 0, 0, 0, 297, + 297, 297, 297, 297, 297, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 297, 297, + 297, 297, 297, 297, 298, 298, 298, 298, 298, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 298, 0, 0, 0, 0, 0, 0, - 314, 433, 314, 359, 501, 456, 444, 314, 433, 314, - 315, 315, 315, 315, 315, 321, 315, 434, 359, 456, - 501, 315, 314, 315, 434, 321, 321, 321, 321, 321, - 321, 352, 352, 352, 352, 352, 315, 316, 316, 316, - 316, 316, 435, 316, 352, 492, 350, 322, 316, 435, - 316, 371, 371, 371, 371, 371, 316, 322, 322, 322, - 322, 322, 322, 316, 436, 492, 316, 316, 316, 316, - 316, 316, 317, 317, 317, 317, 317, 371, 317, 451, - 422, 437, 324, 317, 317, 317, 422, 436, 437, 451, - 465, 317, 324, 324, 324, 324, 324, 324, 317, 326, + 298, 298, 298, 298, 298, 298, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, + 298, 298, 298, 298, 298, 308, 308, 308, 308, 0, + 0, 308, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 308, 0, 0, 0, 0, 0, + 0, 308, 308, 308, 308, 308, 308, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 308, 0, 0, + 308, 308, 308, 308, 308, 308, 310, 310, 310, 310, + + 0, 0, 0, 0, 0, 0, 0, 310, 0, 0, + 0, 0, 0, 0, 0, 310, 0, 0, 0, 0, + 0, 0, 310, 310, 310, 310, 310, 310, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 310, 0, + 0, 310, 310, 310, 310, 310, 310, 315, 315, 315, + 315, 315, 0, 0, 0, 0, 0, 0, 0, 0, + 315, 0, 0, 0, 0, 0, 315, 0, 0, 0, + 0, 0, 0, 315, 315, 315, 315, 315, 315, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, + 0, 0, 315, 315, 315, 315, 315, 315, 316, 316, + 316, 316, 316, 0, 316, 0, 0, 0, 0, 316, + 316, 316, 0, 0, 0, 0, 0, 316, 0, 0, + 0, 0, 0, 0, 316, 316, 316, 316, 316, 316, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 316, 0, 0, 316, 316, 316, 316, 316, 316, 317, + 0, 0, 0, 0, 0, 0, 317, 317, 317, 317, + 317, 317, 0, 0, 0, 0, 0, 0, 0, 0, - 465, 317, 317, 317, 317, 317, 317, 327, 513, 326, - 326, 326, 326, 326, 326, 329, 349, 327, 327, 327, - 327, 327, 327, 330, 513, 329, 329, 329, 329, 329, - 329, 409, 432, 330, 330, 330, 330, 330, 330, 343, - 343, 343, 343, 343, 344, 409, 432, 376, 409, 460, - 438, 343, 376, 438, 344, 344, 344, 344, 344, 344, - 345, 376, 447, 460, 348, 343, 432, 376, 447, 446, - 345, 345, 345, 345, 345, 345, 356, 356, 356, 356, - 356, 441, 356, 443, 361, 361, 361, 361, 361, 356, - 441, 446, 467, 450, 461, 361, 347, 361, 450, 467, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 317, 317, 317, 317, 317, + 317, 319, 319, 319, 319, 319, 0, 319, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 319, 0, 0, 0, 0, 0, 0, 319, 319, 319, + 319, 319, 319, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 319, 0, 0, 319, 319, 319, 319, + 319, 319, 322, 322, 322, 322, 322, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 322, 0, 0, 0, 0, 0, 0, 322, 322, + 322, 322, 322, 322, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 322, 0, 0, 322, 322, 322, + 322, 322, 322, 323, 323, 323, 323, 323, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 323, 0, 0, 0, 0, 0, 0, 323, + 323, 323, 323, 323, 323, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 323, 323, + + 323, 323, 323, 323, 324, 324, 324, 324, 324, 0, + 0, 0, 0, 0, 0, 324, 0, 0, 0, 0, + 0, 0, 0, 324, 0, 0, 0, 0, 0, 0, + 324, 324, 324, 324, 324, 324, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 324, 0, 0, 324, + 324, 324, 324, 324, 324, 325, 325, 325, 325, 325, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 325, 0, 0, 325, 0, 0, 0, 0, 0, + 0, 325, 325, 325, 325, 325, 325, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 325, 325, 325, 325, 325, 325, 326, 326, 326, 326, + 326, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 326, 0, 0, 0, 0, + 0, 0, 326, 326, 326, 326, 326, 326, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 326, 326, 326, 326, 326, 326, 327, 327, 327, + 327, 327, 0, 0, 0, 0, 0, 0, 0, 0, - 443, 364, 356, 357, 357, 357, 357, 357, 461, 357, - 361, 364, 364, 364, 364, 364, 364, 374, 374, 374, - 374, 374, 357, 408, 408, 408, 408, 408, 334, 357, - 323, 466, 357, 357, 357, 357, 357, 357, 358, 358, - 358, 358, 457, 374, 358, 459, 466, 457, 366, 408, - 457, 459, 410, 410, 410, 410, 410, 358, 366, 366, - 366, 366, 366, 366, 358, 462, 469, 358, 358, 358, - 358, 358, 358, 362, 362, 362, 362, 362, 410, 462, - 469, 502, 318, 368, 362, 462, 412, 412, 412, 412, - 412, 463, 362, 368, 368, 368, 368, 368, 368, 362, + 0, 0, 0, 0, 0, 0, 327, 0, 0, 0, + 0, 0, 0, 327, 327, 327, 327, 327, 327, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 327, 327, 327, 327, 327, 327, 329, 329, + 329, 329, 329, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 329, 0, 0, + 0, 0, 0, 0, 329, 329, 329, 329, 329, 329, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 329, 329, 329, 329, 329, 329, 342, + 0, 0, 0, 0, 0, 0, 342, 342, 342, 342, + 342, 342, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 342, 342, 342, 342, 342, + 342, 343, 343, 343, 343, 343, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 343, 0, 0, 0, 0, 0, 0, 343, 343, 343, + 343, 343, 343, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 343, 343, 343, 343, + 343, 343, 356, 356, 356, 356, 356, 0, 356, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 356, 0, 0, 0, 0, 0, 0, 356, 356, + 356, 356, 356, 356, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 356, 0, 0, 356, 356, 356, + 356, 356, 356, 357, 357, 357, 357, 0, 0, 357, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 357, 0, 0, 0, 0, 0, 0, 357, + + 357, 357, 357, 357, 357, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 357, 0, 0, 357, 357, + 357, 357, 357, 357, 361, 361, 361, 361, 361, 0, + 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, + 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, + 361, 361, 361, 361, 361, 361, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 361, 0, 0, 361, + 361, 361, 361, 361, 361, 362, 362, 362, 362, 0, - 464, 502, 362, 362, 362, 362, 362, 362, 363, 363, - 363, 363, 412, 463, 478, 472, 481, 482, 369, 363, - 472, 483, 464, 481, 482, 478, 486, 363, 369, 369, - 369, 369, 369, 369, 363, 372, 486, 363, 363, 363, - 363, 363, 363, 375, 483, 372, 372, 372, 372, 372, - 372, 468, 471, 375, 375, 375, 375, 375, 375, 389, - 389, 389, 389, 389, 390, 485, 305, 503, 468, 471, - 503, 389, 485, 487, 390, 390, 390, 390, 390, 390, - 398, 398, 398, 398, 398, 389, 398, 401, 476, 476, - 476, 476, 476, 398, 480, 487, 493, 401, 401, 401, + 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, + 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, + 0, 362, 362, 362, 362, 362, 362, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, + 362, 362, 362, 362, 362, 362, 363, 363, 363, 363, + 363, 0, 0, 0, 0, 0, 0, 0, 0, 363, + 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, + 0, 0, 363, 363, 363, 363, 363, 363, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, + 0, 363, 363, 363, 363, 363, 363, 367, 0, 0, + 0, 0, 0, 0, 367, 367, 367, 367, 367, 367, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 367, 367, 367, 367, 367, 367, 368, + 0, 0, 0, 0, 0, 0, 368, 368, 368, 368, + 368, 368, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 368, 368, 368, 368, 368, - 401, 401, 401, 477, 476, 480, 398, 402, 402, 402, - 402, 402, 405, 493, 476, 304, 303, 477, 402, 484, - 402, 490, 405, 405, 405, 405, 405, 405, 406, 505, - 484, 411, 507, 402, 505, 507, 490, 411, 406, 406, - 406, 406, 406, 406, 411, 509, 411, 427, 302, 491, - 509, 411, 411, 428, 508, 411, 491, 427, 427, 427, - 427, 427, 427, 428, 428, 428, 428, 428, 428, 429, - 506, 522, 514, 523, 508, 430, 523, 506, 522, 429, - 429, 429, 429, 429, 429, 430, 430, 430, 430, 430, - 430, 453, 514, 525, 527, 524, 292, 454, 527, 529, + 368, 371, 0, 0, 0, 0, 0, 0, 371, 371, + 371, 371, 371, 371, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 371, 371, 371, + 371, 371, 371, 372, 372, 372, 372, 372, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 372, 0, 0, 0, 0, 0, 0, 372, + 372, 372, 372, 372, 372, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 372, 372, + + 372, 372, 372, 372, 374, 374, 374, 374, 374, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 374, 0, 0, 0, 0, 0, 0, + 374, 374, 374, 374, 374, 374, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 374, + 374, 374, 374, 374, 374, 401, 0, 0, 0, 0, + 0, 0, 401, 401, 401, 401, 401, 401, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 542, 453, 453, 453, 453, 453, 453, 454, 454, 454, - 454, 454, 454, 455, 524, 525, 529, 530, 562, 473, - 542, 532, 530, 455, 455, 455, 455, 455, 455, 473, - 473, 473, 473, 473, 473, 474, 531, 532, 539, 562, - 544, 475, 551, 531, 538, 474, 474, 474, 474, 474, - 474, 475, 475, 475, 475, 475, 475, 494, 545, 538, - 544, 539, 551, 495, 283, 545, 273, 494, 494, 494, - 494, 494, 494, 495, 495, 495, 495, 495, 495, 496, - 496, 496, 496, 496, 497, 497, 497, 497, 497, 499, - 499, 499, 499, 499, 510, 496, 498, 540, 541, 266, + 0, 401, 401, 401, 401, 401, 401, 405, 0, 0, + 0, 0, 0, 0, 405, 405, 405, 405, 405, 405, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 405, 405, 405, 405, 405, 405, 406, + 406, 406, 406, 406, 0, 0, 0, 0, 0, 0, + 0, 0, 406, 0, 0, 0, 0, 0, 406, 0, + 0, 0, 0, 0, 0, 406, 406, 406, 406, 406, + 406, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 406, 0, 0, 406, 406, 406, 406, 406, 406, + 411, 0, 0, 0, 0, 0, 0, 411, 0, 411, + 0, 0, 0, 0, 411, 411, 0, 0, 411, 0, + 0, 0, 0, 411, 0, 0, 0, 0, 0, 411, + 0, 0, 0, 0, 0, 411, 0, 411, 0, 0, + 0, 0, 411, 411, 0, 0, 411, 428, 0, 0, + 0, 0, 0, 0, 428, 428, 428, 428, 428, 428, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 428, 428, 428, 428, 428, 428, 429, + + 0, 0, 0, 0, 0, 0, 429, 429, 429, 429, + 429, 429, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 429, 429, 429, 429, 429, + 429, 430, 0, 0, 0, 0, 0, 0, 430, 430, + 430, 430, 430, 430, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 430, 430, 430, + 430, 430, 430, 453, 0, 0, 0, 0, 0, 0, + 453, 453, 453, 453, 453, 453, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 453, + 453, 453, 453, 453, 453, 454, 0, 0, 0, 0, + 0, 0, 454, 454, 454, 454, 454, 454, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 454, 454, 454, 454, 454, 454, 455, 0, 0, + 0, 0, 0, 0, 455, 455, 455, 455, 455, 455, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 497, 265, 499, 264, 510, 496, 498, 498, 498, 498, - 498, 498, 541, 543, 540, 499, 515, 515, 515, 515, - 515, 517, 517, 517, 517, 517, 549, 586, 257, 515, - 543, 571, 586, 549, 517, 519, 519, 519, 519, 519, - 520, 571, 515, 516, 516, 516, 516, 516, 519, 582, - 520, 520, 520, 520, 520, 520, 516, 550, 552, 563, - 573, 519, 516, 582, 550, 552, 563, 573, 553, 516, - 246, 245, 516, 516, 516, 516, 516, 516, 533, 533, - 533, 533, 533, 534, 553, 554, 535, 535, 535, 535, - 535, 533, 588, 534, 534, 534, 534, 534, 534, 535, + 0, 0, 0, 455, 455, 455, 455, 455, 455, 473, + 0, 0, 0, 0, 0, 0, 473, 473, 473, 473, + 473, 473, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 473, 473, 473, 473, 473, + 473, 474, 0, 0, 0, 0, 0, 0, 474, 474, + 474, 474, 474, 474, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 474, 474, 474, + 474, 474, 474, 499, 0, 0, 0, 0, 0, 0, + + 499, 499, 499, 499, 499, 499, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 499, + 499, 499, 499, 499, 499, 518, 0, 0, 0, 0, + 0, 0, 518, 518, 518, 518, 518, 518, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 518, 518, 518, 518, 518, 518, 520, 520, 520, + 520, 520, 0, 0, 0, 0, 0, 0, 0, 0, + 520, 0, 0, 0, 0, 0, 520, 0, 0, 0, - 559, 240, 232, 229, 533, 554, 588, 576, 546, 556, - 559, 228, 535, 536, 536, 536, 536, 536, 546, 546, - 546, 546, 546, 546, 547, 547, 547, 547, 547, 556, - 576, 559, 536, 564, 578, 211, 206, 547, 205, 203, - 578, 548, 536, 536, 536, 536, 536, 536, 557, 564, - 547, 548, 548, 548, 548, 548, 548, 558, 557, 557, - 557, 557, 557, 557, 560, 566, 568, 558, 558, 558, - 558, 558, 558, 201, 198, 566, 566, 566, 566, 566, - 566, 567, 572, 583, 560, 580, 568, 195, 189, 184, - 583, 567, 567, 567, 567, 567, 567, 574, 178, 585, + 0, 0, 0, 520, 520, 520, 520, 520, 520, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, + 0, 0, 520, 520, 520, 520, 520, 520, 534, 534, + 534, 534, 534, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 534, 0, 0, + 0, 0, 0, 0, 534, 534, 534, 534, 534, 534, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 534, 534, 534, 534, 534, 534, 536, + + 0, 0, 0, 0, 0, 0, 536, 536, 536, 536, + 536, 536, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 536, 536, 536, 536, 536, + 536, 547, 0, 0, 0, 0, 0, 0, 547, 547, + 547, 547, 547, 547, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 547, 547, 547, + 547, 547, 547, 548, 0, 0, 0, 0, 0, 0, + 548, 548, 548, 548, 548, 548, 0, 0, 0, 0, - 589, 174, 572, 575, 159, 580, 585, 574, 574, 574, - 574, 574, 574, 575, 575, 575, 575, 575, 575, 581, - 157, 589, 155, 151, 150, 149, 147, 146, 144, 581, - 581, 581, 581, 581, 581, 592, 143, 592, 592, 592, - 592, 592, 592, 592, 592, 592, 593, 593, 141, 593, - 593, 594, 140, 594, 594, 594, 594, 594, 594, 594, - 594, 594, 595, 595, 138, 595, 595, 596, 596, 596, - 596, 596, 596, 596, 596, 596, 597, 135, 597, 597, - 133, 597, 597, 598, 598, 598, 598, 598, 598, 598, - 598, 598, 598, 598, 599, 599, 599, 599, 599, 599, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 548, + 548, 548, 548, 548, 548, 557, 0, 0, 0, 0, + 0, 0, 557, 557, 557, 557, 557, 557, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 557, 557, 557, 557, 557, 557, 558, 0, 0, + 0, 0, 0, 0, 558, 558, 558, 558, 558, 558, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 558, 558, 558, 558, 558, 558, 566, + 0, 0, 0, 0, 0, 0, 566, 566, 566, 566, + 566, 566, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 566, 566, 566, 566, 566, + 566, 567, 0, 0, 0, 0, 0, 0, 567, 567, + 567, 567, 567, 567, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 567, 567, 567, + 567, 567, 567, 574, 0, 0, 0, 0, 0, 0, + + 574, 574, 574, 574, 574, 574, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 574, + 574, 574, 574, 574, 574, 592, 0, 0, 592, 592, + 592, 592, 592, 592, 592, 592, 592, 592, 593, 593, + 0, 593, 593, 594, 0, 0, 594, 594, 594, 594, + 594, 594, 594, 594, 594, 594, 595, 595, 0, 595, + 595, 596, 0, 596, 596, 0, 596, 596, 597, 597, + 597, 597, 597, 597, 597, 597, 597, 597, 598, 598, + 598, 598, 598, 598, 598, 598, 598, 598, 598, 598, + + 598, 600, 600, 0, 600, 600, 601, 601, 601, 601, + 601, 601, 601, 601, 601, 601, 602, 602, 602, 602, + 602, 602, 602, 602, 602, 602, 602, 602, 602, 603, + 603, 603, 603, 603, 603, 603, 603, 603, 603, 603, + 603, 603, 603, 605, 605, 0, 605, 605, 606, 606, + 606, 606, 606, 606, 606, 606, 606, 606, 607, 607, + 0, 607, 607, 608, 608, 608, 608, 608, 608, 608, + 608, 608, 608, 609, 609, 609, 609, 609, 609, 609, + 609, 609, 609, 610, 610, 610, 612, 612, 612, 612, + 612, 612, 612, 612, 612, 612, 613, 613, 0, 613, - 599, 599, 599, 600, 600, 131, 600, 600, 601, 601, - 601, 601, 601, 601, 601, 601, 601, 601, 601, 602, - 602, 602, 602, 602, 602, 602, 602, 602, 602, 602, - 602, 603, 603, 604, 604, 604, 604, 604, 604, 604, - 604, 604, 605, 605, 121, 605, 605, 606, 606, 606, - 606, 606, 606, 606, 606, 606, 607, 607, 119, 607, - 607, 608, 608, 608, 608, 608, 608, 608, 608, 608, - 609, 609, 609, 609, 609, 609, 609, 609, 609, 610, - 610, 610, 610, 610, 610, 610, 610, 610, 610, 610, - 610, 611, 611, 611, 611, 611, 611, 611, 611, 611, + 613, 613, 613, 613, 613, 613, 613, 613, 613, 614, + 614, 614, 614, 614, 614, 614, 614, 614, 614, 614, + 614, 614, 615, 615, 615, 615, 615, 615, 615, 615, + 615, 615, 615, 615, 615, 615, 616, 616, 616, 616, + 616, 616, 616, 616, 616, 616, 616, 616, 616, 616, + 617, 617, 617, 617, 617, 617, 617, 617, 617, 617, + 618, 618, 618, 618, 618, 618, 618, 618, 618, 618, + 619, 619, 619, 619, 621, 621, 621, 621, 621, 621, + 621, 621, 621, 621, 621, 621, 621, 621, 623, 623, + 623, 623, 624, 624, 624, 624, 624, 624, 0, 624, + + 624, 624, 624, 624, 624, 625, 625, 625, 625, 625, + 625, 625, 625, 625, 625, 625, 625, 625, 627, 627, + 627, 627, 627, 627, 627, 627, 627, 627, 627, 627, + 627, 627, 629, 629, 629, 629, 630, 630, 630, 630, + 630, 630, 0, 630, 630, 630, 630, 630, 630, 631, + 0, 0, 631, 631, 631, 631, 631, 631, 631, 631, + 631, 631, 632, 0, 0, 632, 632, 632, 632, 632, + 632, 632, 632, 632, 632, 633, 633, 633, 633, 633, + 633, 633, 633, 633, 633, 633, 633, 633, 634, 634, + 634, 634, 634, 634, 634, 634, 634, 634, 634, 634, - 612, 612, 612, 612, 612, 612, 612, 612, 612, 613, - 613, 613, 112, 613, 614, 614, 614, 614, 614, 614, - 614, 614, 614, 614, 614, 614, 615, 615, 615, 101, - 615, 616, 616, 616, 616, 84, 616, 616, 616, 616, - 616, 616, 617, 617, 617, 81, 617, 618, 79, 618, - 618, 618, 618, 618, 618, 618, 618, 618, 619, 67, - 619, 619, 619, 619, 619, 619, 619, 619, 619, 620, - 620, 620, 620, 620, 620, 620, 620, 620, 620, 620, - 621, 621, 621, 63, 621, 622, 622, 622, 622, 622, - 622, 622, 622, 622, 622, 622, 623, 623, 623, 623, + 634, 636, 636, 0, 636, 636, 637, 637, 637, 637, + 637, 637, 637, 637, 637, 637, 637, 637, 637, 639, + 639, 639, 639, 640, 640, 640, 640, 640, 640, 640, + 640, 640, 640, 640, 640, 640, 641, 0, 0, 641, + 641, 641, 641, 641, 641, 641, 641, 641, 641, 642, + 642, 642, 642, 642, 642, 642, 642, 642, 642, 642, + 642, 642, 643, 643, 643, 643, 643, 0, 0, 643, + 643, 643, 643, 643, 643, 644, 644, 644, 644, 644, + 644, 644, 644, 644, 644, 644, 644, 644, 645, 645, + 645, 645, 645, 645, 645, 645, 645, 645, 645, 645, - 623, 623, 623, 623, 623, 623, 623, 624, 624, 624, - 62, 624, 625, 625, 625, 61, 60, 54, 625, 46, - 39, 625, 625, 626, 626, 626, 626, 626, 626, 626, - 626, 626, 627, 627, 627, 30, 29, 627, 627, 627, - 25, 627, 627, 628, 628, 628, 628, 628, 628, 628, - 628, 628, 22, 20, 19, 16, 14, 7, 6, 5, + 645, 646, 646, 0, 646, 646, 647, 647, 647, 647, + 647, 647, 647, 647, 647, 647, 647, 647, 647, 649, + 649, 649, 649, 650, 650, 0, 650, 650, 650, 650, + 650, 650, 650, 650, 650, 650, 651, 651, 651, 651, + 651, 651, 651, 651, 651, 651, 651, 651, 651, 652, + 652, 0, 652, 652, 652, 652, 652, 652, 652, 652, + 652, 652, 653, 653, 653, 653, 653, 653, 653, 653, + 653, 653, 653, 653, 653, 654, 654, 654, 654, 654, + 0, 0, 654, 654, 654, 654, 654, 654, 657, 657, + 657, 657, 0, 0, 0, 0, 657, 0, 0, 657, + + 657, 658, 658, 658, 658, 0, 0, 0, 658, 658, + 658, 0, 658, 658, 659, 659, 659, 659, 659, 659, + 659, 659, 659, 659, 660, 660, 660, 660, 660, 660, + 660, 660, 660, 660, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 591, 591, 591, 591, 591, 591, 591, 591, 591, 591, - 591 + 591, 591, 591, 591, 591, 591, 591, 591, 591, 591 } ; #line 1 "" -#define INITIAL 0 -#define YY_STACK_USED 1 -#define mediaquery 1 YY_DECL - { +{ register yy_state_type yy_current_state; register UChar *yy_cp, *yy_bp; register int yy_act; while ( 1 ) /* loops until end-of-file is reached */ { - yy_cp = yy_c_buf_p; + yy_cp = (yy_c_buf_p); /* Support of yytext. */ - *yy_cp = yy_hold_char; + *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; - yy_current_state = yy_start; + yy_current_state = (yy_start); do { register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; if ( yy_accept[yy_current_state] ) { - yy_last_accepting_state = yy_current_state; - yy_last_accepting_cpos = yy_cp; + (yy_last_accepting_state) = yy_current_state; + (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { @@ -926,37 +1861,37 @@ yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } - while ( yy_base[yy_current_state] != 2461 ); + while ( yy_base[yy_current_state] != 6635 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ - yy_cp = yy_last_accepting_cpos; - yy_current_state = yy_last_accepting_state; + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; - - switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ - *yy_cp = yy_hold_char; - yy_cp = yy_last_accepting_cpos; - yy_current_state = yy_last_accepting_state; + *yy_cp = (yy_hold_char); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: +/* rule 1 can match eol */ YY_RULE_SETUP #line 31 "" {countLines(); /* ignore comments */ } YY_BREAK case 2: +/* rule 2 can match eol */ YY_RULE_SETUP #line 33 "" {countLines(); yyTok = WHITESPACE; return yyTok;} @@ -1017,11 +1952,13 @@ {BEGIN(mediaquery); yyTok = VARIABLES_FOR; return yyTok; } YY_BREAK case 14: +/* rule 14 can match eol */ YY_RULE_SETUP #line 47 "" {yyTok = STRING; return yyTok;} YY_BREAK case 15: +/* rule 15 can match eol */ YY_RULE_SETUP #line 48 "" {yyTok = IDENT; return yyTok;} @@ -1037,6 +1974,7 @@ {yyTok = HEX; return yyTok;} YY_BREAK case 18: +/* rule 18 can match eol */ YY_RULE_SETUP #line 52 "" {yyTok = IDSEL; return yyTok;} @@ -1202,11 +2140,13 @@ {yyTok = WEBKIT_KEYFRAME_RULE_SYM; return yyTok; } YY_BREAK case 51: +/* rule 51 can match eol */ YY_RULE_SETUP #line 87 "" {yyTok = ATKEYWORD; return yyTok; } YY_BREAK case 52: +/* rule 52 can match eol */ YY_RULE_SETUP #line 89 "" {yyTok = IMPORTANT_SYM; return yyTok;} @@ -1302,6 +2242,7 @@ {yyTok = KHERZ; return yyTok;} YY_BREAK case 71: +/* rule 71 can match eol */ YY_RULE_SETUP #line 109 "" {yyTok = DIMEN; return yyTok;} @@ -1327,21 +2268,25 @@ {yyTok = NOTFUNCTION; return yyTok;} YY_BREAK case 76: +/* rule 76 can match eol */ YY_RULE_SETUP #line 115 "" {yyTok = URI; return yyTok;} YY_BREAK case 77: +/* rule 77 can match eol */ YY_RULE_SETUP #line 116 "" {yyTok = URI; return yyTok;} YY_BREAK case 78: +/* rule 78 can match eol */ YY_RULE_SETUP #line 117 "" { yyTok = VARCALL; return yyTok; } YY_BREAK case 79: +/* rule 79 can match eol */ YY_RULE_SETUP #line 118 "" {yyTok = FUNCTION; return yyTok;} @@ -1373,6 +2318,7 @@ #line 127 "" ECHO; YY_BREAK +#line 2873 "" case YY_END_OF_BUFFER: yy_c_buf_p = yy_cp - 1; yy_cp = yy_c_buf_p; @@ -1386,4 +2332,4 @@ "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ - } /* end of yylex */ +} /* end of yylex */ diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/html/canvas/CanvasRenderingContext2D.cpp --- a/WebCore/html/canvas/CanvasRenderingContext2D.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/html/canvas/CanvasRenderingContext2D.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1632,7 +1632,19 @@ PassRefPtr CanvasRenderingContext2D::measureText(const String& text) { RefPtr metrics = TextMetrics::create(); + +#if PLATFORM(QT) + // We always use complex text shaping since it can't be turned off for QPainterPath::addText(). + Font::CodePath oldCodePath = Font::codePath(); + Font::setCodePath(Font::Complex); +#endif + metrics->setWidth(accessFont().width(TextRun(text.characters(), text.length()))); + +#if PLATFORM(QT) + Font::setCodePath(oldCodePath); +#endif + return metrics; } @@ -1743,7 +1755,18 @@ #endif c->setTextDrawingMode(fill ? cTextFill : cTextStroke); + +#if PLATFORM(QT) + // We always use complex text shaping since it can't be turned off for QPainterPath::addText(). + Font::CodePath oldCodePath = Font::codePath(); + Font::setCodePath(Font::Complex); +#endif + c->drawBidiText(font, textRun, location); + +#if PLATFORM(QT) + Font::setCodePath(oldCodePath); +#endif } const Font& CanvasRenderingContext2D::accessFont() diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/manual-tests/WebKitSite.webarchive Binary file WebCore/manual-tests/WebKitSite.webarchive has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/ChromeClient.h --- a/WebCore/page/ChromeClient.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/ChromeClient.h Mon Oct 04 01:32:07 2010 +0300 @@ -244,14 +244,6 @@ virtual void needTouchEvents(bool) = 0; #endif -#if ENABLE(WIDGETS_10_SUPPORT) - virtual bool isWindowed() { return false; } - virtual bool isFloating() { return false; } - virtual bool isFullscreen() { return false; } - virtual bool isMaximized() { return false; } - virtual bool isMinimized() { return false; } -#endif - protected: virtual ~ChromeClient() { } }; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/Geolocation.cpp --- a/WebCore/page/Geolocation.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/Geolocation.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -278,13 +278,18 @@ notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); else if (haveSuitableCachedPosition(notifier->m_options.get())) notifier->setUseCachedPosition(); - else if (notifier->hasZeroTimeout() || startUpdating(notifier.get())) { + else if (notifier->hasZeroTimeout()) + notifier->startTimerIfNeeded(); #if USE(PREEMPT_GEOLOCATION_PERMISSION) - // Only start timer if we're not waiting for user permission. - if (!m_startRequestPermissionNotifier) -#endif - notifier->startTimerIfNeeded(); - } else + else if (!isAllowed()) { + // if we don't yet have permission, request for permission before calling startUpdating() + m_pendingForPermissionNotifiers.add(notifier); + requestPermission(); + } +#endif + else if (startUpdating(notifier.get())) + notifier->startTimerIfNeeded(); + else notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartServiceErrorMessage)); return notifier.release(); @@ -401,26 +406,10 @@ m_allowGeolocation = allowed ? Yes : No; #if USE(PREEMPT_GEOLOCATION_PERMISSION) - if (m_startRequestPermissionNotifier) { - if (isAllowed()) { - // Permission request was made during the startUpdating process - m_startRequestPermissionNotifier->startTimerIfNeeded(); - m_startRequestPermissionNotifier = 0; -#if ENABLE(CLIENT_BASED_GEOLOCATION) - if (!m_frame) - return; - Page* page = m_frame->page(); - if (!page) - return; - page->geolocationController()->addObserver(this); -#else - // TODO: Handle startUpdate() for non-client based implementations using pre-emptive policy -#endif - } else { - m_startRequestPermissionNotifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); - m_oneShots.add(m_startRequestPermissionNotifier); - m_startRequestPermissionNotifier = 0; - } + // Permission request was made during the startRequest process + if (!m_pendingForPermissionNotifiers.isEmpty()) { + handlePendingPermissionNotifiers(); + m_pendingForPermissionNotifiers.clear(); return; } #endif @@ -616,14 +605,6 @@ bool Geolocation::startUpdating(GeoNotifier* notifier) { -#if USE(PREEMPT_GEOLOCATION_PERMISSION) - if (!isAllowed()) { - m_startRequestPermissionNotifier = notifier; - requestPermission(); - return true; - } -#endif - #if ENABLE(CLIENT_BASED_GEOLOCATION) if (!m_frame) return false; @@ -632,8 +613,7 @@ if (!page) return false; - // FIXME: Pass options to client. - page->geolocationController()->addObserver(this); + page->geolocationController()->addObserver(this, notifier->m_options->enableHighAccuracy()); return true; #else return m_service->startUpdating(notifier->m_options.get()); @@ -657,6 +637,28 @@ } +#if USE(PREEMPT_GEOLOCATION_PERMISSION) +void Geolocation::handlePendingPermissionNotifiers() +{ + // While we iterate through the list, we need not worry about list being modified as the permission + // is already set to Yes/No and no new listeners will be added to the pending list + GeoNotifierSet::const_iterator end = m_pendingForPermissionNotifiers.end(); + for (GeoNotifierSet::const_iterator iter = m_pendingForPermissionNotifiers.begin(); iter != end; ++iter) { + GeoNotifier* notifier = iter->get(); + + if (isAllowed()) { + // start all pending notification requests as permission granted. + // The notifier is always ref'ed by m_oneShots or m_watchers. + if (startUpdating(notifier)) + notifier->startTimerIfNeeded(); + else + notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartServiceErrorMessage)); + } else + notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedErrorMessage)); + } +} +#endif + } // namespace WebCore #else diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/Geolocation.h --- a/WebCore/page/Geolocation.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/Geolocation.h Mon Oct 04 01:32:07 2010 +0300 @@ -144,6 +144,10 @@ bool startUpdating(GeoNotifier*); void stopUpdating(); +#if USE(PREEMPT_GEOLOCATION_PERMISSION) + void handlePendingPermissionNotifiers(); +#endif + #if !ENABLE(CLIENT_BASED_GEOLOCATION) && ENABLE(GEOLOCATION) // GeolocationServiceClient virtual void geolocationServicePositionChanged(GeolocationService*); @@ -167,7 +171,7 @@ OwnPtr m_service; #endif #if USE(PREEMPT_GEOLOCATION_PERMISSION) - RefPtr m_startRequestPermissionNotifier; + GeoNotifierSet m_pendingForPermissionNotifiers; #endif RefPtr m_lastPosition; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/GeolocationController.cpp --- a/WebCore/page/GeolocationController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/GeolocationController.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -45,17 +45,21 @@ m_client->geolocationDestroyed(); } -void GeolocationController::addObserver(Geolocation* observer) +void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy) { // This may be called multiple times with the same observer, though removeObserver() // is called only once with each. - if (m_observers.contains(observer)) - return; - bool wasEmpty = m_observers.isEmpty(); m_observers.add(observer); - if (wasEmpty && m_client) - m_client->startUpdating(); + if (enableHighAccuracy) + m_highAccuracyObservers.add(observer); + + if (m_client) { + if (enableHighAccuracy) + m_client->setEnableHighAccuracy(true); + if (wasEmpty) + m_client->startUpdating(); + } } void GeolocationController::removeObserver(Geolocation* observer) @@ -64,8 +68,14 @@ return; m_observers.remove(observer); - if (m_observers.isEmpty() && m_client) - m_client->stopUpdating(); + m_highAccuracyObservers.remove(observer); + + if (m_client) { + if (m_observers.isEmpty()) + m_client->stopUpdating(); + else if (m_highAccuracyObservers.isEmpty()) + m_client->setEnableHighAccuracy(false); + } } void GeolocationController::positionChanged(GeolocationPosition* position) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/GeolocationController.h --- a/WebCore/page/GeolocationController.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/GeolocationController.h Mon Oct 04 01:32:07 2010 +0300 @@ -45,7 +45,7 @@ GeolocationController(Page*, GeolocationControllerClient*); ~GeolocationController(); - void addObserver(Geolocation*); + void addObserver(Geolocation*, bool enableHighAccuracy); void removeObserver(Geolocation*); void positionChanged(GeolocationPosition*); @@ -58,7 +58,10 @@ GeolocationControllerClient* m_client; RefPtr m_lastPosition; - HashSet > m_observers; + typedef HashSet > ObserversSet; + // All observers; both those requesting high accuracy and those not. + ObserversSet m_observers; + ObserversSet m_highAccuracyObservers; }; } // namespace WebCore diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/GeolocationControllerClient.h --- a/WebCore/page/GeolocationControllerClient.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/GeolocationControllerClient.h Mon Oct 04 01:32:07 2010 +0300 @@ -36,6 +36,11 @@ virtual void startUpdating() = 0; virtual void stopUpdating() = 0; + // FIXME: The V2 Geolocation specification proposes that this property is + // renamed. See http://www.w3.org/2008/geolocation/track/issues/6 + // We should update WebKit to reflect this if and when the V2 specification + // is published. + virtual void setEnableHighAccuracy(bool) = 0; virtual GeolocationPosition* lastPosition() = 0; protected: diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/Page.cpp --- a/WebCore/page/Page.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/Page.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -166,6 +166,7 @@ , m_customHTMLTokenizerTimeDelay(-1) , m_customHTMLTokenizerChunkSize(-1) , m_canStartMedia(true) + , m_viewMode(ViewModeWindowed) { #if !ENABLE(CONTEXT_MENUS) UNUSED_PARAM(contextMenuClient); @@ -232,6 +233,45 @@ #endif } +struct ViewModeInfo { + const char* name; + Page::ViewMode type; +}; +static const int viewModeMapSize = 5; +static ViewModeInfo viewModeMap[viewModeMapSize] = { + {"windowed", Page::ViewModeWindowed}, + {"floating", Page::ViewModeFloating}, + {"fullscreen", Page::ViewModeFullscreen}, + {"maximized", Page::ViewModeMaximized}, + {"minimized", Page::ViewModeMinimized} +}; + +Page::ViewMode Page::stringToViewMode(const String& text) +{ + for (int i = 0; i < viewModeMapSize; ++i) { + if (text == viewModeMap[i].name) + return viewModeMap[i].type; + } + return Page::ViewModeInvalid; +} + +void Page::setViewMode(ViewMode viewMode) +{ + if (viewMode == m_viewMode || viewMode == ViewModeInvalid) + return; + + m_viewMode = viewMode; + + if (!m_mainFrame) + return; + + if (m_mainFrame->view()) + m_mainFrame->view()->forceLayout(); + + if (m_mainFrame->document()) + m_mainFrame->document()->updateStyleSelector(); +} + void Page::setMainFrame(PassRefPtr mainFrame) { ASSERT(!m_mainFrame); // Should only be called during initialization diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/page/Page.h --- a/WebCore/page/Page.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/page/Page.h Mon Oct 04 01:32:07 2010 +0300 @@ -159,6 +159,20 @@ #endif Settings* settings() const { return m_settings.get(); } ProgressTracker* progress() const { return m_progress.get(); } + + + enum ViewMode { + ViewModeInvalid, + ViewModeWindowed, + ViewModeFloating, + ViewModeFullscreen, + ViewModeMaximized, + ViewModeMinimized + }; + static ViewMode stringToViewMode(const String&); + + ViewMode viewMode() const { return m_viewMode; } + void setViewMode(ViewMode); void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; } bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughElements; } @@ -333,6 +347,8 @@ #if ENABLE(NOTIFICATIONS) NotificationPresenter* m_notificationPresenter; #endif + + ViewMode m_viewMode; }; } // namespace WebCore diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/platform/graphics/Path.h --- a/WebCore/platform/graphics/Path.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/platform/graphics/Path.h Mon Oct 04 01:32:07 2010 +0300 @@ -155,6 +155,10 @@ private: PlatformPathPtr m_path; + +#if PLATFORM(QT) + int m_lastMoveToIndex; +#endif }; } diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/platform/graphics/qt/FontQt.cpp --- a/WebCore/platform/graphics/qt/FontQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/platform/graphics/qt/FontQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -169,7 +169,7 @@ int flags = run.rtl() ? Qt::TextForceRightToLeft : Qt::TextForceLeftToRight; #if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) // See QWebPagePrivate::QWebPagePrivate() where the default path is set to Complex for Qt 4.6 and earlier. - if (!isComplexText) + if (!isComplexText && !(ctx->textDrawingMode() & cTextStroke)) flags |= Qt::TextBypassShaping; #endif if (hasShadow) { diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/platform/graphics/qt/ImageDecoderQt.cpp --- a/WebCore/platform/graphics/qt/ImageDecoderQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/platform/graphics/qt/ImageDecoderQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -78,6 +78,9 @@ m_buffer->open(QIODevice::ReadOnly | QIODevice::Unbuffered); m_reader.set(new QImageReader(m_buffer.get(), m_format)); + // This will force the JPEG decoder to use JDCT_IFAST + m_reader->setQuality(49); + // QImageReader only allows retrieving the format before reading the image m_format = m_reader->format(); } @@ -186,20 +189,16 @@ bool ImageDecoderQt::internalHandleCurrentImage(size_t frameIndex) { QPixmap pixmap; - bool pixmapLoaded; - const int imageCount = m_reader->imageCount(); - if (imageCount == 0 || imageCount == 1) - pixmapLoaded = pixmap.loadFromData((const uchar*)(m_data->data()), m_data->size(), m_format); - else { - QImage img; - const bool imageLoaded = m_reader->read(&img); - if (imageLoaded) { - pixmap = QPixmap::fromImage(img); - pixmapLoaded = true; - } - } - if (!pixmapLoaded) { +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + pixmap = QPixmap::fromImageReader(m_reader.get()); +#else + QImage img; + if (m_reader->read(&img)) + pixmap = QPixmap::fromImage(img); +#endif + + if (pixmap.isNull()) { frameCount(); repetitionCount(); clearPointers(); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/platform/graphics/qt/PathQt.cpp --- a/WebCore/platform/graphics/qt/PathQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/platform/graphics/qt/PathQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -51,6 +51,7 @@ namespace WebCore { Path::Path() + : m_lastMoveToIndex(0) { } @@ -60,12 +61,14 @@ Path::Path(const Path& other) : m_path(other.m_path) + , m_lastMoveToIndex(other.m_lastMoveToIndex) { } Path& Path::operator=(const Path& other) { m_path = other.m_path; + m_lastMoveToIndex = other.m_lastMoveToIndex; return *this; } @@ -180,6 +183,7 @@ void Path::moveTo(const FloatPoint& point) { + m_lastMoveToIndex = m_path.elementCount(); m_path.moveTo(point); } @@ -260,7 +264,26 @@ void Path::closeSubpath() { - m_path.closeSubpath(); + const int elementCount = m_path.elementCount(); + + if (!elementCount) + return; + + QPointF lastMoveToPoint = m_path.elementAt(m_lastMoveToIndex); + int elementsInLastSubpath = 0; + + for (int i = m_lastMoveToIndex; i < elementCount; ++i) { + QPainterPath::Element element = m_path.elementAt(i); + if (element.isLineTo() || element.isCurveTo()) { + // All we need to know is if there are 1 or more elements in the last subpath. + if (++elementsInLastSubpath == 2) { + m_path.lineTo(lastMoveToPoint); + return; + } + } + } + + moveTo(lastMoveToPoint); } #define DEGREES(t) ((t) * 180.0 / M_PI) @@ -440,7 +463,7 @@ // QTransform.map doesn't handle the MoveTo element because of the isEmpty issue if (m_path.isEmpty() && m_path.elementCount()) { QPointF point = qTransform.map(m_path.currentPosition()); - m_path.moveTo(point); + moveTo(point); } else #endif m_path = qTransform.map(m_path); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/platform/qt/FileSystemQt.cpp --- a/WebCore/platform/qt/FileSystemQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/platform/qt/FileSystemQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -128,6 +128,33 @@ return CString(); } +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) +PlatformFileHandle openFile(const String& path, FileOpenMode mode) +{ + QIODevice::OpenMode platformMode; + + if (mode == OpenForRead) + platformMode = QIODevice::ReadOnly; + else if (mode == OpenForWrite) + platformMode = (QIODevice::WriteOnly | QIODevice::Truncate); + else + return invalidPlatformFileHandle; + + QFile* file = new QFile(path); + if (file->open(platformMode)) + return file; + + return invalidPlatformFileHandle; +} + +int readFromFile(PlatformFileHandle handle, char* data, int length) +{ + if (handle && handle->exists() && handle->isReadable()) + return handle->read(data, length); + return 0; +} +#endif + void closeFile(PlatformFileHandle& handle) { if (handle) { diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginDatabase.cpp --- a/WebCore/plugins/PluginDatabase.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginDatabase.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -30,13 +30,31 @@ #include "Frame.h" #include "KURL.h" #include "PluginPackage.h" +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) +#include "FileSystem.h" +#endif #include namespace WebCore { typedef HashMap > PluginPackageByNameMap; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) +static const size_t maximumPersistentPluginMetadataCacheSize = 32768; + +static bool gPersistentPluginMetadataCacheIsEnabled; + +String& persistentPluginMetadataCachePath() +{ + DEFINE_STATIC_LOCAL(String, cachePath, ()); + return cachePath; +} +#endif + PluginDatabase::PluginDatabase() +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + : m_persistentMetadataCacheIsLoaded(false) +#endif { } @@ -74,6 +92,10 @@ bool PluginDatabase::refresh() { +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + if (!m_persistentMetadataCacheIsLoaded) + loadPersistentMetadataCache(); +#endif bool pluginSetChanged = false; if (!m_plugins.isEmpty()) { @@ -126,6 +148,10 @@ if (!pluginSetChanged) return false; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + updatePersistentMetadataCache(); +#endif + m_registeredMIMETypes.clear(); // Register plug-in MIME types @@ -182,8 +208,13 @@ if (!plugin->isEnabled()) continue; - if (plugin->mimeToDescriptions().contains(key)) + if (plugin->mimeToDescriptions().contains(key)) { +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + if (!plugin->ensurePluginLoaded()) + continue; +#endif pluginChoices.append(plugin); + } } if (pluginChoices.isEmpty()) @@ -222,6 +253,10 @@ if (preferredPlugin && PluginPackage::equal(*plugin, *preferredPlugin)) return mimeType; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + if (!plugin->ensurePluginLoaded()) + continue; +#endif pluginChoices.append(plugin); mimeTypeForPlugin.add(plugin, mimeType); foundMapping = true; @@ -315,6 +350,9 @@ m_pluginPathsWithTimes.clear(); m_registeredMIMETypes.clear(); m_preferredPlugins.clear(); +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + m_persistentMetadataCacheIsLoaded = false; +#endif } #if (!OS(WINCE)) && (!OS(SYMBIAN)) && (!OS(WINDOWS) || !ENABLE(NETSCAPE_PLUGIN_API)) @@ -427,4 +465,200 @@ #endif // !OS(SYMBIAN) && !OS(WINDOWS) +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + +static void fillBufferWithContentsOfFile(PlatformFileHandle file, Vector& buffer) +{ + size_t bufferSize = 0; + size_t bufferCapacity = 1024; + buffer.resize(bufferCapacity); + + do { + bufferSize += readFromFile(file, buffer.data() + bufferSize, bufferCapacity - bufferSize); + if (bufferSize == bufferCapacity) { + if (bufferCapacity < maximumPersistentPluginMetadataCacheSize) { + bufferCapacity *= 2; + buffer.resize(bufferCapacity); + } else { + buffer.clear(); + return; + } + } else + break; + } while (true); + + buffer.shrink(bufferSize); } + +static bool readUTF8String(String& resultString, char*& start, const char* end) +{ + if (start >= end) + return false; + + int len = strlen(start); + resultString = String::fromUTF8(start, len); + start += len + 1; + + return true; +} + +static bool readTime(time_t& resultTime, char*& start, const char* end) +{ + if (start + sizeof(time_t) >= end) + return false; + + resultTime = *reinterpret_cast(start); + start += sizeof(time_t); + + return true; +} + +static const char schemaVersion = '1'; +static const char persistentPluginMetadataCacheFilename[] = "PluginMetadataCache.bin"; + +void PluginDatabase::loadPersistentMetadataCache() +{ + if (!isPersistentMetadataCacheEnabled() || persistentMetadataCachePath().isEmpty()) + return; + + PlatformFileHandle file; + String absoluteCachePath = pathByAppendingComponent(persistentMetadataCachePath(), persistentPluginMetadataCacheFilename); + file = openFile(absoluteCachePath, OpenForRead); + + if (!isHandleValid(file)) + return; + + // Mark cache as loaded regardless of success or failure. If + // there's error in the cache, we won't try to load it anymore. + m_persistentMetadataCacheIsLoaded = true; + + Vector fileContents; + fillBufferWithContentsOfFile(file, fileContents); + closeFile(file); + + if (fileContents.size() < 2 || fileContents.first() != schemaVersion || fileContents.last() != '\0') { + LOG_ERROR("Unable to read plugin metadata cache: corrupt schema"); + deleteFile(absoluteCachePath); + return; + } + + char* bufferPos = fileContents.data() + 1; + char* end = fileContents.data() + fileContents.size(); + + PluginSet cachedPlugins; + HashMap cachedPluginPathsWithTimes; + HashMap > cachedPluginsByPath; + + while (bufferPos < end) { + String path; + time_t lastModified; + String name; + String desc; + String mimeDesc; + if (!(readUTF8String(path, bufferPos, end) + && readTime(lastModified, bufferPos, end) + && readUTF8String(name, bufferPos, end) + && readUTF8String(desc, bufferPos, end) + && readUTF8String(mimeDesc, bufferPos, end))) { + LOG_ERROR("Unable to read plugin metadata cache: corrupt data"); + deleteFile(absoluteCachePath); + return; + } + + // Skip metadata that points to plugins from directories that + // are not part of plugin directory list anymore. + String pluginDirectoryName = directoryName(path); + if (m_pluginDirectories.find(pluginDirectoryName) == WTF::notFound) + continue; + + RefPtr package = PluginPackage::createPackageFromCache(path, lastModified, name, desc, mimeDesc); + + if (package && cachedPlugins.add(package).second) { + cachedPluginPathsWithTimes.add(package->path(), package->lastModified()); + cachedPluginsByPath.add(package->path(), package); + } + } + + m_plugins.swap(cachedPlugins); + m_pluginsByPath.swap(cachedPluginsByPath); + m_pluginPathsWithTimes.swap(cachedPluginPathsWithTimes); +} + +static bool writeUTF8String(PlatformFileHandle file, const String& string) +{ + CString utf8String = string.utf8(); + int length = utf8String.length() + 1; + return writeToFile(file, utf8String.data(), length) == length; +} + +static bool writeTime(PlatformFileHandle file, const time_t& time) +{ + return writeToFile(file, reinterpret_cast(&time), sizeof(time_t)) == sizeof(time_t); +} + +void PluginDatabase::updatePersistentMetadataCache() +{ + if (!isPersistentMetadataCacheEnabled() || persistentMetadataCachePath().isEmpty()) + return; + + makeAllDirectories(persistentMetadataCachePath()); + String absoluteCachePath = pathByAppendingComponent(persistentMetadataCachePath(), persistentPluginMetadataCacheFilename); + deleteFile(absoluteCachePath); + + if (m_plugins.isEmpty()) + return; + + PlatformFileHandle file; + file = openFile(absoluteCachePath, OpenForWrite); + + if (!isHandleValid(file)) { + LOG_ERROR("Unable to open plugin metadata cache for saving"); + return; + } + + char localSchemaVersion = schemaVersion; + if (writeToFile(file, &localSchemaVersion, 1) != 1) { + LOG_ERROR("Unable to write plugin metadata cache schema"); + closeFile(file); + deleteFile(absoluteCachePath); + return; + } + + PluginSet::const_iterator end = m_plugins.end(); + for (PluginSet::const_iterator it = m_plugins.begin(); it != end; ++it) { + if (!(writeUTF8String(file, (*it)->path()) + && writeTime(file, (*it)->lastModified()) + && writeUTF8String(file, (*it)->name()) + && writeUTF8String(file, (*it)->description()) + && writeUTF8String(file, (*it)->fullMIMEDescription()))) { + LOG_ERROR("Unable to write plugin metadata to cache"); + closeFile(file); + deleteFile(absoluteCachePath); + return; + } + } + + closeFile(file); +} + +bool PluginDatabase::isPersistentMetadataCacheEnabled() +{ + return gPersistentPluginMetadataCacheIsEnabled; +} + +void PluginDatabase::setPersistentMetadataCacheEnabled(bool isEnabled) +{ + gPersistentPluginMetadataCacheIsEnabled = isEnabled; +} + +String PluginDatabase::persistentMetadataCachePath() +{ + return WebCore::persistentPluginMetadataCachePath(); +} + +void PluginDatabase::setPersistentMetadataCachePath(const String& persistentMetadataCachePath) +{ + WebCore::persistentPluginMetadataCachePath() = persistentMetadataCachePath; +} +#endif +} diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginDatabase.h --- a/WebCore/plugins/PluginDatabase.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginDatabase.h Mon Oct 04 01:32:07 2010 +0300 @@ -79,6 +79,12 @@ Vector pluginDirectories() const { return m_pluginDirectories; } String MIMETypeForExtension(const String& extension) const; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + static bool isPersistentMetadataCacheEnabled(); + static void setPersistentMetadataCacheEnabled(bool isEnabled); + static String persistentMetadataCachePath(); + static void setPersistentMetadataCachePath(const String& persistentMetadataCachePath); +#endif private: void getPluginPathsInDirectories(HashSet&) const; @@ -87,6 +93,10 @@ // Returns whether the plugin was actually added or not (it won't be added if it's a duplicate of an existing plugin). bool add(PassRefPtr); void remove(PluginPackage*); +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + void loadPersistentMetadataCache(); + void updatePersistentMetadataCache(); +#endif Vector m_pluginDirectories; HashSet m_registeredMIMETypes; @@ -94,6 +104,9 @@ HashMap > m_pluginsByPath; HashMap m_pluginPathsWithTimes; HashMap > m_preferredPlugins; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + bool m_persistentMetadataCacheIsLoaded; +#endif }; } // namespace WebCore diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginPackage.cpp --- a/WebCore/plugins/PluginPackage.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginPackage.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -108,6 +108,9 @@ , m_module(0) , m_lastModified(lastModified) , m_freeLibraryTimer(this, &PluginPackage::freeLibraryTimerFired) +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + , m_infoIsFromCache(true) +#endif { m_fileName = pathGetFileName(m_path); m_parentDirectory = m_path.left(m_path.length() - m_fileName.length() - 1); @@ -162,6 +165,19 @@ return package.release(); } +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) +PassRefPtr PluginPackage::createPackageFromCache(const String& path, const time_t& lastModified, const String& name, const String& description, const String& mimeDescription) +{ + RefPtr package = adoptRef(new PluginPackage(path, lastModified)); + package->m_name = name; + package->m_description = description; + package->determineModuleVersionFromDescription(); + package->setMIMEDescription(mimeDescription); + package->m_infoIsFromCache = true; + return package.release(); +} +#endif + #if defined(XP_UNIX) void PluginPackage::determineQuirks(const String& mimeType) { @@ -185,7 +201,6 @@ #if PLATFORM(QT) m_quirks.add(PluginQuirkRequiresGtkToolKit); #endif - m_quirks.add(PluginQuirkRequiresDefaultScreenDepth); } else { // Flash 9 and older requests windowless plugins if we return a mozilla user agent m_quirks.add(PluginQuirkWantsMozillaUserAgent); @@ -195,10 +210,18 @@ #endif } + m_quirks.add(PluginQuirkRequiresDefaultScreenDepth); m_quirks.add(PluginQuirkThrottleInvalidate); m_quirks.add(PluginQuirkThrottleWMUserPlusOneMessages); m_quirks.add(PluginQuirkFlashURLNotifyBug); } + +#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) + // Passing a 32-bit depth pixmap to NPAPI plugins is too inefficient. Instead, pass a X Pixmap + // that has same depth as the screen depth since graphics operations are optimized + // for this depth. + m_quirks.add(PluginQuirkRequiresDefaultScreenDepth); +#endif } #endif @@ -343,4 +366,20 @@ return 0; } +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) +bool PluginPackage::ensurePluginLoaded() +{ + if (!m_infoIsFromCache) + return m_isLoaded; + + m_quirks = PluginQuirkSet(); + m_name = String(); + m_description = String(); + m_fullMIMEDescription = String(); + m_moduleVersion = 0; + + return fetchInfo(); } +#endif + +} diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginPackage.h --- a/WebCore/plugins/PluginPackage.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginPackage.h Mon Oct 04 01:32:07 2010 +0300 @@ -49,6 +49,9 @@ public: ~PluginPackage(); static PassRefPtr createPackage(const String& path, const time_t& lastModified); +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + static PassRefPtr createPackageFromCache(const String& path, const time_t& lastModified, const String& name, const String& description, const String& mimeDescription); +#endif const String& name() const { return m_name; } const String& description() const { return m_description; } @@ -80,6 +83,11 @@ NPInterface* npInterface() const { return m_npInterface; } #endif // OS(SYMBIAN) +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + bool ensurePluginLoaded(); + void setMIMEDescription(const String& mimeDescription); + String fullMIMEDescription() const { return m_fullMIMEDescription;} +#endif private: PluginPackage(const String& path, const time_t& lastModified); @@ -121,6 +129,10 @@ Timer m_freeLibraryTimer; PluginQuirkSet m_quirks; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + String m_fullMIMEDescription; + bool m_infoIsFromCache; +#endif }; struct PluginPackageHash { diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginView.cpp --- a/WebCore/plugins/PluginView.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginView.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -1,6 +1,7 @@ /* * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. * Copyright (C) 2008 Collabora Ltd. All rights reserved. + * Copyright (C) 2010 Girish Ramakrishnan * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -673,6 +674,12 @@ } #endif // defined(XP_MACOSX) +#if PLATFORM(QT) && defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + case NPPVpluginWindowlessLocalBool: + m_renderToImage = true; + return NPERR_NO_ERROR; +#endif + default: notImplemented(); return NPERR_GENERIC_ERROR; @@ -849,6 +856,9 @@ , m_colormap(0) , m_pluginDisplay(0) #endif +#if PLATFORM(QT) && defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + , m_renderToImage(false) +#endif , m_loadManually(loadManually) , m_manualStream(0) , m_isJavaScriptPaused(false) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/PluginView.h --- a/WebCore/plugins/PluginView.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/PluginView.h Mon Oct 04 01:32:07 2010 +0300 @@ -54,6 +54,10 @@ #include #endif #endif +#if PLATFORM(QT) && defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) +#include +class QPainter; +#endif #if USE(JSC) namespace JSC { @@ -374,6 +378,12 @@ void initXEvent(XEvent* event); #endif +#if PLATFORM(QT) && defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + QImage m_image; + bool m_renderToImage; + void paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect); +#endif + IntRect m_clipRect; // The clip rect to apply to a windowed plug-in IntRect m_windowRect; // Our window rect. diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/mac/PluginViewMac.mm --- a/WebCore/plugins/mac/PluginViewMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/mac/PluginViewMac.mm Mon Oct 04 01:32:07 2010 +0300 @@ -227,7 +227,10 @@ #endif } - show(); + updatePluginWidget(); + + if (!m_plugin->quirks().contains(PluginQuirkDeferFirstSetWindowCall)) + setNPWindowIfNeeded(); // TODO: Implement null timer throttling depending on plugin activation m_nullEventTimer.set(new Timer(this, &PluginView::nullEventTimerFired)); diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/qt/PluginPackageQt.cpp --- a/WebCore/plugins/qt/PluginPackageQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/qt/PluginPackageQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -62,9 +62,19 @@ m_description = buf; determineModuleVersionFromDescription(); - String s = gm(); + String mimeDescription = gm(); + setMIMEDescription(mimeDescription); + m_infoIsFromCache = false; + + return true; +} + +void PluginPackage::setMIMEDescription(const String& mimeDescription) +{ + m_fullMIMEDescription = mimeDescription; + Vector types; - s.split(UChar(';'), false, types); + mimeDescription.split(UChar(';'), false, types); for (unsigned i = 0; i < types.size(); ++i) { Vector mime; types[i].split(UChar(':'), true, mime); @@ -78,8 +88,6 @@ m_mimeToDescriptions.add(mime[0], mime[2]); } } - - return true; } static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value) @@ -170,4 +178,5 @@ { return NP_VERSION_MINOR; } + } diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/qt/PluginViewQt.cpp --- a/WebCore/plugins/qt/PluginViewQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/qt/PluginViewQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -111,12 +111,20 @@ return; if (!m_isWindowed && m_windowRect.size() != oldWindowRect.size()) { - if (m_drawable) - XFreePixmap(QX11Info::display(), m_drawable); +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + // On Maemo5, Flash always renders to 16-bit buffer + if (m_renderToImage) + m_image = QImage(m_windowRect.width(), m_windowRect.height(), QImage::Format_RGB16); + else +#endif + { + if (m_drawable) + XFreePixmap(QX11Info::display(), m_drawable); - m_drawable = XCreatePixmap(QX11Info::display(), QX11Info::appRootWindow(), m_windowRect.width(), m_windowRect.height(), - ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth); - QApplication::syncX(); // make sure that the server knows about the Drawable + m_drawable = XCreatePixmap(QX11Info::display(), QX11Info::appRootWindow(), m_windowRect.width(), m_windowRect.height(), + ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth); + QApplication::syncX(); // make sure that the server knows about the Drawable + } } // do not call setNPWindowIfNeeded immediately, will be called on paint() @@ -160,6 +168,71 @@ Widget::hide(); } +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) +void PluginView::paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect) +{ + NPImageExpose imageExpose; + QPoint offset; + QWebPageClient* client = m_parentFrame->view()->hostWindow()->platformPageClient(); + const bool surfaceHasUntransformedContents = client && qobject_cast(client->pluginParent()); + + QPaintDevice* surface = QPainter::redirected(painter->device(), &offset); + + // If the surface is a QImage, we can render directly into it + if (surfaceHasUntransformedContents && surface && surface->devType() == QInternal::Image) { + QImage* image = static_cast(surface); + offset = -offset; // negating the offset gives us the offset of the view within the surface + imageExpose.data = reinterpret_cast(image->bits()); + imageExpose.dataSize.width = image->width(); + imageExpose.dataSize.height = image->height(); + imageExpose.stride = image->bytesPerLine(); + imageExpose.depth = image->depth(); // this is guaranteed to be 16 on Maemo5 + imageExpose.translateX = offset.x() + m_windowRect.x(); + imageExpose.translateY = offset.y() + m_windowRect.y(); + imageExpose.scaleX = 1; + imageExpose.scaleY = 1; + } else { + if (m_isTransparent) { + // On Maemo5, Flash expects the buffer to contain the contents that are below it. + // We don't support transparency for non-raster graphicssystem, so clean the image + // before giving to Flash. + QPainter imagePainter(&m_image); + imagePainter.fillRect(exposedRect, Qt::white); + } + + imageExpose.data = reinterpret_cast(m_image.bits()); + imageExpose.dataSize.width = m_image.width(); + imageExpose.dataSize.height = m_image.height(); + imageExpose.stride = m_image.bytesPerLine(); + imageExpose.depth = m_image.depth(); + imageExpose.translateX = 0; + imageExpose.translateY = 0; + imageExpose.scaleX = 1; + imageExpose.scaleY = 1; + } + imageExpose.x = exposedRect.x(); + imageExpose.y = exposedRect.y(); + imageExpose.width = exposedRect.width(); + imageExpose.height = exposedRect.height(); + + XEvent xevent; + memset(&xevent, 0, sizeof(XEvent)); + XGraphicsExposeEvent& exposeEvent = xevent.xgraphicsexpose; + exposeEvent.type = GraphicsExpose; + exposeEvent.display = 0; + exposeEvent.drawable = reinterpret_cast(&imageExpose); + exposeEvent.x = exposedRect.x(); + exposeEvent.y = exposedRect.y(); + exposeEvent.width = exposedRect.width(); + exposeEvent.height = exposedRect.height(); + + dispatchNPEvent(xevent); + + if (!surfaceHasUntransformedContents || !surface || surface->devType() != QInternal::Image) + painter->drawImage(QPoint(frameRect().x() + exposedRect.x(), frameRect().y() + exposedRect.y()), m_image, exposedRect); +} +#endif + void PluginView::paint(GraphicsContext* context, const IntRect& rect) { if (!m_isStarted) { @@ -172,19 +245,32 @@ setNPWindowIfNeeded(); - if (m_isWindowed || !m_drawable) + if (m_isWindowed) return; - const bool syncX = m_pluginDisplay && m_pluginDisplay != QX11Info::display(); + if (!m_drawable +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + && m_image.isNull() +#endif + ) + return; QPainter* painter = context->platformContext(); IntRect exposedRect(rect); exposedRect.intersect(frameRect()); exposedRect.move(-frameRect().x(), -frameRect().y()); +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + if (!m_image.isNull()) { + paintUsingImageSurfaceExtension(painter, exposedRect); + return; + } +#endif + QPixmap qtDrawable = QPixmap::fromX11Pixmap(m_drawable, QPixmap::ExplicitlyShared); const int drawableDepth = ((NPSetWindowCallbackStruct*)m_npWindow.ws_info)->depth; ASSERT(drawableDepth == qtDrawable.depth()); + const bool syncX = m_pluginDisplay && m_pluginDisplay != QX11Info::display(); // When printing, Qt uses a QPicture to capture the output in preview mode. The // QPicture holds a reference to the X Pixmap. As a result, the print preview would @@ -492,19 +578,24 @@ m_npWindow.x = m_windowRect.x(); m_npWindow.y = m_windowRect.y(); - - m_npWindow.clipRect.left = max(0, m_clipRect.x()); - m_npWindow.clipRect.top = max(0, m_clipRect.y()); - m_npWindow.clipRect.right = m_clipRect.x() + m_clipRect.width(); - m_npWindow.clipRect.bottom = m_clipRect.y() + m_clipRect.height(); } else { m_npWindow.x = 0; m_npWindow.y = 0; + } + // If the width or height are null, set the clipRect to null, indicating that + // the plugin is not visible/scrolled out. + if (!m_clipRect.width() || !m_clipRect.height()) { m_npWindow.clipRect.left = 0; + m_npWindow.clipRect.right = 0; m_npWindow.clipRect.top = 0; - m_npWindow.clipRect.right = 0; m_npWindow.clipRect.bottom = 0; + } else { + // Clipping rectangle of the plug-in; the origin is the top left corner of the drawable or window. + m_npWindow.clipRect.left = m_npWindow.x + m_clipRect.x(); + m_npWindow.clipRect.top = m_npWindow.y + m_clipRect.y(); + m_npWindow.clipRect.right = m_npWindow.x + m_clipRect.x() + m_clipRect.width(); + m_npWindow.clipRect.bottom = m_npWindow.y + m_clipRect.y() + m_clipRect.height(); } if (m_plugin->quirks().contains(PluginQuirkDontCallSetWindowMoreThanOnce)) { @@ -587,6 +678,13 @@ *result = NPERR_NO_ERROR; return true; +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + case NPNVSupportsWindowlessLocal: + *static_cast(value) = true; + *result = NPERR_NO_ERROR; + return true; +#endif + default: return false; } @@ -662,7 +760,7 @@ // support gdk based plugins (like flash) that use a different X connection. // The code below has the same effect as this one: // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default()); - QLibrary library("libgdk-x11-2.0"); + QLibrary library("libgdk-x11-2.0.so.0"); if (!library.load()) return 0; diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/plugins/symbian/PluginViewSymbian.cpp --- a/WebCore/plugins/symbian/PluginViewSymbian.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/plugins/symbian/PluginViewSymbian.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -242,8 +242,11 @@ { Widget::setParent(parent); - if (parent) + if (parent) { init(); + if (m_status == PluginStatusLoadedSuccessfully) + updatePluginWidget(); + } } void PluginView::setNPWindowRect(const IntRect&) diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/qmakepluginstubs/qmlwebkitplugin.qtplugin --- a/WebCore/qmakepluginstubs/qmlwebkitplugin.qtplugin Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -This file is a Qt plugin stub file. The real Qt plugin is located in /sys/bin. Created:2010-08-17T12:44:25 diff -r 4f2f89ce4247 -r 303757a437d3 WebCore/rendering/HitTestResult.h --- a/WebCore/rendering/HitTestResult.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebCore/rendering/HitTestResult.h Mon Oct 04 01:32:07 2010 +0300 @@ -86,8 +86,8 @@ IntRect rectFromPoint(int x, int y) const; IntRect rectFromPoint(const IntPoint&) const; IntSize padding() const { return m_padding; } - int paddingWidth() const { return m_padding.width() >= 0 ? m_padding.width() : 0; } - int paddingHeight() const { return m_padding.height() >= 0 ? m_padding.height() : 0; } + int paddingWidth() const { return m_padding.width(); } + int paddingHeight() const { return m_padding.height(); } // Returns true if it is rect-based hit test and needs to continue until the rect is fully // enclosed by the boundaries of a node. bool addNodeToRectBasedTestResult(Node*, int x, int y, const IntRect& rect = IntRect()); diff -r 4f2f89ce4247 -r 303757a437d3 WebKit.pri --- a/WebKit.pri Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit.pri Mon Oct 04 01:32:07 2010 +0300 @@ -6,6 +6,8 @@ CONFIG(QTDIR_build): CONFIG += standalone_package else:exists($$PWD/WebCore/generated): CONFIG += standalone_package +CONFIG += production + CONFIG += depend_includepath DEFINES += BUILDING_QT__=1 @@ -73,7 +75,20 @@ QMAKE_CXXFLAGS.ARMCC += $$RVCT_COMMON_CXXFLAGS } -symbian|maemo5: DEFINES *= QT_NO_UITOOLS +##### Defaults for some mobile platforms +symbian|maemo5|maemo6 { + CONFIG += disable_uitools + CONFIG += enable_fast_mobile_scrolling + CONFIG += use_qt_mobile_theme +} else { + CONFIG += include_webinspector +} + +embedded: CONFIG += enable_fast_mobile_scrolling + +#### + +disable_uitools: DEFINES *= QT_NO_UITOOLS contains(DEFINES, QT_NO_UITOOLS): CONFIG -= uitools diff -r 4f2f89ce4247 -r 303757a437d3 WebKit.pro --- a/WebKit.pro Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit.pro Mon Oct 04 01:32:07 2010 +0300 @@ -8,14 +8,14 @@ WebCore # If the source exists, built it -# :HACK: exists($$PWD/WebKitTools/QtTestBrowser): SUBDIRS += WebKitTools/QtTestBrowser -# :HACK: contains(QT_CONFIG, declarative) { -# :HACK: exists($$PWD/WebKit/qt/declarative): SUBDIRS += WebKit/qt/declarative -# :HACK: } +exists($$PWD/WebKitTools/QtTestBrowser): SUBDIRS += WebKitTools/QtTestBrowser +contains(QT_CONFIG, declarative) { + exists($$PWD/WebKit/qt/declarative): SUBDIRS += WebKit/qt/declarative +} exists($$PWD/JavaScriptCore/jsc.pro): SUBDIRS += JavaScriptCore/jsc.pro -# :HACK: exists($$PWD/WebKit/qt/tests): SUBDIRS += WebKit/qt/tests -# :HACK: exists($$PWD/WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro -# :HACK: exists($$PWD/WebKitTools/DumpRenderTree/qt/ImageDiff.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/ImageDiff.pro +exists($$PWD/WebKit/qt/tests): SUBDIRS += WebKit/qt/tests +exists($$PWD/WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro +exists($$PWD/WebKitTools/DumpRenderTree/qt/ImageDiff.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/ImageDiff.pro !win32:!symbian { exists($$PWD/WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro): SUBDIRS += WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/mac/ChangeLog --- a/WebKit/mac/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/mac/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,15 @@ +2010-07-27 Steve Block + + Reviewed by Jeremy Orlow. + + Client-based Geolocation does not pass enableHighAccuracy option to controller and client + https://bugs.webkit.org/show_bug.cgi?id=40374 + + Stub out setEnableHighAccuracy method for the Mac port. + + * WebCoreSupport/WebGeolocationControllerClient.h: + (WebGeolocationControllerClient::setEnableHighAccuracy): + 2010-07-21 Brady Eidson Reviewed by Geoffrey Garen. diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/mac/WebCoreSupport/WebGeolocationControllerClient.h --- a/WebKit/mac/WebCoreSupport/WebGeolocationControllerClient.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/mac/WebCoreSupport/WebGeolocationControllerClient.h Mon Oct 04 01:32:07 2010 +0300 @@ -39,6 +39,7 @@ void geolocationDestroyed(); void startUpdating(); void stopUpdating(); + void setEnableHighAccuracy(bool) { } WebCore::GeolocationPosition* lastPosition(); diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/DerivedSources_0xE6f06b37.mmp --- a/WebKit/qt/Api/DerivedSources_0xE6f06b37.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,79 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:01:28 -// This file is generated by qmake and should not be modified by the -// user. -// Name : DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xE6f06b37 -SECUREID 0xE6f06b37 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/Makefile.DerivedSources --- a/WebKit/qt/Api/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,181 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:47:10 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/Api/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -first: default -default: debug-winscw -all: -../../../include/QtWebKit/qwebframe.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h" > ../../../include/QtWebKit/qwebframe.h - -../../../include/QtWebKit/QWebHitTestResult: ../../../include/QtWebKit/qwebframe.h - echo #include "qwebframe.h" > ../../../include/QtWebKit/QWebHitTestResult - -../../../include/QtWebKit/QWebFrame: ../../../include/QtWebKit/qwebframe.h - echo #include "qwebframe.h" > ../../../include/QtWebKit/QWebFrame - -../../../include/QtWebKit/qgraphicswebview.h: U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h" > ../../../include/QtWebKit/qgraphicswebview.h - -../../../include/QtWebKit/QGraphicsWebView: ../../../include/QtWebKit/qgraphicswebview.h - echo #include "qgraphicswebview.h" > ../../../include/QtWebKit/QGraphicsWebView - -../../../include/QtWebKit/qwebkitglobal.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h" > ../../../include/QtWebKit/qwebkitglobal.h - -../../../include/QtWebKit/qwebkitplatformplugin.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitplatformplugin.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitplatformplugin.h" > ../../../include/QtWebKit/qwebkitplatformplugin.h - -../../../include/QtWebKit/qwebpage.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h" > ../../../include/QtWebKit/qwebpage.h - -../../../include/QtWebKit/QWebPage: ../../../include/QtWebKit/qwebpage.h - echo #include "qwebpage.h" > ../../../include/QtWebKit/QWebPage - -../../../include/QtWebKit/qwebview.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h" > ../../../include/QtWebKit/qwebview.h - -../../../include/QtWebKit/QWebView: ../../../include/QtWebKit/qwebview.h - echo #include "qwebview.h" > ../../../include/QtWebKit/QWebView - -../../../include/QtWebKit/qwebsettings.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h" > ../../../include/QtWebKit/qwebsettings.h - -../../../include/QtWebKit/QWebSettings: ../../../include/QtWebKit/qwebsettings.h - echo #include "qwebsettings.h" > ../../../include/QtWebKit/QWebSettings - -../../../include/QtWebKit/qwebhistoryinterface.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistoryinterface.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistoryinterface.h" > ../../../include/QtWebKit/qwebhistoryinterface.h - -../../../include/QtWebKit/QWebHistoryInterface: ../../../include/QtWebKit/qwebhistoryinterface.h - echo #include "qwebhistoryinterface.h" > ../../../include/QtWebKit/QWebHistoryInterface - -../../../include/QtWebKit/qwebdatabase.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebdatabase.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebdatabase.h" > ../../../include/QtWebKit/qwebdatabase.h - -../../../include/QtWebKit/QWebDatabase: ../../../include/QtWebKit/qwebdatabase.h - echo #include "qwebdatabase.h" > ../../../include/QtWebKit/QWebDatabase - -../../../include/QtWebKit/qwebsecurityorigin.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebsecurityorigin.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebsecurityorigin.h" > ../../../include/QtWebKit/qwebsecurityorigin.h - -../../../include/QtWebKit/QWebSecurityOrigin: ../../../include/QtWebKit/qwebsecurityorigin.h - echo #include "qwebsecurityorigin.h" > ../../../include/QtWebKit/QWebSecurityOrigin - -../../../include/QtWebKit/qwebelement.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h" > ../../../include/QtWebKit/qwebelement.h - -../../../include/QtWebKit/QWebElement: ../../../include/QtWebKit/qwebelement.h - echo #include "qwebelement.h" > ../../../include/QtWebKit/QWebElement - -../../../include/QtWebKit/QWebElementCollection: ../../../include/QtWebKit/qwebelement.h - echo #include "qwebelement.h" > ../../../include/QtWebKit/QWebElementCollection - -../../../include/QtWebKit/qwebpluginfactory.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebpluginfactory.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebpluginfactory.h" > ../../../include/QtWebKit/qwebpluginfactory.h - -../../../include/QtWebKit/QWebPluginFactory: ../../../include/QtWebKit/qwebpluginfactory.h - echo #include "qwebpluginfactory.h" > ../../../include/QtWebKit/QWebPluginFactory - -../../../include/QtWebKit/qwebhistory.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistory.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistory.h" > ../../../include/QtWebKit/qwebhistory.h - -../../../include/QtWebKit/QWebHistoryItem: ../../../include/QtWebKit/qwebhistory.h - echo #include "qwebhistory.h" > ../../../include/QtWebKit/QWebHistoryItem - -../../../include/QtWebKit/QWebHistory: ../../../include/QtWebKit/qwebhistory.h - echo #include "qwebhistory.h" > ../../../include/QtWebKit/QWebHistory - -../../../include/QtWebKit/qwebinspector.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h" > ../../../include/QtWebKit/qwebinspector.h - -../../../include/QtWebKit/QWebInspector: ../../../include/QtWebKit/qwebinspector.h - echo #include "qwebinspector.h" > ../../../include/QtWebKit/QWebInspector - -../../../include/QtWebKit/qwebkitversion.h: U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitversion.h - echo #include "U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitversion.h" > ../../../include/QtWebKit/qwebkitversion.h - -../../../include/QtWebKit/QtWebKit: U:/yaels-qtwebkit/WebKit/qt/Api/DerivedSources.pro ../../../include/QtWebKit/qwebframe.h ../../../include/QtWebKit/qgraphicswebview.h ../../../include/QtWebKit/qwebkitglobal.h ../../../include/QtWebKit/qwebkitplatformplugin.h ../../../include/QtWebKit/qwebpage.h ../../../include/QtWebKit/qwebview.h ../../../include/QtWebKit/qwebsettings.h ../../../include/QtWebKit/qwebhistoryinterface.h ../../../include/QtWebKit/qwebdatabase.h ../../../include/QtWebKit/qwebsecurityorigin.h ../../../include/QtWebKit/qwebelement.h ../../../include/QtWebKit/qwebpluginfactory.h ../../../include/QtWebKit/qwebhistory.h ../../../include/QtWebKit/qwebinspector.h ../../../include/QtWebKit/qwebkitversion.h - echo #ifndef QT_QTWEBKIT_MODULE_H > ../../../include/QtWebKit/QtWebKit && echo #define QT_QTWEBKIT_MODULE_H >> ../../../include/QtWebKit/QtWebKit && echo #include ^ >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebframe.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qgraphicswebview.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitglobal.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitplatformplugin.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebpage.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebview.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebsettings.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebhistoryinterface.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebdatabase.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebsecurityorigin.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebelement.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebpluginfactory.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebhistory.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebinspector.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitversion.h" >> ../../../include/QtWebKit/QtWebKit && echo #endif // QT_QTWEBKIT_MODULE_H >> ../../../include/QtWebKit/QtWebKit - -../../../include/QtWebKit/classheaders.pri: ../../../include/QtWebKit/QWebHitTestResult ../../../include/QtWebKit/QWebFrame ../../../include/QtWebKit/QGraphicsWebView ../../../include/QtWebKit/QWebPage ../../../include/QtWebKit/QWebView ../../../include/QtWebKit/QWebSettings ../../../include/QtWebKit/QWebHistoryInterface ../../../include/QtWebKit/QWebDatabase ../../../include/QtWebKit/QWebSecurityOrigin ../../../include/QtWebKit/QWebElement ../../../include/QtWebKit/QWebElementCollection ../../../include/QtWebKit/QWebPluginFactory ../../../include/QtWebKit/QWebHistoryItem ../../../include/QtWebKit/QWebHistory ../../../include/QtWebKit/QWebInspector U:/yaels-qtwebkit/WebKit/qt/Api/DerivedSources.pro - echo WEBKIT_CLASS_HEADERS = $$$$PWD/QtWebKit $$$$PWD/QWebHitTestResult $$$$PWD/QWebFrame $$$$PWD/QGraphicsWebView $$$$PWD/QWebPage $$$$PWD/QWebView $$$$PWD/QWebSettings $$$$PWD/QWebHistoryInterface $$$$PWD/QWebDatabase $$$$PWD/QWebSecurityOrigin $$$$PWD/QWebElement $$$$PWD/QWebElementCollection $$$$PWD/QWebPluginFactory $$$$PWD/QWebHistoryItem $$$$PWD/QWebHistory $$$$PWD/QWebInspector > ../../../include/QtWebKit/classheaders.pri - -generated_files: ../../../include/QtWebKit/QWebHitTestResult ../../../include/QtWebKit/QWebFrame ../../../include/QtWebKit/QGraphicsWebView ../../../include/QtWebKit/QWebPage ../../../include/QtWebKit/QWebView ../../../include/QtWebKit/QWebSettings ../../../include/QtWebKit/QWebHistoryInterface ../../../include/QtWebKit/QWebDatabase ../../../include/QtWebKit/QWebSecurityOrigin ../../../include/QtWebKit/QWebElement ../../../include/QtWebKit/QWebElementCollection ../../../include/QtWebKit/QWebPluginFactory ../../../include/QtWebKit/QWebHistoryItem ../../../include/QtWebKit/QWebHistory ../../../include/QtWebKit/QWebInspector ../../../include/QtWebKit/QtWebKit ../../../include/QtWebKit/classheaders.pri - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\Api\Makefile.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\Api\Makefile.DerivedSources" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\Api\DerivedSources_0xEbc668c0.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\Api\DerivedSources_0xEbc668c0.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\Api\bld.inf.DerivedSources" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\Api\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/bld.inf.DerivedSources --- a/WebKit/qt/Api/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:47:10 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_036D5DEC - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xEbc668c0.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebpage.cpp --- a/WebKit/qt/Api/qwebpage.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebpage.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -81,6 +81,7 @@ #include "Cache.h" #include "runtime/InitializeThreading.h" #include "PageGroup.h" +#include "GeolocationPermissionClientQt.h" #include "NotificationPresenterClientQt.h" #include "PageClientQt.h" #include "WorkerThread.h" @@ -1216,14 +1217,7 @@ void QWebPagePrivate::dynamicPropertyChangeEvent(QDynamicPropertyChangeEvent* event) { if (event->propertyName() == "_q_viewMode") { - QString mode = q->property("_q_viewMode").toString(); - if (mode != viewMode) { - viewMode = mode; - WebCore::Frame* frame = QWebFramePrivate::core(q->mainFrame()); - WebCore::FrameView* view = frame->view(); - frame->document()->updateStyleSelector(); - view->layout(); - } + page->setViewMode(Page::stringToViewMode(q->property("_q_viewMode").toString())); } else if (event->propertyName() == "_q_HTMLTokenizerChunkSize") { int chunkSize = q->property("_q_HTMLTokenizerChunkSize").toInt(); q->handle()->page->setCustomHTMLTokenizerChunkSize(chunkSize); @@ -2087,30 +2081,6 @@ #endif } -/*! - \fn bool QWebPage::allowGeolocationRequest() - \since 4.7 - - This function is called whenever a JavaScript program running inside \a frame tries to access user location through navigator.geolocation. - - If the user wants to allow access to location then it should return true; otherwise false. - - The default implementation executes the query using QMessageBox::information with QMessageBox::Yes and QMessageBox::No buttons. - - \warning Because of binary compatibility constraints, this function is not virtual. If you want to - provide your own implementation in a QWebPage subclass, reimplement the allowGeolocationRequest() - slot in your subclass instead. QtWebKit will dynamically detect the slot and call it. -*/ -bool QWebPage::allowGeolocationRequest(QWebFrame *frame) -{ -#ifdef QT_NO_MESSAGEBOX - return false; -#else - QWidget* parent = (d->client) ? d->client->ownerWidget() : 0; - return QMessageBox::Yes == QMessageBox::information(parent, tr("Location Request by- %1").arg(frame->url().host()), tr("The page wants to access your location information. Do you want to allow the request?"), QMessageBox::Yes, QMessageBox::No); -#endif -} - void QWebPage::setUserPermission(QWebFrame* frame, PermissionDomain domain, PermissionPolicy policy) { switch (domain) { @@ -2120,6 +2090,12 @@ NotificationPresenterClientQt::notificationPresenter()->allowNotificationForFrame(frame); #endif break; + case GeolocationPermissionDomain: +#if ENABLE(GEOLOCATION) + GeolocationPermissionClientQt::geolocationPermissionClient()->setPermission(frame, policy); +#endif + break; + default: break; } @@ -2136,7 +2112,11 @@ If \a type is WebModalDialog, the application must call setWindowModality(Qt::ApplicationModal) on the new window. - \sa acceptNavigationRequest() + \note In the cases when the window creation is being triggered by JavaScript, apart from + reimplementing this method application must also set the JavaScriptCanOpenWindows attribute + of QWebSettings to true in order for it to get called. + + \sa acceptNavigationRequest(), QWebView::createWindow() */ QWebPage *QWebPage::createWindow(WebWindowType type) { diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebpage.h --- a/WebKit/qt/Api/qwebpage.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebpage.h Mon Oct 04 01:32:07 2010 +0300 @@ -57,6 +57,7 @@ class InspectorClientQt; class InspectorFrontendClientQt; class NotificationPresenterClientQt; + class GeolocationPermissionClientQt; class ResourceHandle; class HitTestResult; class QNetworkReplyHandler; @@ -202,7 +203,8 @@ }; enum PermissionDomain { - NotificationsPermissionDomain + NotificationsPermissionDomain, + GeolocationPermissionDomain }; class ViewportHints { @@ -349,7 +351,6 @@ public Q_SLOTS: bool shouldInterruptJavaScript(); - bool allowGeolocationRequest(QWebFrame *frame); Q_SIGNALS: void loadStarted(); @@ -422,6 +423,7 @@ friend class WebCore::InspectorClientQt; friend class WebCore::InspectorFrontendClientQt; friend class WebCore::NotificationPresenterClientQt; + friend class WebCore::GeolocationPermissionClientQt; friend class WebCore::ResourceHandle; friend class WebCore::QNetworkReplyHandler; friend class DumpRenderTreeSupportQt; diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebpage_p.h --- a/WebKit/qt/Api/qwebpage_p.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebpage_p.h Mon Oct 04 01:32:07 2010 +0300 @@ -201,8 +201,6 @@ QWebInspector* inspector; bool inspectorIsInternalOnly; // True if created through the Inspect context menu action Qt::DropAction m_lastDropAction; - - QString viewMode; static bool drtRun; }; diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebplugindatabase.cpp --- a/WebKit/qt/Api/qwebplugindatabase.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebplugindatabase.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -284,6 +284,10 @@ for (unsigned int i = 0; i < plugins.size(); ++i) { PluginPackage* plugin = plugins[i]; +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + if (!plugin->ensurePluginLoaded()) + continue; +#endif qwebplugins.append(QWebPluginInfo(plugin)); } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebsettings.cpp --- a/WebKit/qt/Api/qwebsettings.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebsettings.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -34,6 +34,7 @@ #include "KURL.h" #include "PlatformString.h" #include "IconDatabase.h" +#include "PluginDatabase.h" #include "Image.h" #include "IntSize.h" #include "ApplicationCacheStorage.h" @@ -457,12 +458,32 @@ d->fontSizes.insert(QWebSettings::MinimumLogicalFontSize, 0); d->fontSizes.insert(QWebSettings::DefaultFontSize, 16); d->fontSizes.insert(QWebSettings::DefaultFixedFontSize, 13); - d->fontFamilies.insert(QWebSettings::StandardFont, QLatin1String("Arial")); - d->fontFamilies.insert(QWebSettings::FixedFont, QLatin1String("Courier New")); - d->fontFamilies.insert(QWebSettings::SerifFont, QLatin1String("Times New Roman")); - d->fontFamilies.insert(QWebSettings::SansSerifFont, QLatin1String("Arial")); - d->fontFamilies.insert(QWebSettings::CursiveFont, QLatin1String("Arial")); - d->fontFamilies.insert(QWebSettings::FantasyFont, QLatin1String("Arial")); + + QFont defaultFont; + defaultFont.setStyleHint(QFont::Serif); + d->fontFamilies.insert(QWebSettings::StandardFont, defaultFont.defaultFamily()); + d->fontFamilies.insert(QWebSettings::SerifFont, defaultFont.defaultFamily()); + +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + defaultFont.setStyleHint(QFont::Fantasy); + d->fontFamilies.insert(QWebSettings::FantasyFont, defaultFont.defaultFamily()); + + defaultFont.setStyleHint(QFont::Cursive); + d->fontFamilies.insert(QWebSettings::CursiveFont, defaultFont.defaultFamily()); +#else + d->fontFamilies.insert(QWebSettings::FantasyFont, defaultFont.defaultFamily()); + d->fontFamilies.insert(QWebSettings::CursiveFont, defaultFont.defaultFamily()); +#endif + + defaultFont.setStyleHint(QFont::SansSerif); + d->fontFamilies.insert(QWebSettings::SansSerifFont, defaultFont.defaultFamily()); + +#if QT_VERSION >= QT_VERSION_CHECK(4, 7, 0) + defaultFont.setStyleHint(QFont::Monospace); +#else + defaultFont.setStyleHint(QFont::TypeWriter); +#endif + d->fontFamilies.insert(QWebSettings::FixedFont, defaultFont.defaultFamily()); d->attributes.insert(QWebSettings::AutoLoadImages, true); d->attributes.insert(QWebSettings::DnsPrefetchEnabled, false); @@ -1073,6 +1094,14 @@ QWebSettings::globalSettings()->setAttribute(QWebSettings::LocalStorageEnabled, true); QWebSettings::globalSettings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, true); QWebSettings::globalSettings()->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, true); + +#if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + QFileInfo info(storagePath); + if (info.isDir() && info.isWritable()) { + WebCore::PluginDatabase::setPersistentMetadataCacheEnabled(true); + WebCore::PluginDatabase::setPersistentMetadataCachePath(storagePath); + } +#endif } /*! diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/Api/qwebview.cpp --- a/WebKit/qt/Api/qwebview.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/Api/qwebview.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -415,6 +415,8 @@ this, SIGNAL(statusBarMessage(QString))); connect(d->page, SIGNAL(linkClicked(QUrl)), this, SIGNAL(linkClicked(QUrl))); + connect(d->page, SIGNAL(selectionChanged()), + this, SIGNAL(selectionChanged())); connect(d->page, SIGNAL(microFocusChanged()), this, SLOT(updateMicroFocus())); @@ -951,7 +953,11 @@ \note If the createWindow() method of the associated page is reimplemented, this method is not called, unless explicitly done so in the reimplementation. - \sa QWebPage::createWindow() + \note In the cases when the window creation is being triggered by JavaScript, apart from + reimplementing this method application must also set the JavaScriptCanOpenWindows attribute + of QWebSettings to true in order for it to get called. + + \sa QWebPage::createWindow(), QWebPage::acceptNavigationRequest() */ QWebView *QWebView::createWindow(QWebPage::WebWindowType type) { diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/ChangeLog --- a/WebKit/qt/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,247 @@ +2010-09-01 Mahesh Kulkarni + + Reviewed by Laszlo Gombos. + + [Qt] QWebPage::allowGeolocationRequest should be async API + https://bugs.webkit.org/show_bug.cgi?id=41364 + + Provides a new async API for geolocation permission. Using + Notification API approach from qtwebkit. GeolocationPermissionClientQt + maintains list of pending requests from WebCore and intimates them + when client either allowes/denies the request. Also implements + ChromeClientQt::cancelGeolocationPermissionRequestForFrame. + + * Api/qwebpage.cpp: + (QWebPage::setUserPermission): + * Api/qwebpage.h: + * WebCoreSupport/ChromeClientQt.cpp: + (WebCore::ChromeClientQt::requestGeolocationPermissionForFrame): + (WebCore::ChromeClientQt::cancelGeolocationPermissionRequestForFrame): + * WebCoreSupport/ChromeClientQt.h: + * WebCoreSupport/GeolocationPermissionClientQt.cpp: Added. + (WebCore::GeolocationPermissionClientQt::geolocationPermissionClient): + (WebCore::GeolocationPermissionClientQt::GeolocationPermissionClientQt): + (WebCore::GeolocationPermissionClientQt::~GeolocationPermissionClientQt): + (WebCore::GeolocationPermissionClientQt::requestGeolocationPermissionForFrame): + (WebCore::GeolocationPermissionClientQt::cancelGeolocationPermissionRequestForFrame): + (WebCore::GeolocationPermissionClientQt::setPermission): + * WebCoreSupport/GeolocationPermissionClientQt.h: Added. + * tests/qwebpage/tst_qwebpage.cpp: + (JSTestPage::requestPermission): + (tst_QWebPage::geolocationRequestJS): + +2010-08-31 Benjamin Poulain + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] tst_QWebPage::originatingObjectInNetworkRequests() fails on trunk + https://bugs.webkit.org/show_bug.cgi?id=45001 + + Fix the test, we should not use data encoded URL since we are not + setting an URL but setting the substituteData directly. + + * tests/qwebpage/tst_qwebpage.cpp: + (tst_QWebPage::originatingObjectInNetworkRequests): + +2010-08-31 Benjamin Poulain + + Reviewed by Kenneth Rohde Christiansen. + + JSC TimeoutChecker::didTimeOut overflows on ARM + https://bugs.webkit.org/show_bug.cgi?id=38538 + + Re-enabled the test that was skipped for Maemo 5. + + * tests/qwebpage/tst_qwebpage.cpp: + (tst_QWebPage::infiniteLoopJS): + +2010-08-28 Daniel Bates + + Attempt to fix the Qt Windows and Qt Linux Release minimal builds + after changeset 66297 . + + * Api/qwebplugindatabase.cpp: + (QWebPluginDatabase::plugins): Wrap the call to PluginPackage::ensurePluginLoaded + in #if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE). + +2010-08-27 Kimmo Kinnunen + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] Cache plugin info to a persistent database + + https://bugs.webkit.org/show_bug.cgi?id=43179 + + Implement a cache of NPAPI plugin metadata. Write the metadata to aa + file that gets rewritten if any plugin is added / removed. Compilation + of the feature is controlled by #if ENABLE(NETSCAPE_PLUGIN_METADATA_CACHE) + + Currently only enabled for Qt UNIX flavors. + + * Api/qwebplugindatabase.cpp: + (QWebPluginDatabase::plugins): Match previous behavior: ensure all returned plugins are loaded. + * Api/qwebsettings.cpp: + (QWebSettings::enablePersistentStorage): Set plugin cache path. + +2010-08-27 Benjamin Poulain + + Reviewed by Antonio Gomes. + + [Qt] tst_QWebView::focusInputTypes() fails on MeeGo Handset with WebKit 2.1 + https://bugs.webkit.org/show_bug.cgi?id=44761 + + Make the test more robust to changes in the execution environment. The click + are now correctly simulated, and the position are determined from the content. + + The test also create the view and page on the stack to avoid the leak when the + test is failing. + + * tests/qwebview/tst_qwebview.cpp: + (tst_QWebView::focusInputTypes): + +2010-08-27 Benjamin Poulain + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] tst_QWebFrame::hitTestContent() fails on Meego Handset + https://bugs.webkit.org/show_bug.cgi?id=44701 + + Make the test more robust. The position of the text is not relying + on the size of the fonts anymore. + + * tests/qwebframe/tst_qwebframe.cpp: + +2010-08-27 Benjamin Poulain + + Reviewed by Kenneth Rohde Christiansen. + + [Qt] tst_QWebFrame::inputFieldFocus() fails on MeeGo Handset with QtWebKit 2.1 + https://bugs.webkit.org/show_bug.cgi?id=44703 + + Make the test more robust to changes in the execution environment. + The position where the mouse events are sent is now computed from the element geometry, + this make the test less dependent on the fonts. + + The test now also make sure the window manager mapped the window on screen + before attempting to send the events. + + * tests/qwebframe/tst_qwebframe.cpp: + +2010-08-26 Antonio Gomes + + Reviewed by Simon Hausmann. + + [Qt] Add support for automatically creating new windows in QWebView + https://bugs.webkit.org/show_bug.cgi?id=29847 + + Improved the documentation of createWindow methods of both QWebView and + QWebPage by mentioning that for any of them be called, QWebSettings' + JavaScriptCanOpenWindows attribute must be set to true. + + * Api/qwebpage.cpp: + * Api/qwebview.cpp: + +2010-08-26 Benjamin Poulain + + Reviewed by Simon Hausmann. + + [Qt] tst_QWebFrame::popupFocus() hardcode the element position + https://bugs.webkit.org/show_bug.cgi?id=44674 + + This patch dynamically find the position of the combo element instead + of hardcoding a position to click. + + * tests/qwebframe/tst_qwebframe.cpp: + +2010-08-22 Marc Mutz + + Reviewed by Antonio Gomes. + + [Qt] Actually emit the QWebView::selectionChanged() signal + + https://bugs.webkit.org/show_bug.cgi?id=44252 + + * Api/qwebview.cpp: + (QWebView::setPage): Connect QWebPage::selectionChanged() to QWebView::selectionChanged() + +2010-08-20 Girish Ramakrishnan + + Reviewed by Ariya Hidayat. + + [Qt] Allow wmode=transparent in QWebView on Maemo5 after r65775. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * WebCoreSupport/FrameLoaderClientQt.cpp: + (WebCore::FrameLoaderClientQt::createPlugin): + +2010-08-19 Girish Ramakrishnan + + Reviewed by Kenneth Christiansen. + + [Qt] Inject wmode=opaque for both QWebView and QGraphicsWebView on Maemo5 + as Flash XEmbed support is flaky. + + https://bugs.webkit.org/show_bug.cgi?id=44043 + + * WebCoreSupport/FrameLoaderClientQt.cpp: + (WebCore::FrameLoaderClientQt::createPlugin): + +2010-07-26 Tor Arne Vestbø + + Reviewed by Simon Hausmann. + + [Qt] Change default font from sans-serif to serif + + This matches what other ports and browser engines do. + + We now also use QFont's defaultFontFamily() to resolve the + correct fonts for each platform. For Qt >= 4.7 we can take + advantage of the new enums for generic font families. + + * Api/qwebsettings.cpp: + +2010-08-17 Laszlo Gombos + + Reviewed by Ariya Hidayat. + + [Qt] [Symbian] Consistently use Q_OS_SYMBIAN to guard all Symbian platform dependencies + https://bugs.webkit.org/show_bug.cgi?id=44124 + + Q_WS_S60 is not defined for Symbian^4 devices as Q_WS_S60 used to guard + Avkon UI framework dependencies. Use Q_OS_SYMBIAN everywhere to mark + Symbian dependencies. + + * WebCoreSupport/QtFallbackWebPopup.cpp: + (WebCore::QtFallbackWebPopup::populate): + +2010-08-11 Simon Hausmann + + [Qt] Update the Symbian def files + + Re-freeze with various QGraphicsWebView and DRT updates. + The uppper part of the diff is just whitespace, so + diff -w will show the real diff. + + * symbian/eabi/QtWebKitu.def: + +2010-07-30 Luiz Agostini + + Reviewed by Simon Fraser. + + Enabling view modes to all platforms + https://bugs.webkit.org/show_bug.cgi?id=37505 + + As view mode media feature is now supported by WebCore there is no need + to keep its implementation here. QtWebKit now uses WebCore's view mode media feature + implementation. + + * Api/qwebpage.cpp: + (QWebPagePrivate::dynamicPropertyChangeEvent): + * Api/qwebpage_p.h: + * WebCoreSupport/ChromeClientQt.cpp: + * WebCoreSupport/ChromeClientQt.h: + 2010-08-05 Simon Hausmann Reviewed by Tor Arne Vestbø. diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/ChromeClientQt.cpp --- a/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -40,6 +40,7 @@ #if USE(ACCELERATED_COMPOSITING) #include "GraphicsLayerQt.h" #endif +#include "GeolocationPermissionClientQt.h" #include "HitTestResult.h" #include "Icon.h" #include "NotImplemented.h" @@ -536,10 +537,18 @@ void ChromeClientQt::requestGeolocationPermissionForFrame(Frame* frame, Geolocation* geolocation) { - bool allow = false; +#if ENABLE(GEOLOCATION) QWebFrame* webFrame = QWebFramePrivate::kit(frame); - QMetaObject::invokeMethod(m_webPage, "allowGeolocationRequest", Qt::DirectConnection, Q_RETURN_ARG(bool, allow), Q_ARG(QWebFrame*, webFrame)); - geolocation->setIsAllowed(allow); + GeolocationPermissionClientQt::geolocationPermissionClient()->requestGeolocationPermissionForFrame(webFrame, geolocation); +#endif +} + +void ChromeClientQt::cancelGeolocationPermissionRequestForFrame(Frame* frame, Geolocation* geolocation) +{ +#if ENABLE(GEOLOCATION) + QWebFrame* webFrame = QWebFramePrivate::kit(frame); + GeolocationPermissionClientQt::geolocationPermissionClient()->cancelGeolocationPermissionRequestForFrame(webFrame, geolocation); +#endif } #if USE(ACCELERATED_COMPOSITING) @@ -598,33 +607,6 @@ #endif } -#if ENABLE(WIDGETS_10_SUPPORT) -bool ChromeClientQt::isWindowed() -{ - return m_webPage->d->viewMode == "windowed"; -} - -bool ChromeClientQt::isFloating() -{ - return m_webPage->d->viewMode == "floating"; -} - -bool ChromeClientQt::isFullscreen() -{ - return m_webPage->d->viewMode == "fullscreen"; -} - -bool ChromeClientQt::isMaximized() -{ - return m_webPage->d->viewMode == "maximized"; -} - -bool ChromeClientQt::isMinimized() -{ - return m_webPage->d->viewMode == "minimized"; -} -#endif - void ChromeClientQt::didReceiveViewportArguments(Frame* frame, const ViewportArguments& arguments) const { if (m_webPage->mainFrame()->d->initialLayoutComplete) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/ChromeClientQt.h --- a/WebKit/qt/WebCoreSupport/ChromeClientQt.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/WebCoreSupport/ChromeClientQt.h Mon Oct 04 01:32:07 2010 +0300 @@ -166,15 +166,7 @@ virtual void scrollRectIntoView(const IntRect&, const ScrollView*) const {} virtual void requestGeolocationPermissionForFrame(Frame*, Geolocation*); - virtual void cancelGeolocationPermissionRequestForFrame(Frame*, Geolocation*) { } - -#if ENABLE(WIDGETS_10_SUPPORT) - virtual bool isWindowed(); - virtual bool isFloating(); - virtual bool isFullscreen(); - virtual bool isMaximized(); - virtual bool isMinimized(); -#endif + virtual void cancelGeolocationPermissionRequestForFrame(Frame*, Geolocation*); QtAbstractWebPopup* createSelectPopup(); diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp --- a/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -4,7 +4,7 @@ * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) * Copyright (C) 2008 Collabora Ltd. All rights reserved. * Coypright (C) 2008 Holger Hans Peter Freyther - * Coypright (C) 2009 Girish Ramakrishnan + * Coypright (C) 2009, 2010 Girish Ramakrishnan * * All rights reserved. * @@ -1461,7 +1461,19 @@ Vector values = paramValues; if (mimeType == "application/x-shockwave-flash") { QWebPageClient* client = m_webFrame->page()->d->client; - if (!client || !qobject_cast(client->pluginParent())) { + const bool isQWebView = client && qobject_cast(client->pluginParent()); +#if defined(MOZ_PLATFORM_MAEMO) && (MOZ_PLATFORM_MAEMO == 5) + size_t wmodeIndex = params.find("wmode"); + if (wmodeIndex == -1) { + // Disable XEmbed mode and force it to opaque mode + params.append("wmode"); + values.append("opaque"); + } else if (!isQWebView) { + // Disable transparency if client is not a QWebView + values[wmodeIndex] = "opaque"; + } +#else + if (!isQWebView) { // inject wmode=opaque when there is no client or the client is not a QWebView size_t wmodeIndex = params.find("wmode"); if (wmodeIndex == -1) { @@ -1470,6 +1482,7 @@ } else values[wmodeIndex] = "opaque"; } +#endif } RefPtr pluginView = PluginView::create(m_frame, pluginSize, element, url, diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -0,0 +1,98 @@ +/* + * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "config.h" +#include "GeolocationPermissionClientQt.h" + +#include "Geolocation.h" + +#include "qwebframe.h" +#include "qwebkitglobal.h" +#include "qwebpage.h" + +namespace WebCore { + +#if ENABLE(GEOLOCATION) + +static GeolocationPermissionClientQt* s_geolocationPermission; + +GeolocationPermissionClientQt* GeolocationPermissionClientQt::geolocationPermissionClient() +{ + if (s_geolocationPermission) + return s_geolocationPermission; + + s_geolocationPermission = new GeolocationPermissionClientQt(); + return s_geolocationPermission; +} + +GeolocationPermissionClientQt::GeolocationPermissionClientQt() +{ +} + +GeolocationPermissionClientQt::~GeolocationPermissionClientQt() +{ +} + +void GeolocationPermissionClientQt::requestGeolocationPermissionForFrame(QWebFrame* webFrame, Geolocation* listener) +{ + m_pendingPermissionRequests.insert(webFrame, listener); + + QWebPage* page = webFrame->page(); + emit page->requestPermissionFromUser(webFrame, QWebPage::GeolocationPermissionDomain); +} + + +void GeolocationPermissionClientQt::cancelGeolocationPermissionRequestForFrame(QWebFrame* webFrame, Geolocation* listener) +{ + m_pendingPermissionRequests.remove(webFrame); + + QWebPage* page = webFrame->page(); + emit page->cancelRequestsForPermission(webFrame, QWebPage::GeolocationPermissionDomain); +} + +void GeolocationPermissionClientQt::setPermission(QWebFrame* webFrame, QWebPage::PermissionPolicy permission) +{ + if (!m_pendingPermissionRequests.contains(webFrame)) + return; + + Geolocation* listener = m_pendingPermissionRequests.value(webFrame); + + if (permission == QWebPage::PermissionGranted) + listener->setIsAllowed(true); + else if (permission == QWebPage::PermissionDenied) + listener->setIsAllowed(false); + else + return; + + m_pendingPermissionRequests.remove(webFrame); +} + +#endif // ENABLE(GEOLOCATION) +} diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.h Mon Oct 04 01:32:07 2010 +0300 @@ -0,0 +1,60 @@ +/* + * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef GeolocationPermissionClientQt_h +#define GeolocationPermissionClientQt_h + +#include "Geolocation.h" +#include "qwebpage.h" + +#include + +class QWebFrame; +class QWebPage; + +namespace WebCore { + +class GeolocationPermissionClientQt { +public: + GeolocationPermissionClientQt(); + ~GeolocationPermissionClientQt(); + + void requestGeolocationPermissionForFrame(QWebFrame*, Geolocation*); + void cancelGeolocationPermissionRequestForFrame(QWebFrame*, Geolocation*); + void setPermission(QWebFrame*, QWebPage::PermissionPolicy); + + static GeolocationPermissionClientQt* geolocationPermissionClient(); +private: + QHash m_pendingPermissionRequests; +}; + +} + +#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp --- a/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp Mon Oct 04 01:32:07 2010 +0300 @@ -217,7 +217,7 @@ QStandardItemModel* model = qobject_cast(m_combo->model()); Q_ASSERT(model); -#if !defined(Q_WS_S60) +#if !defined(Q_OS_SYMBIAN) m_combo->setFont(font()); #endif for (int i = 0; i < itemCount(); ++i) { diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/declarative/Makefile --- a/WebKit/qt/declarative/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,935 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Tue 17. Aug 12:44:26 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_PLUGIN -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtDeclarative" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative" -I"Z:/epoc32/include/stdapis/stlportv5" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/declarative.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -sis: - -compiler_copy2build_make_all: ..\..\..\imports\QtWebKit\qmldir -compiler_copy2build_clean: - -$(DEL_FILE) ..\..\..\imports\QtWebKit\qmldir -..\..\..\imports\QtWebKit\qmldir: qmldir - copy /y z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\qmldir z:\qtwebkit-symbian-qtp\imports\QtWebKit\qmldir - -compiler_moc_header_make_all: moc_qdeclarativewebview_p.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_qdeclarativewebview_p.cpp -moc_qdeclarativewebview_p.cpp: \epoc32\include\mw\QtCore\QBasicTimer \ - ..\..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\QUrl \ - ..\..\..\..\epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtDeclarative\QDeclarativeItem \ - ..\..\..\..\epoc32\include\mw\QtDeclarative\qdeclarativeitem.h \ - \epoc32\include\mw\QtDeclarative\qdeclarative.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeprivate.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeparserstatus.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativepropertyvaluesource.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativepropertyvalueinterceptor.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativelist.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativecomponent.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeerror.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\..\epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - \epoc32\include\mw\QtGui\QAction \ - ..\..\..\..\epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\Api\qgraphicswebview.h \ - ..\Api\qwebkitglobal.h \ - ..\Api\qwebpage.h \ - ..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - qdeclarativewebview_p.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\qdeclarativewebview_p.h -o z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\moc_qdeclarativewebview_p.cpp - -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: plugin.moc -compiler_moc_source_clean: - -$(DEL_FILE) plugin.moc -plugin.moc: qdeclarativewebview_p.h \ - \epoc32\include\mw\QtCore\QBasicTimer \ - ..\..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\QUrl \ - ..\..\..\..\epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtDeclarative\QDeclarativeItem \ - ..\..\..\..\epoc32\include\mw\QtDeclarative\qdeclarativeitem.h \ - \epoc32\include\mw\QtDeclarative\qdeclarative.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeprivate.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\..\epoc32\include\stdapis\stdint.h \ - \epoc32\include\stdapis\machine\_stdint.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeparserstatus.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativepropertyvaluesource.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativepropertyvalueinterceptor.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativelist.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativecomponent.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeerror.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\..\epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - \epoc32\include\mw\QtGui\QAction \ - ..\..\..\..\epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\Api\qgraphicswebview.h \ - ..\Api\qwebkitglobal.h \ - ..\Api\qwebpage.h \ - ..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeextensionplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - \epoc32\include\mw\QtDeclarative\qdeclarativeextensioninterface.h \ - plugin.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\plugin.cpp -o z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\plugin.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_copy2build_clean compiler_moc_header_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\Makefile" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\Makefile" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\declarative_0x20021321.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\declarative_0x20021321.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\plugin_commonu.def" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\plugin_commonu.def" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\bld.inf" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKit\qt\declarative\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/declarative/bld.inf --- a/WebKit/qt/declarative/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: qmlwebkitplugin -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: declarative.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DECLARATIVE_02764E9D - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -declarative_0x20021321.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/moc_qdeclarativewebview_p.cpp -OPTION DEPS Z:/epoc32/include/mw/QtCore/QBasicTimer Z:/epoc32/include/mw/QtCore/qbasictimer.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QUrl Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtDeclarative/QDeclarativeItem Z:/epoc32/include/mw/QtDeclarative/qdeclarativeitem.h Z:/epoc32/include/mw/QtDeclarative/qdeclarative.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeprivate.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeparserstatus.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativepropertyvaluesource.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativepropertyvalueinterceptor.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativelist.h Z:/epoc32/include/mw/QtCore/qmetaobject.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativecomponent.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeerror.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtScript/qscriptvalue.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/QList Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtGui/qgraphicsitem.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qgraphicstransform.h Z:/epoc32/include/mw/QtGui/QVector3D Z:/epoc32/include/mw/QtGui/qvector3d.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/QMatrix4x4 Z:/epoc32/include/mw/QtGui/qmatrix4x4.h Z:/epoc32/include/mw/QtGui/qvector3d.h Z:/epoc32/include/mw/QtGui/qvector4d.h Z:/epoc32/include/mw/QtGui/qquaternion.h Z:/epoc32/include/mw/QtGui/qgenericmatrix.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qaction.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtGui/qactiongroup.h Z:/epoc32/include/mw/QtGui/QAction Z:/epoc32/include/mw/QtGui/qaction.h Z:/epoc32/include/mw/QtNetwork/QNetworkAccessManager Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtGui/qgraphicswidget.h Z:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/qdeclarativewebview_p.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_PLUGIN -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtDeclarative" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative" -I"Z:/epoc32/include/stdapis/stlportv5" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/qdeclarativewebview_p.h -o z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/moc_qdeclarativewebview_p.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/plugin.moc -OPTION DEPS Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/qdeclarativewebview_p.h Z:/epoc32/include/mw/QtCore/QBasicTimer Z:/epoc32/include/mw/QtCore/qbasictimer.h Z:/epoc32/include/mw/QtCore/qglobal.h Z:/epoc32/include/stdapis/stddef.h Z:/epoc32/include/stdapis/sys/cdefs.h Z:/epoc32/include/stdapis/_ansi.h Z:/epoc32/include/e32def.h Z:/epoc32/include/platform/e32def_private.h Z:/epoc32/include/stdapis/sys/_null.h Z:/epoc32/include/stdapis/sys/_types.h Z:/epoc32/include/stdapis/machine/_types.h Z:/epoc32/include/mw/QtCore/qconfig.h Z:/epoc32/include/mw/QtCore/qfeatures.h Z:/epoc32/include/mw/QtCore/QUrl Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtCore/qbytearray.h Z:/epoc32/include/mw/QtCore/qatomic.h Z:/epoc32/include/mw/QtCore/qbasicatomic.h Z:/epoc32/include/mw/QtCore/qatomic_bootstrap.h Z:/epoc32/include/mw/QtCore/qatomic_arch.h Z:/epoc32/include/mw/QtCore/qatomic_vxworks.h Z:/epoc32/include/mw/QtCore/qatomic_powerpc.h Z:/epoc32/include/mw/QtCore/qatomic_alpha.h Z:/epoc32/include/mw/QtCore/qatomic_arm.h Z:/epoc32/include/mw/QtCore/qatomic_armv6.h Z:/epoc32/include/mw/QtCore/qatomic_avr32.h Z:/epoc32/include/mw/QtCore/qatomic_bfin.h Z:/epoc32/include/mw/QtCore/qatomic_generic.h Z:/epoc32/include/mw/QtCore/qatomic_i386.h Z:/epoc32/include/mw/QtCore/qatomic_ia64.h Z:/epoc32/include/mw/QtCore/qatomic_macosx.h Z:/epoc32/include/mw/QtCore/qatomic_x86_64.h Z:/epoc32/include/mw/QtCore/qatomic_mips.h Z:/epoc32/include/mw/QtCore/qatomic_parisc.h Z:/epoc32/include/mw/QtCore/qatomic_s390.h Z:/epoc32/include/mw/QtCore/qatomic_sparc.h Z:/epoc32/include/mw/QtCore/qatomic_windows.h Z:/epoc32/include/mw/QtCore/qatomic_windowsce.h Z:/epoc32/include/mw/QtCore/qatomic_symbian.h Z:/epoc32/include/e32std.h Z:/epoc32/include/e32cmn.h Z:/epoc32/include/e32const.h Z:/epoc32/include/e32err.h Z:/epoc32/include/e32lang.h Z:/epoc32/include/e32reg.h Z:/epoc32/include/e32capability.h Z:/epoc32/include/platform/e32const_private.h Z:/epoc32/include/stdapis/string.h Z:/epoc32/include/stdapis/strings.h Z:/epoc32/include/e32des8.h Z:/epoc32/include/platform/e32des8_private.h Z:/epoc32/include/e32des16.h Z:/epoc32/include/platform/e32des16_private.h Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/exception_winscw.h Z:/epoc32/include/e32cmn.inl Z:/epoc32/include/platform/e32cmn_private.h Z:/epoc32/include/e32std.inl Z:/epoc32/include/platform/e32std_private.h Z:/epoc32/include/mw/QtCore/qatomic_sh.h Z:/epoc32/include/mw/QtCore/qatomic_sh4a.h Z:/epoc32/include/mw/QtCore/qnamespace.h Z:/epoc32/include/stdapis/stdarg.h Z:/epoc32/include/stdapis/stdarg_e.h Z:/epoc32/include/mw/QtCore/qobjectdefs.h Z:/epoc32/include/mw/QtCore/qpair.h Z:/epoc32/include/mw/QtCore/qdatastream.h Z:/epoc32/include/mw/QtCore/qscopedpointer.h Z:/epoc32/include/mw/QtCore/qiodevice.h Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/qstring.h Z:/epoc32/include/mw/QtCore/qchar.h Z:/epoc32/include/mw/Qt3Support/q3cstring.h Z:/epoc32/include/stdapis/stlportv5/string Z:/epoc32/include/stdapis/stlportv5/stl/_prolog.h Z:/epoc32/include/stdapis/stlportv5/stl/config/features.h Z:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h Z:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h Z:/epoc32/include/stdapis/stlportv5/stl/config/compat.h Z:/epoc32/include/stdapis/stlportv5/stl/config/host.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_system.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h Z:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h Z:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h Z:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h Z:/epoc32/include/stdapis/stdlib.h Z:/epoc32/include/stdapis/stlportv5/stl/_cmath.h Z:/epoc32/include/stdapis/math.h Z:/epoc32/include/stdapis/machine/_limits.h Z:/epoc32/include/stdapis/libm_aliases.h Z:/epoc32/include/stdapis/signgam.h Z:/epoc32/include/stdapis/stlportv5/stl/_cstring.h Z:/epoc32/include/stdapis/stlportv5/using/cstring Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.h Z:/epoc32/include/stdapis/stlportv5/climits Z:/epoc32/include/stdapis/limits.h Z:/epoc32/include/stdapis/sys/limits.h Z:/epoc32/include/stdapis/sys/syslimits.h Z:/epoc32/include/stdapis/stlportv5/stl/_epilog.h Z:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h Z:/epoc32/include/stdapis/stlportv5/stl/_pair.h Z:/epoc32/include/stdapis/stlportv5/stl/type_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h Z:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h Z:/epoc32/include/stdapis/wchar.h Z:/epoc32/include/stdapis/sys/stat.h Z:/epoc32/include/stdapis/sys/time.h Z:/epoc32/include/stdapis/sys/_timeval.h Z:/epoc32/include/stdapis/sys/types.h Z:/epoc32/include/stdapis/machine/endian.h Z:/epoc32/include/stdapis/sys/_pthreadtypes.h Z:/epoc32/include/stdapis/sys/timespec.h Z:/epoc32/include/stdapis/time.h Z:/epoc32/include/stdapis/sys/_timespec.h Z:/epoc32/include/stdapis/_ctype.h Z:/epoc32/include/stdapis/stdio.h Z:/epoc32/include/stdapis/errno.h Z:/epoc32/include/stdapis/sys/dirent.h Z:/epoc32/include/stdapis/stlportv5/stl/type_manips.h Z:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp Z:/epoc32/include/stdapis/boost/type_traits/config.hpp Z:/epoc32/include/stdapis/boost/config.hpp Z:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp Z:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp Z:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp Z:/epoc32/include/stdapis/stlportv5/utility Z:/epoc32/include/stdapis/stlportv5/stl/_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h Z:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h Z:/epoc32/include/stdapis/boost/config/select_platform_config.hpp Z:/epoc32/include/stdapis/boost/config/suffix.hpp Z:/epoc32/include/stdapis/stlportv5/cstddef Z:/epoc32/include/stdapis/boost/type.hpp Z:/epoc32/include/stdapis/boost/detail/workaround.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp Z:/epoc32/include/stdapis/boost/mpl/int.hpp Z:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp Z:/epoc32/include/stdapis/boost/preprocessor/cat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp Z:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp Z:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp Z:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp Z:/epoc32/include/stdapis/boost/preprocessor/inc.hpp Z:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp Z:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp Z:/epoc32/include/stdapis/boost/mpl/bool.hpp Z:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c.hpp Z:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp Z:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp Z:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp Z:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp Z:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp Z:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp Z:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp Z:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp Z:/epoc32/include/stdapis/boost/type_traits/add_const.hpp Z:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h Z:/epoc32/include/stdapis/stlportv5/stl/_algobase.c Z:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h Z:/epoc32/include/stdapis/stlportv5/stl/_new.h Z:/epoc32/include/stdapis/stlportv5/stl/_exception.h Z:/epoc32/include/stdapis/stlportv5/stl/_construct.h Z:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h Z:/epoc32/include/stdapis/stlportv5/stl/_alloc.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h Z:/epoc32/include/stdapis/stlportv5/iosfwd Z:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h Z:/epoc32/include/stdapis/stlportv5/stl/char_traits.h Z:/epoc32/include/stdapis/stlportv5/stl/_function_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h Z:/epoc32/include/stdapis/stlportv5/stl/msl_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h Z:/epoc32/include/stdapis/stlportv5/stl/_string.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h Z:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h Z:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h Z:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h Z:/epoc32/include/stdapis/stlportv5/stl/_locale.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.h Z:/epoc32/include/e32atomics.h Z:/epoc32/include/stdapis/pthread.h Z:/epoc32/include/stdapis/pthreadtypes.h Z:/epoc32/include/stdapis/sched.h Z:/epoc32/include/stdapis/pthreadalias.h Z:/epoc32/include/stdapis/stlportv5/stl/_ctime.h Z:/epoc32/include/stdapis/stlportv5/cstdio Z:/epoc32/include/stdapis/stlportv5/cwchar Z:/epoc32/include/stdapis/stlportv5/cassert Z:/epoc32/include/stdapis/assert.h Z:/epoc32/include/stdapis/stlportv5/stl/_threads.c Z:/epoc32/include/stdapis/stlportv5/stl/_ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/c_locale.h Z:/epoc32/include/stdapis/ctype.h Z:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h Z:/epoc32/include/stdapis/stlportv5/stl/_ios.c Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h Z:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c Z:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_ostream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.h Z:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_put.c Z:/epoc32/include/stdapis/stlportv5/stl/_limits.h Z:/epoc32/include/stdapis/stlportv5/cfloat Z:/epoc32/include/stdapis/float.h Z:/epoc32/include/stdapis/stlportv5/stl/_limits.c Z:/epoc32/include/stdapis/stlportv5/stl/_istream.h Z:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h Z:/epoc32/include/stdapis/stlportv5/stl/_istream.c Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.h Z:/epoc32/include/stdapis/stlportv5/stl/_num_get.c Z:/epoc32/include/stdapis/stlportv5/stl/_string_io.c Z:/epoc32/include/mw/QtCore/qstringbuilder.h Z:/epoc32/include/mw/QtCore/qmap.h Z:/epoc32/include/mw/QtCore/qiterator.h Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtCore/qalgorithms.h Z:/epoc32/include/stdapis/stlportv5/iterator Z:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h Z:/epoc32/include/stdapis/stlportv5/list Z:/epoc32/include/stdapis/stlportv5/stl/_list.h Z:/epoc32/include/stdapis/stlportv5/stl/_list.c Z:/epoc32/include/stdapis/stlportv5/stl/_carray.h Z:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h Z:/epoc32/include/stdapis/stlportv5/new Z:/epoc32/include/stdapis/stlportv5/exception Z:/epoc32/include/stdapis/stlportv5/map Z:/epoc32/include/stdapis/stlportv5/stl/_map.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.h Z:/epoc32/include/stdapis/stlportv5/stl/_tree.c Z:/epoc32/include/mw/QtCore/qcoreevent.h Z:/epoc32/include/mw/QtCore/qhash.h Z:/epoc32/include/mw/QtDeclarative/QDeclarativeItem Z:/epoc32/include/mw/QtDeclarative/qdeclarativeitem.h Z:/epoc32/include/mw/QtDeclarative/qdeclarative.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeprivate.h Z:/epoc32/include/mw/QtCore/qvariant.h Z:/epoc32/include/mw/QtCore/qmetatype.h Z:/epoc32/include/stdapis/stdint.h Z:/epoc32/include/stdapis/machine/_stdint.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeparserstatus.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativepropertyvaluesource.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativepropertyvalueinterceptor.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativelist.h Z:/epoc32/include/mw/QtCore/qmetaobject.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativecomponent.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeerror.h Z:/epoc32/include/mw/QtCore/qurl.h Z:/epoc32/include/mw/QtScript/qscriptvalue.h Z:/epoc32/include/mw/QtCore/qsharedpointer.h Z:/epoc32/include/mw/QtCore/qshareddata.h Z:/epoc32/include/mw/QtCore/qsharedpointer_impl.h Z:/epoc32/include/mw/QtCore/QObject Z:/epoc32/include/mw/QtCore/qobject.h Z:/epoc32/include/mw/QtCore/QList Z:/epoc32/include/mw/QtCore/qlist.h Z:/epoc32/include/mw/QtGui/qgraphicsitem.h Z:/epoc32/include/mw/QtCore/qrect.h Z:/epoc32/include/mw/QtCore/qsize.h Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtGui/qpainterpath.h Z:/epoc32/include/mw/QtGui/qmatrix.h Z:/epoc32/include/mw/QtGui/qpolygon.h Z:/epoc32/include/mw/QtCore/qvector.h Z:/epoc32/include/stdapis/stlportv5/vector Z:/epoc32/include/stdapis/stlportv5/stl/_vector.h Z:/epoc32/include/stdapis/stlportv5/stl/_vector.c Z:/epoc32/include/stdapis/stlportv5/stl/_bvector.h Z:/epoc32/include/mw/QtCore/QPointF Z:/epoc32/include/mw/QtCore/qpoint.h Z:/epoc32/include/mw/QtCore/QPoint Z:/epoc32/include/mw/QtGui/qregion.h Z:/epoc32/include/mw/QtGui/qwindowdefs.h Z:/epoc32/include/mw/QtGui/qmacdefines_mac.h Z:/epoc32/include/mw/QtGui/qwindowdefs_win.h Z:/epoc32/include/mw/QtCore/qline.h Z:/epoc32/include/mw/QtGui/qwmatrix.h Z:/epoc32/include/mw/QtGui/qpixmap.h Z:/epoc32/include/mw/QtGui/qpaintdevice.h Z:/epoc32/include/mw/QtGui/qcolor.h Z:/epoc32/include/mw/QtGui/qrgb.h Z:/epoc32/include/mw/QtCore/qstringlist.h Z:/epoc32/include/mw/QtCore/qregexp.h Z:/epoc32/include/mw/QtCore/qstringmatcher.h Z:/epoc32/include/mw/Qt3Support/q3valuelist.h Z:/epoc32/include/mw/QtCore/qlinkedlist.h Z:/epoc32/include/mw/QtGui/qimage.h Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/qgraphicstransform.h Z:/epoc32/include/mw/QtGui/QVector3D Z:/epoc32/include/mw/QtGui/qvector3d.h Z:/epoc32/include/mw/QtGui/QTransform Z:/epoc32/include/mw/QtGui/qtransform.h Z:/epoc32/include/mw/QtGui/QMatrix4x4 Z:/epoc32/include/mw/QtGui/qmatrix4x4.h Z:/epoc32/include/mw/QtGui/qvector3d.h Z:/epoc32/include/mw/QtGui/qvector4d.h Z:/epoc32/include/mw/QtGui/qquaternion.h Z:/epoc32/include/mw/QtGui/qgenericmatrix.h Z:/epoc32/include/mw/QtCore/qdebug.h Z:/epoc32/include/mw/QtCore/qtextstream.h Z:/epoc32/include/mw/QtCore/qlocale.h Z:/epoc32/include/mw/QtCore/qtextcodec.h Z:/epoc32/include/mw/QtCore/qset.h Z:/epoc32/include/mw/QtCore/qcontiguouscache.h Z:/epoc32/include/mw/QtGui/qfont.h Z:/epoc32/include/mw/QtGui/qaction.h Z:/epoc32/include/mw/QtGui/qkeysequence.h Z:/epoc32/include/mw/QtGui/qwidget.h Z:/epoc32/include/mw/QtCore/qmargins.h Z:/epoc32/include/mw/QtGui/qpalette.h Z:/epoc32/include/mw/QtGui/qbrush.h Z:/epoc32/include/mw/QtGui/qfontmetrics.h Z:/epoc32/include/mw/QtGui/qfontinfo.h Z:/epoc32/include/mw/QtGui/qsizepolicy.h Z:/epoc32/include/mw/QtGui/qcursor.h Z:/epoc32/include/mw/QtGui/qevent.h Z:/epoc32/include/mw/QtGui/qmime.h Z:/epoc32/include/mw/QtCore/qmimedata.h Z:/epoc32/include/mw/QtGui/qdrag.h Z:/epoc32/include/mw/QtGui/qicon.h Z:/epoc32/include/mw/QtGui/qactiongroup.h Z:/epoc32/include/mw/QtGui/QAction Z:/epoc32/include/mw/QtGui/qaction.h Z:/epoc32/include/mw/QtNetwork/QNetworkAccessManager Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h Z:/epoc32/include/mw/QtGui/qgraphicswidget.h Z:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h Z:/epoc32/include/mw/QtGui/qpainter.h Z:/epoc32/include/mw/QtGui/qtextoption.h Z:/epoc32/include/mw/QtGui/qdrawutil.h Z:/epoc32/include/mw/QtGui/qpen.h Z:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeextensionplugin.h Z:/epoc32/include/mw/QtCore/qplugin.h Z:/epoc32/include/mw/QtCore/qpointer.h Z:/epoc32/include/mw/QtDeclarative/qdeclarativeextensioninterface.h Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/plugin.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DQT_NO_UITOOLS -DQT_PLUGIN -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw/QtDeclarative" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/qtwebkit-symbian-qtp/include/QtWebKit" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/declarative" -I"Z:/epoc32/include/stdapis/stlportv5" -DSYMBIAN z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/plugin.cpp -o z:/qtwebkit-symbian-qtp/WebKit/qt/declarative/plugin.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/declarative/declarative_0x20021321.mmp --- a/WebKit/qt/declarative/declarative_0x20021321.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,91 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -// This file is generated by qmake and should not be modified by the -// user. -// Name : declarative.mmp -// ============================================================================== - -TARGET qmlwebkitplugin.dll -TARGETTYPE DLL - -UID 0x1000008d 0x20021321 -SECUREID 0x20021321 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB -EPOCALLOWDLLDATA -DEFFILE ./plugin_common.def - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO QT_NO_UITOOLS -MACRO QT_PLUGIN -MACRO QT_DECLARATIVE_LIB -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtDeclarative -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../../../include/QtWebKit -SYSTEMINCLUDE . -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 - -SOURCEPATH . -SOURCE qdeclarativewebview.cpp -SOURCE plugin.cpp -SOURCE moc_qdeclarativewebview_p.cpp - - -LIBRARY QtWebKit.lib -LIBRARY QtDeclarative.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libstdcppv5.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY All -Tcb - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates --diag_suppress 111,185,191,368,1293,1294,2874 -LINKEROPTION ARMCC --diag_suppress 6780 -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/declarative/plugin_commonu.def --- a/WebKit/qt/declarative/plugin_commonu.def Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ -; ============================================================================== -; Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-17T12:44:26 -; This file is generated by qmake and should not be modified by the -; user. -; Name : plugin_commonu.def -; Part of : qmlwebkitplugin -; Description : Fixes common plugin symbols to known ordinals -; Version : -; -; ============================================================================== - - -EXPORTS - qt_plugin_query_verification_data @ 1 NONAME - qt_plugin_instance @ 2 NONAME - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/symbian/bwins/QtWebKitu.def --- a/WebKit/qt/symbian/bwins/QtWebKitu.def Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/symbian/bwins/QtWebKitu.def Mon Oct 04 01:32:07 2010 +0300 @@ -563,7 +563,7 @@ ?title@QWebHistoryItem@@QBE?AVQString@@XZ @ 562 NONAME ; class QString QWebHistoryItem::title(void) const ?webPageSetGroupName@DumpRenderTreeSupportQt@@SAXPAVQWebPage@@ABVQString@@@Z @ 563 NONAME ; void DumpRenderTreeSupportQt::webPageSetGroupName(class QWebPage *, class QString const &) ?inputMethodQuery@QWebView@@UBE?AVQVariant@@W4InputMethodQuery@Qt@@@Z @ 564 NONAME ; class QVariant QWebView::inputMethodQuery(enum Qt::InputMethodQuery) const - ?allowGeolocationRequest@QWebPage@@QAE_NPAVQWebFrame@@@Z @ 565 NONAME ; bool QWebPage::allowGeolocationRequest(class QWebFrame *) + ?allowGeolocationRequest@QWebPage@@QAE_NPAVQWebFrame@@@Z @ 565 NONAME ABSENT ; bool QWebPage::allowGeolocationRequest(class QWebFrame *) ??8QWebPluginInfo@@QBE_NABV0@@Z @ 566 NONAME ; bool QWebPluginInfo::operator==(class QWebPluginInfo const &) const ?pluginForMimeType@QWebPluginDatabase@@QAE?AVQWebPluginInfo@@ABVQString@@@Z @ 567 NONAME ; class QWebPluginInfo QWebPluginDatabase::pluginForMimeType(class QString const &) ?qt_metacast@QGraphicsWebView@@UAEPAXPBD@Z @ 568 NONAME ; void * QGraphicsWebView::qt_metacast(char const *) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/symbian/eabi/QtWebKitu.def --- a/WebKit/qt/symbian/eabi/QtWebKitu.def Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/qt/symbian/eabi/QtWebKitu.def Mon Oct 04 01:32:07 2010 +0300 @@ -742,34 +742,34 @@ _ZN23DumpRenderTreeSupportQt22javaScriptObjectsCountEv @ 741 NONAME _ZN23DumpRenderTreeSupportQt23setCaretBrowsingEnabledEP8QWebPageb @ 742 NONAME _ZN23DumpRenderTreeSupportQt24executeCoreCommandByNameEP8QWebPageRK7QStringS4_ @ 743 NONAME - _ZN23DumpRenderTreeSupportQt21dumpSetAcceptsEditingEb @744 NONAME - _ZN23DumpRenderTreeSupportQt22resumeActiveDOMObjectsEP9QWebFrame @745 NONAME - _ZN23DumpRenderTreeSupportQt23suspendActiveDOMObjectsEP9QWebFrame @746 NONAME - _ZN23DumpRenderTreeSupportQt24numberOfActiveAnimationsEP9QWebFrame @747 NONAME - _ZN23DumpRenderTreeSupportQt24pageNumberForElementByIdEP9QWebFrameRK7QStringff @748 NONAME - _ZN23DumpRenderTreeSupportQt25dumpResourceLoadCallbacksEb @749 NONAME - _ZN23DumpRenderTreeSupportQt25pauseTransitionOfPropertyEP9QWebFrameRK7QStringdS4_ @750 NONAME - _ZN23DumpRenderTreeSupportQt25setFrameFlatteningEnabledEP8QWebPageb @751 NONAME - _ZN23DumpRenderTreeSupportQt25webInspectorExecuteScriptEP8QWebPagelRK7QString @752 NONAME - _ZN23DumpRenderTreeSupportQt25whiteListAccessFromOriginERK7QStringS2_S2_b @753 NONAME - _ZN23DumpRenderTreeSupportQt26counterValueForElementByIdEP9QWebFrameRK7QString @754 NONAME - _ZN23DumpRenderTreeSupportQt26firstRectForCharacterRangeEP8QWebPageii @755 NONAME - _ZN23DumpRenderTreeSupportQt26overwritePluginDirectoriesEv @756 NONAME - _ZN23DumpRenderTreeSupportQt27resetOriginAccessWhiteListsEv @757 NONAME - _ZN23DumpRenderTreeSupportQt27setSmartInsertDeleteEnabledEP8QWebPageb @758 NONAME - _ZN23DumpRenderTreeSupportQt27setTimelineProfilingEnabledEP8QWebPageb @759 NONAME - _ZN23DumpRenderTreeSupportQt28setDumpRenderTreeModeEnabledEb @760 NONAME - _ZN23DumpRenderTreeSupportQt29dumpResourceLoadCallbacksPathERK7QString @761 NONAME - _ZN23DumpRenderTreeSupportQt29evaluateScriptInIsolatedWorldEP9QWebFrameiRK7QString @762 NONAME - _ZN23DumpRenderTreeSupportQt29setJavaScriptProfilingEnabledEP9QWebFrameb @763 NONAME - _ZN23DumpRenderTreeSupportQt29setWillSendRequestReturnsNullEb @764 NONAME - _ZN23DumpRenderTreeSupportQt30setWillSendRequestClearHeadersERK11QStringList @765 NONAME - _ZN23DumpRenderTreeSupportQt33computedStyleIncludingVisitedInfoERK11QWebElement @766 NONAME - _ZN23DumpRenderTreeSupportQt34setSelectTrailingWhitespaceEnabledEP8QWebPageb @767 NONAME - _ZN23DumpRenderTreeSupportQt39elementDoesAutoCompleteForElementWithIdEP9QWebFrameRK7QString @768 NONAME - _ZN23DumpRenderTreeSupportQt39setWillSendRequestReturnsNullOnRedirectEb @769 NONAME - _ZN23DumpRenderTreeSupportQt40garbageCollectorCollectOnAlternateThreadEb @770 NONAME - _ZN23DumpRenderTreeSupportQt40setDomainRelaxationForbiddenForURLSchemeEbRK7QString @771 NONAME + _ZN23DumpRenderTreeSupportQt21dumpSetAcceptsEditingEb @ 744 NONAME + _ZN23DumpRenderTreeSupportQt22resumeActiveDOMObjectsEP9QWebFrame @ 745 NONAME + _ZN23DumpRenderTreeSupportQt23suspendActiveDOMObjectsEP9QWebFrame @ 746 NONAME + _ZN23DumpRenderTreeSupportQt24numberOfActiveAnimationsEP9QWebFrame @ 747 NONAME + _ZN23DumpRenderTreeSupportQt24pageNumberForElementByIdEP9QWebFrameRK7QStringff @ 748 NONAME + _ZN23DumpRenderTreeSupportQt25dumpResourceLoadCallbacksEb @ 749 NONAME + _ZN23DumpRenderTreeSupportQt25pauseTransitionOfPropertyEP9QWebFrameRK7QStringdS4_ @ 750 NONAME + _ZN23DumpRenderTreeSupportQt25setFrameFlatteningEnabledEP8QWebPageb @ 751 NONAME + _ZN23DumpRenderTreeSupportQt25webInspectorExecuteScriptEP8QWebPagelRK7QString @ 752 NONAME + _ZN23DumpRenderTreeSupportQt25whiteListAccessFromOriginERK7QStringS2_S2_b @ 753 NONAME + _ZN23DumpRenderTreeSupportQt26counterValueForElementByIdEP9QWebFrameRK7QString @ 754 NONAME + _ZN23DumpRenderTreeSupportQt26firstRectForCharacterRangeEP8QWebPageii @ 755 NONAME + _ZN23DumpRenderTreeSupportQt26overwritePluginDirectoriesEv @ 756 NONAME + _ZN23DumpRenderTreeSupportQt27resetOriginAccessWhiteListsEv @ 757 NONAME + _ZN23DumpRenderTreeSupportQt27setSmartInsertDeleteEnabledEP8QWebPageb @ 758 NONAME + _ZN23DumpRenderTreeSupportQt27setTimelineProfilingEnabledEP8QWebPageb @ 759 NONAME + _ZN23DumpRenderTreeSupportQt28setDumpRenderTreeModeEnabledEb @ 760 NONAME + _ZN23DumpRenderTreeSupportQt29dumpResourceLoadCallbacksPathERK7QString @ 761 NONAME + _ZN23DumpRenderTreeSupportQt29evaluateScriptInIsolatedWorldEP9QWebFrameiRK7QString @ 762 NONAME + _ZN23DumpRenderTreeSupportQt29setJavaScriptProfilingEnabledEP9QWebFrameb @ 763 NONAME + _ZN23DumpRenderTreeSupportQt29setWillSendRequestReturnsNullEb @ 764 NONAME + _ZN23DumpRenderTreeSupportQt30setWillSendRequestClearHeadersERK11QStringList @ 765 NONAME + _ZN23DumpRenderTreeSupportQt33computedStyleIncludingVisitedInfoERK11QWebElement @ 766 NONAME + _ZN23DumpRenderTreeSupportQt34setSelectTrailingWhitespaceEnabledEP8QWebPageb @ 767 NONAME + _ZN23DumpRenderTreeSupportQt39elementDoesAutoCompleteForElementWithIdEP9QWebFrameRK7QString @ 768 NONAME + _ZN23DumpRenderTreeSupportQt39setWillSendRequestReturnsNullOnRedirectEb @ 769 NONAME + _ZN23DumpRenderTreeSupportQt40garbageCollectorCollectOnAlternateThreadEb @ 770 NONAME + _ZN23DumpRenderTreeSupportQt40setDomainRelaxationForbiddenForURLSchemeEbRK7QString @ 771 NONAME _ZN23DumpRenderTreeSupportQt18setEditingBehaviorEP8QWebPageRK7QString @ 772 NONAME _ZN23DumpRenderTreeSupportQt24setNotificationsReceiverEP7QObject @ 773 NONAME ABSENT _ZN23DumpRenderTreeSupportQt26allowNotificationForOriginERK7QString @ 774 NONAME ABSENT @@ -796,6 +796,20 @@ _ZN23DumpRenderTreeSupportQtC2Ev @ 795 NONAME _ZN23DumpRenderTreeSupportQtD1Ev @ 796 NONAME _ZN23DumpRenderTreeSupportQtD2Ev @ 797 NONAME - _ZN8QWebPage23allowGeolocationRequestEP9QWebFrame @ 798 NONAME + _ZN8QWebPage23allowGeolocationRequestEP9QWebFrame @ 798 NONAME ABSENT _ZN8QWebPage23viewportChangeRequestedERKNS_13ViewportHintsE @ 799 NONAME _ZNK15QWebScriptWorld5worldEv @ 800 NONAME + _ZN16QGraphicsWebView13setDeviceSizeERK5QSize @ 801 NONAME + _ZN23DumpRenderTreeSupportQt12pagePropertyEP9QWebFrameRK7QStringi @ 802 NONAME + _ZN23DumpRenderTreeSupportQt16isPageBoxVisibleEP9QWebFramei @ 803 NONAME + _ZN23DumpRenderTreeSupportQt16resumeAnimationsEP9QWebFrame @ 804 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt17addUserStyleSheetEP8QWebPageRK7QString @ 805 NONAME + _ZN23DumpRenderTreeSupportQt17suspendAnimationsEP9QWebFrame @ 806 NONAME ABSENT + _ZN23DumpRenderTreeSupportQt26pageSizeAndMarginsInPixelsEP9QWebFrameiiiiiii @ 807 NONAME + _ZN23DumpRenderTreeSupportQt28setDeferMainResourceDataLoadEb @ 808 NONAME + _ZN8QWebPage17setUserPermissionEP9QWebFrameNS_16PermissionDomainENS_16PermissionPolicyE @ 809 NONAME + _ZN8QWebPage23checkPermissionFromUserEP9QWebFrameNS_16PermissionDomainERNS_16PermissionPolicyE @ 810 NONAME + _ZN8QWebPage25requestPermissionFromUserEP9QWebFrameNS_16PermissionDomainE @ 811 NONAME + _ZN8QWebPage27cancelRequestsForPermissionEP9QWebFrameNS_16PermissionDomainE @ 812 NONAME + _ZNK16QGraphicsWebView10deviceSizeEv @ 813 NONAME + diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/Makefile --- a/WebKit/qt/tests/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,241 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:46 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : u:/yaels-qtwebkit/WebKit/qt/tests/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/tests.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -qwebframe\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebframe\ $(MKDIR) qwebframe\ - cd qwebframe\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\qwebframe.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebframe-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebframe\ $(MKDIR) qwebframe\ - cd qwebframe\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\qwebframe.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebframe: qwebframe\$(MAKEFILE) FORCE - cd qwebframe\ && $(MAKE) -f $(MAKEFILE) -qwebpage\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebpage\ $(MKDIR) qwebpage\ - cd qwebpage\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebpage\qwebpage.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebpage-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebpage\ $(MKDIR) qwebpage\ - cd qwebpage\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebpage\qwebpage.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebpage: qwebpage\$(MAKEFILE) FORCE - cd qwebpage\ && $(MAKE) -f $(MAKEFILE) -qwebelement\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebelement\ $(MKDIR) qwebelement\ - cd qwebelement\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\qwebelement.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebelement-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebelement\ $(MKDIR) qwebelement\ - cd qwebelement\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\qwebelement.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebelement: qwebelement\$(MAKEFILE) FORCE - cd qwebelement\ && $(MAKE) -f $(MAKEFILE) -qgraphicswebview\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qgraphicswebview\ $(MKDIR) qgraphicswebview\ - cd qgraphicswebview\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\qgraphicswebview.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qgraphicswebview-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qgraphicswebview\ $(MKDIR) qgraphicswebview\ - cd qgraphicswebview\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\qgraphicswebview.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qgraphicswebview: qgraphicswebview\$(MAKEFILE) FORCE - cd qgraphicswebview\ && $(MAKE) -f $(MAKEFILE) -qwebhistoryinterface\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebhistoryinterface\ $(MKDIR) qwebhistoryinterface\ - cd qwebhistoryinterface\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistoryinterface\qwebhistoryinterface.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebhistoryinterface-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebhistoryinterface\ $(MKDIR) qwebhistoryinterface\ - cd qwebhistoryinterface\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistoryinterface\qwebhistoryinterface.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebhistoryinterface: qwebhistoryinterface\$(MAKEFILE) FORCE - cd qwebhistoryinterface\ && $(MAKE) -f $(MAKEFILE) -qwebview\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebview\ $(MKDIR) qwebview\ - cd qwebview\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\qwebview.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebview-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebview\ $(MKDIR) qwebview\ - cd qwebview\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\qwebview.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebview: qwebview\$(MAKEFILE) FORCE - cd qwebview\ && $(MAKE) -f $(MAKEFILE) -qwebhistory\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebhistory\ $(MKDIR) qwebhistory\ - cd qwebhistory\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistory\qwebhistory.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebhistory-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebhistory\ $(MKDIR) qwebhistory\ - cd qwebhistory\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistory\qwebhistory.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebhistory: qwebhistory\$(MAKEFILE) FORCE - cd qwebhistory\ && $(MAKE) -f $(MAKEFILE) -qwebinspector\$(MAKEFILE): - @$(CHK_DIR_EXISTS) qwebinspector\ $(MKDIR) qwebinspector\ - cd qwebinspector\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebinspector\qwebinspector.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebinspector-qmake_all: FORCE - @$(CHK_DIR_EXISTS) qwebinspector\ $(MKDIR) qwebinspector\ - cd qwebinspector\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\qwebinspector\qwebinspector.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-qwebinspector: qwebinspector\$(MAKEFILE) FORCE - cd qwebinspector\ && $(MAKE) -f $(MAKEFILE) -hybridPixmap\$(MAKEFILE): - @$(CHK_DIR_EXISTS) hybridPixmap\ $(MKDIR) hybridPixmap\ - cd hybridPixmap\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-hybridPixmap-qmake_all: FORCE - @$(CHK_DIR_EXISTS) hybridPixmap\ $(MKDIR) hybridPixmap\ - cd hybridPixmap\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-hybridPixmap: hybridPixmap\$(MAKEFILE) FORCE - cd hybridPixmap\ && $(MAKE) -f $(MAKEFILE) -benchmarks\painting\$(MAKEFILE): - @$(CHK_DIR_EXISTS) benchmarks\painting\ $(MKDIR) benchmarks\painting\ - cd benchmarks\painting\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\painting.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-benchmarks-painting-qmake_all: FORCE - @$(CHK_DIR_EXISTS) benchmarks\painting\ $(MKDIR) benchmarks\painting\ - cd benchmarks\painting\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\painting.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-benchmarks-painting: benchmarks\painting\$(MAKEFILE) FORCE - cd benchmarks\painting\ && $(MAKE) -f $(MAKEFILE) -benchmarks\loading\$(MAKEFILE): - @$(CHK_DIR_EXISTS) benchmarks\loading\ $(MKDIR) benchmarks\loading\ - cd benchmarks\loading\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\loading.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-benchmarks-loading-qmake_all: FORCE - @$(CHK_DIR_EXISTS) benchmarks\loading\ $(MKDIR) benchmarks\loading\ - cd benchmarks\loading\ && $(QMAKE) u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\loading.pro OUTPUT_DIR=U:/yaels-qtwebkit/Release CONFIG+=release CONFIG-=debug -o $(MAKEFILE) -sub-benchmarks-loading: benchmarks\loading\$(MAKEFILE) FORCE - cd benchmarks\loading\ && $(MAKE) -f $(MAKEFILE) - - -sub-qwebframe-check: qwebframe\$(MAKEFILE) - cd qwebframe\ && $(MAKE) check -sub-qwebpage-check: qwebpage\$(MAKEFILE) - cd qwebpage\ && $(MAKE) check -sub-qwebelement-check: qwebelement\$(MAKEFILE) - cd qwebelement\ && $(MAKE) check -sub-qgraphicswebview-check: qgraphicswebview\$(MAKEFILE) - cd qgraphicswebview\ && $(MAKE) check -sub-qwebhistoryinterface-check: qwebhistoryinterface\$(MAKEFILE) - cd qwebhistoryinterface\ && $(MAKE) check -sub-qwebview-check: qwebview\$(MAKEFILE) - cd qwebview\ && $(MAKE) check -sub-qwebhistory-check: qwebhistory\$(MAKEFILE) - cd qwebhistory\ && $(MAKE) check -sub-qwebinspector-check: qwebinspector\$(MAKEFILE) - cd qwebinspector\ && $(MAKE) check -sub-hybridPixmap-check: hybridPixmap\$(MAKEFILE) - cd hybridPixmap\ && $(MAKE) check -sub-benchmarks-painting-check: benchmarks\painting\$(MAKEFILE) - cd benchmarks\painting\ && $(MAKE) check -sub-benchmarks-loading-check: benchmarks\loading\$(MAKEFILE) - cd benchmarks\loading\ && $(MAKE) check -check: sub-qwebframe-check sub-qwebpage-check sub-qwebelement-check sub-qgraphicswebview-check sub-qwebhistoryinterface-check sub-qwebview-check sub-qwebhistory-check sub-qwebinspector-check sub-hybridPixmap-check sub-benchmarks-painting-check sub-benchmarks-loading-check - -sub-qwebframe-sis_target: qwebframe\$(MAKEFILE) - cd qwebframe\ && $(MAKE) sis -sub-qwebpage-sis_target: qwebpage\$(MAKEFILE) - cd qwebpage\ && $(MAKE) sis -sub-qwebelement-sis_target: qwebelement\$(MAKEFILE) - cd qwebelement\ && $(MAKE) sis -sub-qgraphicswebview-sis_target: qgraphicswebview\$(MAKEFILE) - cd qgraphicswebview\ && $(MAKE) sis -sub-qwebhistoryinterface-sis_target: qwebhistoryinterface\$(MAKEFILE) - cd qwebhistoryinterface\ && $(MAKE) sis -sub-qwebview-sis_target: qwebview\$(MAKEFILE) - cd qwebview\ && $(MAKE) sis -sub-qwebhistory-sis_target: qwebhistory\$(MAKEFILE) - cd qwebhistory\ && $(MAKE) sis -sub-qwebinspector-sis_target: qwebinspector\$(MAKEFILE) - cd qwebinspector\ && $(MAKE) sis -sub-hybridPixmap-sis_target: hybridPixmap\$(MAKEFILE) - cd hybridPixmap\ && $(MAKE) sis -sub-benchmarks-painting-sis_target: benchmarks\painting\$(MAKEFILE) - cd benchmarks\painting\ && $(MAKE) sis -sub-benchmarks-loading-sis_target: benchmarks\loading\$(MAKEFILE) - cd benchmarks\loading\ && $(MAKE) sis -sis: sub-qwebframe-sis_target sub-qwebpage-sis_target sub-qwebelement-sis_target sub-qgraphicswebview-sis_target sub-qwebhistoryinterface-sis_target sub-qwebview-sis_target sub-qwebhistory-sis_target sub-qwebinspector-sis_target sub-hybridPixmap-sis_target sub-benchmarks-painting-sis_target sub-benchmarks-loading-sis_target - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all -FORCE: - -dodistclean: - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebpage\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistoryinterface\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebhistory\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\qwebinspector\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\Makefile" dodistclean - -$(MAKE) -f "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\Makefile" dodistclean - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/Makefile --- a/WebKit/qt/tests/benchmarks/loading/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,752 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:46 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/loading.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_loading.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_loading.sis tst_loading.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_loading_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_loading_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_loading_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_loading_template.pkg $(QT_SIS_TARGET) - -tst_loading.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_loading.sis - $(if $(wildcard tst_loading_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_loading_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_loading_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_loading_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_loading.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_loading.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_loading.moc -tst_loading.moc: \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - ..\..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\Api\qwebkitglobal.h \ - ..\..\..\Api\qwebview.h \ - ..\..\..\Api\qwebpage.h \ - ..\..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - u:\epoc32\include\mw\QtGui\qpainter.h \ - tst_loading.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\loading_0xE8afe46b.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\loading_0xE8afe46b.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\tst_loading.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\loading\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/bld.inf --- a/WebKit/qt/tests/benchmarks/loading/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,36 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_loading -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: loading.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_LOADING_F82E39A9 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -loading_0xE8afe46b.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading.moc -OPTION DEPS U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpainter.h U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/loading.pro --- a/WebKit/qt/tests/benchmarks/loading/loading.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../../.. -include(../../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/loading_0xEd1c19c0.mmp --- a/WebKit/qt/tests/benchmarks/loading/loading_0xEd1c19c0.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,106 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:28 -// This file is generated by qmake and should not be modified by the -// user. -// Name : loading.mmp -// ============================================================================== - -TARGET tst_loading.exe -TARGETTYPE EXE - -UID 0x100039CE 0xEd1c19c0 -SECUREID 0xEd1c19c0 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_loading.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_loading_reg.rss -DEPENDS tst_loading.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../.. -SYSTEMINCLUDE ../../../Api -SYSTEMINCLUDE ../../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_loading.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading.cpp --- a/WebKit/qt/tests/benchmarks/loading/tst_loading.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,105 +0,0 @@ -/* - * Copyright (C) 2009 Holger Hans Peter Freyther - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include - -#include -#include -#include - -/** - * Starts an event loop that runs until the given signal is received. - Optionally the event loop - * can return earlier on a timeout. - * - * \return \p true if the requested signal was received - * \p false on timeout - */ -static bool waitForSignal(QObject* obj, const char* signal, int timeout = 0) -{ - QEventLoop loop; - QObject::connect(obj, signal, &loop, SLOT(quit())); - QTimer timer; - QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); - if (timeout > 0) { - QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); - timer.setSingleShot(true); - timer.start(timeout); - } - loop.exec(); - return timeoutSpy.isEmpty(); -} - -class tst_Loading : public QObject -{ - Q_OBJECT - -public: - -public Q_SLOTS: - void init(); - void cleanup(); - -private Q_SLOTS: - void load_data(); - void load(); - -private: - QWebView* m_view; - QWebPage* m_page; -}; - -void tst_Loading::init() -{ - m_view = new QWebView; - m_page = m_view->page(); - - QSize viewportSize(1024, 768); - m_view->setFixedSize(viewportSize); - m_page->setViewportSize(viewportSize); -} - -void tst_Loading::cleanup() -{ - delete m_view; -} - -void tst_Loading::load_data() -{ - QTest::addColumn("url"); - QTest::newRow("amazon") << QUrl("http://www.amazon.com"); - QTest::newRow("kde") << QUrl("http://www.kde.org"); - QTest::newRow("apple") << QUrl("http://www.apple.com"); -} - -void tst_Loading::load() -{ - QFETCH(QUrl, url); - - - QBENCHMARK { - m_view->load(url); - - // really wait for loading, painting is in another test - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - } -} - -QTEST_MAIN(tst_Loading) -#include "tst_loading.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading.loc --- a/WebKit/qt/tests/benchmarks/loading/tst_loading.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_loading" -#define STRING_r_caption "tst_loading" -#else -#define STRING_r_short_caption "tst_loading" -#define STRING_r_caption "tst_loading" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading.rss --- a/WebKit/qt/tests/benchmarks/loading/tst_loading.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading_installer.pkg --- a/WebKit/qt/tests/benchmarks/loading/tst_loading_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading_installer.pkg generated by qmake at 2010-08-16T17:48:46 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_loading installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading.sis" - "c:\private\2002CCCE\import\tst_loading.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading_reg.rss --- a/WebKit/qt/tests/benchmarks/loading/tst_loading_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE8afe46b - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_loading"; - localisable_resource_file="\\resource\\apps\\tst_loading"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading_stub.pkg --- a/WebKit/qt/tests/benchmarks/loading/tst_loading_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading_stub.pkg generated by qmake at 2010-08-16T17:48:46 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_loading"},(0xE8afe46b),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_loading.exe" -"" - "z:\resource\apps\tst_loading.rsc" -"" - "z:\private\10003a3f\import\apps\tst_loading_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/loading/tst_loading_template.pkg --- a/WebKit/qt/tests/benchmarks/loading/tst_loading_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/loading/tst_loading_template.pkg generated by qmake at 2010-08-16T17:48:46 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_loading"},(0xE8afe46b),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_loading.exe" - "!:\sys\bin\tst_loading.exe" -"/epoc32/data/z/resource/apps/tst_loading.rsc" - "!:\resource\apps\tst_loading.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_loading_reg.rsc" - "!:\private\10003a3f\import\apps\tst_loading_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/Makefile --- a/WebKit/qt/tests/benchmarks/painting/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,753 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:45 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/painting.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_painting.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_painting.sis tst_painting.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_painting_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_painting_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_painting_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_painting_template.pkg $(QT_SIS_TARGET) - -tst_painting.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_painting.sis - $(if $(wildcard tst_painting_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_painting_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_painting_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_painting_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_painting.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_painting.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_painting.moc -tst_painting.moc: \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - ..\..\..\Api\qwebelement.h \ - ..\..\..\Api\qwebkitglobal.h \ - ..\..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\Api\qwebview.h \ - ..\..\..\Api\qwebpage.h \ - ..\..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - u:\epoc32\include\mw\QtGui\qpainter.h \ - tst_painting.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\painting_0xE22a015d.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\painting_0xE22a015d.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\tst_painting.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\benchmarks\painting\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/bld.inf --- a/WebKit/qt/tests/benchmarks/painting/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,36 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_painting -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: painting.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_PAINTING_03007FB1 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -painting_0xE22a015d.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting.moc -OPTION DEPS U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpainter.h U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/painting.pro --- a/WebKit/qt/tests/benchmarks/painting/painting.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../../.. -include(../../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/painting_0xE1637e38.mmp --- a/WebKit/qt/tests/benchmarks/painting/painting_0xE1637e38.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,106 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:27 -// This file is generated by qmake and should not be modified by the -// user. -// Name : painting.mmp -// ============================================================================== - -TARGET tst_painting.exe -TARGETTYPE EXE - -UID 0x100039CE 0xE1637e38 -SECUREID 0xE1637e38 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_painting.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_painting_reg.rss -DEPENDS tst_painting.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../.. -SYSTEMINCLUDE ../../../Api -SYSTEMINCLUDE ../../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_painting.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting.cpp --- a/WebKit/qt/tests/benchmarks/painting/tst_painting.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,136 +0,0 @@ -/* - * Copyright (C) 2009 Holger Hans Peter Freyther - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include - -#include -#include -#include -#include - -/** - * Starts an event loop that runs until the given signal is received. - Optionally the event loop - * can return earlier on a timeout. - * - * \return \p true if the requested signal was received - * \p false on timeout - */ -static bool waitForSignal(QObject* obj, const char* signal, int timeout = 0) -{ - QEventLoop loop; - QObject::connect(obj, signal, &loop, SLOT(quit())); - QTimer timer; - QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); - if (timeout > 0) { - QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); - timer.setSingleShot(true); - timer.start(timeout); - } - loop.exec(); - return timeoutSpy.isEmpty(); -} - -class tst_Painting : public QObject -{ - Q_OBJECT - -public: - -public Q_SLOTS: - void init(); - void cleanup(); - -private Q_SLOTS: - void paint_data(); - void paint(); - void textAreas(); - -private: - QWebView* m_view; - QWebPage* m_page; -}; - -void tst_Painting::init() -{ - m_view = new QWebView; - m_page = m_view->page(); - - QSize viewportSize(1024, 768); - m_view->setFixedSize(viewportSize); - m_page->setViewportSize(viewportSize); -} - -void tst_Painting::cleanup() -{ - delete m_view; -} - -void tst_Painting::paint_data() -{ - QTest::addColumn("url"); - QTest::newRow("amazon") << QUrl("http://www.amazon.com"); -} - -void tst_Painting::paint() -{ - QFETCH(QUrl, url); - - m_view->load(url); - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - - /* force a layout */ - QWebFrame* mainFrame = m_page->mainFrame(); - mainFrame->toPlainText(); - - QPixmap pixmap(m_page->viewportSize()); - QBENCHMARK { - QPainter painter(&pixmap); - mainFrame->render(&painter, QRect(QPoint(0, 0), m_page->viewportSize())); - painter.end(); - } -} - -void tst_Painting::textAreas() -{ - m_view->load(QUrl("data:text/html;")); - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - - QWebElement bodyElement = m_page->mainFrame()->findFirstElement("body"); - - int count = 100; - while (count--) { - QString markup(""); - bodyElement.appendInside(markup); - } - - /* force a layout */ - QWebFrame* mainFrame = m_page->mainFrame(); - mainFrame->toPlainText(); - - QPixmap pixmap(mainFrame->contentsSize()); - QBENCHMARK { - QPainter painter(&pixmap); - mainFrame->render(&painter, QRect(QPoint(0, 0), mainFrame->contentsSize())); - painter.end(); - } -} - -QTEST_MAIN(tst_Painting) -#include "tst_painting.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting.loc --- a/WebKit/qt/tests/benchmarks/painting/tst_painting.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_painting" -#define STRING_r_caption "tst_painting" -#else -#define STRING_r_short_caption "tst_painting" -#define STRING_r_caption "tst_painting" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting.rss --- a/WebKit/qt/tests/benchmarks/painting/tst_painting.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting_installer.pkg --- a/WebKit/qt/tests/benchmarks/painting/tst_painting_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting_installer.pkg generated by qmake at 2010-08-16T17:48:45 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_painting installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting.sis" - "c:\private\2002CCCE\import\tst_painting.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting_reg.rss --- a/WebKit/qt/tests/benchmarks/painting/tst_painting_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE22a015d - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_painting"; - localisable_resource_file="\\resource\\apps\\tst_painting"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting_stub.pkg --- a/WebKit/qt/tests/benchmarks/painting/tst_painting_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting_stub.pkg generated by qmake at 2010-08-16T17:48:45 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_painting"},(0xE22a015d),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_painting.exe" -"" - "z:\resource\apps\tst_painting.rsc" -"" - "z:\private\10003a3f\import\apps\tst_painting_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/benchmarks/painting/tst_painting_template.pkg --- a/WebKit/qt/tests/benchmarks/painting/tst_painting_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/benchmarks/painting/tst_painting_template.pkg generated by qmake at 2010-08-16T17:48:45 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_painting"},(0xE22a015d),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_painting.exe" - "!:\sys\bin\tst_painting.exe" -"/epoc32/data/z/resource/apps/tst_painting.rsc" - "!:\resource\apps\tst_painting.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_painting_reg.rsc" - "!:\private\10003a3f\import\apps\tst_painting_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/bld.inf --- a/WebKit/qt/tests/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,63 +0,0 @@ -// ============================================================================ -// * Makefile for building: tests -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: tests.pro -// * Template: subdirs -// ============================================================================ - -#define BLD_INF_TESTS_F94250ED - -#ifndef BLD_INF_QWEBFRAME_FAECE3D7 - #include "qwebframe/bld.inf" -#endif -#ifndef BLD_INF_QWEBPAGE_FB1F8DF8 - #include "qwebpage/bld.inf" -#endif -#ifndef BLD_INF_QWEBELEMENT_F82DA14E - #include "qwebelement/bld.inf" -#endif -#ifndef BLD_INF_QGRAPHICSWEBVIEW_01E4BD5D - #include "qgraphicswebview/bld.inf" -#endif -#ifndef BLD_INF_QWEBHISTORYINTERFACE_FC74806C - #include "qwebhistoryinterface/bld.inf" -#endif -#ifndef BLD_INF_QWEBVIEW_F89D9274 - #include "qwebview/bld.inf" -#endif -#ifndef BLD_INF_QWEBHISTORY_F9AE2BF1 - #include "qwebhistory/bld.inf" -#endif -#ifndef BLD_INF_QWEBINSPECTOR_03701E45 - #include "qwebinspector/bld.inf" -#endif -#ifndef BLD_INF_HYBRIDPIXMAP_FA09CA60 - #include "hybridPixmap/bld.inf" -#endif -#ifndef BLD_INF_PAINTING_03007FB1 - #include "benchmarks/painting/bld.inf" -#endif -#ifndef BLD_INF_LOADING_F82E39A9 - #include "benchmarks/loading/bld.inf" -#endif - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/Makefile --- a/WebKit/qt/tests/hybridPixmap/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1492 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:44 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/hybridPixmap.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/hybridPixmap.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis hybridPixmap.sis hybridPixmap.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard hybridPixmap_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) hybridPixmap_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard hybridPixmap_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o hybridPixmap_template.pkg $(QT_SIS_TARGET) - -hybridPixmap.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: hybridPixmap.sis - $(if $(wildcard hybridPixmap_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) hybridPixmap_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard hybridPixmap_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) hybridPixmap_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call hybridPixmap.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: moc_widget.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_widget.cpp -moc_widget.cpp: u:\epoc32\include\mw\QtGui\QImage \ - u:\epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - \epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - u:\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - u:\epoc32\include\mw\QtGui\QPixmap \ - u:\epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - u:\epoc32\include\mw\QtGui\QWidget \ - u:\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\Api\qwebview.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - u:\epoc32\include\mw\QtCore\qobject.h \ - widget.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\widget.h -o u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\moc_widget.cpp - -compiler_rcc_make_all: qrc_resources.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_resources.cpp -qrc_resources.cpp: resources.qrc \ - test.html - \epoc32\tools\rcc.exe -name resources u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\resources.qrc -o u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\qrc_resources.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_hybridPixmap.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_hybridPixmap.moc -tst_hybridPixmap.moc: ..\util.h \ - u:\epoc32\include\mw\QtCore\QEventLoop \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtTest\QSignalSpy \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\QTimer \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - widget.h \ - u:\epoc32\include\mw\QtGui\QImage \ - u:\epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - u:\epoc32\include\mw\QtGui\QPixmap \ - u:\epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - u:\epoc32\include\mw\QtGui\QWidget \ - u:\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\Api\qwebview.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - u:\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - tst_hybridPixmap.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\tst_hybridPixmap.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\tst_hybridPixmap.moc - -compiler_uic_make_all: ui_widget.h -compiler_uic_clean: - -$(DEL_FILE) ui_widget.h -ui_widget.h: widget.ui \ - widget.h \ - u:\epoc32\include\mw\QtGui\QImage \ - u:\epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - \epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - u:\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - u:\epoc32\include\mw\QtGui\QPixmap \ - u:\epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - u:\epoc32\include\mw\QtGui\QWidget \ - u:\epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\Api\qwebview.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - u:\epoc32\include\mw\QtCore\qobject.h - \epoc32\tools\uic.exe u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\widget.ui -o u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\ui_widget.h - -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_moc_source_clean compiler_uic_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_0xE48421d5.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_0xE48421d5.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\hybridPixmap.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\hybridPixmap\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/bld.inf --- a/WebKit/qt/tests/hybridPixmap/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,51 +0,0 @@ -// ============================================================================ -// * Makefile for building: hybridPixmap -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:44 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: hybridPixmap.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_HYBRIDPIXMAP_FA09CA60 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -hybridPixmap_0xE48421d5.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/moc_widget.cpp -OPTION DEPS U:/epoc32/include/mw/QtGui/QImage U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/QPixmap U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/QWidget U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.h -o u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/moc_widget.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/qrc_resources.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/resources.qrc U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/test.html -OPTION COMMAND /epoc32/tools/rcc.exe -name resources u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/resources.qrc -o u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/qrc_resources.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.moc -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/util.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtTest/QSignalSpy U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/QTimer U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.h U:/epoc32/include/mw/QtGui/QImage U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/QPixmap U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/QWidget U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.moc -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/ui_widget.h -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.ui U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.h U:/epoc32/include/mw/QtGui/QImage U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/QPixmap U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/QWidget U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h -OPTION COMMAND /epoc32/tools/uic.exe u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/widget.ui -o u:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/ui_widget.h -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap.loc --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:44 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "hybridPixmap" -#define STRING_r_caption "hybridPixmap" -#else -#define STRING_r_short_caption "hybridPixmap" -#define STRING_r_caption "hybridPixmap" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap.pro --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -# ------------------------------------------------- -# Project created by QtCreator 2009-12-10T11:25:02 -# ------------------------------------------------- -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -TARGET = hybridPixmap -SOURCES += widget.cpp -HEADERS += widget.h -FORMS += widget.ui -RESOURCES += resources.qrc -CONFIG += console diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap.rss --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:44 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap_0xE649ef44.mmp --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap_0xE649ef44.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:27 -// This file is generated by qmake and should not be modified by the -// user. -// Name : hybridPixmap.mmp -// ============================================================================== - -TARGET hybridPixmap.exe -TARGETTYPE EXE - -UID 0x100039CE 0xE649ef44 -SECUREID 0xE649ef44 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE hybridPixmap.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE hybridPixmap_reg.rss -DEPENDS hybridPixmap.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../../Api -SYSTEMINCLUDE ../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_hybridPixmap.cpp -SOURCE widget.cpp -SOURCE moc_widget.cpp -SOURCE qrc_resources.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap_installer.pkg --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/hybridPixmap_installer.pkg generated by qmake at 2010-08-16T17:48:44 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"hybridPixmap installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/hybridPixmap.sis" - "c:\private\2002CCCE\import\hybridPixmap.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap_reg.rss --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:44 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE48421d5 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="hybridPixmap"; - localisable_resource_file="\\resource\\apps\\hybridPixmap"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap_stub.pkg --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/hybridPixmap_stub.pkg generated by qmake at 2010-08-16T17:48:44 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"hybridPixmap"},(0xE48421d5),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\hybridPixmap.exe" -"" - "z:\resource\apps\hybridPixmap.rsc" -"" - "z:\private\10003a3f\import\apps\hybridPixmap_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/hybridPixmap_template.pkg --- a/WebKit/qt/tests/hybridPixmap/hybridPixmap_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/hybridPixmap/hybridPixmap_template.pkg generated by qmake at 2010-08-16T17:48:44 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"hybridPixmap"},(0xE48421d5),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/hybridPixmap.exe" - "!:\sys\bin\hybridPixmap.exe" -"/epoc32/data/z/resource/apps/hybridPixmap.rsc" - "!:\resource\apps\hybridPixmap.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/hybridPixmap_reg.rsc" - "!:\private\10003a3f\import\apps\hybridPixmap_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/resources.qrc --- a/WebKit/qt/tests/hybridPixmap/resources.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ - - - test.html - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/test.html --- a/WebKit/qt/tests/hybridPixmap/test.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ - - - - - - - - - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp --- a/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,52 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#include "../util.h" - -#include "widget.h" -#include - -class tst_hybridPixmap : public QObject { - Q_OBJECT - -public: - tst_hybridPixmap(QObject* o = 0) : QObject(o) {} - -public slots: - void init() - { - } - - void cleanup() - { - } - -private slots: - void hybridPixmap() - { - Widget widget; - widget.show(); - widget.start(); - waitForSignal(&widget, SIGNAL(testComplete())); - } -}; - -QTEST_MAIN(tst_hybridPixmap) - -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/widget.cpp --- a/WebKit/qt/tests/hybridPixmap/widget.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,119 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#include "widget.h" - -#include "qwebelement.h" -#include "qwebframe.h" -#include "ui_widget.h" -#include -#include - -Widget::Widget(QWidget* parent) : - QWidget(parent), - ui(new Ui::Widget) -{ - ui->setupUi(this); -} - -void Widget::refreshJS() -{ - ui->webView->page()->mainFrame()->addToJavaScriptWindowObject("myWidget", this); -} -void Widget::start() -{ - ui->webView->load(QUrl("qrc:///test.html")); - connect(ui->webView->page()->mainFrame(), SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(refreshJS())); - ui->webView->page()->mainFrame()->addToJavaScriptWindowObject("myWidget", this); -} - -void Widget::completeTest() -{ - QCOMPARE(ui->lbl1->pixmap()->size(), ui->lbl2->size()); - QCOMPARE(ui->lbl3->size(), ui->lbl4->pixmap()->size()); - QCOMPARE(ui->lbl2->size().width(), ui->webView->page()->mainFrame()->findFirstElement("#img1").evaluateJavaScript("this.width").toInt()); - QCOMPARE(ui->lbl3->size().width(), ui->webView->page()->mainFrame()->findFirstElement("#img2").evaluateJavaScript("this.width").toInt()); - emit testComplete(); -} - -void Widget::setPixmap(const QPixmap& p) -{ - ui->lbl1->setPixmap(p); -} -QPixmap Widget::pixmap() const -{ - QPixmap px(ui->lbl3->size()); - { - QPainter p(&px); - ui->lbl3->render(&p); - } - return px; -} -void Widget::setImage(const QImage& img) -{ - ui->lbl4->setPixmap(QPixmap::fromImage(img)); -} - -QImage Widget::image() const -{ - QImage img(ui->lbl2->size(), QImage::Format_ARGB32); - { - QPainter p(&img); - ui->lbl2->render(&p); - } - return img; -} - -Widget::~Widget() -{ - delete ui; -} - -void Widget::changeEvent(QEvent* e) -{ - QWidget::changeEvent(e); - switch (e->type()) { - case QEvent::LanguageChange: - ui->retranslateUi(this); - break; - default: - break; - } -} -void Widget::compare(const QVariant& a, const QVariant& b) -{ - QCOMPARE(a, b); -} - -void Widget::imageSlot(const QImage& img) -{ - QCOMPARE(img.size(), ui->lbl3->size()); - emit pixmapSignal(QPixmap::fromImage(img)); -} - -void Widget::pixmapSlot(const QPixmap& pxm) -{ - QCOMPARE(pxm.size(), ui->lbl2->size()); - emit imageSignal(ui->lbl4->pixmap()->toImage()); -} - -void Widget::randomSlot(const QPixmap& pxm) -{ - QVERIFY(pxm.isNull()); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/widget.h --- a/WebKit/qt/tests/hybridPixmap/widget.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - */ - -#ifndef widget_h -#define widget_h - -#include -#include -#include -#include "qwebview.h" - -typedef QWebView WebView; - -namespace Ui { -class Widget; -} - -class Widget : public QWidget { - Q_OBJECT - Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap) - Q_PROPERTY(QImage image READ image WRITE setImage) - -public: - Widget(QWidget* parent = 0); - ~Widget(); - void setPixmap(const QPixmap&); - QPixmap pixmap() const; - void setImage(const QImage&); - QImage image() const; - -private slots: - void refreshJS(); - -public slots: - void completeTest(); - void start(); - void compare(const QVariant& a, const QVariant& b); - void imageSlot(const QImage&); - void pixmapSlot(const QPixmap&); - void randomSlot(const QPixmap&); - -signals: - void testComplete(); - void imageSignal(const QImage&); - void pixmapSignal(const QPixmap&); - -protected: - void changeEvent(QEvent* e); - -private: - Ui::Widget* ui; -}; - -#endif // widget_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/hybridPixmap/widget.ui --- a/WebKit/qt/tests/hybridPixmap/widget.ui Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,95 +0,0 @@ - - - Widget - - - - 0 - 0 - 600 - 400 - - - - Widget - - - - - - - about:blank - - - - - - - - - - - - - - - - - - 120 - 30 - - - - - 120 - 30 - - - - Image from Qt to HTML - - - - - - - Pixmap from Qt to HTML - - - - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - - - - - WebView - QWidget -
widget.h
-
-
- - -
diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/Makefile --- a/WebKit/qt/tests/qgraphicswebview/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,771 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:41 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/qgraphicswebview.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_qgraphicswebview.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_qgraphicswebview.sis tst_qgraphicswebview.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_qgraphicswebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qgraphicswebview_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_qgraphicswebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_qgraphicswebview_template.pkg $(QT_SIS_TARGET) - -tst_qgraphicswebview.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_qgraphicswebview.sis - $(if $(wildcard tst_qgraphicswebview_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qgraphicswebview_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_qgraphicswebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_qgraphicswebview_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_qgraphicswebview.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: qrc_tst_qgraphicswebview.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_tst_qgraphicswebview.cpp -qrc_tst_qgraphicswebview.cpp: tst_qgraphicswebview.qrc \ - resources\input_types.html - \epoc32\tools\rcc.exe -name tst_qgraphicswebview u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.qrc -o u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\qrc_tst_qgraphicswebview.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_qgraphicswebview.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_qgraphicswebview.moc -tst_qgraphicswebview.moc: ..\util.h \ - u:\epoc32\include\mw\QtCore\QEventLoop \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtTest\QSignalSpy \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\QTimer \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - u:\epoc32\include\mw\QtGui\QGraphicsSceneMouseEvent \ - u:\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - u:\epoc32\include\mw\QtGui\QGraphicsView \ - u:\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\Api\qgraphicswebview.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - tst_qgraphicswebview.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\qgraphicswebview_0xE1078e2a.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\qgraphicswebview_0xE1078e2a.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\tst_qgraphicswebview.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qgraphicswebview\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/bld.inf --- a/WebKit/qt/tests/qgraphicswebview/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_qgraphicswebview -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:41 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: qgraphicswebview.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_QGRAPHICSWEBVIEW_01E4BD5D - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -qgraphicswebview_0xE1078e2a.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/qrc_tst_qgraphicswebview.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.qrc U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/resources/input_types.html -OPTION COMMAND /epoc32/tools/rcc.exe -name tst_qgraphicswebview u:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.qrc -o u:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/qrc_tst_qgraphicswebview.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.moc -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/util.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtTest/QSignalSpy U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/QTimer U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/epoc32/include/mw/QtGui/QGraphicsSceneMouseEvent U:/epoc32/include/mw/QtGui/qgraphicssceneevent.h U:/epoc32/include/mw/QtGui/QGraphicsView U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/qgraphicswebview.pro --- a/WebKit/qt/tests/qgraphicswebview/qgraphicswebview.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/qgraphicswebview_0xEf8779a9.mmp --- a/WebKit/qt/tests/qgraphicswebview/qgraphicswebview_0xEf8779a9.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,107 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:23 -// This file is generated by qmake and should not be modified by the -// user. -// Name : qgraphicswebview.mmp -// ============================================================================== - -TARGET tst_qgraphicswebview.exe -TARGETTYPE EXE - -UID 0x100039CE 0xEf8779a9 -SECUREID 0xEf8779a9 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_qgraphicswebview.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_qgraphicswebview_reg.rss -DEPENDS tst_qgraphicswebview.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../../Api -SYSTEMINCLUDE ../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_qgraphicswebview.cpp -SOURCE qrc_tst_qgraphicswebview.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/resources/input_types.html --- a/WebKit/qt/tests/qgraphicswebview/resources/input_types.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ - -
-
-
-
-
-
" - \ No newline at end of file diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,230 +0,0 @@ -/* - Copyright (C) 2009 Jakub Wieczorek - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include "../util.h" -#include -#include -#include -#include -#include -#include - -class tst_QGraphicsWebView : public QObject -{ - Q_OBJECT - -private slots: - void qgraphicswebview(); - void crashOnViewlessWebPages(); - void microFocusCoordinates(); - void focusInputTypes(); - void crashOnSetScaleBeforeSetUrl(); -}; - -void tst_QGraphicsWebView::qgraphicswebview() -{ - QGraphicsWebView item; - item.url(); - item.title(); - item.icon(); - item.zoomFactor(); - item.history(); - item.settings(); - item.page(); - item.setPage(0); - item.page(); - item.setUrl(QUrl()); - item.setZoomFactor(0); - item.load(QUrl()); - item.setHtml(QString()); - item.setContent(QByteArray()); - item.isModified(); -} - -class WebPage : public QWebPage -{ - Q_OBJECT - -public: - WebPage(QObject* parent = 0): QWebPage(parent) - { - } - - QGraphicsWebView* webView; - -private slots: - // Force a webview deletion during the load. - // It should not cause WebPage to crash due to - // it accessing invalid pageClient pointer. - void aborting() - { - delete webView; - } -}; - -class GraphicsWebView : public QGraphicsWebView -{ - Q_OBJECT - -public: - GraphicsWebView(QGraphicsItem* parent = 0): QGraphicsWebView(parent) - { - } - - void fireMouseClick(QPointF point) { - QGraphicsSceneMouseEvent presEv(QEvent::GraphicsSceneMousePress); - presEv.setPos(point); - presEv.setButton(Qt::LeftButton); - presEv.setButtons(Qt::LeftButton); - QGraphicsSceneMouseEvent relEv(QEvent::GraphicsSceneMouseRelease); - relEv.setPos(point); - relEv.setButton(Qt::LeftButton); - relEv.setButtons(Qt::LeftButton); - QGraphicsWebView::sceneEvent(&presEv); - QGraphicsWebView::sceneEvent(&relEv); - } -}; - -void tst_QGraphicsWebView::crashOnViewlessWebPages() -{ - QGraphicsScene scene; - QGraphicsView view(&scene); - - QGraphicsWebView* webView = new QGraphicsWebView; - WebPage* page = new WebPage; - webView->setPage(page); - page->webView = webView; - scene.addItem(webView); - - view.setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); - view.resize(600, 480); - webView->resize(view.geometry().size()); - - QCoreApplication::processEvents(); - view.show(); - - // Resizing the page will resize and layout the empty "about:blank" - // page, so we first connect the signal afterward. - connect(page->mainFrame(), SIGNAL(initialLayoutCompleted()), page, SLOT(aborting())); - - page->mainFrame()->setHtml(QString("data:text/html," - "" - "" - "" - "")); - - QVERIFY(waitForSignal(page, SIGNAL(loadFinished(bool)))); - delete page; -} - -void tst_QGraphicsWebView::crashOnSetScaleBeforeSetUrl() -{ - QGraphicsWebView* webView = new QGraphicsWebView; - webView->setScale(2.0); - delete webView; -} - -void tst_QGraphicsWebView::microFocusCoordinates() -{ - QWebPage* page = new QWebPage; - QGraphicsWebView* webView = new QGraphicsWebView; - webView->setPage( page ); - QGraphicsView* view = new QGraphicsView; - QGraphicsScene* scene = new QGraphicsScene(view); - view->setScene(scene); - scene->addItem(webView); - view->setGeometry(QRect(0,0,500,500)); - - page->mainFrame()->setHtml("" \ - "
" \ - "" \ - "
" \ - "" \ - ""); - - page->mainFrame()->setFocus(); - - QVariant initialMicroFocus = page->inputMethodQuery(Qt::ImMicroFocus); - QVERIFY(initialMicroFocus.isValid()); - - page->mainFrame()->scroll(0,300); - - QVariant currentMicroFocus = page->inputMethodQuery(Qt::ImMicroFocus); - QVERIFY(currentMicroFocus.isValid()); - - QCOMPARE(initialMicroFocus.toRect().translated(QPoint(0,-300)), currentMicroFocus.toRect()); - - delete view; -} - -void tst_QGraphicsWebView::focusInputTypes() -{ - QWebPage* page = new QWebPage; - GraphicsWebView* webView = new GraphicsWebView; - webView->setPage( page ); - QGraphicsView* view = new QGraphicsView; - QGraphicsScene* scene = new QGraphicsScene(view); - view->setScene(scene); - scene->addItem(webView); - view->setGeometry(QRect(0,0,500,500)); - QCoreApplication::processEvents(); - QUrl url("qrc:///resources/input_types.html"); - page->mainFrame()->load(url); - page->mainFrame()->setFocus(); - - QVERIFY(waitForSignal(page, SIGNAL(loadFinished(bool)))); - - // 'text' type - webView->fireMouseClick(QPointF(20.0, 10.0)); -#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) || defined(Q_OS_SYMBIAN) - QVERIFY(webView->inputMethodHints() & Qt::ImhNoAutoUppercase); - QVERIFY(webView->inputMethodHints() & Qt::ImhNoPredictiveText); -#else - QVERIFY(webView->inputMethodHints() == Qt::ImhNone); -#endif - - // 'password' field - webView->fireMouseClick(QPointF(20.0, 60.0)); - QVERIFY(webView->inputMethodHints() & Qt::ImhHiddenText); - - // 'tel' field - webView->fireMouseClick(QPointF(20.0, 110.0)); - QVERIFY(webView->inputMethodHints() & Qt::ImhDialableCharactersOnly); - - // 'number' field - webView->fireMouseClick(QPointF(20.0, 160.0)); - QVERIFY(webView->inputMethodHints() & Qt::ImhDigitsOnly); - - // 'email' field - webView->fireMouseClick(QPointF(20.0, 210.0)); - QVERIFY(webView->inputMethodHints() & Qt::ImhEmailCharactersOnly); - - // 'url' field - webView->fireMouseClick(QPointF(20.0, 260.0)); - QVERIFY(webView->inputMethodHints() & Qt::ImhUrlCharactersOnly); - - delete webView; - delete view; -} - - - -QTEST_MAIN(tst_QGraphicsWebView) - -#include "tst_qgraphicswebview.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.loc --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:41 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_qgraphicswebview" -#define STRING_r_caption "tst_qgraphicswebview" -#else -#define STRING_r_short_caption "tst_qgraphicswebview" -#define STRING_r_caption "tst_qgraphicswebview" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.qrc --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ - - - resources/input_types.html - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.rss --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:41 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_installer.pkg --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_installer.pkg generated by qmake at 2010-08-16T17:48:41 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qgraphicswebview installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.sis" - "c:\private\2002CCCE\import\tst_qgraphicswebview.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_reg.rss --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:41 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE1078e2a - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_qgraphicswebview"; - localisable_resource_file="\\resource\\apps\\tst_qgraphicswebview"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_stub.pkg --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_stub.pkg generated by qmake at 2010-08-16T17:48:41 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qgraphicswebview"},(0xE1078e2a),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_qgraphicswebview.exe" -"" - "z:\resource\apps\tst_qgraphicswebview.rsc" -"" - "z:\private\10003a3f\import\apps\tst_qgraphicswebview_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_template.pkg --- a/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview_template.pkg generated by qmake at 2010-08-16T17:48:41 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qgraphicswebview"},(0xE1078e2a),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_qgraphicswebview.exe" - "!:\sys\bin\tst_qgraphicswebview.exe" -"/epoc32/data/z/resource/apps/tst_qgraphicswebview.rsc" - "!:\resource\apps\tst_qgraphicswebview.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_qgraphicswebview_reg.rsc" - "!:\private\10003a3f\import\apps\tst_qgraphicswebview_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/Makefile --- a/WebKit/qt/tests/qwebelement/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,764 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:40 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/qwebelement.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_qwebelement.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_qwebelement.sis tst_qwebelement.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_qwebelement_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebelement_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_qwebelement_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_qwebelement_template.pkg $(QT_SIS_TARGET) - -tst_qwebelement.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_qwebelement.sis - $(if $(wildcard tst_qwebelement_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebelement_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_qwebelement_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_qwebelement_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_qwebelement.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: qrc_tst_qwebelement.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_tst_qwebelement.cpp -qrc_tst_qwebelement.cpp: tst_qwebelement.qrc \ - resources\image.png \ - resources\style.css \ - resources\style2.css - \epoc32\tools\rcc.exe -name tst_qwebelement u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.qrc -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\qrc_tst_qwebelement.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_qwebelement.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_qwebelement.moc -tst_qwebelement.moc: \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - ..\..\Api\qwebkitglobal.h \ - u:\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - ..\..\Api\qwebelement.h \ - ..\..\tests\util.h \ - u:\epoc32\include\mw\QtCore\QEventLoop \ - u:\epoc32\include\mw\QtTest\QSignalSpy \ - u:\epoc32\include\mw\QtCore\QTimer \ - tst_qwebelement.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\qwebelement_0xE7575628.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\qwebelement_0xE7575628.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\tst_qwebelement.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebelement\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/bld.inf --- a/WebKit/qt/tests/qwebelement/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_qwebelement -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: qwebelement.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_QWEBELEMENT_F82DA14E - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -qwebelement_0xE7575628.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/qrc_tst_qwebelement.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.qrc U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/resources/image.png U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/resources/style.css U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/resources/style2.css -OPTION COMMAND /epoc32/tools/rcc.exe -name tst_qwebelement u:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.qrc -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/qrc_tst_qwebelement.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.moc -OPTION DEPS U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/epoc32/include/mw/QtGui/qwidget.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h U:/yaels-qtwebkit/WebKit/qt/tests/util.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtTest/QSignalSpy U:/epoc32/include/mw/QtCore/QTimer U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/qwebelement.pro --- a/WebKit/qt/tests/qwebelement/qwebelement.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/qwebelement_0xE9b31275.mmp --- a/WebKit/qt/tests/qwebelement/qwebelement_0xE9b31275.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,107 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:22 -// This file is generated by qmake and should not be modified by the -// user. -// Name : qwebelement.mmp -// ============================================================================== - -TARGET tst_qwebelement.exe -TARGETTYPE EXE - -UID 0x100039CE 0xE9b31275 -SECUREID 0xE9b31275 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_qwebelement.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_qwebelement_reg.rss -DEPENDS tst_qwebelement.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../../Api -SYSTEMINCLUDE ../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_qwebelement.cpp -SOURCE qrc_tst_qwebelement.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/resources/image.png Binary file WebKit/qt/tests/qwebelement/resources/image.png has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/resources/style.css --- a/WebKit/qt/tests/qwebelement/resources/style.css Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#idP {color: black !important} diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/resources/style2.css --- a/WebKit/qt/tests/qwebelement/resources/style2.css Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#idP {color: green ! important} diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement.cpp --- a/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1017 +0,0 @@ -/* - Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - - -#include -#include -#include -#include -#include -#include -#include -//TESTED_CLASS= -//TESTED_FILES= - -class tst_QWebElement : public QObject -{ - Q_OBJECT - -public: - tst_QWebElement(); - virtual ~tst_QWebElement(); - -public slots: - void init(); - void cleanup(); - -private slots: - void textHtml(); - void simpleCollection(); - void attributes(); - void attributesNS(); - void listAttributes(); - void classes(); - void namespaceURI(); - void iteration(); - void nonConstIterator(); - void constIterator(); - void foreachManipulation(); - void emptyCollection(); - void appendCollection(); - void evaluateJavaScript(); - void documentElement(); - void frame(); - void style(); - void computedStyle(); - void appendAndPrepend(); - void insertBeforeAndAfter(); - void remove(); - void clear(); - void replaceWith(); - void encloseWith(); - void encloseContentsWith(); - void nullSelect(); - void firstChildNextSibling(); - void lastChildPreviousSibling(); - void hasSetFocus(); - void render(); - -private: - QWebView* m_view; - QWebPage* m_page; - QWebFrame* m_mainFrame; -}; - -tst_QWebElement::tst_QWebElement() -{ -} - -tst_QWebElement::~tst_QWebElement() -{ -} - -void tst_QWebElement::init() -{ - m_view = new QWebView(); - m_page = m_view->page(); - m_mainFrame = m_page->mainFrame(); -} - -void tst_QWebElement::cleanup() -{ - delete m_view; -} - -void tst_QWebElement::textHtml() -{ - QString html = "

test

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - QVERIFY(!body.isNull()); - - QCOMPARE(body.toPlainText(), QString("test")); - QCOMPARE(body.toPlainText(), m_mainFrame->toPlainText()); - - QCOMPARE(body.toInnerXml(), html); -} - -void tst_QWebElement::simpleCollection() -{ - QString html = "

first para

second para

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - - QWebElementCollection list = body.findAll("p"); - QCOMPARE(list.count(), 2); - QCOMPARE(list.at(0).toPlainText(), QString("first para")); - QCOMPARE(list.at(1).toPlainText(), QString("second para")); -} - -void tst_QWebElement::attributes() -{ - m_mainFrame->setHtml("

Test"); - QWebElement body = m_mainFrame->documentElement(); - - QVERIFY(!body.hasAttribute("title")); - QVERIFY(!body.hasAttributes()); - - body.setAttribute("title", "test title"); - - QVERIFY(body.hasAttributes()); - QVERIFY(body.hasAttribute("title")); - - QCOMPARE(body.attribute("title"), QString("test title")); - - body.removeAttribute("title"); - - QVERIFY(!body.hasAttribute("title")); - QVERIFY(!body.hasAttributes()); - - QCOMPARE(body.attribute("does-not-exist", "testvalue"), QString("testvalue")); -} - -void tst_QWebElement::attributesNS() -{ - QString content = "" - "" - ""; - - m_mainFrame->setContent(content.toUtf8(), "application/xhtml+xml"); - - QWebElement svg = m_mainFrame->findFirstElement("svg"); - QVERIFY(!svg.isNull()); - - QVERIFY(!svg.hasAttributeNS("http://www.w3.org/2000/svg", "foobar")); - QCOMPARE(svg.attributeNS("http://www.w3.org/2000/svg", "foobar", "defaultblah"), QString("defaultblah")); - svg.setAttributeNS("http://www.w3.org/2000/svg", "svg:foobar", "true"); - QVERIFY(svg.hasAttributeNS("http://www.w3.org/2000/svg", "foobar")); - QCOMPARE(svg.attributeNS("http://www.w3.org/2000/svg", "foobar", "defaultblah"), QString("true")); -} - -void tst_QWebElement::listAttributes() -{ - QString content = "" - "" - ""; - - m_mainFrame->setContent(content.toUtf8(), "application/xhtml+xml"); - - QWebElement svg = m_mainFrame->findFirstElement("svg"); - QVERIFY(!svg.isNull()); - - QVERIFY(svg.attributeNames().contains("foo")); - QVERIFY(svg.attributeNames("http://www.w3.org/2000/svg").contains("bar")); - - svg.setAttributeNS("http://www.w3.org/2000/svg", "svg:foobar", "true"); - QVERIFY(svg.attributeNames().contains("foo")); - QStringList attributes = svg.attributeNames("http://www.w3.org/2000/svg"); - QCOMPARE(attributes.size(), 2); - QVERIFY(attributes.contains("bar")); - QVERIFY(attributes.contains("foobar")); -} - -void tst_QWebElement::classes() -{ - m_mainFrame->setHtml("

Test"); - - QWebElement body = m_mainFrame->documentElement(); - QCOMPARE(body.classes().count(), 0); - - QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); - QStringList classes = p.classes(); - QCOMPARE(classes.count(), 4); - QCOMPARE(classes[0], QLatin1String("a")); - QCOMPARE(classes[1], QLatin1String("b")); - QCOMPARE(classes[2], QLatin1String("c")); - QCOMPARE(classes[3], QLatin1String("d")); - QVERIFY(p.hasClass("a")); - QVERIFY(p.hasClass("b")); - QVERIFY(p.hasClass("c")); - QVERIFY(p.hasClass("d")); - QVERIFY(!p.hasClass("e")); - - p.addClass("f"); - QVERIFY(p.hasClass("f")); - p.addClass("a"); - QCOMPARE(p.classes().count(), 5); - QVERIFY(p.hasClass("a")); - QVERIFY(p.hasClass("b")); - QVERIFY(p.hasClass("c")); - QVERIFY(p.hasClass("d")); - - p.toggleClass("a"); - QVERIFY(!p.hasClass("a")); - QVERIFY(p.hasClass("b")); - QVERIFY(p.hasClass("c")); - QVERIFY(p.hasClass("d")); - QVERIFY(p.hasClass("f")); - QCOMPARE(p.classes().count(), 4); - p.toggleClass("f"); - QVERIFY(!p.hasClass("f")); - QCOMPARE(p.classes().count(), 3); - p.toggleClass("a"); - p.toggleClass("f"); - QVERIFY(p.hasClass("a")); - QVERIFY(p.hasClass("f")); - QCOMPARE(p.classes().count(), 5); - - p.removeClass("f"); - QVERIFY(!p.hasClass("f")); - QCOMPARE(p.classes().count(), 4); - p.removeClass("d"); - QVERIFY(!p.hasClass("d")); - QCOMPARE(p.classes().count(), 3); - p.removeClass("not-exist"); - QCOMPARE(p.classes().count(), 3); - p.removeClass("c"); - QVERIFY(!p.hasClass("c")); - QCOMPARE(p.classes().count(), 2); - p.removeClass("b"); - QVERIFY(!p.hasClass("b")); - QCOMPARE(p.classes().count(), 1); - p.removeClass("a"); - QVERIFY(!p.hasClass("a")); - QCOMPARE(p.classes().count(), 0); - p.removeClass("foobar"); - QCOMPARE(p.classes().count(), 0); -} - -void tst_QWebElement::namespaceURI() -{ - QString content = "" - "" - ""; - - m_mainFrame->setContent(content.toUtf8(), "application/xhtml+xml"); - QWebElement body = m_mainFrame->documentElement(); - QCOMPARE(body.namespaceUri(), QLatin1String("http://www.w3.org/1999/xhtml")); - - QWebElement svg = body.findAll("*#foobar").at(0); - QCOMPARE(svg.prefix(), QLatin1String("svg")); - QCOMPARE(svg.localName(), QLatin1String("svg")); - QCOMPARE(svg.tagName(), QLatin1String("svg:svg")); - QCOMPARE(svg.namespaceUri(), QLatin1String("http://www.w3.org/2000/svg")); - -} - -void tst_QWebElement::iteration() -{ - QString html = "

first para

second para

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - - QWebElementCollection paras = body.findAll("p"); - QList referenceList = paras.toList(); - - QList foreachList; - foreach(QWebElement p, paras) { - foreachList.append(p); - } - QVERIFY(foreachList.count() == 2); - QCOMPARE(foreachList.count(), referenceList.count()); - QCOMPARE(foreachList.at(0), referenceList.at(0)); - QCOMPARE(foreachList.at(1), referenceList.at(1)); - - QList forLoopList; - for (int i = 0; i < paras.count(); ++i) { - forLoopList.append(paras.at(i)); - } - QVERIFY(foreachList.count() == 2); - QCOMPARE(foreachList.count(), referenceList.count()); - QCOMPARE(foreachList.at(0), referenceList.at(0)); - QCOMPARE(foreachList.at(1), referenceList.at(1)); - - for (int i = 0; i < paras.count(); ++i) { - QCOMPARE(paras.at(i), paras[i]); - } - - QCOMPARE(paras.at(0), paras.first()); - QCOMPARE(paras.at(1), paras.last()); -} - -void tst_QWebElement::nonConstIterator() -{ - QString html = "

first para

second para

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - QWebElementCollection paras = body.findAll("p"); - - QWebElementCollection::iterator it = paras.begin(); - QCOMPARE(*it, paras.at(0)); - ++it; - (*it).encloseWith("
"); - QCOMPARE(*it, paras.at(1)); - ++it; - QCOMPARE(it, paras.end()); -} - -void tst_QWebElement::constIterator() -{ - QString html = "

first para

second para

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - const QWebElementCollection paras = body.findAll("p"); - - QWebElementCollection::const_iterator it = paras.begin(); - QCOMPARE(*it, paras.at(0)); - ++it; - QCOMPARE(*it, paras.at(1)); - ++it; - QCOMPARE(it, paras.end()); -} - -void tst_QWebElement::foreachManipulation() -{ - QString html = "

first para

second para

"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - - foreach(QWebElement p, body.findAll("p")) { - p.setInnerXml("
foo
bar
"); - } - - QCOMPARE(body.findAll("div").count(), 4); -} - -void tst_QWebElement::emptyCollection() -{ - QWebElementCollection emptyCollection; - QCOMPARE(emptyCollection.count(), 0); -} - -void tst_QWebElement::appendCollection() -{ - QString html = "aaa

first para

foo
" - "bbb

second para

bar
"; - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement(); - - QWebElementCollection collection = body.findAll("p"); - QCOMPARE(collection.count(), 2); - - collection.append(body.findAll("div")); - QCOMPARE(collection.count(), 4); - - collection += body.findAll("span.a"); - QCOMPARE(collection.count(), 5); - - QWebElementCollection all = collection + body.findAll("span.b"); - QCOMPARE(all.count(), 6); - QCOMPARE(collection.count(), 5); - - all += collection; - QCOMPARE(all.count(), 11); - - QCOMPARE(collection.count(), 5); - QWebElementCollection test; - test.append(collection); - QCOMPARE(test.count(), 5); - test.append(QWebElementCollection()); - QCOMPARE(test.count(), 5); -} - -void tst_QWebElement::evaluateJavaScript() -{ - QVariant result; - m_mainFrame->setHtml("

test"); - QWebElement para = m_mainFrame->findFirstElement("p"); - - result = para.evaluateJavaScript("this.tagName"); - QVERIFY(result.isValid()); - QVERIFY(result.type() == QVariant::String); - QCOMPARE(result.toString(), QLatin1String("P")); - - result = para.evaluateJavaScript("this.hasAttributes()"); - QVERIFY(result.isValid()); - QVERIFY(result.type() == QVariant::Bool); - QVERIFY(!result.toBool()); - - para.evaluateJavaScript("this.setAttribute('align', 'left');"); - QCOMPARE(para.attribute("align"), QLatin1String("left")); - - result = para.evaluateJavaScript("this.hasAttributes()"); - QVERIFY(result.isValid()); - QVERIFY(result.type() == QVariant::Bool); - QVERIFY(result.toBool()); -} - -void tst_QWebElement::documentElement() -{ - m_mainFrame->setHtml("

Test"); - - QWebElement para = m_mainFrame->documentElement().findAll("p").at(0); - QVERIFY(para.parent().parent() == m_mainFrame->documentElement()); - QVERIFY(para.document() == m_mainFrame->documentElement()); -} - -void tst_QWebElement::frame() -{ - m_mainFrame->setHtml("

test"); - - QWebElement doc = m_mainFrame->documentElement(); - QVERIFY(doc.webFrame() == m_mainFrame); - - m_view->setHtml(QString("data:text/html,frame1\">" - "frame2\">"), QUrl()); - - waitForSignal(m_page, SIGNAL(loadFinished(bool))); - - QCOMPARE(m_mainFrame->childFrames().count(), 2); - - QWebFrame* firstFrame = m_mainFrame->childFrames().at(0); - QWebFrame* secondFrame = m_mainFrame->childFrames().at(1); - - QCOMPARE(firstFrame->toPlainText(), QString("frame1")); - QCOMPARE(secondFrame->toPlainText(), QString("frame2")); - - QWebElement firstPara = firstFrame->documentElement().findAll("p").at(0); - QWebElement secondPara = secondFrame->documentElement().findAll("p").at(0); - - QVERIFY(firstPara.webFrame() == firstFrame); - QVERIFY(secondPara.webFrame() == secondFrame); -} - -void tst_QWebElement::style() -{ - QString html = "" - "" - "" - "" - "

some text

" - ""; - - m_mainFrame->setHtml(html); - - QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("blue")); - QVERIFY(p.styleProperty("cursor", QWebElement::InlineStyle).isEmpty()); - - p.setStyleProperty("color", "red"); - p.setStyleProperty("cursor", "auto"); - - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("red")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("yellow")); - QCOMPARE(p.styleProperty("cursor", QWebElement::InlineStyle), QLatin1String("auto")); - - p.setStyleProperty("color", "green !important"); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("green")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("green")); - - p.setStyleProperty("color", "blue"); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("green")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("green")); - - p.setStyleProperty("color", "blue !important"); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("blue")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("blue")); - - QString html2 = "" - "" - "" - "" - "

some text

" - ""; - - m_mainFrame->setHtml(html2); - p = m_mainFrame->documentElement().findAll("p").at(0); - - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("blue")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("blue")); - - QString html3 = "" - "" - "" - "" - "

some text

" - ""; - - m_mainFrame->setHtml(html3); - p = m_mainFrame->documentElement().findAll("p").at(0); - - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("blue")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("blue")); - - QString html5 = "" - "" - "" - "" - "

some text

" - ""; - - m_mainFrame->setHtml(html5); - p = m_mainFrame->documentElement().findAll("p").at(0); - - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("red")); - - QString html6 = "" - "" - "" - "" - "" - "

some text

" - ""; - - // in few seconds, the CSS should be completey loaded - m_mainFrame->setHtml(html6); - waitForSignal(m_page, SIGNAL(loadFinished(bool)), 200); - - p = m_mainFrame->documentElement().findAll("p").at(0); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("blue")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("black")); - - QString html7 = "" - "" - "" - "" - "" - "

some text

" - ""; - - // in few seconds, the style should be completey loaded - m_mainFrame->setHtml(html7); - waitForSignal(m_page, SIGNAL(loadFinished(bool)), 200); - - p = m_mainFrame->documentElement().findAll("p").at(0); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("black")); - - QString html8 = "

some text

"; - - m_mainFrame->setHtml(html8); - p = m_mainFrame->documentElement().findAll("p").at(0); - - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("")); - QCOMPARE(p.styleProperty("color", QWebElement::CascadedStyle), QLatin1String("")); -} - -void tst_QWebElement::computedStyle() -{ - QString html = "

some text

"; - m_mainFrame->setHtml(html); - - QWebElement p = m_mainFrame->documentElement().findAll("p").at(0); - QCOMPARE(p.styleProperty("cursor", QWebElement::ComputedStyle), QLatin1String("auto")); - QVERIFY(!p.styleProperty("cursor", QWebElement::ComputedStyle).isEmpty()); - QVERIFY(p.styleProperty("cursor", QWebElement::InlineStyle).isEmpty()); - - p.setStyleProperty("cursor", "text"); - p.setStyleProperty("color", "red"); - - QCOMPARE(p.styleProperty("cursor", QWebElement::ComputedStyle), QLatin1String("text")); - QCOMPARE(p.styleProperty("color", QWebElement::ComputedStyle), QLatin1String("rgb(255, 0, 0)")); - QCOMPARE(p.styleProperty("color", QWebElement::InlineStyle), QLatin1String("red")); -} - -void tst_QWebElement::appendAndPrepend() -{ - QString html = "" - "

" - "foo" - "

" - "

" - "bar" - "

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - QCOMPARE(body.findAll("p").count(), 2); - body.appendInside(body.findFirst("p")); - QCOMPARE(body.findAll("p").count(), 2); - QCOMPARE(body.findFirst("p").toPlainText(), QString("bar")); - QCOMPARE(body.findAll("p").last().toPlainText(), QString("foo")); - - body.appendInside(body.findFirst("p").clone()); - QCOMPARE(body.findAll("p").count(), 3); - QCOMPARE(body.findFirst("p").toPlainText(), QString("bar")); - QCOMPARE(body.findAll("p").last().toPlainText(), QString("bar")); - - body.prependInside(body.findAll("p").at(1).clone()); - QCOMPARE(body.findAll("p").count(), 4); - QCOMPARE(body.findFirst("p").toPlainText(), QString("foo")); - - body.findFirst("p").appendInside("
booyakasha
"); - QCOMPARE(body.findAll("p div").count(), 1); - QCOMPARE(body.findFirst("p div").toPlainText(), QString("booyakasha")); - - body.findFirst("div").prependInside("yepp"); - QCOMPARE(body.findAll("p div code").count(), 1); - QCOMPARE(body.findFirst("p div code").toPlainText(), QString("yepp")); -} - -void tst_QWebElement::insertBeforeAndAfter() -{ - QString html = "" - "

" - "foo" - "

" - "
" - "yeah" - "
" - "

" - "bar" - "

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - QWebElement div = body.findFirst("div"); - - QCOMPARE(body.findAll("p").count(), 2); - QCOMPARE(body.findAll("div").count(), 1); - - div.prependOutside(body.findAll("p").last().clone()); - QCOMPARE(body.findAll("p").count(), 3); - QCOMPARE(body.findAll("p").at(0).toPlainText(), QString("foo")); - QCOMPARE(body.findAll("p").at(1).toPlainText(), QString("bar")); - QCOMPARE(body.findAll("p").at(2).toPlainText(), QString("bar")); - - div.appendOutside(body.findFirst("p").clone()); - QCOMPARE(body.findAll("p").count(), 4); - QCOMPARE(body.findAll("p").at(0).toPlainText(), QString("foo")); - QCOMPARE(body.findAll("p").at(1).toPlainText(), QString("bar")); - QCOMPARE(body.findAll("p").at(2).toPlainText(), QString("foo")); - QCOMPARE(body.findAll("p").at(3).toPlainText(), QString("bar")); - - div.prependOutside("hey"); - QCOMPARE(body.findAll("span").count(), 1); - - div.appendOutside("there"); - QCOMPARE(body.findAll("span").count(), 2); - QCOMPARE(body.findAll("span").at(0).toPlainText(), QString("hey")); - QCOMPARE(body.findAll("span").at(1).toPlainText(), QString("there")); -} - -void tst_QWebElement::remove() -{ - QString html = "" - "

" - "foo" - "

" - "
" - "

yeah

" - "
" - "

" - "bar" - "

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("p").count(), 3); - - QWebElement div = body.findFirst("div"); - div.takeFromDocument(); - - QCOMPARE(div.isNull(), false); - QCOMPARE(body.findAll("div").count(), 0); - QCOMPARE(body.findAll("p").count(), 2); - - body.appendInside(div); - - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("p").count(), 3); -} - -void tst_QWebElement::clear() -{ - QString html = "" - "

" - "foo" - "

" - "
" - "

yeah

" - "
" - "

" - "bar" - "

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("p").count(), 3); - body.findFirst("div").removeAllChildren(); - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("p").count(), 2); -} - - -void tst_QWebElement::replaceWith() -{ - QString html = "" - "

" - "foo" - "

" - "
" - "yeah" - "
" - "

" - "haba" - "

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("span").count(), 1); - body.findFirst("div").replace(body.findFirst("span").clone()); - QCOMPARE(body.findAll("div").count(), 0); - QCOMPARE(body.findAll("span").count(), 2); - QCOMPARE(body.findAll("p").count(), 2); - - body.findFirst("span").replace("

wow

"); - QCOMPARE(body.findAll("p").count(), 3); - QCOMPARE(body.findAll("p code").count(), 1); - QCOMPARE(body.findFirst("p code").toPlainText(), QString("wow")); -} - -void tst_QWebElement::encloseContentsWith() -{ - QString html = "" - "
" - "" - "yeah" - "" - "" - "hello" - "" - "
" - "

" - "foo" - "bar" - "

" - "" - "" - "hey" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - body.findFirst("p").encloseContentsWith(body.findFirst("b")); - QCOMPARE(body.findAll("p b span").count(), 2); - QCOMPARE(body.findFirst("p b span").toPlainText(), QString("foo")); - - body.findFirst("u").encloseContentsWith(""); - QCOMPARE(body.findAll("u i").count(), 1); - QCOMPARE(body.findFirst("u i").toPlainText(), QString()); - - body.findFirst("div").encloseContentsWith(""); - QCOMPARE(body.findAll("div span i").count(), 2); - QCOMPARE(body.findFirst("div span i").toPlainText(), QString("yeah")); - - QString snippet = "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "
"; - - body.findFirst("em").encloseContentsWith(snippet); - QCOMPARE(body.findFirst("em table tbody tr td").toPlainText(), QString("hey")); -} - -void tst_QWebElement::encloseWith() -{ - QString html = "" - "

" - "foo" - "

" - "
" - "yeah" - "
" - "

" - "bar" - "

" - "hey" - "

hello

" - ""; - - m_mainFrame->setHtml(html); - QWebElement body = m_mainFrame->documentElement().findFirst("body"); - - body.findFirst("p").encloseWith("
"); - QCOMPARE(body.findAll("br").count(), 0); - - QCOMPARE(body.findAll("div").count(), 1); - body.findFirst("div").encloseWith(body.findFirst("span").clone()); - QCOMPARE(body.findAll("div").count(), 1); - QCOMPARE(body.findAll("span").count(), 2); - QCOMPARE(body.findAll("p").count(), 2); - - body.findFirst("div").encloseWith(""); - QCOMPARE(body.findAll("code").count(), 1); - QCOMPARE(body.findAll("code div").count(), 1); - QCOMPARE(body.findFirst("code div").toPlainText(), QString("yeah")); - - QString snippet = "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "
"; - - body.findFirst("em").encloseWith(snippet); - QCOMPARE(body.findFirst("table tbody tr td em").toPlainText(), QString("hey")); -} - -void tst_QWebElement::nullSelect() -{ - m_mainFrame->setHtml("

Test"); - - QWebElementCollection collection = m_mainFrame->findAllElements("invalid{syn(tax;;%#$f223e>>"); - QVERIFY(collection.count() == 0); -} - -void tst_QWebElement::firstChildNextSibling() -{ - m_mainFrame->setHtml("

Test

"); - - QWebElement body = m_mainFrame->findFirstElement("body"); - QVERIFY(!body.isNull()); - QWebElement p = body.firstChild(); - QVERIFY(!p.isNull()); - QCOMPARE(p.tagName(), QString("P")); - QWebElement table = p.nextSibling(); - QVERIFY(!table.isNull()); - QCOMPARE(table.tagName(), QString("TABLE")); - QVERIFY(table.nextSibling().isNull()); -} - -void tst_QWebElement::lastChildPreviousSibling() -{ - m_mainFrame->setHtml("

Test

"); - - QWebElement body = m_mainFrame->findFirstElement("body"); - QVERIFY(!body.isNull()); - QWebElement table = body.lastChild(); - QVERIFY(!table.isNull()); - QCOMPARE(table.tagName(), QString("TABLE")); - QWebElement p = table.previousSibling(); - QVERIFY(!p.isNull()); - QCOMPARE(p.tagName(), QString("P")); - QVERIFY(p.previousSibling().isNull()); -} - -void tst_QWebElement::hasSetFocus() -{ - m_mainFrame->setHtml("" \ - "" \ - "
"\ - "" \ - ""); - - QWebElementCollection inputs = m_mainFrame->documentElement().findAll("input"); - QWebElement input1 = inputs.at(0); - input1.setFocus(); - QVERIFY(input1.hasFocus()); - - QWebElement input2 = inputs.at(1); - input2.setFocus(); - QVERIFY(!input1.hasFocus()); - QVERIFY(input2.hasFocus()); -} - -void tst_QWebElement::render() -{ - QString html( "" - "" - "
" - "" - "" - "" - "" - "
test" - "" - "
" - "" - "" - ); - - QWebPage page; - QSignalSpy loadSpy(&page, SIGNAL(loadFinished(bool))); - page.mainFrame()->setHtml(html); - - waitForSignal(&page, SIGNAL(loadFinished(bool))); - QCOMPARE(loadSpy.count(), 1); - - QSize size = page.mainFrame()->contentsSize(); - page.setViewportSize(size); - - QWebElementCollection imgs = page.mainFrame()->findAllElements("img"); - QCOMPARE(imgs.count(), 1); - - QImage resource(":/image.png"); - QRect imageRect(0, 0, resource.width(), resource.height()); - - QImage testImage(resource.width(), resource.height(), QImage::Format_ARGB32); - QPainter painter0(&testImage); - painter0.fillRect(imageRect, Qt::white); - // render() uses pixmaps internally, and pixmaps might have bit depths - // other than 32, giving different pixel values due to rounding. - QPixmap pix = QPixmap::fromImage(resource); - painter0.drawPixmap(0, 0, pix); - painter0.end(); - - QImage image1(resource.width(), resource.height(), QImage::Format_ARGB32); - QPainter painter1(&image1); - painter1.fillRect(imageRect, Qt::white); - imgs[0].render(&painter1); - painter1.end(); - - QVERIFY(image1 == testImage); - - // render image 2nd time to make sure that cached rendering works fine - QImage image2(resource.width(), resource.height(), QImage::Format_ARGB32); - QPainter painter2(&image2); - painter2.fillRect(imageRect, Qt::white); - imgs[0].render(&painter2); - painter2.end(); - - QVERIFY(image2 == testImage); - - // compare table rendered through QWebElement::render to whole page table rendering - QRect tableRect(0, 0, 300, 300); - QWebElementCollection tables = page.mainFrame()->findAllElements("table"); - QCOMPARE(tables.count(), 1); - - QImage image3(300, 300, QImage::Format_ARGB32); - QPainter painter3(&image3); - painter3.fillRect(tableRect, Qt::white); - tables[0].render(&painter3); - painter3.end(); - - QImage image4(300, 300, QImage::Format_ARGB32); - QPainter painter4(&image4); - page.mainFrame()->render(&painter4, tableRect); - painter4.end(); - - QVERIFY(image3 == image4); -} - -QTEST_MAIN(tst_QWebElement) -#include "tst_qwebelement.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement.loc --- a/WebKit/qt/tests/qwebelement/tst_qwebelement.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_qwebelement" -#define STRING_r_caption "tst_qwebelement" -#else -#define STRING_r_short_caption "tst_qwebelement" -#define STRING_r_caption "tst_qwebelement" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement.qrc --- a/WebKit/qt/tests/qwebelement/tst_qwebelement.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,7 +0,0 @@ - - -resources/style.css -resources/style2.css -resources/image.png - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement.rss --- a/WebKit/qt/tests/qwebelement/tst_qwebelement.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement_installer.pkg --- a/WebKit/qt/tests/qwebelement/tst_qwebelement_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement_installer.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebelement installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement.sis" - "c:\private\2002CCCE\import\tst_qwebelement.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement_reg.rss --- a/WebKit/qt/tests/qwebelement/tst_qwebelement_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE7575628 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_qwebelement"; - localisable_resource_file="\\resource\\apps\\tst_qwebelement"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement_stub.pkg --- a/WebKit/qt/tests/qwebelement/tst_qwebelement_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement_stub.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebelement"},(0xE7575628),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_qwebelement.exe" -"" - "z:\resource\apps\tst_qwebelement.rsc" -"" - "z:\private\10003a3f\import\apps\tst_qwebelement_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebelement/tst_qwebelement_template.pkg --- a/WebKit/qt/tests/qwebelement/tst_qwebelement_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebelement/tst_qwebelement_template.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebelement"},(0xE7575628),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_qwebelement.exe" - "!:\sys\bin\tst_qwebelement.exe" -"/epoc32/data/z/resource/apps/tst_qwebelement.rsc" - "!:\resource\apps\tst_qwebelement.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_qwebelement_reg.rsc" - "!:\private\10003a3f\import\apps\tst_qwebelement_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/Makefile --- a/WebKit/qt/tests/qwebframe/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,809 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:39 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/qwebframe.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_qwebframe.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_qwebframe.sis tst_qwebframe.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_qwebframe_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebframe_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_qwebframe_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_qwebframe_template.pkg $(QT_SIS_TARGET) - -tst_qwebframe.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_qwebframe.sis - $(if $(wildcard tst_qwebframe_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebframe_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_qwebframe_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_qwebframe_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_qwebframe.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: qrc_tst_qwebframe.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_tst_qwebframe.cpp -qrc_tst_qwebframe.cpp: tst_qwebframe.qrc \ - resources\testiframe.html \ - resources\image.png \ - resources\testiframe2.html \ - resources\test2.html \ - resources\style.css \ - resources\test1.html - \epoc32\tools\rcc.exe -name tst_qwebframe u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.qrc -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\qrc_tst_qwebframe.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_qwebframe.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_qwebframe.moc -tst_qwebframe.moc: \epoc32\include\mw\QtTest\QtTest \ - \epoc32\include\mw\QtCore\QtCore \ - u:\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - u:\epoc32\include\mw\QtCore\quuid.h \ - u:\epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\mw\QtCore\qbitarray.h \ - u:\epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - u:\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qchar.h \ - u:\epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qcontiguouscache.h \ - u:\epoc32\include\mw\QtCore\qcryptographichash.h \ - u:\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - u:\epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qelapsedtimer.h \ - u:\epoc32\include\mw\QtCore\qhash.h \ - u:\epoc32\include\mw\QtCore\qiterator.h \ - u:\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qlinkedlist.h \ - u:\epoc32\include\mw\QtCore\qlist.h \ - u:\epoc32\include\mw\QtCore\qlocale.h \ - u:\epoc32\include\mw\QtCore\qmap.h \ - u:\epoc32\include\mw\QtCore\qmargins.h \ - u:\epoc32\include\mw\QtCore\qpair.h \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - u:\epoc32\include\mw\QtCore\qqueue.h \ - u:\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qregexp.h \ - u:\epoc32\include\mw\QtCore\qscopedpointer.h \ - u:\epoc32\include\mw\QtCore\qset.h \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - u:\epoc32\include\mw\QtCore\qsharedpointer.h \ - u:\epoc32\include\mw\QtCore\qsize.h \ - u:\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - u:\epoc32\include\mw\QtCore\qstring.h \ - u:\epoc32\include\mw\QtCore\qstringbuilder.h \ - u:\epoc32\include\mw\QtCore\qstringlist.h \ - u:\epoc32\include\mw\QtCore\qstringmatcher.h \ - u:\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - u:\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - u:\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - u:\epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\mw\QtCore\qxmlstream.h \ - u:\epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - u:\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - u:\epoc32\include\mw\QtCore\qhistorystate.h \ - u:\epoc32\include\mw\QtCore\qsignaltransition.h \ - u:\epoc32\include\mw\QtCore\qstate.h \ - u:\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qfutureinterface.h \ - u:\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - u:\epoc32\include\mw\QtCore\qfuturewatcher.h \ - u:\epoc32\include\mw\QtCore\qrunnable.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - u:\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - u:\epoc32\include\mw\QtCore\qthreadpool.h \ - u:\epoc32\include\mw\QtCore\qtextcodec.h \ - u:\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - u:\epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - u:\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qpauseanimation.h \ - u:\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - u:\epoc32\include\mw\QtCore\qvariantanimation.h \ - u:\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qbuffer.h \ - u:\epoc32\include\mw\QtCore\qdatastream.h \ - u:\epoc32\include\mw\QtCore\qdebug.h \ - u:\epoc32\include\mw\QtCore\qdir.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - u:\epoc32\include\mw\QtCore\qfile.h \ - u:\epoc32\include\mw\QtCore\qfileinfo.h \ - u:\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - u:\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - u:\epoc32\include\mw\QtCore\qiodevice.h \ - u:\epoc32\include\mw\QtCore\qprocess.h \ - u:\epoc32\include\mw\QtCore\qresource.h \ - u:\epoc32\include\mw\QtCore\qsettings.h \ - u:\epoc32\include\mw\QtCore\qtemporaryfile.h \ - u:\epoc32\include\mw\QtCore\qtextstream.h \ - u:\epoc32\include\mw\QtCore\qurl.h \ - u:\epoc32\include\mw\QtCore\qatomic.h \ - u:\epoc32\include\mw\QtCore\qbasicatomic.h \ - u:\epoc32\include\mw\QtCore\qmutex.h \ - u:\epoc32\include\mw\QtCore\qreadwritelock.h \ - u:\epoc32\include\mw\QtCore\qsemaphore.h \ - u:\epoc32\include\mw\QtCore\qthread.h \ - u:\epoc32\include\mw\QtCore\qthreadstorage.h \ - u:\epoc32\include\mw\QtCore\qwaitcondition.h \ - u:\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - u:\epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qcoreapplication.h \ - u:\epoc32\include\mw\QtCore\qcoreevent.h \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtCore\qmath.h \ - u:\epoc32\include\e32math.h \ - u:\epoc32\include\e32math.inl \ - u:\epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\qmetatype.h \ - u:\epoc32\include\mw\QtCore\qmimedata.h \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - u:\epoc32\include\mw\QtCore\qobjectdefs.h \ - u:\epoc32\include\mw\QtCore\qpointer.h \ - u:\epoc32\include\mw\QtCore\qsharedmemory.h \ - u:\epoc32\include\mw\QtCore\qsignalmapper.h \ - u:\epoc32\include\mw\QtCore\qsocketnotifier.h \ - u:\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtCore\qtranslator.h \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qendian.h \ - u:\epoc32\include\mw\QtCore\qfeatures.h \ - u:\epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - u:\epoc32\include\mw\QtCore\qnamespace.h \ - u:\epoc32\include\mw\QtCore\qnumeric.h \ - u:\epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - u:\epoc32\include\mw\QtTest\qtestassert.h \ - u:\epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestcase.h \ - u:\epoc32\include\mw\QtTest\qtestcoreelement.h \ - \epoc32\include\mw\QtTest\qtestcorelist.h \ - \epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtestcorelist.h \ - u:\epoc32\include\mw\QtTest\qtestdata.h \ - u:\epoc32\include\mw\QtTest\qtestelement.h \ - \epoc32\include\mw\QtTest\qtestcoreelement.h \ - u:\epoc32\include\mw\QtTest\qtestelementattribute.h \ - u:\epoc32\include\mw\QtTest\qtesteventloop.h \ - u:\epoc32\include\mw\QtTest\qtestfilelogger.h \ - u:\epoc32\include\mw\QtTest\qtestlightxmlstreamer.h \ - \epoc32\include\mw\QtTest\qtestbasicstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestsystem.h \ - u:\epoc32\include\mw\QtTest\qtestxmlstreamer.h \ - u:\epoc32\include\mw\QtTest\qtestxunitstreamer.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebelement.h \ - u:\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - ..\..\Api\qwebhistory.h \ - u:\epoc32\include\mw\QtGui\QAbstractItemView \ - u:\epoc32\include\mw\QtGui\qabstractitemview.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - \epoc32\include\mw\QtGui\qitemselectionmodel.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - u:\epoc32\include\mw\QtGui\QApplication \ - u:\epoc32\include\mw\QtGui\qapplication.h \ - u:\epoc32\include\mw\QtGui\QComboBox \ - u:\epoc32\include\mw\QtGui\qcombobox.h \ - u:\epoc32\include\mw\QtGui\QPicture \ - u:\epoc32\include\mw\QtGui\qpicture.h \ - u:\epoc32\include\mw\QtCore\QRegExp \ - u:\epoc32\include\mw\QtNetwork\QNetworkRequest \ - u:\epoc32\include\mw\QtNetwork\qnetworkrequest.h \ - \epoc32\include\mw\QtCore\QSharedDataPointer \ - \epoc32\include\mw\QtCore\QString \ - \epoc32\include\mw\QtCore\QUrl \ - \epoc32\include\mw\QtCore\QVariant \ - u:\epoc32\include\mw\QtNetwork\QNetworkReply \ - u:\epoc32\include\mw\QtNetwork\qnetworkreply.h \ - \epoc32\include\mw\QtCore\QIODevice \ - \epoc32\include\mw\QtNetwork\QNetworkRequest \ - \epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - u:\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - u:\epoc32\include\mw\QtNetwork\qsslerror.h \ - \epoc32\include\mw\QtNetwork\qsslcertificate.h \ - \epoc32\include\mw\QtCore\qcryptographichash.h \ - \epoc32\include\mw\QtNetwork\qssl.h \ - ..\util.h \ - u:\epoc32\include\mw\QtCore\QEventLoop \ - u:\epoc32\include\mw\QtTest\QSignalSpy \ - u:\epoc32\include\mw\QtCore\QTimer \ - ..\..\WebCoreSupport\DumpRenderTreeSupportQt.h \ - u:\epoc32\include\mw\QtCore\QVariant \ - tst_qwebframe.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\qwebframe_0xE87d2299.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\qwebframe_0xE87d2299.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\tst_qwebframe.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebframe\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/bld.inf --- a/WebKit/qt/tests/qwebframe/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_qwebframe -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:39 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: qwebframe.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_QWEBFRAME_FAECE3D7 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -qwebframe_0xE87d2299.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/qrc_tst_qwebframe.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.qrc U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/testiframe.html U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/image.png U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/testiframe2.html U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/test2.html U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/style.css U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/resources/test1.html -OPTION COMMAND /epoc32/tools/rcc.exe -name tst_qwebframe u:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.qrc -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/qrc_tst_qwebframe.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.moc -OPTION DEPS U:/epoc32/include/mw/QtTest/QtTest U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtestcorelist.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qtestelement.h U:/epoc32/include/mw/QtTest/qtestcoreelement.h U:/epoc32/include/mw/QtTest/qtestelementattribute.h U:/epoc32/include/mw/QtTest/qtesteventloop.h U:/epoc32/include/mw/QtTest/qtestfilelogger.h U:/epoc32/include/mw/QtTest/qtestlightxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestbasicstreamer.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtTest/qtestxmlstreamer.h U:/epoc32/include/mw/QtTest/qtestxunitstreamer.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h U:/epoc32/include/mw/QtGui/qwidget.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistory.h U:/epoc32/include/mw/QtGui/QAbstractItemView U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/QApplication U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/QComboBox U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/QPicture U:/epoc32/include/mw/QtGui/qpicture.h U:/epoc32/include/mw/QtCore/QRegExp U:/epoc32/include/mw/QtNetwork/QNetworkRequest U:/epoc32/include/mw/QtNetwork/qnetworkrequest.h U:/epoc32/include/mw/QtCore/QSharedDataPointer U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/QUrl U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtNetwork/QNetworkReply U:/epoc32/include/mw/QtNetwork/qnetworkreply.h U:/epoc32/include/mw/QtCore/QIODevice U:/epoc32/include/mw/QtNetwork/QNetworkRequest U:/epoc32/include/mw/QtNetwork/QNetworkAccessManager U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtNetwork/qsslerror.h U:/epoc32/include/mw/QtNetwork/qsslcertificate.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtNetwork/qssl.h U:/yaels-qtwebkit/WebKit/qt/tests/util.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtTest/QSignalSpy U:/epoc32/include/mw/QtCore/QTimer U:/yaels-qtwebkit/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h U:/epoc32/include/mw/QtCore/QVariant U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebframe" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebframe/tst_qwebframe.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/qwebframe.pro --- a/WebKit/qt/tests/qwebframe/qwebframe.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/qwebframe_0xEa3ce0ab.mmp --- a/WebKit/qt/tests/qwebframe/qwebframe_0xEa3ce0ab.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,107 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:21 -// This file is generated by qmake and should not be modified by the -// user. -// Name : qwebframe.mmp -// ============================================================================== - -TARGET tst_qwebframe.exe -TARGETTYPE EXE - -UID 0x100039CE 0xEa3ce0ab -SECUREID 0xEa3ce0ab - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_qwebframe.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_qwebframe_reg.rss -DEPENDS tst_qwebframe.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../../Api -SYSTEMINCLUDE ../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_qwebframe.cpp -SOURCE qrc_tst_qwebframe.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/image.png Binary file WebKit/qt/tests/qwebframe/resources/image.png has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/style.css --- a/WebKit/qt/tests/qwebframe/resources/style.css Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#idP {color: red !important} diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/test1.html --- a/WebKit/qt/tests/qwebframe/resources/test1.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -

Some text 1

diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/test2.html --- a/WebKit/qt/tests/qwebframe/resources/test2.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -

Some text 2

diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/testiframe.html --- a/WebKit/qt/tests/qwebframe/resources/testiframe.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ - - - - - - - - -
You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible. -You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible. -You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible. -You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible. -You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible. -You can use the overflow property when you want to have better control of the layout. Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
- - - - \ No newline at end of file diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/resources/testiframe2.html --- a/WebKit/qt/tests/qwebframe/resources/testiframe2.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ - - - - - - - -
- - \ No newline at end of file diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebframe/tst_qwebframe.cpp --- a/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3035 +0,0 @@ -/* - Copyright (C) 2008,2009 Nokia Corporation and/or its subsidiary(-ies) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - - -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifndef QT_NO_OPENSSL -#include -#endif -#include "../util.h" - -struct CustomType { - QString string; -}; -Q_DECLARE_METATYPE(CustomType) - -Q_DECLARE_METATYPE(QBrush*) -Q_DECLARE_METATYPE(QObjectList) -Q_DECLARE_METATYPE(QList) -Q_DECLARE_METATYPE(Qt::BrushStyle) -Q_DECLARE_METATYPE(QVariantList) -Q_DECLARE_METATYPE(QVariantMap) - -class MyQObject : public QObject -{ - Q_OBJECT - - Q_PROPERTY(int intProperty READ intProperty WRITE setIntProperty) - Q_PROPERTY(QVariant variantProperty READ variantProperty WRITE setVariantProperty) - Q_PROPERTY(QVariantList variantListProperty READ variantListProperty WRITE setVariantListProperty) - Q_PROPERTY(QVariantMap variantMapProperty READ variantMapProperty WRITE setVariantMapProperty) - Q_PROPERTY(QString stringProperty READ stringProperty WRITE setStringProperty) - Q_PROPERTY(QStringList stringListProperty READ stringListProperty WRITE setStringListProperty) - Q_PROPERTY(QByteArray byteArrayProperty READ byteArrayProperty WRITE setByteArrayProperty) - Q_PROPERTY(QBrush brushProperty READ brushProperty WRITE setBrushProperty) - Q_PROPERTY(double hiddenProperty READ hiddenProperty WRITE setHiddenProperty SCRIPTABLE false) - Q_PROPERTY(int writeOnlyProperty WRITE setWriteOnlyProperty) - Q_PROPERTY(int readOnlyProperty READ readOnlyProperty) - Q_PROPERTY(QKeySequence shortcut READ shortcut WRITE setShortcut) - Q_PROPERTY(CustomType propWithCustomType READ propWithCustomType WRITE setPropWithCustomType) - Q_PROPERTY(QWebElement webElementProperty READ webElementProperty WRITE setWebElementProperty) - Q_PROPERTY(QObject* objectStarProperty READ objectStarProperty WRITE setObjectStarProperty) - Q_ENUMS(Policy Strategy) - Q_FLAGS(Ability) - -public: - enum Policy { - FooPolicy = 0, - BarPolicy, - BazPolicy - }; - - enum Strategy { - FooStrategy = 10, - BarStrategy, - BazStrategy - }; - - enum AbilityFlag { - NoAbility = 0x000, - FooAbility = 0x001, - BarAbility = 0x080, - BazAbility = 0x200, - AllAbility = FooAbility | BarAbility | BazAbility - }; - - Q_DECLARE_FLAGS(Ability, AbilityFlag) - - MyQObject(QObject* parent = 0) - : QObject(parent), - m_intValue(123), - m_variantValue(QLatin1String("foo")), - m_variantListValue(QVariantList() << QVariant(123) << QVariant(QLatin1String("foo"))), - m_stringValue(QLatin1String("bar")), - m_stringListValue(QStringList() << QLatin1String("zig") << QLatin1String("zag")), - m_brushValue(QColor(10, 20, 30, 40)), - m_hiddenValue(456.0), - m_writeOnlyValue(789), - m_readOnlyValue(987), - m_objectStar(0), - m_qtFunctionInvoked(-1) - { - m_variantMapValue.insert("a", QVariant(123)); - m_variantMapValue.insert("b", QVariant(QLatin1String("foo"))); - m_variantMapValue.insert("c", QVariant::fromValue(this)); - } - - ~MyQObject() { } - - int intProperty() const { - return m_intValue; - } - void setIntProperty(int value) { - m_intValue = value; - } - - QVariant variantProperty() const { - return m_variantValue; - } - void setVariantProperty(const QVariant &value) { - m_variantValue = value; - } - - QVariantList variantListProperty() const { - return m_variantListValue; - } - void setVariantListProperty(const QVariantList &value) { - m_variantListValue = value; - } - - QVariantMap variantMapProperty() const { - return m_variantMapValue; - } - void setVariantMapProperty(const QVariantMap &value) { - m_variantMapValue = value; - } - - QString stringProperty() const { - return m_stringValue; - } - void setStringProperty(const QString &value) { - m_stringValue = value; - } - - QStringList stringListProperty() const { - return m_stringListValue; - } - void setStringListProperty(const QStringList &value) { - m_stringListValue = value; - } - - QByteArray byteArrayProperty() const { - return m_byteArrayValue; - } - void setByteArrayProperty(const QByteArray &value) { - m_byteArrayValue = value; - } - - QBrush brushProperty() const { - return m_brushValue; - } - Q_INVOKABLE void setBrushProperty(const QBrush &value) { - m_brushValue = value; - } - - double hiddenProperty() const { - return m_hiddenValue; - } - void setHiddenProperty(double value) { - m_hiddenValue = value; - } - - int writeOnlyProperty() const { - return m_writeOnlyValue; - } - void setWriteOnlyProperty(int value) { - m_writeOnlyValue = value; - } - - int readOnlyProperty() const { - return m_readOnlyValue; - } - - QKeySequence shortcut() const { - return m_shortcut; - } - void setShortcut(const QKeySequence &seq) { - m_shortcut = seq; - } - - QWebElement webElementProperty() const { - return m_webElement; - } - - void setWebElementProperty(const QWebElement& element) { - m_webElement = element; - } - - CustomType propWithCustomType() const { - return m_customType; - } - void setPropWithCustomType(const CustomType &c) { - m_customType = c; - } - - QObject* objectStarProperty() const { - return m_objectStar; - } - - void setObjectStarProperty(QObject* object) { - m_objectStar = object; - } - - - int qtFunctionInvoked() const { - return m_qtFunctionInvoked; - } - - QVariantList qtFunctionActuals() const { - return m_actuals; - } - - void resetQtFunctionInvoked() { - m_qtFunctionInvoked = -1; - m_actuals.clear(); - } - - Q_INVOKABLE void myInvokable() { - m_qtFunctionInvoked = 0; - } - Q_INVOKABLE void myInvokableWithIntArg(int arg) { - m_qtFunctionInvoked = 1; - m_actuals << arg; - } - Q_INVOKABLE void myInvokableWithLonglongArg(qlonglong arg) { - m_qtFunctionInvoked = 2; - m_actuals << arg; - } - Q_INVOKABLE void myInvokableWithFloatArg(float arg) { - m_qtFunctionInvoked = 3; - m_actuals << arg; - } - Q_INVOKABLE void myInvokableWithDoubleArg(double arg) { - m_qtFunctionInvoked = 4; - m_actuals << arg; - } - Q_INVOKABLE void myInvokableWithStringArg(const QString &arg) { - m_qtFunctionInvoked = 5; - m_actuals << arg; - } - Q_INVOKABLE void myInvokableWithIntArgs(int arg1, int arg2) { - m_qtFunctionInvoked = 6; - m_actuals << arg1 << arg2; - } - Q_INVOKABLE int myInvokableReturningInt() { - m_qtFunctionInvoked = 7; - return 123; - } - Q_INVOKABLE qlonglong myInvokableReturningLongLong() { - m_qtFunctionInvoked = 39; - return 456; - } - Q_INVOKABLE QString myInvokableReturningString() { - m_qtFunctionInvoked = 8; - return QLatin1String("ciao"); - } - Q_INVOKABLE void myInvokableWithIntArg(int arg1, int arg2) { // overload - m_qtFunctionInvoked = 9; - m_actuals << arg1 << arg2; - } - Q_INVOKABLE void myInvokableWithEnumArg(Policy policy) { - m_qtFunctionInvoked = 10; - m_actuals << policy; - } - Q_INVOKABLE void myInvokableWithQualifiedEnumArg(MyQObject::Policy policy) { - m_qtFunctionInvoked = 36; - m_actuals << policy; - } - Q_INVOKABLE Policy myInvokableReturningEnum() { - m_qtFunctionInvoked = 37; - return BazPolicy; - } - Q_INVOKABLE MyQObject::Policy myInvokableReturningQualifiedEnum() { - m_qtFunctionInvoked = 38; - return BazPolicy; - } - Q_INVOKABLE QVector myInvokableReturningVectorOfInt() { - m_qtFunctionInvoked = 11; - return QVector(); - } - Q_INVOKABLE void myInvokableWithVectorOfIntArg(const QVector &) { - m_qtFunctionInvoked = 12; - } - Q_INVOKABLE QObject* myInvokableReturningQObjectStar() { - m_qtFunctionInvoked = 13; - return this; - } - Q_INVOKABLE QObjectList myInvokableWithQObjectListArg(const QObjectList &lst) { - m_qtFunctionInvoked = 14; - m_actuals << qVariantFromValue(lst); - return lst; - } - Q_INVOKABLE QVariant myInvokableWithVariantArg(const QVariant &v) { - m_qtFunctionInvoked = 15; - m_actuals << v; - return v; - } - Q_INVOKABLE QVariantMap myInvokableWithVariantMapArg(const QVariantMap &vm) { - m_qtFunctionInvoked = 16; - m_actuals << vm; - return vm; - } - Q_INVOKABLE QList myInvokableWithListOfIntArg(const QList &lst) { - m_qtFunctionInvoked = 17; - m_actuals << qVariantFromValue(lst); - return lst; - } - Q_INVOKABLE QObject* myInvokableWithQObjectStarArg(QObject* obj) { - m_qtFunctionInvoked = 18; - m_actuals << qVariantFromValue(obj); - return obj; - } - Q_INVOKABLE QBrush myInvokableWithQBrushArg(const QBrush &brush) { - m_qtFunctionInvoked = 19; - m_actuals << qVariantFromValue(brush); - return brush; - } - Q_INVOKABLE void myInvokableWithBrushStyleArg(Qt::BrushStyle style) { - m_qtFunctionInvoked = 43; - m_actuals << qVariantFromValue(style); - } - Q_INVOKABLE void myInvokableWithVoidStarArg(void* arg) { - m_qtFunctionInvoked = 44; - m_actuals << qVariantFromValue(arg); - } - Q_INVOKABLE void myInvokableWithAmbiguousArg(int arg) { - m_qtFunctionInvoked = 45; - m_actuals << qVariantFromValue(arg); - } - Q_INVOKABLE void myInvokableWithAmbiguousArg(uint arg) { - m_qtFunctionInvoked = 46; - m_actuals << qVariantFromValue(arg); - } - Q_INVOKABLE void myInvokableWithDefaultArgs(int arg1, const QString &arg2 = "") { - m_qtFunctionInvoked = 47; - m_actuals << qVariantFromValue(arg1) << qVariantFromValue(arg2); - } - Q_INVOKABLE QObject& myInvokableReturningRef() { - m_qtFunctionInvoked = 48; - return *this; - } - Q_INVOKABLE const QObject& myInvokableReturningConstRef() const { - const_cast(this)->m_qtFunctionInvoked = 49; - return *this; - } - Q_INVOKABLE void myInvokableWithPointArg(const QPoint &arg) { - const_cast(this)->m_qtFunctionInvoked = 50; - m_actuals << qVariantFromValue(arg); - } - Q_INVOKABLE void myInvokableWithPointArg(const QPointF &arg) { - const_cast(this)->m_qtFunctionInvoked = 51; - m_actuals << qVariantFromValue(arg); - } - Q_INVOKABLE void myInvokableWithBoolArg(bool arg) { - m_qtFunctionInvoked = 52; - m_actuals << arg; - } - - void emitMySignal() { - emit mySignal(); - } - void emitMySignalWithIntArg(int arg) { - emit mySignalWithIntArg(arg); - } - void emitMySignal2(bool arg) { - emit mySignal2(arg); - } - void emitMySignal2() { - emit mySignal2(); - } - void emitMySignalWithDateTimeArg(QDateTime dt) { - emit mySignalWithDateTimeArg(dt); - } - void emitMySignalWithRegexArg(QRegExp r) { - emit mySignalWithRegexArg(r); - } - -public Q_SLOTS: - void mySlot() { - m_qtFunctionInvoked = 20; - } - void mySlotWithIntArg(int arg) { - m_qtFunctionInvoked = 21; - m_actuals << arg; - } - void mySlotWithDoubleArg(double arg) { - m_qtFunctionInvoked = 22; - m_actuals << arg; - } - void mySlotWithStringArg(const QString &arg) { - m_qtFunctionInvoked = 23; - m_actuals << arg; - } - - void myOverloadedSlot() { - m_qtFunctionInvoked = 24; - } - void myOverloadedSlot(QObject* arg) { - m_qtFunctionInvoked = 41; - m_actuals << qVariantFromValue(arg); - } - void myOverloadedSlot(bool arg) { - m_qtFunctionInvoked = 25; - m_actuals << arg; - } - void myOverloadedSlot(const QStringList &arg) { - m_qtFunctionInvoked = 42; - m_actuals << arg; - } - void myOverloadedSlot(double arg) { - m_qtFunctionInvoked = 26; - m_actuals << arg; - } - void myOverloadedSlot(float arg) { - m_qtFunctionInvoked = 27; - m_actuals << arg; - } - void myOverloadedSlot(int arg) { - m_qtFunctionInvoked = 28; - m_actuals << arg; - } - void myOverloadedSlot(const QString &arg) { - m_qtFunctionInvoked = 29; - m_actuals << arg; - } - void myOverloadedSlot(const QColor &arg) { - m_qtFunctionInvoked = 30; - m_actuals << arg; - } - void myOverloadedSlot(const QBrush &arg) { - m_qtFunctionInvoked = 31; - m_actuals << arg; - } - void myOverloadedSlot(const QDateTime &arg) { - m_qtFunctionInvoked = 32; - m_actuals << arg; - } - void myOverloadedSlot(const QDate &arg) { - m_qtFunctionInvoked = 33; - m_actuals << arg; - } - void myOverloadedSlot(const QRegExp &arg) { - m_qtFunctionInvoked = 34; - m_actuals << arg; - } - void myOverloadedSlot(const QVariant &arg) { - m_qtFunctionInvoked = 35; - m_actuals << arg; - } - void myOverloadedSlot(const QWebElement &arg) { - m_qtFunctionInvoked = 36; - m_actuals << QVariant::fromValue(arg); - } - - void qscript_call(int arg) { - m_qtFunctionInvoked = 40; - m_actuals << arg; - } - -protected Q_SLOTS: - void myProtectedSlot() { - m_qtFunctionInvoked = 36; - } - -private Q_SLOTS: - void myPrivateSlot() { } - -Q_SIGNALS: - void mySignal(); - void mySignalWithIntArg(int arg); - void mySignalWithDoubleArg(double arg); - void mySignal2(bool arg = false); - void mySignalWithDateTimeArg(QDateTime dt); - void mySignalWithRegexArg(QRegExp r); - -private: - int m_intValue; - QVariant m_variantValue; - QVariantList m_variantListValue; - QVariantMap m_variantMapValue; - QString m_stringValue; - QStringList m_stringListValue; - QByteArray m_byteArrayValue; - QBrush m_brushValue; - double m_hiddenValue; - int m_writeOnlyValue; - int m_readOnlyValue; - QKeySequence m_shortcut; - QWebElement m_webElement; - CustomType m_customType; - QObject* m_objectStar; - int m_qtFunctionInvoked; - QVariantList m_actuals; -}; - -class MyOtherQObject : public MyQObject -{ -public: - MyOtherQObject(QObject* parent = 0) - : MyQObject(parent) { } -}; - -class MyEnumTestQObject : public QObject -{ - Q_OBJECT - Q_PROPERTY(QString p1 READ p1) - Q_PROPERTY(QString p2 READ p2) - Q_PROPERTY(QString p3 READ p3 SCRIPTABLE false) - Q_PROPERTY(QString p4 READ p4) - Q_PROPERTY(QString p5 READ p5 SCRIPTABLE false) - Q_PROPERTY(QString p6 READ p6) -public: - MyEnumTestQObject(QObject* parent = 0) - : QObject(parent) { } - QString p1() const { - return QLatin1String("p1"); - } - QString p2() const { - return QLatin1String("p2"); - } - QString p3() const { - return QLatin1String("p3"); - } - QString p4() const { - return QLatin1String("p4"); - } - QString p5() const { - return QLatin1String("p5"); - } - QString p6() const { - return QLatin1String("p5"); - } -public Q_SLOTS: - void mySlot() { } - void myOtherSlot() { } -Q_SIGNALS: - void mySignal(); -}; - -class tst_QWebFrame : public QObject -{ - Q_OBJECT - -public: - tst_QWebFrame(); - virtual ~tst_QWebFrame(); - bool eventFilter(QObject* watched, QEvent* event); - -public slots: - void init(); - void cleanup(); - -private slots: - void getSetStaticProperty(); - void getSetDynamicProperty(); - void getSetChildren(); - void callQtInvokable(); - void connectAndDisconnect(); - void classEnums(); - void classConstructor(); - void overrideInvokable(); - void transferInvokable(); - void findChild(); - void findChildren(); - void overloadedSlots(); - void enumerate_data(); - void enumerate(); - void objectDeleted(); - void typeConversion(); - void arrayObjectEnumerable(); - void symmetricUrl(); - void progressSignal(); - void urlChange(); - void domCycles(); - void requestedUrl(); - void javaScriptWindowObjectCleared_data(); - void javaScriptWindowObjectCleared(); - void javaScriptWindowObjectClearedOnEvaluate(); - void setHtml(); - void setHtmlWithResource(); - void setHtmlWithBaseURL(); - void setHtmlWithJSAlert(); - void ipv6HostEncoding(); - void metaData(); -#if !defined(Q_WS_MAEMO_5) - // as maemo 5 does not use QComboBoxes to implement the popups - // this test does not make sense for it. - void popupFocus(); -#endif - void inputFieldFocus(); - void hitTestContent(); - void jsByteArray(); - void ownership(); - void nullValue(); - void baseUrl_data(); - void baseUrl(); - void hasSetFocus(); - void render(); - void scrollPosition(); - void scrollToAnchor(); - void scrollbarsOff(); - void evaluateWillCauseRepaint(); - void qObjectWrapperWithSameIdentity(); - void introspectQtMethods_data(); - void introspectQtMethods(); - -private: - QString evalJS(const QString&s) { - // Convert an undefined return variant to the string "undefined" - QVariant ret = evalJSV(s); - if (ret.userType() == QMetaType::Void) - return "undefined"; - else - return ret.toString(); - } - QVariant evalJSV(const QString &s) { - return m_page->mainFrame()->evaluateJavaScript(s); - } - - QString evalJS(const QString&s, QString& type) { - return evalJSV(s, type).toString(); - } - QVariant evalJSV(const QString &s, QString& type) { - // As a special measure, if we get an exception we set the type to 'error' - // (in ecma, an Error object has typeof object, but qtscript has a convenience function) - // Similarly, an array is an object, but we'd prefer to have a type of 'array' - // Also, consider a QMetaType::Void QVariant to be undefined - QString escaped = s; - escaped.replace('\'', "\\'"); // Don't preescape your single quotes! - evalJS("var retvalue;\ - var typevalue; \ - try {\ - retvalue = eval('" + escaped + "'); \ - typevalue = typeof retvalue; \ - if (retvalue instanceof Array) \ - typevalue = 'array'; \ - } \ - catch(e) {\ - retvalue = e.name + ': ' + e.message;\ - typevalue = 'error';\ - }"); - QVariant ret = evalJSV("retvalue"); - if (ret.userType() != QMetaType::Void) - type = evalJS("typevalue"); - else { - ret = QString("undefined"); - type = sUndefined; - } - evalJS("delete retvalue; delete typevalue"); - return ret; - } - QObject* firstChildByClassName(QObject* parent, const char* className) { - const QObjectList & children = parent->children(); - foreach (QObject* child, children) { - if (!strcmp(child->metaObject()->className(), className)) { - return child; - } - } - return 0; - } - - const QString sTrue; - const QString sFalse; - const QString sUndefined; - const QString sArray; - const QString sFunction; - const QString sError; - const QString sString; - const QString sObject; - const QString sNumber; - -private: - QWebView* m_view; - QWebPage* m_page; - MyQObject* m_myObject; - QWebView* m_inputFieldsTestView; - int m_inputFieldTestPaintCount; -}; - -tst_QWebFrame::tst_QWebFrame() - : sTrue("true"), sFalse("false"), sUndefined("undefined"), sArray("array"), sFunction("function"), sError("error"), - sString("string"), sObject("object"), sNumber("number"), m_inputFieldsTestView(0), m_inputFieldTestPaintCount(0) -{ -} - -tst_QWebFrame::~tst_QWebFrame() -{ -} - -bool tst_QWebFrame::eventFilter(QObject* watched, QEvent* event) -{ - // used on the inputFieldFocus test - if (watched == m_inputFieldsTestView) { - if (event->type() == QEvent::Paint) - m_inputFieldTestPaintCount++; - } - return QObject::eventFilter(watched, event); -} - -void tst_QWebFrame::init() -{ - m_view = new QWebView(); - m_page = m_view->page(); - m_myObject = new MyQObject(); - m_page->mainFrame()->addToJavaScriptWindowObject("myObject", m_myObject); -} - -void tst_QWebFrame::cleanup() -{ - delete m_view; - delete m_myObject; -} - -void tst_QWebFrame::getSetStaticProperty() -{ - m_page->mainFrame()->setHtml(""); - QCOMPARE(evalJS("typeof myObject.noSuchProperty"), sUndefined); - - // initial value (set in MyQObject constructor) - { - QString type; - QVariant ret = evalJSV("myObject.intProperty", type); - QCOMPARE(type, sNumber); - QCOMPARE(ret.type(), QVariant::Double); - QCOMPARE(ret.toInt(), 123); - } - QCOMPARE(evalJS("myObject.intProperty === 123.0"), sTrue); - - { - QString type; - QVariant ret = evalJSV("myObject.variantProperty", type); - QCOMPARE(type, sString); - QCOMPARE(ret.type(), QVariant::String); - QCOMPARE(ret.toString(), QLatin1String("foo")); - } - QCOMPARE(evalJS("myObject.variantProperty == 'foo'"), sTrue); - - { - QString type; - QVariant ret = evalJSV("myObject.stringProperty", type); - QCOMPARE(type, sString); - QCOMPARE(ret.type(), QVariant::String); - QCOMPARE(ret.toString(), QLatin1String("bar")); - } - QCOMPARE(evalJS("myObject.stringProperty === 'bar'"), sTrue); - - { - QString type; - QVariant ret = evalJSV("myObject.variantListProperty", type); - QCOMPARE(type, sArray); - QCOMPARE(ret.type(), QVariant::List); - QVariantList vl = ret.value(); - QCOMPARE(vl.size(), 2); - QCOMPARE(vl.at(0).toInt(), 123); - QCOMPARE(vl.at(1).toString(), QLatin1String("foo")); - } - QCOMPARE(evalJS("myObject.variantListProperty.length === 2"), sTrue); - QCOMPARE(evalJS("myObject.variantListProperty[0] === 123"), sTrue); - QCOMPARE(evalJS("myObject.variantListProperty[1] === 'foo'"), sTrue); - - { - QString type; - QVariant ret = evalJSV("myObject.variantMapProperty", type); - QCOMPARE(type, sObject); - QCOMPARE(ret.type(), QVariant::Map); - QVariantMap vm = ret.value(); - QCOMPARE(vm.size(), 3); - QCOMPARE(vm.value("a").toInt(), 123); - QCOMPARE(vm.value("b").toString(), QLatin1String("foo")); - QCOMPARE(vm.value("c").value(), static_cast(m_myObject)); - } - QCOMPARE(evalJS("myObject.variantMapProperty.a === 123"), sTrue); - QCOMPARE(evalJS("myObject.variantMapProperty.b === 'foo'"), sTrue); - QCOMPARE(evalJS("myObject.variantMapProperty.c.variantMapProperty.b === 'foo'"), sTrue); - - { - QString type; - QVariant ret = evalJSV("myObject.stringListProperty", type); - QCOMPARE(type, sArray); - QCOMPARE(ret.type(), QVariant::List); - QVariantList vl = ret.value(); - QCOMPARE(vl.size(), 2); - QCOMPARE(vl.at(0).toString(), QLatin1String("zig")); - QCOMPARE(vl.at(1).toString(), QLatin1String("zag")); - } - QCOMPARE(evalJS("myObject.stringListProperty.length === 2"), sTrue); - QCOMPARE(evalJS("typeof myObject.stringListProperty[0]"), sString); - QCOMPARE(evalJS("myObject.stringListProperty[0]"), QLatin1String("zig")); - QCOMPARE(evalJS("typeof myObject.stringListProperty[1]"), sString); - QCOMPARE(evalJS("myObject.stringListProperty[1]"), QLatin1String("zag")); - - // property change in C++ should be reflected in script - m_myObject->setIntProperty(456); - QCOMPARE(evalJS("myObject.intProperty == 456"), sTrue); - m_myObject->setIntProperty(789); - QCOMPARE(evalJS("myObject.intProperty == 789"), sTrue); - - m_myObject->setVariantProperty(QLatin1String("bar")); - QCOMPARE(evalJS("myObject.variantProperty === 'bar'"), sTrue); - m_myObject->setVariantProperty(42); - QCOMPARE(evalJS("myObject.variantProperty === 42"), sTrue); - m_myObject->setVariantProperty(qVariantFromValue(QBrush())); -//XFAIL -// QCOMPARE(evalJS("typeof myObject.variantProperty"), sVariant); - - m_myObject->setStringProperty(QLatin1String("baz")); - QCOMPARE(evalJS("myObject.stringProperty === 'baz'"), sTrue); - m_myObject->setStringProperty(QLatin1String("zab")); - QCOMPARE(evalJS("myObject.stringProperty === 'zab'"), sTrue); - - // property change in script should be reflected in C++ - QCOMPARE(evalJS("myObject.intProperty = 123"), QLatin1String("123")); - QCOMPARE(evalJS("myObject.intProperty == 123"), sTrue); - QCOMPARE(m_myObject->intProperty(), 123); - QCOMPARE(evalJS("myObject.intProperty = 'ciao!';" - "myObject.intProperty == 0"), sTrue); - QCOMPARE(m_myObject->intProperty(), 0); - QCOMPARE(evalJS("myObject.intProperty = '123';" - "myObject.intProperty == 123"), sTrue); - QCOMPARE(m_myObject->intProperty(), 123); - - QCOMPARE(evalJS("myObject.stringProperty = 'ciao'"), QLatin1String("ciao")); - QCOMPARE(evalJS("myObject.stringProperty"), QLatin1String("ciao")); - QCOMPARE(m_myObject->stringProperty(), QLatin1String("ciao")); - QCOMPARE(evalJS("myObject.stringProperty = 123;" - "myObject.stringProperty"), QLatin1String("123")); - QCOMPARE(m_myObject->stringProperty(), QLatin1String("123")); - QCOMPARE(evalJS("myObject.stringProperty = null"), QString()); - QCOMPARE(evalJS("myObject.stringProperty"), QString()); - QCOMPARE(m_myObject->stringProperty(), QString()); - QCOMPARE(evalJS("myObject.stringProperty = undefined"), sUndefined); - QCOMPARE(evalJS("myObject.stringProperty"), QString()); - QCOMPARE(m_myObject->stringProperty(), QString()); - - QCOMPARE(evalJS("myObject.variantProperty = new Number(1234);" - "myObject.variantProperty").toDouble(), 1234.0); - QCOMPARE(m_myObject->variantProperty().toDouble(), 1234.0); - - QCOMPARE(evalJS("myObject.variantProperty = new Boolean(1234);" - "myObject.variantProperty"), sTrue); - QCOMPARE(m_myObject->variantProperty().toBool(), true); - - QCOMPARE(evalJS("myObject.variantProperty = null;" - "myObject.variantProperty.valueOf()"), sUndefined); - QCOMPARE(m_myObject->variantProperty(), QVariant()); - QCOMPARE(evalJS("myObject.variantProperty = undefined;" - "myObject.variantProperty.valueOf()"), sUndefined); - QCOMPARE(m_myObject->variantProperty(), QVariant()); - - QCOMPARE(evalJS("myObject.variantProperty = 'foo';" - "myObject.variantProperty.valueOf()"), QLatin1String("foo")); - QCOMPARE(m_myObject->variantProperty(), QVariant(QLatin1String("foo"))); - QCOMPARE(evalJS("myObject.variantProperty = 42;" - "myObject.variantProperty").toDouble(), 42.0); - QCOMPARE(m_myObject->variantProperty().toDouble(), 42.0); - - QCOMPARE(evalJS("myObject.variantListProperty = [1, 'two', true];" - "myObject.variantListProperty.length == 3"), sTrue); - QCOMPARE(evalJS("myObject.variantListProperty[0] === 1"), sTrue); - QCOMPARE(evalJS("myObject.variantListProperty[1]"), QLatin1String("two")); - QCOMPARE(evalJS("myObject.variantListProperty[2] === true"), sTrue); - - QCOMPARE(evalJS("myObject.stringListProperty = [1, 'two', true];" - "myObject.stringListProperty.length == 3"), sTrue); - QCOMPARE(evalJS("typeof myObject.stringListProperty[0]"), sString); - QCOMPARE(evalJS("myObject.stringListProperty[0] == '1'"), sTrue); - QCOMPARE(evalJS("typeof myObject.stringListProperty[1]"), sString); - QCOMPARE(evalJS("myObject.stringListProperty[1]"), QLatin1String("two")); - QCOMPARE(evalJS("typeof myObject.stringListProperty[2]"), sString); - QCOMPARE(evalJS("myObject.stringListProperty[2]"), QLatin1String("true")); - evalJS("myObject.webElementProperty=document.body;"); - QCOMPARE(evalJS("myObject.webElementProperty.tagName"), QLatin1String("BODY")); - - // try to delete - QCOMPARE(evalJS("delete myObject.intProperty"), sFalse); - QCOMPARE(evalJS("myObject.intProperty == 123"), sTrue); - - QCOMPARE(evalJS("delete myObject.variantProperty"), sFalse); - QCOMPARE(evalJS("myObject.variantProperty").toDouble(), 42.0); - - // custom property - QCOMPARE(evalJS("myObject.customProperty"), sUndefined); - QCOMPARE(evalJS("myObject.customProperty = 123;" - "myObject.customProperty == 123"), sTrue); - QVariant v = m_page->mainFrame()->evaluateJavaScript("myObject.customProperty"); - QCOMPARE(v.type(), QVariant::Double); - QCOMPARE(v.toInt(), 123); - - // non-scriptable property - QCOMPARE(m_myObject->hiddenProperty(), 456.0); - QCOMPARE(evalJS("myObject.hiddenProperty"), sUndefined); - QCOMPARE(evalJS("myObject.hiddenProperty = 123;" - "myObject.hiddenProperty == 123"), sTrue); - QCOMPARE(m_myObject->hiddenProperty(), 456.0); - - // write-only property - QCOMPARE(m_myObject->writeOnlyProperty(), 789); - QCOMPARE(evalJS("typeof myObject.writeOnlyProperty"), sUndefined); - QCOMPARE(evalJS("myObject.writeOnlyProperty = 123;" - "typeof myObject.writeOnlyProperty"), sUndefined); - QCOMPARE(m_myObject->writeOnlyProperty(), 123); - - // read-only property - QCOMPARE(m_myObject->readOnlyProperty(), 987); - QCOMPARE(evalJS("myObject.readOnlyProperty == 987"), sTrue); - QCOMPARE(evalJS("myObject.readOnlyProperty = 654;" - "myObject.readOnlyProperty == 987"), sTrue); - QCOMPARE(m_myObject->readOnlyProperty(), 987); - - // QObject* property - m_myObject->setObjectStarProperty(0); - QCOMPARE(m_myObject->objectStarProperty(), (QObject*)0); - QCOMPARE(evalJS("myObject.objectStarProperty == null"), sTrue); - QCOMPARE(evalJS("typeof myObject.objectStarProperty"), sObject); - QCOMPARE(evalJS("Boolean(myObject.objectStarProperty)"), sFalse); - QCOMPARE(evalJS("String(myObject.objectStarProperty) == 'null'"), sTrue); - QCOMPARE(evalJS("myObject.objectStarProperty.objectStarProperty"), - sUndefined); - m_myObject->setObjectStarProperty(this); - QCOMPARE(evalJS("myObject.objectStarProperty != null"), sTrue); - QCOMPARE(evalJS("typeof myObject.objectStarProperty"), sObject); - QCOMPARE(evalJS("Boolean(myObject.objectStarProperty)"), sTrue); - QCOMPARE(evalJS("String(myObject.objectStarProperty) != 'null'"), sTrue); -} - -void tst_QWebFrame::getSetDynamicProperty() -{ - // initially the object does not have the property - // In WebKit, RuntimeObjects do not inherit Object, so don't have hasOwnProperty - - //QCOMPARE(evalJS("myObject.hasOwnProperty('dynamicProperty')"), sFalse); - QCOMPARE(evalJS("typeof myObject.dynamicProperty"), sUndefined); - - // add a dynamic property in C++ - QCOMPARE(m_myObject->setProperty("dynamicProperty", 123), false); - //QCOMPARE(evalJS("myObject.hasOwnProperty('dynamicProperty')"), sTrue); - QCOMPARE(evalJS("typeof myObject.dynamicProperty != 'undefined'"), sTrue); - QCOMPARE(evalJS("myObject.dynamicProperty == 123"), sTrue); - - // property change in script should be reflected in C++ - QCOMPARE(evalJS("myObject.dynamicProperty = 'foo';" - "myObject.dynamicProperty"), QLatin1String("foo")); - QCOMPARE(m_myObject->property("dynamicProperty").toString(), QLatin1String("foo")); - - // delete the property (XFAIL - can't delete properties) - QEXPECT_FAIL("", "can't delete properties", Continue); - QCOMPARE(evalJS("delete myObject.dynamicProperty"), sTrue); - /* - QCOMPARE(m_myObject->property("dynamicProperty").isValid(), false); - QCOMPARE(evalJS("typeof myObject.dynamicProperty"), sUndefined); - // QCOMPARE(evalJS("myObject.hasOwnProperty('dynamicProperty')"), sFalse); - QCOMPARE(evalJS("typeof myObject.dynamicProperty"), sUndefined); - */ -} - -void tst_QWebFrame::getSetChildren() -{ - // initially the object does not have the child - // (again, no hasOwnProperty) - - //QCOMPARE(evalJS("myObject.hasOwnProperty('child')"), sFalse); - QCOMPARE(evalJS("typeof myObject.child"), sUndefined); - - // add a child - MyQObject* child = new MyQObject(m_myObject); - child->setObjectName("child"); -// QCOMPARE(evalJS("myObject.hasOwnProperty('child')"), sTrue); - QCOMPARE(evalJS("typeof myObject.child != 'undefined'"), sTrue); - - // add a grandchild - MyQObject* grandChild = new MyQObject(child); - grandChild->setObjectName("grandChild"); -// QCOMPARE(evalJS("myObject.child.hasOwnProperty('grandChild')"), sTrue); - QCOMPARE(evalJS("typeof myObject.child.grandChild != 'undefined'"), sTrue); - - // delete grandchild - delete grandChild; -// QCOMPARE(evalJS("myObject.child.hasOwnProperty('grandChild')"), sFalse); - QCOMPARE(evalJS("typeof myObject.child.grandChild == 'undefined'"), sTrue); - - // delete child - delete child; -// QCOMPARE(evalJS("myObject.hasOwnProperty('child')"), sFalse); - QCOMPARE(evalJS("typeof myObject.child == 'undefined'"), sTrue); -} - -Q_DECLARE_METATYPE(QVector) -Q_DECLARE_METATYPE(QVector) -Q_DECLARE_METATYPE(QVector) - -void tst_QWebFrame::callQtInvokable() -{ - qRegisterMetaType(); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokable()"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); - QCOMPARE(m_myObject->qtFunctionActuals(), QVariantList()); - - // extra arguments should silently be ignored - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokable(10, 20, 30)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); - QCOMPARE(m_myObject->qtFunctionActuals(), QVariantList()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithIntArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithIntArg('123')"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithLonglongArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 2); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toLongLong(), qlonglong(123)); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithFloatArg(123.5)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 3); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDouble(), 123.5); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithDoubleArg(123.5)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 4); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDouble(), 123.5); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithDoubleArg(new Number(1234.5))"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 4); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDouble(), 1234.5); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithBoolArg(new Boolean(true))"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 52); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toBool(), true); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithStringArg('ciao')"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 5); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toString(), QLatin1String("ciao")); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithStringArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 5); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toString(), QLatin1String("123")); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithStringArg(null)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 5); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toString(), QString()); - QVERIFY(m_myObject->qtFunctionActuals().at(0).toString().isEmpty()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithStringArg(undefined)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 5); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toString(), QString()); - QVERIFY(m_myObject->qtFunctionActuals().at(0).toString().isEmpty()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithIntArgs(123, 456)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 6); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 2); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - QCOMPARE(m_myObject->qtFunctionActuals().at(1).toInt(), 456); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokableReturningInt()"), QLatin1String("123")); - QCOMPARE(m_myObject->qtFunctionInvoked(), 7); - QCOMPARE(m_myObject->qtFunctionActuals(), QVariantList()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokableReturningLongLong()"), QLatin1String("456")); - QCOMPARE(m_myObject->qtFunctionInvoked(), 39); - QCOMPARE(m_myObject->qtFunctionActuals(), QVariantList()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokableReturningString()"), QLatin1String("ciao")); - QCOMPARE(m_myObject->qtFunctionInvoked(), 8); - QCOMPARE(m_myObject->qtFunctionActuals(), QVariantList()); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithIntArg(123, 456)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 9); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 2); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - QCOMPARE(m_myObject->qtFunctionActuals().at(1).toInt(), 456); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("typeof myObject.myInvokableWithVoidStarArg(null)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 44); - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithVoidStarArg(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: incompatible type of argument(s) in call to myInvokableWithVoidStarArg(); candidates were\n myInvokableWithVoidStarArg(void*)")); - QCOMPARE(m_myObject->qtFunctionInvoked(), -1); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithAmbiguousArg(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: ambiguous call of overloaded function myInvokableWithAmbiguousArg(); candidates were\n myInvokableWithAmbiguousArg(int)\n myInvokableWithAmbiguousArg(uint)")); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithDefaultArgs(123, 'hello')", type); - QCOMPARE(type, sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 47); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 2); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - QCOMPARE(m_myObject->qtFunctionActuals().at(1).toString(), QLatin1String("hello")); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithDefaultArgs(456)", type); - QCOMPARE(type, sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 47); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 2); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 456); - QCOMPARE(m_myObject->qtFunctionActuals().at(1).toString(), QString()); - } - - // calling function that returns (const)ref - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("typeof myObject.myInvokableReturningRef()"); - QCOMPARE(ret, sUndefined); - //QVERIFY(!m_engine->hasUncaughtException()); - QCOMPARE(m_myObject->qtFunctionInvoked(), 48); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("typeof myObject.myInvokableReturningConstRef()"); - QCOMPARE(ret, sUndefined); - //QVERIFY(!m_engine->hasUncaughtException()); - QCOMPARE(m_myObject->qtFunctionInvoked(), 49); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableReturningQObjectStar()", type); - QCOMPARE(m_myObject->qtFunctionInvoked(), 13); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 0); - QCOMPARE(type, sObject); - QCOMPARE(ret.userType(), int(QMetaType::QObjectStar)); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithQObjectListArg([myObject])", type); - QCOMPARE(m_myObject->qtFunctionInvoked(), 14); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(type, sArray); - QCOMPARE(ret.userType(), int(QVariant::List)); // All lists get downgraded to QVariantList - QVariantList vl = qvariant_cast(ret); - QCOMPARE(vl.count(), 1); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - m_myObject->setVariantProperty(QVariant(123)); - QVariant ret = evalJSV("myObject.myInvokableWithVariantArg(myObject.variantProperty)", type); - QCOMPARE(type, sNumber); - QCOMPARE(m_myObject->qtFunctionInvoked(), 15); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0), m_myObject->variantProperty()); - QCOMPARE(ret.userType(), int(QMetaType::Double)); // all JS numbers are doubles, even though this started as an int - QCOMPARE(ret.toInt(),123); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithVariantArg(null)", type); - QCOMPARE(type, sObject); - QCOMPARE(m_myObject->qtFunctionInvoked(), 15); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0), QVariant()); - QVERIFY(!m_myObject->qtFunctionActuals().at(0).isValid()); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithVariantArg(undefined)", type); - QCOMPARE(type, sObject); - QCOMPARE(m_myObject->qtFunctionInvoked(), 15); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0), QVariant()); - QVERIFY(!m_myObject->qtFunctionActuals().at(0).isValid()); - } - - /* XFAIL - variant support - m_myObject->resetQtFunctionInvoked(); - { - m_myObject->setVariantProperty(qVariantFromValue(QBrush())); - QVariant ret = evalJS("myObject.myInvokableWithVariantArg(myObject.variantProperty)"); - QVERIFY(ret.isVariant()); - QCOMPARE(m_myObject->qtFunctionInvoked(), 15); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(ret.toVariant(), m_myObject->qtFunctionActuals().at(0)); - QCOMPARE(ret.toVariant(), m_myObject->variantProperty()); - } - */ - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithVariantArg(123)", type); - QCOMPARE(type, sNumber); - QCOMPARE(m_myObject->qtFunctionInvoked(), 15); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0), QVariant(123)); - QCOMPARE(ret.userType(), int(QMetaType::Double)); - QCOMPARE(ret.toInt(),123); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithVariantMapArg({ a:123, b:'ciao' })", type); - QCOMPARE(m_myObject->qtFunctionInvoked(), 16); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - - QVariant v = m_myObject->qtFunctionActuals().at(0); - QCOMPARE(v.userType(), int(QMetaType::QVariantMap)); - - QVariantMap vmap = qvariant_cast(v); - QCOMPARE(vmap.keys().size(), 2); - QCOMPARE(vmap.keys().at(0), QLatin1String("a")); - QCOMPARE(vmap.value("a"), QVariant(123)); - QCOMPARE(vmap.keys().at(1), QLatin1String("b")); - QCOMPARE(vmap.value("b"), QVariant("ciao")); - - QCOMPARE(type, sObject); - - QCOMPARE(ret.userType(), int(QMetaType::QVariantMap)); - vmap = qvariant_cast(ret); - QCOMPARE(vmap.keys().size(), 2); - QCOMPARE(vmap.keys().at(0), QLatin1String("a")); - QCOMPARE(vmap.value("a"), QVariant(123)); - QCOMPARE(vmap.keys().at(1), QLatin1String("b")); - QCOMPARE(vmap.value("b"), QVariant("ciao")); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithListOfIntArg([1, 5])", type); - QCOMPARE(m_myObject->qtFunctionInvoked(), 17); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QVariant v = m_myObject->qtFunctionActuals().at(0); - QCOMPARE(v.userType(), qMetaTypeId >()); - QList ilst = qvariant_cast >(v); - QCOMPARE(ilst.size(), 2); - QCOMPARE(ilst.at(0), 1); - QCOMPARE(ilst.at(1), 5); - - QCOMPARE(type, sArray); - QCOMPARE(ret.userType(), int(QMetaType::QVariantList)); // ints get converted to doubles, so this is a qvariantlist - QVariantList vlst = qvariant_cast(ret); - QCOMPARE(vlst.size(), 2); - QCOMPARE(vlst.at(0).toInt(), 1); - QCOMPARE(vlst.at(1).toInt(), 5); - } - - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QVariant ret = evalJSV("myObject.myInvokableWithQObjectStarArg(myObject)", type); - QCOMPARE(m_myObject->qtFunctionInvoked(), 18); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QVariant v = m_myObject->qtFunctionActuals().at(0); - QCOMPARE(v.userType(), int(QMetaType::QObjectStar)); - QCOMPARE(qvariant_cast(v), (QObject*)m_myObject); - - QCOMPARE(ret.userType(), int(QMetaType::QObjectStar)); - QCOMPARE(qvariant_cast(ret), (QObject*)m_myObject); - - QCOMPARE(type, sObject); - } - - m_myObject->resetQtFunctionInvoked(); - { - // no implicit conversion from integer to QObject* - QString type; - evalJS("myObject.myInvokableWithQObjectStarArg(123)", type); - QCOMPARE(type, sError); - } - - /* - m_myObject->resetQtFunctionInvoked(); - { - QString fun = evalJS("myObject.myInvokableWithQBrushArg"); - Q_ASSERT(fun.isFunction()); - QColor color(10, 20, 30, 40); - // QColor should be converted to a QBrush - QVariant ret = fun.call(QString(), QStringList() - << qScriptValueFromValue(m_engine, color)); - QCOMPARE(m_myObject->qtFunctionInvoked(), 19); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QVariant v = m_myObject->qtFunctionActuals().at(0); - QCOMPARE(v.userType(), int(QMetaType::QBrush)); - QCOMPARE(qvariant_cast(v), color); - - QCOMPARE(qscriptvalue_cast(ret), color); - } - */ - - // private slots should not be part of the QObject binding - QCOMPARE(evalJS("typeof myObject.myPrivateSlot"), sUndefined); - - // protected slots should be fine - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myProtectedSlot()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 36); - - // call with too few arguments - { - QString type; - QString ret = evalJS("myObject.myInvokableWithIntArg()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("SyntaxError: too few arguments in call to myInvokableWithIntArg(); candidates are\n myInvokableWithIntArg(int,int)\n myInvokableWithIntArg(int)")); - } - - // call function where not all types have been registered - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithBrushStyleArg(0)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: cannot call myInvokableWithBrushStyleArg(): unknown type `Qt::BrushStyle'")); - QCOMPARE(m_myObject->qtFunctionInvoked(), -1); - } - - // call function with incompatible argument type - m_myObject->resetQtFunctionInvoked(); - { - QString type; - QString ret = evalJS("myObject.myInvokableWithQBrushArg(null)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: incompatible type of argument(s) in call to myInvokableWithQBrushArg(); candidates were\n myInvokableWithQBrushArg(QBrush)")); - QCOMPARE(m_myObject->qtFunctionInvoked(), -1); - } -} - -void tst_QWebFrame::connectAndDisconnect() -{ - // connect(function) - QCOMPARE(evalJS("typeof myObject.mySignal"), sFunction); - QCOMPARE(evalJS("typeof myObject.mySignal.connect"), sFunction); - QCOMPARE(evalJS("typeof myObject.mySignal.disconnect"), sFunction); - - { - QString type; - evalJS("myObject.mySignal.connect(123)", type); - QCOMPARE(type, sError); - } - - evalJS("myHandler = function() { window.gotSignal = true; window.signalArgs = arguments; window.slotThisObject = this; window.signalSender = __qt_sender__; }"); - - QCOMPARE(evalJS("myObject.mySignal.connect(myHandler)"), sUndefined); - - evalJS("gotSignal = false"); - evalJS("myObject.mySignal()"); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 0"), sTrue); - QCOMPARE(evalJS("signalSender"),evalJS("myObject")); - QCOMPARE(evalJS("slotThisObject == window"), sTrue); - - evalJS("gotSignal = false"); - m_myObject->emitMySignal(); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 0"), sTrue); - - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myHandler)"), sUndefined); - - evalJS("gotSignal = false"); - m_myObject->emitMySignalWithIntArg(123); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 1"), sTrue); - QCOMPARE(evalJS("signalArgs[0] == 123.0"), sTrue); - - QCOMPARE(evalJS("myObject.mySignal.disconnect(myHandler)"), sUndefined); - { - QString type; - evalJS("myObject.mySignal.disconnect(myHandler)", type); - QCOMPARE(type, sError); - } - - evalJS("gotSignal = false"); - QCOMPARE(evalJS("myObject.mySignal2.connect(myHandler)"), sUndefined); - m_myObject->emitMySignal2(true); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 1"), sTrue); - QCOMPARE(evalJS("signalArgs[0]"), sTrue); - - QCOMPARE(evalJS("myObject.mySignal2.disconnect(myHandler)"), sUndefined); - - QCOMPARE(evalJS("typeof myObject['mySignal2()']"), sFunction); - QCOMPARE(evalJS("typeof myObject['mySignal2()'].connect"), sFunction); - QCOMPARE(evalJS("typeof myObject['mySignal2()'].disconnect"), sFunction); - - QCOMPARE(evalJS("myObject['mySignal2()'].connect(myHandler)"), sUndefined); - - evalJS("gotSignal = false"); - m_myObject->emitMySignal2(); - QCOMPARE(evalJS("gotSignal"), sTrue); - - QCOMPARE(evalJS("myObject['mySignal2()'].disconnect(myHandler)"), sUndefined); - - // connect(object, function) - evalJS("otherObject = { name:'foo' }"); - QCOMPARE(evalJS("myObject.mySignal.connect(otherObject, myHandler)"), sUndefined); - QCOMPARE(evalJS("myObject.mySignal.disconnect(otherObject, myHandler)"), sUndefined); - evalJS("gotSignal = false"); - m_myObject->emitMySignal(); - QCOMPARE(evalJS("gotSignal"), sFalse); - - { - QString type; - evalJS("myObject.mySignal.disconnect(otherObject, myHandler)", type); - QCOMPARE(type, sError); - } - - QCOMPARE(evalJS("myObject.mySignal.connect(otherObject, myHandler)"), sUndefined); - evalJS("gotSignal = false"); - m_myObject->emitMySignal(); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 0"), sTrue); - QCOMPARE(evalJS("slotThisObject"),evalJS("otherObject")); - QCOMPARE(evalJS("signalSender"),evalJS("myObject")); - QCOMPARE(evalJS("slotThisObject.name"), QLatin1String("foo")); - QCOMPARE(evalJS("myObject.mySignal.disconnect(otherObject, myHandler)"), sUndefined); - - evalJS("yetAnotherObject = { name:'bar', func : function() { } }"); - QCOMPARE(evalJS("myObject.mySignal2.connect(yetAnotherObject, myHandler)"), sUndefined); - evalJS("gotSignal = false"); - m_myObject->emitMySignal2(true); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 1"), sTrue); - QCOMPARE(evalJS("slotThisObject == yetAnotherObject"), sTrue); - QCOMPARE(evalJS("signalSender == myObject"), sTrue); - QCOMPARE(evalJS("slotThisObject.name"), QLatin1String("bar")); - QCOMPARE(evalJS("myObject.mySignal2.disconnect(yetAnotherObject, myHandler)"), sUndefined); - - QCOMPARE(evalJS("myObject.mySignal2.connect(myObject, myHandler)"), sUndefined); - evalJS("gotSignal = false"); - m_myObject->emitMySignal2(true); - QCOMPARE(evalJS("gotSignal"), sTrue); - QCOMPARE(evalJS("signalArgs.length == 1"), sTrue); - QCOMPARE(evalJS("slotThisObject == myObject"), sTrue); - QCOMPARE(evalJS("signalSender == myObject"), sTrue); - QCOMPARE(evalJS("myObject.mySignal2.disconnect(myObject, myHandler)"), sUndefined); - - // connect(obj, string) - QCOMPARE(evalJS("myObject.mySignal.connect(yetAnotherObject, 'func')"), sUndefined); - QCOMPARE(evalJS("myObject.mySignal.connect(myObject, 'mySlot')"), sUndefined); - QCOMPARE(evalJS("myObject.mySignal.disconnect(yetAnotherObject, 'func')"), sUndefined); - QCOMPARE(evalJS("myObject.mySignal.disconnect(myObject, 'mySlot')"), sUndefined); - - // check that emitting signals from script works - - // no arguments - QCOMPARE(evalJS("myObject.mySignal.connect(myObject.mySlot)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignal()"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 20); - QCOMPARE(evalJS("myObject.mySignal.disconnect(myObject.mySlot)"), sUndefined); - - // one argument - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myObject.mySlotWithIntArg)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignalWithIntArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 21); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - QCOMPARE(evalJS("myObject.mySignalWithIntArg.disconnect(myObject.mySlotWithIntArg)"), sUndefined); - - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myObject.mySlotWithDoubleArg)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignalWithIntArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 22); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDouble(), 123.0); - QCOMPARE(evalJS("myObject.mySignalWithIntArg.disconnect(myObject.mySlotWithDoubleArg)"), sUndefined); - - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myObject.mySlotWithStringArg)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignalWithIntArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 23); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toString(), QLatin1String("123")); - QCOMPARE(evalJS("myObject.mySignalWithIntArg.disconnect(myObject.mySlotWithStringArg)"), sUndefined); - - // connecting to overloaded slot - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myObject.myOverloadedSlot)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignalWithIntArg(123)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 26); // double overload - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 123); - QCOMPARE(evalJS("myObject.mySignalWithIntArg.disconnect(myObject.myOverloadedSlot)"), sUndefined); - - QCOMPARE(evalJS("myObject.mySignalWithIntArg.connect(myObject['myOverloadedSlot(int)'])"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.mySignalWithIntArg(456)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 28); // int overload - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), 456); - QCOMPARE(evalJS("myObject.mySignalWithIntArg.disconnect(myObject['myOverloadedSlot(int)'])"), sUndefined); - - // erroneous input - { - // ### QtScript adds .connect to all functions, WebKit does only to signals/slots - QString type; - QString ret = evalJS("(function() { }).connect()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: Result of expression '(function() { }).connect' [undefined] is not a function.")); - } - { - QString type; - QString ret = evalJS("var o = { }; o.connect = Function.prototype.connect; o.connect()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: Result of expression 'o.connect' [undefined] is not a function.")); - } - - { - QString type; - QString ret = evalJS("(function() { }).connect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: Result of expression '(function() { }).connect' [undefined] is not a function.")); - } - { - QString type; - QString ret = evalJS("var o = { }; o.connect = Function.prototype.connect; o.connect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: Result of expression 'o.connect' [undefined] is not a function.")); - } - - { - QString type; - QString ret = evalJS("myObject.myInvokable.connect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.connect: MyQObject::myInvokable() is not a signal")); - } - { - QString type; - QString ret = evalJS("myObject.myInvokable.connect(function() { })", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.connect: MyQObject::myInvokable() is not a signal")); - } - - { - QString type; - QString ret = evalJS("myObject.mySignal.connect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.connect: target is not a function")); - } - - { - QString type; - QString ret = evalJS("myObject.mySignal.disconnect()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: QtMetaMethod.disconnect: no arguments given")); - } - { - QString type; - QString ret = evalJS("var o = { }; o.disconnect = myObject.mySignal.disconnect; o.disconnect()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: QtMetaMethod.disconnect: no arguments given")); - } - - /* XFAIL - Function.prototype doesn't get connect/disconnect, just signals/slots - { - QString type; - QString ret = evalJS("(function() { }).disconnect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.disconnect: this object is not a signal")); - } - */ - - { - QString type; - QString ret = evalJS("var o = { }; o.disconnect = myObject.myInvokable.disconnect; o.disconnect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.disconnect: MyQObject::myInvokable() is not a signal")); - } - - { - QString type; - QString ret = evalJS("myObject.myInvokable.disconnect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.disconnect: MyQObject::myInvokable() is not a signal")); - } - { - QString type; - QString ret = evalJS("myObject.myInvokable.disconnect(function() { })", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.disconnect: MyQObject::myInvokable() is not a signal")); - } - - { - QString type; - QString ret = evalJS("myObject.mySignal.disconnect(123)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("TypeError: QtMetaMethod.disconnect: target is not a function")); - } - - { - QString type; - QString ret = evalJS("myObject.mySignal.disconnect(function() { })", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: QtMetaMethod.disconnect: failed to disconnect from MyQObject::mySignal()")); - } - - // when the wrapper dies, the connection stays alive - QCOMPARE(evalJS("myObject.mySignal.connect(myObject.mySlot)"), sUndefined); - m_myObject->resetQtFunctionInvoked(); - m_myObject->emitMySignal(); - QCOMPARE(m_myObject->qtFunctionInvoked(), 20); - evalJS("myObject = null"); - evalJS("gc()"); - m_myObject->resetQtFunctionInvoked(); - m_myObject->emitMySignal(); - QCOMPARE(m_myObject->qtFunctionInvoked(), 20); -} - -void tst_QWebFrame::classEnums() -{ - // We don't do the meta thing currently, unfortunately!!! - /* - QString myClass = m_engine->newQMetaObject(m_myObject->metaObject(), m_engine->undefinedValue()); - m_engine->globalObject().setProperty("MyQObject", myClass); - - QCOMPARE(static_cast(evalJS("MyQObject.FooPolicy").toInt()), - MyQObject::FooPolicy); - QCOMPARE(static_cast(evalJS("MyQObject.BarPolicy").toInt()), - MyQObject::BarPolicy); - QCOMPARE(static_cast(evalJS("MyQObject.BazPolicy").toInt()), - MyQObject::BazPolicy); - - QCOMPARE(static_cast(evalJS("MyQObject.FooStrategy").toInt()), - MyQObject::FooStrategy); - QCOMPARE(static_cast(evalJS("MyQObject.BarStrategy").toInt()), - MyQObject::BarStrategy); - QCOMPARE(static_cast(evalJS("MyQObject.BazStrategy").toInt()), - MyQObject::BazStrategy); - - QCOMPARE(MyQObject::Ability(evalJS("MyQObject.NoAbility").toInt()), - MyQObject::NoAbility); - QCOMPARE(MyQObject::Ability(evalJS("MyQObject.FooAbility").toInt()), - MyQObject::FooAbility); - QCOMPARE(MyQObject::Ability(evalJS("MyQObject.BarAbility").toInt()), - MyQObject::BarAbility); - QCOMPARE(MyQObject::Ability(evalJS("MyQObject.BazAbility").toInt()), - MyQObject::BazAbility); - QCOMPARE(MyQObject::Ability(evalJS("MyQObject.AllAbility").toInt()), - MyQObject::AllAbility); - - // enums from Qt are inherited through prototype - QCOMPARE(static_cast(evalJS("MyQObject.StrongFocus").toInt()), - Qt::StrongFocus); - QCOMPARE(static_cast(evalJS("MyQObject.Key_Left").toInt()), - Qt::Key_Left); - - QCOMPARE(evalJS("MyQObject.className()"), QLatin1String("MyQObject")); - - qRegisterMetaType("Policy"); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokableWithEnumArg(MyQObject.BazPolicy)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 10); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), int(MyQObject::BazPolicy)); - - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokableWithQualifiedEnumArg(MyQObject.BazPolicy)"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 36); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toInt(), int(MyQObject::BazPolicy)); - - m_myObject->resetQtFunctionInvoked(); - { - QVariant ret = evalJS("myObject.myInvokableReturningEnum()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 37); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 0); - QCOMPARE(ret.isVariant()); - } - m_myObject->resetQtFunctionInvoked(); - { - QVariant ret = evalJS("myObject.myInvokableReturningQualifiedEnum()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 38); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 0); - QCOMPARE(ret.isNumber()); - } - */ -} - -void tst_QWebFrame::classConstructor() -{ - /* - QString myClass = qScriptValueFromQMetaObject(m_engine); - m_engine->globalObject().setProperty("MyQObject", myClass); - - QString myObj = evalJS("myObj = MyQObject()"); - QObject* qobj = myObj.toQObject(); - QVERIFY(qobj != 0); - QCOMPARE(qobj->metaObject()->className(), "MyQObject"); - QCOMPARE(qobj->parent(), (QObject*)0); - - QString qobjectClass = qScriptValueFromQMetaObject(m_engine); - m_engine->globalObject().setProperty("QObject", qobjectClass); - - QString otherObj = evalJS("otherObj = QObject(myObj)"); - QObject* qqobj = otherObj.toQObject(); - QVERIFY(qqobj != 0); - QCOMPARE(qqobj->metaObject()->className(), "QObject"); - QCOMPARE(qqobj->parent(), qobj); - - delete qobj; - */ -} - -void tst_QWebFrame::overrideInvokable() -{ - m_myObject->resetQtFunctionInvoked(); - QCOMPARE(evalJS("myObject.myInvokable()"), sUndefined); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); - - /* XFAIL - can't write to functions with RuntimeObject - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myInvokable = function() { window.a = 123; }"); - evalJS("myObject.myInvokable()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), -1); - QCOMPARE(evalJS("window.a").toDouble(), 123.0); - - evalJS("myObject.myInvokable = function() { window.a = 456; }"); - evalJS("myObject.myInvokable()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), -1); - QCOMPARE(evalJS("window.a").toDouble(), 456.0); - */ - - evalJS("delete myObject.myInvokable"); - evalJS("myObject.myInvokable()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); - - /* XFAIL - ditto - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myInvokable = myObject.myInvokableWithIntArg"); - evalJS("myObject.myInvokable(123)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 1); - */ - - evalJS("delete myObject.myInvokable"); - m_myObject->resetQtFunctionInvoked(); - // this form (with the '()') is read-only - evalJS("myObject['myInvokable()'] = function() { window.a = 123; }"); - evalJS("myObject.myInvokable()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); -} - -void tst_QWebFrame::transferInvokable() -{ - /* XFAIL - can't put to functions with RuntimeObject - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.foozball = myObject.myInvokable"); - evalJS("myObject.foozball()"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 0); - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.foozball = myObject.myInvokableWithIntArg"); - evalJS("myObject.foozball(123)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 1); - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myInvokable = myObject.myInvokableWithIntArg"); - evalJS("myObject.myInvokable(123)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 1); - - MyOtherQObject other; - m_page->mainFrame()->addToJSWindowObject("myOtherObject", &other); - evalJS("myOtherObject.foo = myObject.foozball"); - other.resetQtFunctionInvoked(); - evalJS("myOtherObject.foo(456)"); - QCOMPARE(other.qtFunctionInvoked(), 1); - */ -} - -void tst_QWebFrame::findChild() -{ - /* - QObject* child = new QObject(m_myObject); - child->setObjectName(QLatin1String("myChildObject")); - - { - QString result = evalJS("myObject.findChild('noSuchChild')"); - QCOMPARE(result.isNull()); - } - - { - QString result = evalJS("myObject.findChild('myChildObject')"); - QCOMPARE(result.isQObject()); - QCOMPARE(result.toQObject(), child); - } - - delete child; - */ -} - -void tst_QWebFrame::findChildren() -{ - /* - QObject* child = new QObject(m_myObject); - child->setObjectName(QLatin1String("myChildObject")); - - { - QString result = evalJS("myObject.findChildren('noSuchChild')"); - QCOMPARE(result.isArray()); - QCOMPARE(result.property(QLatin1String("length")).toDouble(), 0.0); - } - - { - QString result = evalJS("myObject.findChildren('myChildObject')"); - QCOMPARE(result.isArray()); - QCOMPARE(result.property(QLatin1String("length")).toDouble(), 1.0); - QCOMPARE(result.property(QLatin1String("0")).toQObject(), child); - } - - QObject* namelessChild = new QObject(m_myObject); - - { - QString result = evalJS("myObject.findChildren('myChildObject')"); - QCOMPARE(result.isArray()); - QCOMPARE(result.property(QLatin1String("length")).toDouble(), 1.0); - QCOMPARE(result.property(QLatin1String("0")).toQObject(), child); - } - - QObject* anotherChild = new QObject(m_myObject); - anotherChild->setObjectName(QLatin1String("anotherChildObject")); - - { - QString result = evalJS("myObject.findChildren('anotherChildObject')"); - QCOMPARE(result.isArray()); - QCOMPARE(result.property(QLatin1String("length")).toDouble(), 1.0); - QCOMPARE(result.property(QLatin1String("0")).toQObject(), anotherChild); - } - - anotherChild->setObjectName(QLatin1String("myChildObject")); - { - QString result = evalJS("myObject.findChildren('myChildObject')"); - QCOMPARE(result.isArray()); - QCOMPARE(result.property(QLatin1String("length")).toDouble(), 2.0); - QObject* o1 = result.property(QLatin1String("0")).toQObject(); - QObject* o2 = result.property(QLatin1String("1")).toQObject(); - if (o1 != child) { - QCOMPARE(o1, anotherChild); - QCOMPARE(o2, child); - } else { - QCOMPARE(o1, child); - QCOMPARE(o2, anotherChild); - } - } - - // find all - { - QString result = evalJS("myObject.findChildren()"); - QVERIFY(result.isArray()); - int count = 3; - QCOMPARE(result.property("length"), QLatin1String(count); - for (int i = 0; i < 3; ++i) { - QObject* o = result.property(i).toQObject(); - if (o == namelessChild || o == child || o == anotherChild) - --count; - } - QVERIFY(count == 0); - } - - delete anotherChild; - delete namelessChild; - delete child; - */ -} - -void tst_QWebFrame::overloadedSlots() -{ - // should pick myOverloadedSlot(double) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(10)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 26); - - // should pick myOverloadedSlot(double) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(10.0)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 26); - - // should pick myOverloadedSlot(QString) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot('10')"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 29); - - // should pick myOverloadedSlot(bool) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(true)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 25); - - // should pick myOverloadedSlot(QDateTime) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(new Date())"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 32); - - // should pick myOverloadedSlot(QRegExp) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(new RegExp())"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 34); - - // should pick myOverloadedSlot(QVariant) - /* XFAIL - m_myObject->resetQtFunctionInvoked(); - QString f = evalJS("myObject.myOverloadedSlot"); - f.call(QString(), QStringList() << m_engine->newVariant(QVariant("ciao"))); - QCOMPARE(m_myObject->qtFunctionInvoked(), 35); - */ - - // should pick myOverloadedSlot(QRegExp) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(document.body)"); - QEXPECT_FAIL("", "https://bugs.webkit.org/show_bug.cgi?id=37319", Continue); - QCOMPARE(m_myObject->qtFunctionInvoked(), 36); - - // should pick myOverloadedSlot(QObject*) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(myObject)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 41); - - // should pick myOverloadedSlot(QObject*) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(null)"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 41); - - // should pick myOverloadedSlot(QStringList) - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(['hello'])"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 42); -} - -void tst_QWebFrame::enumerate_data() -{ - QTest::addColumn("expectedNames"); - - QTest::newRow("enumerate all") - << (QStringList() - // meta-object-defined properties: - // inherited - << "objectName" - // non-inherited - << "p1" << "p2" << "p4" << "p6" - // dynamic properties - << "dp1" << "dp2" << "dp3" - // inherited slots - << "destroyed(QObject*)" << "destroyed()" - << "deleteLater()" - // not included because it's private: - // << "_q_reregisterTimers(void*)" - // signals - << "mySignal()" - // slots - << "mySlot()" << "myOtherSlot()"); -} - -void tst_QWebFrame::enumerate() -{ - QFETCH(QStringList, expectedNames); - - MyEnumTestQObject enumQObject; - // give it some dynamic properties - enumQObject.setProperty("dp1", "dp1"); - enumQObject.setProperty("dp2", "dp2"); - enumQObject.setProperty("dp3", "dp3"); - m_page->mainFrame()->addToJavaScriptWindowObject("myEnumObject", &enumQObject); - - // enumerate in script - { - evalJS("var enumeratedProperties = []"); - evalJS("for (var p in myEnumObject) { enumeratedProperties.push(p); }"); - QStringList result = evalJSV("enumeratedProperties").toStringList(); - QCOMPARE(result.size(), expectedNames.size()); - for (int i = 0; i < expectedNames.size(); ++i) - QCOMPARE(result.at(i), expectedNames.at(i)); - } -} - -void tst_QWebFrame::objectDeleted() -{ - MyQObject* qobj = new MyQObject(); - m_page->mainFrame()->addToJavaScriptWindowObject("bar", qobj); - evalJS("bar.objectName = 'foo';"); - QCOMPARE(qobj->objectName(), QLatin1String("foo")); - evalJS("bar.intProperty = 123;"); - QCOMPARE(qobj->intProperty(), 123); - qobj->resetQtFunctionInvoked(); - evalJS("bar.myInvokable.call(bar);"); - QCOMPARE(qobj->qtFunctionInvoked(), 0); - - // do this, to ensure that we cache that it implements call - evalJS("bar()"); - - // now delete the object - delete qobj; - - QCOMPARE(evalJS("typeof bar"), sObject); - - // any attempt to access properties of the object should result in an exception - { - QString type; - QString ret = evalJS("bar.objectName", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot access member `objectName' of deleted QObject")); - } - { - QString type; - QString ret = evalJS("bar.objectName = 'foo'", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot access member `objectName' of deleted QObject")); - } - - // myInvokable is stored in member table (since we've accessed it before deletion) - { - QString type; - evalJS("bar.myInvokable", type); - QCOMPARE(type, sFunction); - } - - { - QString type; - QString ret = evalJS("bar.myInvokable.call(bar);", type); - ret = evalJS("bar.myInvokable(bar)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot call function of deleted QObject")); - } - // myInvokableWithIntArg is not stored in member table (since we've not accessed it) - { - QString type; - QString ret = evalJS("bar.myInvokableWithIntArg", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot access member `myInvokableWithIntArg' of deleted QObject")); - } - - // access from script - evalJS("window.o = bar;"); - { - QString type; - QString ret = evalJS("o.objectName", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot access member `objectName' of deleted QObject")); - } - { - QString type; - QString ret = evalJS("o.myInvokable()", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot call function of deleted QObject")); - } - { - QString type; - QString ret = evalJS("o.myInvokableWithIntArg(10)", type); - QCOMPARE(type, sError); - QCOMPARE(ret, QLatin1String("Error: cannot access member `myInvokableWithIntArg' of deleted QObject")); - } -} - -void tst_QWebFrame::typeConversion() -{ - m_myObject->resetQtFunctionInvoked(); - - QDateTime localdt(QDate(2008,1,18), QTime(12,31,0)); - QDateTime utclocaldt = localdt.toUTC(); - QDateTime utcdt(QDate(2008,1,18), QTime(12,31,0), Qt::UTC); - - // Dates in JS (default to local) - evalJS("myObject.myOverloadedSlot(new Date(2008,0,18,12,31,0))"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 32); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDateTime().toUTC(), utclocaldt); - - m_myObject->resetQtFunctionInvoked(); - evalJS("myObject.myOverloadedSlot(new Date(Date.UTC(2008,0,18,12,31,0)))"); - QCOMPARE(m_myObject->qtFunctionInvoked(), 32); - QCOMPARE(m_myObject->qtFunctionActuals().size(), 1); - QCOMPARE(m_myObject->qtFunctionActuals().at(0).toDateTime().toUTC(), utcdt); - - // Pushing QDateTimes into JS - // Local - evalJS("function checkDate(d) {window.__date_equals = (d.toString() == new Date(2008,0,18,12,31,0))?true:false;}"); - evalJS("myObject.mySignalWithDateTimeArg.connect(checkDate)"); - m_myObject->emitMySignalWithDateTimeArg(localdt); - QCOMPARE(evalJS("window.__date_equals"), sTrue); - evalJS("delete window.__date_equals"); - m_myObject->emitMySignalWithDateTimeArg(utclocaldt); - QCOMPARE(evalJS("window.__date_equals"), sTrue); - evalJS("delete window.__date_equals"); - evalJS("myObject.mySignalWithDateTimeArg.disconnect(checkDate); delete checkDate;"); - - // UTC - evalJS("function checkDate(d) {window.__date_equals = (d.toString() == new Date(Date.UTC(2008,0,18,12,31,0)))?true:false; }"); - evalJS("myObject.mySignalWithDateTimeArg.connect(checkDate)"); - m_myObject->emitMySignalWithDateTimeArg(utcdt); - QCOMPARE(evalJS("window.__date_equals"), sTrue); - evalJS("delete window.__date_equals"); - evalJS("myObject.mySignalWithDateTimeArg.disconnect(checkDate); delete checkDate;"); - - // ### RegExps -} - -class StringListTestObject : public QObject { - Q_OBJECT -public Q_SLOTS: - QVariant stringList() - { - return QStringList() << "Q" << "t"; - }; -}; - -void tst_QWebFrame::arrayObjectEnumerable() -{ - QWebPage page; - QWebFrame* frame = page.mainFrame(); - QObject* qobject = new StringListTestObject(); - frame->addToJavaScriptWindowObject("test", qobject, QScriptEngine::ScriptOwnership); - - const QString script("var stringArray = test.stringList();" - "var result = '';" - "for (var i in stringArray) {" - " result += stringArray[i];" - "}" - "result;"); - QCOMPARE(frame->evaluateJavaScript(script).toString(), QString::fromLatin1("Qt")); -} - -void tst_QWebFrame::symmetricUrl() -{ - QVERIFY(m_view->url().isEmpty()); - - QCOMPARE(m_view->history()->count(), 0); - - QUrl dataUrl("data:text/html,

Test"); - - m_view->setUrl(dataUrl); - QCOMPARE(m_view->url(), dataUrl); - QCOMPARE(m_view->history()->count(), 0); - - // loading is _not_ immediate, so the text isn't set just yet. - QVERIFY(m_view->page()->mainFrame()->toPlainText().isEmpty()); - - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - - QCOMPARE(m_view->history()->count(), 1); - QCOMPARE(m_view->page()->mainFrame()->toPlainText(), QString("Test")); - - QUrl dataUrl2("data:text/html,

Test2"); - QUrl dataUrl3("data:text/html,

Test3"); - - m_view->setUrl(dataUrl2); - m_view->setUrl(dataUrl3); - - QCOMPARE(m_view->url(), dataUrl3); - - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - - QCOMPARE(m_view->history()->count(), 2); - - QCOMPARE(m_view->page()->mainFrame()->toPlainText(), QString("Test3")); -} - -void tst_QWebFrame::progressSignal() -{ - QSignalSpy progressSpy(m_view, SIGNAL(loadProgress(int))); - - QUrl dataUrl("data:text/html,

Test"); - m_view->setUrl(dataUrl); - - ::waitForSignal(m_view, SIGNAL(loadFinished(bool))); - - QVERIFY(progressSpy.size() >= 2); - - // WebKit defines initialProgressValue as 10%, not 0% - QCOMPARE(progressSpy.first().first().toInt(), 10); - - // But we always end at 100% - QCOMPARE(progressSpy.last().first().toInt(), 100); -} - -void tst_QWebFrame::urlChange() -{ - QSignalSpy urlSpy(m_page->mainFrame(), SIGNAL(urlChanged(QUrl))); - - QUrl dataUrl("data:text/html,

Test"); - m_view->setUrl(dataUrl); - - ::waitForSignal(m_page->mainFrame(), SIGNAL(urlChanged(QUrl))); - - QCOMPARE(urlSpy.size(), 1); - - QUrl dataUrl2("data:text/html,title

Test"); - m_view->setUrl(dataUrl2); - - ::waitForSignal(m_page->mainFrame(), SIGNAL(urlChanged(QUrl))); - - QCOMPARE(urlSpy.size(), 2); -} - - -void tst_QWebFrame::domCycles() -{ - m_view->setHtml(""); - QVariant v = m_page->mainFrame()->evaluateJavaScript("document"); - QVERIFY(v.type() == QVariant::Map); -} - -class FakeReply : public QNetworkReply { - Q_OBJECT - -public: - FakeReply(const QNetworkRequest& request, QObject* parent = 0) - : QNetworkReply(parent) - { - setOperation(QNetworkAccessManager::GetOperation); - setRequest(request); - if (request.url() == QUrl("qrc:/test1.html")) { - setHeader(QNetworkRequest::LocationHeader, QString("qrc:/test2.html")); - setAttribute(QNetworkRequest::RedirectionTargetAttribute, QUrl("qrc:/test2.html")); - } -#ifndef QT_NO_OPENSSL - else if (request.url() == QUrl("qrc:/fake-ssl-error.html")) - setError(QNetworkReply::SslHandshakeFailedError, tr("Fake error !")); // force a ssl error -#endif - else if (request.url() == QUrl("http://abcdef.abcdef/")) - setError(QNetworkReply::HostNotFoundError, tr("Invalid URL")); - - open(QIODevice::ReadOnly); - QTimer::singleShot(0, this, SLOT(timeout())); - } - ~FakeReply() - { - close(); - } - virtual void abort() {} - virtual void close() {} - -protected: - qint64 readData(char*, qint64) - { - return 0; - } - -private slots: - void timeout() - { - if (request().url() == QUrl("qrc://test1.html")) - emit error(this->error()); - else if (request().url() == QUrl("http://abcdef.abcdef/")) - emit metaDataChanged(); -#ifndef QT_NO_OPENSSL - else if (request().url() == QUrl("qrc:/fake-ssl-error.html")) - return; -#endif - - emit readyRead(); - emit finished(); - } -}; - -class FakeNetworkManager : public QNetworkAccessManager { - Q_OBJECT - -public: - FakeNetworkManager(QObject* parent) : QNetworkAccessManager(parent) { } - -protected: - virtual QNetworkReply* createRequest(Operation op, const QNetworkRequest& request, QIODevice* outgoingData) - { - QString url = request.url().toString(); - if (op == QNetworkAccessManager::GetOperation) { - if (url == "qrc:/test1.html" || url == "http://abcdef.abcdef/") - return new FakeReply(request, this); -#ifndef QT_NO_OPENSSL - else if (url == "qrc:/fake-ssl-error.html") { - FakeReply* reply = new FakeReply(request, this); - QList errors; - emit sslErrors(reply, errors << QSslError(QSslError::UnspecifiedError)); - return reply; - } -#endif - } - - return QNetworkAccessManager::createRequest(op, request, outgoingData); - } -}; - -void tst_QWebFrame::requestedUrl() -{ - QWebPage page; - QWebFrame* frame = page.mainFrame(); - - // in few seconds, the image should be completely loaded - QSignalSpy spy(&page, SIGNAL(loadFinished(bool))); - FakeNetworkManager* networkManager = new FakeNetworkManager(&page); - page.setNetworkAccessManager(networkManager); - - frame->setUrl(QUrl("qrc:/test1.html")); - waitForSignal(frame, SIGNAL(loadFinished(bool)), 200); - QCOMPARE(spy.count(), 1); - QCOMPARE(frame->requestedUrl(), QUrl("qrc:/test1.html")); - QCOMPARE(frame->url(), QUrl("qrc:/test2.html")); - - frame->setUrl(QUrl("qrc:/non-existent.html")); - waitForSignal(frame, SIGNAL(loadFinished(bool)), 200); - QCOMPARE(spy.count(), 2); - QCOMPARE(frame->requestedUrl(), QUrl("qrc:/non-existent.html")); - QCOMPARE(frame->url(), QUrl("qrc:/non-existent.html")); - - frame->setUrl(QUrl("http://abcdef.abcdef")); - waitForSignal(frame, SIGNAL(loadFinished(bool)), 200); - QCOMPARE(spy.count(), 3); - QCOMPARE(frame->requestedUrl(), QUrl("http://abcdef.abcdef/")); - QCOMPARE(frame->url(), QUrl("http://abcdef.abcdef/")); - -#ifndef QT_NO_OPENSSL - qRegisterMetaType >("QList"); - qRegisterMetaType("QNetworkReply*"); - - QSignalSpy spy2(page.networkAccessManager(), SIGNAL(sslErrors(QNetworkReply*,QList))); - frame->setUrl(QUrl("qrc:/fake-ssl-error.html")); - waitForSignal(frame, SIGNAL(loadFinished(bool)), 200); - QCOMPARE(spy2.count(), 1); - QCOMPARE(frame->requestedUrl(), QUrl("qrc:/fake-ssl-error.html")); - QCOMPARE(frame->url(), QUrl("qrc:/fake-ssl-error.html")); -#endif -} - -void tst_QWebFrame::javaScriptWindowObjectCleared_data() -{ - QTest::addColumn("html"); - QTest::addColumn("signalCount"); - QTest::newRow("with

hello world

" << 1; - QTest::newRow("without

hello world

"); - MyPage page; - m_view->setPage(&page); - page.mainFrame()->setHtml(html); - QCOMPARE(page.alerts, 1); - QCOMPARE(m_view->page()->mainFrame()->toHtml(), html); -} - -class TestNetworkManager : public QNetworkAccessManager -{ -public: - TestNetworkManager(QObject* parent) : QNetworkAccessManager(parent) {} - - QList requestedUrls; - -protected: - virtual QNetworkReply* createRequest(Operation op, const QNetworkRequest &request, QIODevice* outgoingData) { - requestedUrls.append(request.url()); - QNetworkRequest redirectedRequest = request; - redirectedRequest.setUrl(QUrl("data:text/html,

hello")); - return QNetworkAccessManager::createRequest(op, redirectedRequest, outgoingData); - } -}; - -void tst_QWebFrame::ipv6HostEncoding() -{ - TestNetworkManager* networkManager = new TestNetworkManager(m_page); - m_page->setNetworkAccessManager(networkManager); - networkManager->requestedUrls.clear(); - - QUrl baseUrl = QUrl::fromEncoded("http://[::1]/index.html"); - m_view->setHtml("

Hi", baseUrl); - m_view->page()->mainFrame()->evaluateJavaScript("var r = new XMLHttpRequest();" - "r.open('GET', 'http://[::1]/test.xml', false);" - "r.send(null);" - ); - QCOMPARE(networkManager->requestedUrls.count(), 1); - QCOMPARE(networkManager->requestedUrls.at(0), QUrl::fromEncoded("http://[::1]/test.xml")); -} - -void tst_QWebFrame::metaData() -{ - m_view->setHtml("" - " " - " " - " " - " " - ""); - - QMultiMap metaData = m_view->page()->mainFrame()->metaData(); - - QCOMPARE(metaData.count(), 2); - - QCOMPARE(metaData.value("description"), QString("Test description")); - QCOMPARE(metaData.value("keywords"), QString("HTML, JavaScript, Css")); - QCOMPARE(metaData.value("nonexistant"), QString()); - - m_view->setHtml("" - " " - " " - " " - " " - ""); - - metaData = m_view->page()->mainFrame()->metaData(); - - QCOMPARE(metaData.count(), 2); - - QStringList values = metaData.values("samekey"); - QCOMPARE(values.count(), 2); - - QVERIFY(values.contains("FirstValue")); - QVERIFY(values.contains("SecondValue")); - - QCOMPARE(metaData.value("nonexistant"), QString()); -} - -#if !defined(Q_WS_MAEMO_5) -void tst_QWebFrame::popupFocus() -{ - QWebView view; - view.setHtml("" - " " - " " - " " - " " - " " - ""); - view.resize(400, 100); - view.show(); - view.setFocus(); - QTRY_VERIFY(view.hasFocus()); - - // open the popup by clicking. check if focus is on the popup - QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(25, 25)); - QObject* webpopup = firstChildByClassName(&view, "QComboBox"); - QComboBox* combo = qobject_cast(webpopup); - QVERIFY(combo != 0); - QTRY_VERIFY(!view.hasFocus() && combo->view()->hasFocus()); // Focus should be on the popup - - // hide the popup and check if focus is on the page - combo->hidePopup(); - QTRY_VERIFY(view.hasFocus() && !combo->view()->hasFocus()); // Focus should be back on the WebView -} -#endif - -void tst_QWebFrame::inputFieldFocus() -{ - QWebView view; - view.setHtml(""); - view.resize(400, 100); - view.show(); - view.setFocus(); - QTRY_VERIFY(view.hasFocus()); - - // double the flashing time, should at least blink once already - int delay = qApp->cursorFlashTime() * 2; - - // focus the lineedit and check if it blinks - QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(25, 25)); - m_inputFieldsTestView = &view; - view.installEventFilter( this ); - QTest::qWait(delay); - QVERIFY2(m_inputFieldTestPaintCount >= 3, - "The input field should have a blinking caret"); -} - -void tst_QWebFrame::hitTestContent() -{ - QString html("

A paragraph




link text"); - - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->setHtml(html); - page.setViewportSize(QSize(200, 0)); //no height so link is not visible - QWebHitTestResult result = frame->hitTestContent(QPoint(10, 100)); - QCOMPARE(result.linkText(), QString("link text")); - QWebElement link = result.linkElement(); - QCOMPARE(link.attribute("target"), QString("_foo")); -} - -void tst_QWebFrame::jsByteArray() -{ - QByteArray ba("hello world"); - m_myObject->setByteArrayProperty(ba); - - // read-only property - QCOMPARE(m_myObject->byteArrayProperty(), ba); - QString type; - QVariant v = evalJSV("myObject.byteArrayProperty"); - QCOMPARE(int(v.type()), int(QVariant::ByteArray)); - - QCOMPARE(v.toByteArray(), ba); -} - -void tst_QWebFrame::ownership() -{ - // test ownership - { - QPointer ptr = new QObject(); - QVERIFY(ptr != 0); - { - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->addToJavaScriptWindowObject("test", ptr, QScriptEngine::ScriptOwnership); - } - QVERIFY(ptr == 0); - } - { - QPointer ptr = new QObject(); - QVERIFY(ptr != 0); - QObject* before = ptr; - { - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->addToJavaScriptWindowObject("test", ptr, QScriptEngine::QtOwnership); - } - QVERIFY(ptr == before); - delete ptr; - } - { - QObject* parent = new QObject(); - QObject* child = new QObject(parent); - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->addToJavaScriptWindowObject("test", child, QScriptEngine::QtOwnership); - QVariant v = frame->evaluateJavaScript("test"); - QCOMPARE(qvariant_cast(v), child); - delete parent; - v = frame->evaluateJavaScript("test"); - QCOMPARE(qvariant_cast(v), (QObject *)0); - } - { - QPointer ptr = new QObject(); - QVERIFY(ptr != 0); - { - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->addToJavaScriptWindowObject("test", ptr, QScriptEngine::AutoOwnership); - } - // no parent, so it should be like ScriptOwnership - QVERIFY(ptr == 0); - } - { - QObject* parent = new QObject(); - QPointer child = new QObject(parent); - QVERIFY(child != 0); - { - QWebPage page; - QWebFrame* frame = page.mainFrame(); - frame->addToJavaScriptWindowObject("test", child, QScriptEngine::AutoOwnership); - } - // has parent, so it should be like QtOwnership - QVERIFY(child != 0); - delete parent; - } -} - -void tst_QWebFrame::nullValue() -{ - QVariant v = m_view->page()->mainFrame()->evaluateJavaScript("null"); - QVERIFY(v.isNull()); -} - -void tst_QWebFrame::baseUrl_data() -{ - QTest::addColumn("html"); - QTest::addColumn("loadUrl"); - QTest::addColumn("url"); - QTest::addColumn("baseUrl"); - - QTest::newRow("null") << QString() << QUrl() - << QUrl("about:blank") << QUrl("about:blank"); - - QTest::newRow("foo") << QString() << QUrl("http://foobar.baz/") - << QUrl("http://foobar.baz/") << QUrl("http://foobar.baz/"); - - QString html = "" - "" - "" - "" - ""; - QTest::newRow("customBaseUrl") << html << QUrl("http://foobar.baz/") - << QUrl("http://foobar.baz/") << QUrl("http://foobaz.bar/"); -} - -void tst_QWebFrame::baseUrl() -{ - QFETCH(QString, html); - QFETCH(QUrl, loadUrl); - QFETCH(QUrl, url); - QFETCH(QUrl, baseUrl); - - m_page->mainFrame()->setHtml(html, loadUrl); - QCOMPARE(m_page->mainFrame()->url(), url); - QCOMPARE(m_page->mainFrame()->baseUrl(), baseUrl); -} - -void tst_QWebFrame::hasSetFocus() -{ - QString html("

top

" \ - " - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/resources/iframe3.html --- a/WebKit/qt/tests/qwebpage/resources/iframe3.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ - - -

inner

- - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/resources/index.html --- a/WebKit/qt/tests/qwebpage/resources/index.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage.cpp --- a/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2177 +0,0 @@ -/* - Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - Copyright (C) 2009 Girish Ramakrishnan - Copyright (C) 2010 Holger Hans Peter Freyther - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include "../util.h" -#include "../WebCoreSupport/DumpRenderTreeSupportQt.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -class EventSpy : public QObject, public QList -{ - Q_OBJECT -public: - EventSpy(QObject* objectToSpy) - { - objectToSpy->installEventFilter(this); - } - - virtual bool eventFilter(QObject* receiver, QEvent* event) - { - append(event->type()); - return false; - } -}; - -class tst_QWebPage : public QObject -{ - Q_OBJECT - -public: - tst_QWebPage(); - virtual ~tst_QWebPage(); - -public slots: - void init(); - void cleanup(); - void cleanupFiles(); - -private slots: - void initTestCase(); - void cleanupTestCase(); - - void acceptNavigationRequest(); - void infiniteLoopJS(); - void geolocationRequestJS(); - void loadFinished(); - void acceptNavigationRequestWithNewWindow(); - void userStyleSheet(); - void modified(); - void contextMenuCrash(); - void database(); - void createPluginWithPluginsEnabled(); - void createPluginWithPluginsDisabled(); - void destroyPlugin_data(); - void destroyPlugin(); - void createViewlessPlugin_data(); - void createViewlessPlugin(); - void multiplePageGroupsAndLocalStorage(); - void cursorMovements(); - void textSelection(); - void textEditing(); - void backActionUpdate(); - void frameAt(); - void requestCache(); - void protectBindingsRuntimeObjectsFromCollector(); - void localURLSchemes(); - void testOptionalJSObjects(); - void testEnablePersistentStorage(); - void consoleOutput(); - void inputMethods_data(); - void inputMethods(); - void inputMethodsTextFormat_data(); - void inputMethodsTextFormat(); - void defaultTextEncoding(); - void errorPageExtension(); - void errorPageExtensionInIFrames(); - void errorPageExtensionInFrameset(); - void userAgentApplicationName(); - void userAgentLocaleChange(); - - void viewModes(); - - void crashTests_LazyInitializationOfMainFrame(); - - void screenshot_data(); - void screenshot(); - - void originatingObjectInNetworkRequests(); - void testJSPrompt(); - void showModalDialog(); - void testStopScheduledPageRefresh(); - void findText(); - -private: - QWebView* m_view; - QWebPage* m_page; -}; - -tst_QWebPage::tst_QWebPage() -{ -} - -tst_QWebPage::~tst_QWebPage() -{ -} - -void tst_QWebPage::init() -{ - m_view = new QWebView(); - m_page = m_view->page(); -} - -void tst_QWebPage::cleanup() -{ - delete m_view; -} - -void tst_QWebPage::cleanupFiles() -{ - QFile::remove("Databases.db"); - QDir::current().rmdir("http_www.myexample.com_0"); - QFile::remove("http_www.myexample.com_0.localstorage"); -} - -void tst_QWebPage::initTestCase() -{ - cleanupFiles(); // In case there are old files from previous runs -} - -void tst_QWebPage::cleanupTestCase() -{ - cleanupFiles(); // Be nice -} - -class NavigationRequestOverride : public QWebPage -{ -public: - NavigationRequestOverride(QWebView* parent, bool initialValue) : QWebPage(parent), m_acceptNavigationRequest(initialValue) {} - - bool m_acceptNavigationRequest; -protected: - virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest &request, QWebPage::NavigationType type) { - Q_UNUSED(frame); - Q_UNUSED(request); - Q_UNUSED(type); - - return m_acceptNavigationRequest; - } -}; - -void tst_QWebPage::acceptNavigationRequest() -{ - QSignalSpy loadSpy(m_view, SIGNAL(loadFinished(bool))); - - NavigationRequestOverride* newPage = new NavigationRequestOverride(m_view, false); - m_view->setPage(newPage); - - m_view->setHtml(QString("
" - "
"), QUrl()); - QTRY_COMPARE(loadSpy.count(), 1); - - m_view->page()->mainFrame()->evaluateJavaScript("tstform.submit();"); - - newPage->m_acceptNavigationRequest = true; - m_view->page()->mainFrame()->evaluateJavaScript("tstform.submit();"); - QTRY_COMPARE(loadSpy.count(), 2); - - QCOMPARE(m_view->page()->mainFrame()->toPlainText(), QString("foo?")); - - // Restore default page - m_view->setPage(0); -} - -class JSTestPage : public QWebPage -{ -Q_OBJECT -public: - JSTestPage(QObject* parent = 0) - : QWebPage(parent) {} - -public slots: - bool shouldInterruptJavaScript() { - return true; - } - bool allowGeolocationRequest(QWebFrame *frame) - { - return m_allowGeolocation; - } - -public: - void setGeolocationPermission(bool allow) - { - m_allowGeolocation = allow; - } - -private: - bool m_allowGeolocation; -}; - -void tst_QWebPage::infiniteLoopJS() -{ -#ifdef Q_WS_MAEMO_5 - QSKIP("Test never terminates on Maemo 5 : https://bugs.webkit.org/show_bug.cgi?id=38538", SkipAll); -#endif - JSTestPage* newPage = new JSTestPage(m_view); - m_view->setPage(newPage); - m_view->setHtml(QString("test"), QUrl()); - m_view->page()->mainFrame()->evaluateJavaScript("var run = true;var a = 1;while(run){a++;}"); - delete newPage; -} - -void tst_QWebPage::geolocationRequestJS() -{ - JSTestPage* newPage = new JSTestPage(m_view); - newPage->setGeolocationPermission(false); - m_view->setPage(newPage); - m_view->setHtml(QString("test"), QUrl()); - m_view->page()->mainFrame()->evaluateJavaScript("var errorCode = 0; function error(err) { errorCode = err.code; } function success(pos) { } navigator.geolocation.getCurrentPosition(success, error)"); - QTest::qWait(2000); - QVariant empty = m_view->page()->mainFrame()->evaluateJavaScript("errorCode"); - - QVERIFY(empty.type() == QVariant::Double && empty.toInt() != 0); - - newPage->setGeolocationPermission(true); - m_view->page()->mainFrame()->evaluateJavaScript("errorCode = 0; navigator.geolocation.getCurrentPosition(success, error);"); - empty = m_view->page()->mainFrame()->evaluateJavaScript("errorCode"); - - //http://dev.w3.org/geo/api/spec-source.html#position - //PositionError: const unsigned short PERMISSION_DENIED = 1; - QVERIFY(empty.type() == QVariant::Double && empty.toInt() != 1); - delete newPage; -} - -void tst_QWebPage::loadFinished() -{ - qRegisterMetaType("QWebFrame*"); - qRegisterMetaType("QNetworkRequest*"); - QSignalSpy spyLoadStarted(m_view, SIGNAL(loadStarted())); - QSignalSpy spyLoadFinished(m_view, SIGNAL(loadFinished(bool))); - - m_view->setHtml(QString("data:text/html,foo \">" - ""), QUrl()); - QTRY_COMPARE(spyLoadFinished.count(), 1); - - QTRY_VERIFY(spyLoadStarted.count() > 1); - QTRY_VERIFY(spyLoadFinished.count() > 1); - - spyLoadFinished.clear(); - - m_view->setHtml(QString("data:text/html,"), QUrl()); - QTRY_COMPARE(spyLoadFinished.count(), 1); - QCOMPARE(spyLoadFinished.count(), 1); -} - -class ConsolePage : public QWebPage -{ -public: - ConsolePage(QObject* parent = 0) : QWebPage(parent) {} - - virtual void javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID) - { - messages.append(message); - lineNumbers.append(lineNumber); - sourceIDs.append(sourceID); - } - - QStringList messages; - QList lineNumbers; - QStringList sourceIDs; -}; - -void tst_QWebPage::consoleOutput() -{ - ConsolePage page; - page.mainFrame()->evaluateJavaScript("this is not valid JavaScript"); - QCOMPARE(page.messages.count(), 1); - QCOMPARE(page.lineNumbers.at(0), 1); -} - -class TestPage : public QWebPage -{ -public: - TestPage(QObject* parent = 0) : QWebPage(parent) {} - - struct Navigation { - QPointer frame; - QNetworkRequest request; - NavigationType type; - }; - - QList navigations; - QList createdWindows; - - virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest &request, NavigationType type) { - Navigation n; - n.frame = frame; - n.request = request; - n.type = type; - navigations.append(n); - return true; - } - - virtual QWebPage* createWindow(WebWindowType) { - QWebPage* page = new TestPage(this); - createdWindows.append(page); - return page; - } -}; - -void tst_QWebPage::acceptNavigationRequestWithNewWindow() -{ - TestPage* page = new TestPage(m_view); - page->settings()->setAttribute(QWebSettings::LinksIncludedInFocusChain, true); - m_page = page; - m_view->setPage(m_page); - - m_view->setUrl(QString("data:text/html,Click me")); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - QFocusEvent fe(QEvent::FocusIn); - m_page->event(&fe); - - QVERIFY(m_page->focusNextPrevChild(/*next*/ true)); - - QKeyEvent keyEnter(QEvent::KeyPress, Qt::Key_Enter, Qt::NoModifier); - m_page->event(&keyEnter); - - QCOMPARE(page->navigations.count(), 2); - - TestPage::Navigation n = page->navigations.at(1); - QVERIFY(n.frame.isNull()); - QCOMPARE(n.request.url().toString(), QString("data:text/html,Reached")); - QVERIFY(n.type == QWebPage::NavigationTypeLinkClicked); - - QCOMPARE(page->createdWindows.count(), 1); -} - -class TestNetworkManager : public QNetworkAccessManager -{ -public: - TestNetworkManager(QObject* parent) : QNetworkAccessManager(parent) {} - - QList requestedUrls; - QList requests; - -protected: - virtual QNetworkReply* createRequest(Operation op, const QNetworkRequest &request, QIODevice* outgoingData) { - requests.append(request); - requestedUrls.append(request.url()); - return QNetworkAccessManager::createRequest(op, request, outgoingData); - } -}; - -void tst_QWebPage::userStyleSheet() -{ - TestNetworkManager* networkManager = new TestNetworkManager(m_page); - m_page->setNetworkAccessManager(networkManager); - networkManager->requestedUrls.clear(); - - m_page->settings()->setUserStyleSheetUrl(QUrl("data:text/css;charset=utf-8;base64," - + QByteArray("p { background-image: url('http://does.not/exist.png');}").toBase64())); - m_view->setHtml("

hello world

"); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - QVERIFY(networkManager->requestedUrls.count() >= 1); - QCOMPARE(networkManager->requestedUrls.at(0), QUrl("http://does.not/exist.png")); -} - -void tst_QWebPage::viewModes() -{ - m_view->setHtml(""); - m_page->setProperty("_q_viewMode", "minimized"); - - QVariant empty = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode)\")"); - QVERIFY(empty.type() == QVariant::Bool && empty.toBool()); - - QVariant minimized = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode: minimized)\")"); - QVERIFY(minimized.type() == QVariant::Bool && minimized.toBool()); - - QVariant maximized = m_page->mainFrame()->evaluateJavaScript("window.styleMedia.matchMedium(\"(-webkit-view-mode: maximized)\")"); - QVERIFY(maximized.type() == QVariant::Bool && !maximized.toBool()); -} - -void tst_QWebPage::modified() -{ - m_page->mainFrame()->setUrl(QUrl("data:text/html,blub")); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - m_page->mainFrame()->setUrl(QUrl("data:text/html,blah")); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - QVERIFY(!m_page->isModified()); - -// m_page->mainFrame()->evaluateJavaScript("alert(document.getElementById('foo'))"); - m_page->mainFrame()->evaluateJavaScript("document.getElementById('foo').focus()"); - m_page->mainFrame()->evaluateJavaScript("document.execCommand('InsertText', true, 'Test');"); - - QVERIFY(m_page->isModified()); - - m_page->mainFrame()->evaluateJavaScript("document.execCommand('Undo', true);"); - - QVERIFY(!m_page->isModified()); - - m_page->mainFrame()->evaluateJavaScript("document.execCommand('Redo', true);"); - - QVERIFY(m_page->isModified()); - - QVERIFY(m_page->history()->canGoBack()); - QVERIFY(!m_page->history()->canGoForward()); - QCOMPARE(m_page->history()->count(), 2); - QVERIFY(m_page->history()->backItem().isValid()); - QVERIFY(!m_page->history()->forwardItem().isValid()); - - m_page->history()->back(); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - QVERIFY(!m_page->history()->canGoBack()); - QVERIFY(m_page->history()->canGoForward()); - - QVERIFY(!m_page->isModified()); - - QVERIFY(m_page->history()->currentItemIndex() == 0); - - m_page->history()->setMaximumItemCount(3); - QVERIFY(m_page->history()->maximumItemCount() == 3); - - QVariant variant("string test"); - m_page->history()->currentItem().setUserData(variant); - QVERIFY(m_page->history()->currentItem().userData().toString() == "string test"); - - m_page->mainFrame()->setUrl(QUrl("data:text/html,This is second page")); - m_page->mainFrame()->setUrl(QUrl("data:text/html,This is third page")); - QVERIFY(m_page->history()->count() == 2); - m_page->mainFrame()->setUrl(QUrl("data:text/html,This is fourth page")); - QVERIFY(m_page->history()->count() == 2); - m_page->mainFrame()->setUrl(QUrl("data:text/html,This is fifth page")); - QVERIFY(::waitForSignal(m_page, SIGNAL(saveFrameStateRequested(QWebFrame*,QWebHistoryItem*)))); -} - -void tst_QWebPage::contextMenuCrash() -{ - QWebView view; - view.setHtml("

test"); - view.page()->updatePositionDependentActions(QPoint(0, 0)); - QMenu* contextMenu = 0; - foreach (QObject* child, view.children()) { - contextMenu = qobject_cast(child); - if (contextMenu) - break; - } - QVERIFY(contextMenu); - delete contextMenu; -} - -void tst_QWebPage::database() -{ - QString path = QDir::currentPath(); - m_page->settings()->setOfflineStoragePath(path); - QVERIFY(m_page->settings()->offlineStoragePath() == path); - - QWebSettings::setOfflineStorageDefaultQuota(1024 * 1024); - QVERIFY(QWebSettings::offlineStorageDefaultQuota() == 1024 * 1024); - - m_page->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true); - m_page->settings()->setAttribute(QWebSettings::OfflineStorageDatabaseEnabled, true); - - QString dbFileName = path + "Databases.db"; - - if (QFile::exists(dbFileName)) - QFile::remove(dbFileName); - - qRegisterMetaType("QWebFrame*"); - QSignalSpy spy(m_page, SIGNAL(databaseQuotaExceeded(QWebFrame*,QString))); - m_view->setHtml(QString("

"), QUrl("http://www.myexample.com")); - QTRY_COMPARE(spy.count(), 1); - m_page->mainFrame()->evaluateJavaScript("var db2; db2=openDatabase('testdb', '1.0', 'test database API', 50000);"); - QTRY_COMPARE(spy.count(),1); - - m_page->mainFrame()->evaluateJavaScript("localStorage.test='This is a test for local storage';"); - m_view->setHtml(QString("text"), QUrl("http://www.myexample.com")); - - QVariant s1 = m_page->mainFrame()->evaluateJavaScript("localStorage.test"); - QCOMPARE(s1.toString(), QString("This is a test for local storage")); - - m_page->mainFrame()->evaluateJavaScript("sessionStorage.test='This is a test for session storage';"); - m_view->setHtml(QString("text"), QUrl("http://www.myexample.com")); - QVariant s2 = m_page->mainFrame()->evaluateJavaScript("sessionStorage.test"); - QCOMPARE(s2.toString(), QString("This is a test for session storage")); - - m_view->setHtml(QString("
"), QUrl("http://www.myexample.com")); - m_page->mainFrame()->evaluateJavaScript("var db3; db3=openDatabase('testdb', '1.0', 'test database API', 50000);db3.transaction(function(tx) { tx.executeSql('CREATE TABLE IF NOT EXISTS Test (text TEXT)', []); }, function(tx, result) { }, function(tx, error) { });"); - QTest::qWait(200); - - // Remove all databases. - QWebSecurityOrigin origin = m_page->mainFrame()->securityOrigin(); - QList dbs = origin.databases(); - for (int i = 0; i < dbs.count(); i++) { - QString fileName = dbs[i].fileName(); - QVERIFY(QFile::exists(fileName)); - QWebDatabase::removeDatabase(dbs[i]); - QVERIFY(!QFile::exists(fileName)); - } - QVERIFY(!origin.databases().size()); - // Remove removed test :-) - QWebDatabase::removeAllDatabases(); - QVERIFY(!origin.databases().size()); -} - -class PluginPage : public QWebPage -{ -public: - PluginPage(QObject *parent = 0) - : QWebPage(parent) {} - - struct CallInfo - { - CallInfo(const QString &c, const QUrl &u, - const QStringList &pn, const QStringList &pv, - QObject *r) - : classid(c), url(u), paramNames(pn), - paramValues(pv), returnValue(r) - {} - QString classid; - QUrl url; - QStringList paramNames; - QStringList paramValues; - QObject *returnValue; - }; - - QList calls; - -protected: - virtual QObject *createPlugin(const QString &classid, const QUrl &url, - const QStringList ¶mNames, - const QStringList ¶mValues) - { - QObject *result = 0; - if (classid == "pushbutton") - result = new QPushButton(); - else if (classid == "lineedit") - result = new QLineEdit(); - if (result) - result->setObjectName(classid); - calls.append(CallInfo(classid, url, paramNames, paramValues, result)); - return result; - } -}; - -static void createPlugin(QWebView *view) -{ - QSignalSpy loadSpy(view, SIGNAL(loadFinished(bool))); - - PluginPage* newPage = new PluginPage(view); - view->setPage(newPage); - - // type has to be application/x-qt-plugin - view->setHtml(QString("")); - QTRY_COMPARE(loadSpy.count(), 1); - QCOMPARE(newPage->calls.count(), 0); - - view->setHtml(QString("")); - QTRY_COMPARE(loadSpy.count(), 2); - QCOMPARE(newPage->calls.count(), 1); - { - PluginPage::CallInfo ci = newPage->calls.takeFirst(); - QCOMPARE(ci.classid, QString::fromLatin1("pushbutton")); - QCOMPARE(ci.url, QUrl()); - QCOMPARE(ci.paramNames.count(), 3); - QCOMPARE(ci.paramValues.count(), 3); - QCOMPARE(ci.paramNames.at(0), QString::fromLatin1("type")); - QCOMPARE(ci.paramValues.at(0), QString::fromLatin1("application/x-qt-plugin")); - QCOMPARE(ci.paramNames.at(1), QString::fromLatin1("classid")); - QCOMPARE(ci.paramValues.at(1), QString::fromLatin1("pushbutton")); - QCOMPARE(ci.paramNames.at(2), QString::fromLatin1("id")); - QCOMPARE(ci.paramValues.at(2), QString::fromLatin1("mybutton")); - QVERIFY(ci.returnValue != 0); - QVERIFY(ci.returnValue->inherits("QPushButton")); - } - // test JS bindings - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("document.getElementById('mybutton').toString()").toString(), - QString::fromLatin1("[object HTMLObjectElement]")); - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("mybutton.toString()").toString(), - QString::fromLatin1("[object HTMLObjectElement]")); - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("typeof mybutton.objectName").toString(), - QString::fromLatin1("string")); - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("mybutton.objectName").toString(), - QString::fromLatin1("pushbutton")); - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("typeof mybutton.clicked").toString(), - QString::fromLatin1("function")); - QCOMPARE(newPage->mainFrame()->evaluateJavaScript("mybutton.clicked.toString()").toString(), - QString::fromLatin1("function clicked() {\n [native code]\n}")); - - view->setHtml(QString("" - "" - "" - "
"), QUrl("http://foo.bar.baz")); - QTRY_COMPARE(loadSpy.count(), 3); - QCOMPARE(newPage->calls.count(), 2); - { - PluginPage::CallInfo ci = newPage->calls.takeFirst(); - QCOMPARE(ci.classid, QString::fromLatin1("lineedit")); - QCOMPARE(ci.url, QUrl()); - QCOMPARE(ci.paramNames.count(), 3); - QCOMPARE(ci.paramValues.count(), 3); - QCOMPARE(ci.paramNames.at(0), QString::fromLatin1("type")); - QCOMPARE(ci.paramValues.at(0), QString::fromLatin1("application/x-qt-plugin")); - QCOMPARE(ci.paramNames.at(1), QString::fromLatin1("classid")); - QCOMPARE(ci.paramValues.at(1), QString::fromLatin1("lineedit")); - QCOMPARE(ci.paramNames.at(2), QString::fromLatin1("id")); - QCOMPARE(ci.paramValues.at(2), QString::fromLatin1("myedit")); - QVERIFY(ci.returnValue != 0); - QVERIFY(ci.returnValue->inherits("QLineEdit")); - } - { - PluginPage::CallInfo ci = newPage->calls.takeFirst(); - QCOMPARE(ci.classid, QString::fromLatin1("pushbutton")); - QCOMPARE(ci.url, QUrl()); - QCOMPARE(ci.paramNames.count(), 3); - QCOMPARE(ci.paramValues.count(), 3); - QCOMPARE(ci.paramNames.at(0), QString::fromLatin1("type")); - QCOMPARE(ci.paramValues.at(0), QString::fromLatin1("application/x-qt-plugin")); - QCOMPARE(ci.paramNames.at(1), QString::fromLatin1("classid")); - QCOMPARE(ci.paramValues.at(1), QString::fromLatin1("pushbutton")); - QCOMPARE(ci.paramNames.at(2), QString::fromLatin1("id")); - QCOMPARE(ci.paramValues.at(2), QString::fromLatin1("mybutton")); - QVERIFY(ci.returnValue != 0); - QVERIFY(ci.returnValue->inherits("QPushButton")); - } -} - -void tst_QWebPage::createPluginWithPluginsEnabled() -{ - m_view->settings()->setAttribute(QWebSettings::PluginsEnabled, true); - createPlugin(m_view); -} - -void tst_QWebPage::createPluginWithPluginsDisabled() -{ - // Qt Plugins should be loaded by QtWebKit even when PluginsEnabled is - // false. The client decides whether a Qt plugin is enabled or not when - // it decides whether or not to instantiate it. - m_view->settings()->setAttribute(QWebSettings::PluginsEnabled, false); - createPlugin(m_view); -} - -// Standard base class for template PluginTracerPage. In tests it is used as interface. -class PluginCounterPage : public QWebPage { -public: - int m_count; - QPointer m_widget; - QObject* m_pluginParent; - PluginCounterPage(QObject* parent = 0) - : QWebPage(parent) - , m_count(0) - , m_widget(0) - , m_pluginParent(0) - { - settings()->setAttribute(QWebSettings::PluginsEnabled, true); - } - ~PluginCounterPage() - { - if (m_pluginParent) - m_pluginParent->deleteLater(); - } -}; - -template -class PluginTracerPage : public PluginCounterPage { -public: - PluginTracerPage(QObject* parent = 0) - : PluginCounterPage(parent) - { - // this is a dummy parent object for the created plugin - m_pluginParent = new T; - } - virtual QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&) - { - m_count++; - m_widget = new T; - // need a cast to the specific type, as QObject::setParent cannot be called, - // because it is not virtual. Instead it is necesary to call QWidget::setParent, - // which also takes a QWidget* instead of a QObject*. Therefore we need to - // upcast to T*, which is a QWidget. - static_cast(m_widget.data())->setParent(static_cast(m_pluginParent)); - return m_widget; - } -}; - -class PluginFactory { -public: - enum FactoredType {QWidgetType, QGraphicsWidgetType}; - static PluginCounterPage* create(FactoredType type, QObject* parent = 0) - { - PluginCounterPage* result = 0; - switch (type) { - case QWidgetType: - result = new PluginTracerPage(parent); - break; - case QGraphicsWidgetType: - result = new PluginTracerPage(parent); - break; - default: {/*Oops*/}; - } - return result; - } - - static void prepareTestData() - { - QTest::addColumn("type"); - QTest::newRow("QWidget") << (int)PluginFactory::QWidgetType; - QTest::newRow("QGraphicsWidget") << (int)PluginFactory::QGraphicsWidgetType; - } -}; - -void tst_QWebPage::destroyPlugin_data() -{ - PluginFactory::prepareTestData(); -} - -void tst_QWebPage::destroyPlugin() -{ - QFETCH(int, type); - PluginCounterPage* page = PluginFactory::create((PluginFactory::FactoredType)type, m_view); - m_view->setPage(page); - - // we create the plugin, so the widget should be constructed - QString content(""); - m_view->setHtml(content); - QVERIFY(page->m_widget); - QCOMPARE(page->m_count, 1); - - // navigate away, the plugin widget should be destructed - m_view->setHtml("Hi"); - QTestEventLoop::instance().enterLoop(1); - QVERIFY(!page->m_widget); -} - -void tst_QWebPage::createViewlessPlugin_data() -{ - PluginFactory::prepareTestData(); -} - -void tst_QWebPage::createViewlessPlugin() -{ - QFETCH(int, type); - PluginCounterPage* page = PluginFactory::create((PluginFactory::FactoredType)type); - QString content(""); - page->mainFrame()->setHtml(content); - QCOMPARE(page->m_count, 1); - QVERIFY(page->m_widget); - QVERIFY(page->m_pluginParent); - QVERIFY(page->m_widget->parent() == page->m_pluginParent); - delete page; - -} - -void tst_QWebPage::multiplePageGroupsAndLocalStorage() -{ - QDir dir(QDir::currentPath()); - dir.mkdir("path1"); - dir.mkdir("path2"); - - QWebView view1; - QWebView view2; - - view1.page()->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true); - view1.page()->settings()->setLocalStoragePath(QDir::toNativeSeparators(QDir::currentPath() + "/path1")); - DumpRenderTreeSupportQt::webPageSetGroupName(view1.page(), "group1"); - view2.page()->settings()->setAttribute(QWebSettings::LocalStorageEnabled, true); - view2.page()->settings()->setLocalStoragePath(QDir::toNativeSeparators(QDir::currentPath() + "/path2")); - DumpRenderTreeSupportQt::webPageSetGroupName(view2.page(), "group2"); - QCOMPARE(DumpRenderTreeSupportQt::webPageGroupName(view1.page()), QString("group1")); - QCOMPARE(DumpRenderTreeSupportQt::webPageGroupName(view2.page()), QString("group2")); - - - view1.setHtml(QString(" "), QUrl("http://www.myexample.com")); - view2.setHtml(QString(" "), QUrl("http://www.myexample.com")); - - view1.page()->mainFrame()->evaluateJavaScript("localStorage.test='value1';"); - view2.page()->mainFrame()->evaluateJavaScript("localStorage.test='value2';"); - - view1.setHtml(QString(" "), QUrl("http://www.myexample.com")); - view2.setHtml(QString(" "), QUrl("http://www.myexample.com")); - - QVariant s1 = view1.page()->mainFrame()->evaluateJavaScript("localStorage.test"); - QCOMPARE(s1.toString(), QString("value1")); - - QVariant s2 = view2.page()->mainFrame()->evaluateJavaScript("localStorage.test"); - QCOMPARE(s2.toString(), QString("value2")); - - QTest::qWait(1000); - - QFile::remove(QDir::toNativeSeparators(QDir::currentPath() + "/path1/http_www.myexample.com_0.localstorage")); - QFile::remove(QDir::toNativeSeparators(QDir::currentPath() + "/path2/http_www.myexample.com_0.localstorage")); - dir.rmdir(QDir::toNativeSeparators("./path1")); - dir.rmdir(QDir::toNativeSeparators("./path2")); -} - -class CursorTrackedPage : public QWebPage -{ -public: - - CursorTrackedPage(QWidget *parent = 0): QWebPage(parent) { - setViewportSize(QSize(1024, 768)); // big space - } - - QString selectedText() { - return mainFrame()->evaluateJavaScript("window.getSelection().toString()").toString(); - } - - int selectionStartOffset() { - return mainFrame()->evaluateJavaScript("window.getSelection().getRangeAt(0).startOffset").toInt(); - } - - int selectionEndOffset() { - return mainFrame()->evaluateJavaScript("window.getSelection().getRangeAt(0).endOffset").toInt(); - } - - // true if start offset == end offset, i.e. no selected text - int isSelectionCollapsed() { - return mainFrame()->evaluateJavaScript("window.getSelection().getRangeAt(0).collapsed").toBool(); - } -}; - -void tst_QWebPage::cursorMovements() -{ - CursorTrackedPage* page = new CursorTrackedPage; - QString content("

The quick brown fox

jumps over the lazy dog

May the source
be with you!

"); - page->mainFrame()->setHtml(content); - - // this will select the first paragraph - QString script = "var range = document.createRange(); " \ - "var node = document.getElementById(\"one\"); " \ - "range.selectNode(node); " \ - "getSelection().addRange(range);"; - page->mainFrame()->evaluateJavaScript(script); - QCOMPARE(page->selectedText().trimmed(), QString::fromLatin1("The quick brown fox")); - - // these actions must exist - QVERIFY(page->action(QWebPage::MoveToNextChar) != 0); - QVERIFY(page->action(QWebPage::MoveToPreviousChar) != 0); - QVERIFY(page->action(QWebPage::MoveToNextWord) != 0); - QVERIFY(page->action(QWebPage::MoveToPreviousWord) != 0); - QVERIFY(page->action(QWebPage::MoveToNextLine) != 0); - QVERIFY(page->action(QWebPage::MoveToPreviousLine) != 0); - QVERIFY(page->action(QWebPage::MoveToStartOfLine) != 0); - QVERIFY(page->action(QWebPage::MoveToEndOfLine) != 0); - QVERIFY(page->action(QWebPage::MoveToStartOfBlock) != 0); - QVERIFY(page->action(QWebPage::MoveToEndOfBlock) != 0); - QVERIFY(page->action(QWebPage::MoveToStartOfDocument) != 0); - QVERIFY(page->action(QWebPage::MoveToEndOfDocument) != 0); - - // right now they are disabled because contentEditable is false - QCOMPARE(page->action(QWebPage::MoveToNextChar)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToPreviousChar)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToNextWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToPreviousWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToNextLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToPreviousLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToStartOfLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToEndOfLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToStartOfBlock)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToEndOfBlock)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToStartOfDocument)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::MoveToEndOfDocument)->isEnabled(), false); - - // make it editable before navigating the cursor - page->setContentEditable(true); - - // here the actions are enabled after contentEditable is true - QCOMPARE(page->action(QWebPage::MoveToNextChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToPreviousChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToNextWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToPreviousWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToNextLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToPreviousLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToStartOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToEndOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToStartOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToEndOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToStartOfDocument)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::MoveToEndOfDocument)->isEnabled(), true); - - // cursor will be before the word "jump" - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // cursor will be between 'j' and 'u' in the word "jump" - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 1); - - // cursor will be between 'u' and 'm' in the word "jump" - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 2); - - // cursor will be after the word "jump" - page->triggerAction(QWebPage::MoveToNextWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 5); - - // cursor will be after the word "lazy" - page->triggerAction(QWebPage::MoveToNextWord); - page->triggerAction(QWebPage::MoveToNextWord); - page->triggerAction(QWebPage::MoveToNextWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 19); - - // cursor will be between 'z' and 'y' in "lazy" - page->triggerAction(QWebPage::MoveToPreviousChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 18); - - // cursor will be between 'a' and 'z' in "lazy" - page->triggerAction(QWebPage::MoveToPreviousChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 17); - - // cursor will be before the word "lazy" - page->triggerAction(QWebPage::MoveToPreviousWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 15); - - // cursor will be before the word "quick" - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 4); - - // cursor will be between 'p' and 's' in the word "jumps" - page->triggerAction(QWebPage::MoveToNextWord); - page->triggerAction(QWebPage::MoveToNextWord); - page->triggerAction(QWebPage::MoveToNextWord); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 4); - - // cursor will be before the word "jumps" - page->triggerAction(QWebPage::MoveToStartOfLine); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // cursor will be after the word "dog" - page->triggerAction(QWebPage::MoveToEndOfLine); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 23); - - // cursor will be between 'w' and 'n' in "brown" - page->triggerAction(QWebPage::MoveToStartOfLine); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToPreviousWord); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 14); - - // cursor will be after the word "fox" - page->triggerAction(QWebPage::MoveToEndOfLine); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 19); - - // cursor will be before the word "The" - page->triggerAction(QWebPage::MoveToStartOfDocument); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // cursor will be after the word "you!" - page->triggerAction(QWebPage::MoveToEndOfDocument); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 12); - - // cursor will be before the word "be" - page->triggerAction(QWebPage::MoveToStartOfBlock); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // cursor will be after the word "you!" - page->triggerAction(QWebPage::MoveToEndOfBlock); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 12); - - // try to move before the document start - page->triggerAction(QWebPage::MoveToStartOfDocument); - page->triggerAction(QWebPage::MoveToPreviousChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - page->triggerAction(QWebPage::MoveToStartOfDocument); - page->triggerAction(QWebPage::MoveToPreviousWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // try to move past the document end - page->triggerAction(QWebPage::MoveToEndOfDocument); - page->triggerAction(QWebPage::MoveToNextChar); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 12); - page->triggerAction(QWebPage::MoveToEndOfDocument); - page->triggerAction(QWebPage::MoveToNextWord); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 12); - - delete page; -} - -void tst_QWebPage::textSelection() -{ - CursorTrackedPage* page = new CursorTrackedPage; - QString content("

The quick brown fox

" \ - "

jumps over the lazy dog

" \ - "

May the source
be with you!

"); - page->mainFrame()->setHtml(content); - - // these actions must exist - QVERIFY(page->action(QWebPage::SelectAll) != 0); - QVERIFY(page->action(QWebPage::SelectNextChar) != 0); - QVERIFY(page->action(QWebPage::SelectPreviousChar) != 0); - QVERIFY(page->action(QWebPage::SelectNextWord) != 0); - QVERIFY(page->action(QWebPage::SelectPreviousWord) != 0); - QVERIFY(page->action(QWebPage::SelectNextLine) != 0); - QVERIFY(page->action(QWebPage::SelectPreviousLine) != 0); - QVERIFY(page->action(QWebPage::SelectStartOfLine) != 0); - QVERIFY(page->action(QWebPage::SelectEndOfLine) != 0); - QVERIFY(page->action(QWebPage::SelectStartOfBlock) != 0); - QVERIFY(page->action(QWebPage::SelectEndOfBlock) != 0); - QVERIFY(page->action(QWebPage::SelectStartOfDocument) != 0); - QVERIFY(page->action(QWebPage::SelectEndOfDocument) != 0); - - // right now they are disabled because contentEditable is false and - // there isn't an existing selection to modify - QCOMPARE(page->action(QWebPage::SelectNextChar)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectPreviousChar)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectNextWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectPreviousWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectNextLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectPreviousLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectStartOfLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectEndOfLine)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectStartOfBlock)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectEndOfBlock)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectStartOfDocument)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SelectEndOfDocument)->isEnabled(), false); - - // ..but SelectAll is awalys enabled - QCOMPARE(page->action(QWebPage::SelectAll)->isEnabled(), true); - - // this will select the first paragraph - QString selectScript = "var range = document.createRange(); " \ - "var node = document.getElementById(\"one\"); " \ - "range.selectNode(node); " \ - "getSelection().addRange(range);"; - page->mainFrame()->evaluateJavaScript(selectScript); - QCOMPARE(page->selectedText().trimmed(), QString::fromLatin1("The quick brown fox")); - - // here the actions are enabled after a selection has been created - QCOMPARE(page->action(QWebPage::SelectNextChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectNextWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectNextLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfDocument)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfDocument)->isEnabled(), true); - - // make it editable before navigating the cursor - page->setContentEditable(true); - - // cursor will be before the word "The", this makes sure there is a charet - page->triggerAction(QWebPage::MoveToStartOfDocument); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // here the actions are enabled after contentEditable is true - QCOMPARE(page->action(QWebPage::SelectNextChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousChar)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectNextWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectNextLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectPreviousLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfLine)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfBlock)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectStartOfDocument)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SelectEndOfDocument)->isEnabled(), true); - - delete page; -} - -void tst_QWebPage::textEditing() -{ - CursorTrackedPage* page = new CursorTrackedPage; - QString content("

The quick brown fox

" \ - "

jumps over the lazy dog

" \ - "

May the source
be with you!

"); - page->mainFrame()->setHtml(content); - - // these actions must exist - QVERIFY(page->action(QWebPage::Cut) != 0); - QVERIFY(page->action(QWebPage::Copy) != 0); - QVERIFY(page->action(QWebPage::Paste) != 0); - QVERIFY(page->action(QWebPage::DeleteStartOfWord) != 0); - QVERIFY(page->action(QWebPage::DeleteEndOfWord) != 0); - QVERIFY(page->action(QWebPage::SetTextDirectionDefault) != 0); - QVERIFY(page->action(QWebPage::SetTextDirectionLeftToRight) != 0); - QVERIFY(page->action(QWebPage::SetTextDirectionRightToLeft) != 0); - QVERIFY(page->action(QWebPage::ToggleBold) != 0); - QVERIFY(page->action(QWebPage::ToggleItalic) != 0); - QVERIFY(page->action(QWebPage::ToggleUnderline) != 0); - QVERIFY(page->action(QWebPage::InsertParagraphSeparator) != 0); - QVERIFY(page->action(QWebPage::InsertLineSeparator) != 0); - QVERIFY(page->action(QWebPage::PasteAndMatchStyle) != 0); - QVERIFY(page->action(QWebPage::RemoveFormat) != 0); - QVERIFY(page->action(QWebPage::ToggleStrikethrough) != 0); - QVERIFY(page->action(QWebPage::ToggleSubscript) != 0); - QVERIFY(page->action(QWebPage::ToggleSuperscript) != 0); - QVERIFY(page->action(QWebPage::InsertUnorderedList) != 0); - QVERIFY(page->action(QWebPage::InsertOrderedList) != 0); - QVERIFY(page->action(QWebPage::Indent) != 0); - QVERIFY(page->action(QWebPage::Outdent) != 0); - QVERIFY(page->action(QWebPage::AlignCenter) != 0); - QVERIFY(page->action(QWebPage::AlignJustified) != 0); - QVERIFY(page->action(QWebPage::AlignLeft) != 0); - QVERIFY(page->action(QWebPage::AlignRight) != 0); - - // right now they are disabled because contentEditable is false - QCOMPARE(page->action(QWebPage::Cut)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::Paste)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::DeleteStartOfWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::DeleteEndOfWord)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SetTextDirectionDefault)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SetTextDirectionLeftToRight)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::SetTextDirectionRightToLeft)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleBold)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleItalic)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleUnderline)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::InsertParagraphSeparator)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::InsertLineSeparator)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::PasteAndMatchStyle)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::RemoveFormat)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleStrikethrough)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleSubscript)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::ToggleSuperscript)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::InsertUnorderedList)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::InsertOrderedList)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::Indent)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::Outdent)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::AlignCenter)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::AlignJustified)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::AlignLeft)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::AlignRight)->isEnabled(), false); - - // Select everything - page->triggerAction(QWebPage::SelectAll); - - // make sure it is enabled since there is a selection - QCOMPARE(page->action(QWebPage::Copy)->isEnabled(), true); - - // make it editable before navigating the cursor - page->setContentEditable(true); - - // clear the selection - page->triggerAction(QWebPage::MoveToStartOfDocument); - QVERIFY(page->isSelectionCollapsed()); - QCOMPARE(page->selectionStartOffset(), 0); - - // make sure it is disabled since there isn't a selection - QCOMPARE(page->action(QWebPage::Copy)->isEnabled(), false); - - // here the actions are enabled after contentEditable is true - QCOMPARE(page->action(QWebPage::Paste)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::DeleteStartOfWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::DeleteEndOfWord)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SetTextDirectionDefault)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SetTextDirectionLeftToRight)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::SetTextDirectionRightToLeft)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleBold)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleItalic)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleUnderline)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::InsertParagraphSeparator)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::InsertLineSeparator)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::PasteAndMatchStyle)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleStrikethrough)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleSubscript)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::ToggleSuperscript)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::InsertUnorderedList)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::InsertOrderedList)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::Indent)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::Outdent)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::AlignCenter)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::AlignJustified)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::AlignLeft)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::AlignRight)->isEnabled(), true); - - // make sure these are disabled since there isn't a selection - QCOMPARE(page->action(QWebPage::Cut)->isEnabled(), false); - QCOMPARE(page->action(QWebPage::RemoveFormat)->isEnabled(), false); - - // make sure everything is selected - page->triggerAction(QWebPage::SelectAll); - - // this is only true if there is an editable selection - QCOMPARE(page->action(QWebPage::Cut)->isEnabled(), true); - QCOMPARE(page->action(QWebPage::RemoveFormat)->isEnabled(), true); - - delete page; -} - -void tst_QWebPage::requestCache() -{ - TestPage page; - QSignalSpy loadSpy(&page, SIGNAL(loadFinished(bool))); - - page.mainFrame()->setUrl(QString("data:text/html,Click me")); - QTRY_COMPARE(loadSpy.count(), 1); - QTRY_COMPARE(page.navigations.count(), 1); - - page.mainFrame()->setUrl(QString("data:text/html,Click me2")); - QTRY_COMPARE(loadSpy.count(), 2); - QTRY_COMPARE(page.navigations.count(), 2); - - page.triggerAction(QWebPage::Stop); - QVERIFY(page.history()->canGoBack()); - page.triggerAction(QWebPage::Back); - - QTRY_COMPARE(loadSpy.count(), 3); - QTRY_COMPARE(page.navigations.count(), 3); - QCOMPARE(page.navigations.at(0).request.attribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferNetwork).toInt(), - (int)QNetworkRequest::PreferNetwork); - QCOMPARE(page.navigations.at(1).request.attribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferNetwork).toInt(), - (int)QNetworkRequest::PreferNetwork); - QCOMPARE(page.navigations.at(2).request.attribute(QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferNetwork).toInt(), - (int)QNetworkRequest::PreferCache); -} - -void tst_QWebPage::backActionUpdate() -{ - QWebView view; - QWebPage *page = view.page(); - QAction *action = page->action(QWebPage::Back); - QVERIFY(!action->isEnabled()); - QSignalSpy loadSpy(page, SIGNAL(loadFinished(bool))); - QUrl url = QUrl("qrc:///resources/index.html"); - page->mainFrame()->load(url); - QTRY_COMPARE(loadSpy.count(), 1); - QVERIFY(!action->isEnabled()); - QTest::mouseClick(&view, Qt::LeftButton, 0, QPoint(10, 10)); - QTRY_COMPARE(loadSpy.count(), 2); - - QVERIFY(action->isEnabled()); -} - -void frameAtHelper(QWebPage* webPage, QWebFrame* webFrame, QPoint framePosition) -{ - if (!webFrame) - return; - - framePosition += QPoint(webFrame->pos()); - QList children = webFrame->childFrames(); - for (int i = 0; i < children.size(); ++i) { - if (children.at(i)->childFrames().size() > 0) - frameAtHelper(webPage, children.at(i), framePosition); - - QRect frameRect(children.at(i)->pos() + framePosition, children.at(i)->geometry().size()); - QVERIFY(children.at(i) == webPage->frameAt(frameRect.topLeft())); - } -} - -void tst_QWebPage::frameAt() -{ - QWebView webView; - QWebPage* webPage = webView.page(); - QSignalSpy loadSpy(webPage, SIGNAL(loadFinished(bool))); - QUrl url = QUrl("qrc:///resources/iframe.html"); - webPage->mainFrame()->load(url); - QTRY_COMPARE(loadSpy.count(), 1); - frameAtHelper(webPage, webPage->mainFrame(), webPage->mainFrame()->pos()); -} - -void tst_QWebPage::inputMethods_data() -{ - QTest::addColumn("viewType"); - QTest::newRow("QWebView") << "QWebView"; -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QTest::newRow("QGraphicsWebView") << "QGraphicsWebView"; -#endif -} - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) -static Qt::InputMethodHints inputMethodHints(QObject* object) -{ - if (QGraphicsObject* o = qobject_cast(object)) - return o->inputMethodHints(); - if (QWidget* w = qobject_cast(object)) - return w->inputMethodHints(); - return Qt::InputMethodHints(); -} -#endif - -static bool inputMethodEnabled(QObject* object) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (QGraphicsObject* o = qobject_cast(object)) - return o->flags() & QGraphicsItem::ItemAcceptsInputMethod; -#endif - if (QWidget* w = qobject_cast(object)) - return w->testAttribute(Qt::WA_InputMethodEnabled); - return false; -} - -void tst_QWebPage::inputMethods() -{ - QFETCH(QString, viewType); - QWebPage* page = new QWebPage; - QObject* view = 0; - QObject* container = 0; - if (viewType == "QWebView") { - QWebView* wv = new QWebView; - wv->setPage(page); - view = wv; - container = view; - } -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - else if (viewType == "QGraphicsWebView") { - QGraphicsWebView* wv = new QGraphicsWebView; - wv->setPage(page); - view = wv; - - QGraphicsView* gv = new QGraphicsView; - QGraphicsScene* scene = new QGraphicsScene(gv); - gv->setScene(scene); - scene->addItem(wv); - wv->setGeometry(QRect(0, 0, 500, 500)); - - container = gv; - } -#endif - else - QVERIFY2(false, "Unknown view type"); - - page->settings()->setFontFamily(QWebSettings::SerifFont, "FooSerifFont"); - page->mainFrame()->setHtml("" \ - "
" \ - "" \ - ""); - page->mainFrame()->setFocus(); - - EventSpy viewEventSpy(container); - - QWebElementCollection inputs = page->mainFrame()->documentElement().findAll("input"); - - QMouseEvent evpres(QEvent::MouseButtonPress, inputs.at(0).geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evpres); - QMouseEvent evrel(QEvent::MouseButtonRelease, inputs.at(0).geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evrel); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - // This part of the test checks if the SIP (Software Input Panel) is triggered, - // which normally happens on mobile platforms, when a user input form receives - // a mouse click. - int inputPanel = 0; - if (viewType == "QWebView") { - if (QWebView* wv = qobject_cast(view)) - inputPanel = wv->style()->styleHint(QStyle::SH_RequestSoftwareInputPanel); - } else if (viewType == "QGraphicsWebView") { - if (QGraphicsWebView* wv = qobject_cast(view)) - inputPanel = wv->style()->styleHint(QStyle::SH_RequestSoftwareInputPanel); - } - - // For non-mobile platforms RequestSoftwareInputPanel event is not called - // because there is no SIP (Software Input Panel) triggered. In the case of a - // mobile platform, an input panel, e.g. virtual keyboard, is usually invoked - // and the RequestSoftwareInputPanel event is called. For these two situations - // this part of the test can verified as the checks below. - if (inputPanel) - QVERIFY(viewEventSpy.contains(QEvent::RequestSoftwareInputPanel)); - else - QVERIFY(!viewEventSpy.contains(QEvent::RequestSoftwareInputPanel)); -#endif - viewEventSpy.clear(); - - page->event(&evpres); - page->event(&evrel); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QVERIFY(viewEventSpy.contains(QEvent::RequestSoftwareInputPanel)); -#endif - - //ImMicroFocus - QVariant variant = page->inputMethodQuery(Qt::ImMicroFocus); - QRect focusRect = variant.toRect(); - QVERIFY(inputs.at(0).geometry().contains(variant.toRect().topLeft())); - - //ImFont - variant = page->inputMethodQuery(Qt::ImFont); - QFont font = variant.value(); - QCOMPARE(page->settings()->fontFamily(QWebSettings::SerifFont), font.family()); - - QList inputAttributes; - - //Insert text. - { - QInputMethodEvent eventText("QtWebKit", inputAttributes); - QSignalSpy signalSpy(page, SIGNAL(microFocusChanged())); - page->event(&eventText); - QCOMPARE(signalSpy.count(), 0); - } - - { - QInputMethodEvent eventText("", inputAttributes); - eventText.setCommitString(QString("QtWebKit"), 0, 0); - page->event(&eventText); - } - -#if QT_VERSION >= 0x040600 - //ImMaximumTextLength - variant = page->inputMethodQuery(Qt::ImMaximumTextLength); - QCOMPARE(20, variant.toInt()); - - //Set selection - inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 3, 2, QVariant()); - QInputMethodEvent eventSelection("",inputAttributes); - page->event(&eventSelection); - - //ImAnchorPosition - variant = page->inputMethodQuery(Qt::ImAnchorPosition); - int anchorPosition = variant.toInt(); - QCOMPARE(anchorPosition, 3); - - //ImCursorPosition - variant = page->inputMethodQuery(Qt::ImCursorPosition); - int cursorPosition = variant.toInt(); - QCOMPARE(cursorPosition, 5); - - //ImCurrentSelection - variant = page->inputMethodQuery(Qt::ImCurrentSelection); - QString selectionValue = variant.value(); - QCOMPARE(selectionValue, QString("eb")); - - //Cancel current composition first - inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 0, 0, QVariant()); - QInputMethodEvent eventSelection2("",inputAttributes); - page->event(&eventSelection2); - - //Set selection with negative length - inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 6, -5, QVariant()); - QInputMethodEvent eventSelection3("",inputAttributes); - page->event(&eventSelection3); - - //ImAnchorPosition - variant = page->inputMethodQuery(Qt::ImAnchorPosition); - anchorPosition = variant.toInt(); - QCOMPARE(anchorPosition, 1); - - //ImCursorPosition - variant = page->inputMethodQuery(Qt::ImCursorPosition); - cursorPosition = variant.toInt(); - QCOMPARE(cursorPosition, 6); - - //ImCurrentSelection - variant = page->inputMethodQuery(Qt::ImCurrentSelection); - selectionValue = variant.value(); - QCOMPARE(selectionValue, QString("tWebK")); -#endif - - //ImSurroundingText - variant = page->inputMethodQuery(Qt::ImSurroundingText); - QString value = variant.value(); - QCOMPARE(value, QString("QtWebKit")); - -#if QT_VERSION >= 0x040600 - { - QList attributes; - // Clear the selection, so the next test does not clear any contents. - QInputMethodEvent::Attribute newSelection(QInputMethodEvent::Selection, 0, 0, QVariant()); - attributes.append(newSelection); - QInputMethodEvent event("composition", attributes); - page->event(&event); - } - - // A ongoing composition should not change the surrounding text before it is committed. - variant = page->inputMethodQuery(Qt::ImSurroundingText); - value = variant.value(); - QCOMPARE(value, QString("QtWebKit")); -#endif - - // Cancel current composition first - inputAttributes << QInputMethodEvent::Attribute(QInputMethodEvent::Selection, 0, 0, QVariant()); - QInputMethodEvent eventSelection4("", inputAttributes); - page->event(&eventSelection4); - - // START - Tests for Selection when the Editor is NOT in Composition mode - - // LEFT to RIGHT selection - // Deselect the selection by sending MouseButtonPress events - // This moves the current cursor to the end of the text - page->event(&evpres); - page->event(&evrel); - - //Move to the start of the line - page->triggerAction(QWebPage::MoveToStartOfLine); - - QKeyEvent keyRightEventPress(QEvent::KeyPress, Qt::Key_Right, Qt::NoModifier); - QKeyEvent keyRightEventRelease(QEvent::KeyRelease, Qt::Key_Right, Qt::NoModifier); - - //Move 2 characters RIGHT - for (int j = 0; j < 2; ++j) { - page->event(&keyRightEventPress); - page->event(&keyRightEventRelease); - } - - //Select to the end of the line - page->triggerAction(QWebPage::SelectEndOfLine); - - //ImAnchorPosition QtWebKit - variant = page->inputMethodQuery(Qt::ImAnchorPosition); - anchorPosition = variant.toInt(); - QCOMPARE(anchorPosition, 2); - - //ImCursorPosition - variant = page->inputMethodQuery(Qt::ImCursorPosition); - cursorPosition = variant.toInt(); - QCOMPARE(cursorPosition, 8); - - //ImCurrentSelection - variant = page->inputMethodQuery(Qt::ImCurrentSelection); - selectionValue = variant.value(); - QCOMPARE(selectionValue, QString("WebKit")); - - //RIGHT to LEFT selection - //Deselect the selection (this moves the current cursor to the end of the text) - page->event(&evpres); - page->event(&evrel); - - //ImAnchorPosition - variant = page->inputMethodQuery(Qt::ImAnchorPosition); - anchorPosition = variant.toInt(); - QCOMPARE(anchorPosition, 8); - - //ImCursorPosition - variant = page->inputMethodQuery(Qt::ImCursorPosition); - cursorPosition = variant.toInt(); - QCOMPARE(cursorPosition, 8); - - //ImCurrentSelection - variant = page->inputMethodQuery(Qt::ImCurrentSelection); - selectionValue = variant.value(); - QCOMPARE(selectionValue, QString("")); - - QKeyEvent keyLeftEventPress(QEvent::KeyPress, Qt::Key_Left, Qt::NoModifier); - QKeyEvent keyLeftEventRelease(QEvent::KeyRelease, Qt::Key_Left, Qt::NoModifier); - - //Move 2 characters LEFT - for (int i = 0; i < 2; ++i) { - page->event(&keyLeftEventPress); - page->event(&keyLeftEventRelease); - } - - //Select to the start of the line - page->triggerAction(QWebPage::SelectStartOfLine); - - //ImAnchorPosition - variant = page->inputMethodQuery(Qt::ImAnchorPosition); - anchorPosition = variant.toInt(); - QCOMPARE(anchorPosition, 6); - - //ImCursorPosition - variant = page->inputMethodQuery(Qt::ImCursorPosition); - cursorPosition = variant.toInt(); - QCOMPARE(cursorPosition, 0); - - //ImCurrentSelection - variant = page->inputMethodQuery(Qt::ImCurrentSelection); - selectionValue = variant.value(); - QCOMPARE(selectionValue, QString("QtWebK")); - - //END - Tests for Selection when the Editor is not in Composition mode - - //ImhHiddenText - QMouseEvent evpresPassword(QEvent::MouseButtonPress, inputs.at(1).geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evpresPassword); - QMouseEvent evrelPassword(QEvent::MouseButtonRelease, inputs.at(1).geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evrelPassword); - - QVERIFY(inputMethodEnabled(view)); -#if QT_VERSION >= 0x040600 - QVERIFY(inputMethodHints(view) & Qt::ImhHiddenText); - - page->event(&evpres); - page->event(&evrel); - QVERIFY(!(inputMethodHints(view) & Qt::ImhHiddenText)); -#endif - - page->mainFrame()->setHtml("

nothing to input here"); - viewEventSpy.clear(); - - QWebElement para = page->mainFrame()->findFirstElement("p"); - { - QMouseEvent evpres(QEvent::MouseButtonPress, para.geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evpres); - QMouseEvent evrel(QEvent::MouseButtonRelease, para.geometry().center(), Qt::LeftButton, Qt::NoButton, Qt::NoModifier); - page->event(&evrel); - } - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QVERIFY(!viewEventSpy.contains(QEvent::RequestSoftwareInputPanel)); -#endif - - delete container; -} - -void tst_QWebPage::inputMethodsTextFormat_data() -{ - QTest::addColumn("string"); - QTest::addColumn("start"); - QTest::addColumn("length"); - - QTest::newRow("") << QString("") << 0 << 0; - QTest::newRow("Q") << QString("Q") << 0 << 1; - QTest::newRow("Qt") << QString("Qt") << 0 << 1; - QTest::newRow("Qt") << QString("Qt") << 0 << 2; - QTest::newRow("Qt") << QString("Qt") << 1 << 1; - QTest::newRow("Qt ") << QString("Qt ") << 0 << 1; - QTest::newRow("Qt ") << QString("Qt ") << 1 << 1; - QTest::newRow("Qt ") << QString("Qt ") << 2 << 1; - QTest::newRow("Qt ") << QString("Qt ") << 2 << -1; - QTest::newRow("Qt ") << QString("Qt ") << -2 << 3; - QTest::newRow("Qt ") << QString("Qt ") << 0 << 3; - QTest::newRow("Qt by") << QString("Qt by") << 0 << 1; - QTest::newRow("Qt by Nokia") << QString("Qt by Nokia") << 0 << 1; -} - - -void tst_QWebPage::inputMethodsTextFormat() -{ - QWebPage* page = new QWebPage; - QWebView* view = new QWebView; - view->setPage(page); - page->settings()->setFontFamily(QWebSettings::SerifFont, "FooSerifFont"); - page->mainFrame()->setHtml("" \ - ""); - page->mainFrame()->evaluateJavaScript("document.getElementById('input1').focus()"); - page->mainFrame()->setFocus(); - view->show(); - - QFETCH(QString, string); - QFETCH(int, start); - QFETCH(int, length); - - QList attrs; - QTextCharFormat format; - format.setUnderlineStyle(QTextCharFormat::SingleUnderline); - format.setUnderlineColor(Qt::red); - attrs.append(QInputMethodEvent::Attribute(QInputMethodEvent::TextFormat, start, length, format)); - QInputMethodEvent im(string, attrs); - page->event(&im); - - QTest::qWait(1000); - - delete view; -} - -void tst_QWebPage::protectBindingsRuntimeObjectsFromCollector() -{ - QSignalSpy loadSpy(m_view, SIGNAL(loadFinished(bool))); - - PluginPage* newPage = new PluginPage(m_view); - m_view->setPage(newPage); - - m_view->settings()->setAttribute(QWebSettings::PluginsEnabled, true); - - m_view->setHtml(QString("")); - QTRY_COMPARE(loadSpy.count(), 1); - - newPage->mainFrame()->evaluateJavaScript("function testme(text) { var lineedit = document.getElementById('mylineedit'); lineedit.setText(text); lineedit.selectAll(); }"); - - newPage->mainFrame()->evaluateJavaScript("testme('foo')"); - - DumpRenderTreeSupportQt::garbageCollectorCollect(); - - // don't crash! - newPage->mainFrame()->evaluateJavaScript("testme('bar')"); -} - -void tst_QWebPage::localURLSchemes() -{ - int i = QWebSecurityOrigin::localSchemes().size(); - - QWebSecurityOrigin::removeLocalScheme("file"); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i); - QWebSecurityOrigin::addLocalScheme("file"); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i); - - QWebSecurityOrigin::removeLocalScheme("qrc"); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i - 1); - QWebSecurityOrigin::addLocalScheme("qrc"); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i); - - QString myscheme = "myscheme"; - QWebSecurityOrigin::addLocalScheme(myscheme); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i + 1); - QVERIFY(QWebSecurityOrigin::localSchemes().contains(myscheme)); - QWebSecurityOrigin::removeLocalScheme(myscheme); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i); - QWebSecurityOrigin::removeLocalScheme(myscheme); - QTRY_COMPARE(QWebSecurityOrigin::localSchemes().size(), i); -} - -static inline bool testFlag(QWebPage& webPage, QWebSettings::WebAttribute settingAttribute, const QString& jsObjectName, bool settingValue) -{ - webPage.settings()->setAttribute(settingAttribute, settingValue); - return webPage.mainFrame()->evaluateJavaScript(QString("(window.%1 != undefined)").arg(jsObjectName)).toBool(); -} - -void tst_QWebPage::testOptionalJSObjects() -{ - // Once a feature is enabled and the JS object is accessed turning off the setting will not turn off - // the visibility of the JS object any more. For this reason this test uses two QWebPage instances. - // Part of the test is to make sure that the QWebPage instances do not interfere with each other so turning on - // a feature for one instance will not turn it on for another. - - QWebPage webPage1; - QWebPage webPage2; - - webPage1.currentFrame()->setHtml(QString("test"), QUrl()); - webPage2.currentFrame()->setHtml(QString("test"), QUrl()); - - QEXPECT_FAIL("","Feature enabled/disabled checking problem. Look at bugs.webkit.org/show_bug.cgi?id=29867", Continue); - QCOMPARE(testFlag(webPage1, QWebSettings::OfflineWebApplicationCacheEnabled, "applicationCache", false), false); - QCOMPARE(testFlag(webPage2, QWebSettings::OfflineWebApplicationCacheEnabled, "applicationCache", true), true); - QEXPECT_FAIL("","Feature enabled/disabled checking problem. Look at bugs.webkit.org/show_bug.cgi?id=29867", Continue); - QCOMPARE(testFlag(webPage1, QWebSettings::OfflineWebApplicationCacheEnabled, "applicationCache", false), false); - QCOMPARE(testFlag(webPage2, QWebSettings::OfflineWebApplicationCacheEnabled, "applicationCache", false), true); - - QCOMPARE(testFlag(webPage1, QWebSettings::LocalStorageEnabled, "localStorage", false), false); - QCOMPARE(testFlag(webPage2, QWebSettings::LocalStorageEnabled, "localStorage", true), true); - QCOMPARE(testFlag(webPage1, QWebSettings::LocalStorageEnabled, "localStorage", false), false); - QCOMPARE(testFlag(webPage2, QWebSettings::LocalStorageEnabled, "localStorage", false), true); -} - -void tst_QWebPage::testEnablePersistentStorage() -{ - QWebPage webPage; - - // By default all persistent options should be disabled - QCOMPARE(webPage.settings()->testAttribute(QWebSettings::LocalStorageEnabled), false); - QCOMPARE(webPage.settings()->testAttribute(QWebSettings::OfflineStorageDatabaseEnabled), false); - QCOMPARE(webPage.settings()->testAttribute(QWebSettings::OfflineWebApplicationCacheEnabled), false); - QVERIFY(webPage.settings()->iconDatabasePath().isEmpty()); - - QWebSettings::enablePersistentStorage(); - - - QTRY_COMPARE(webPage.settings()->testAttribute(QWebSettings::LocalStorageEnabled), true); - QTRY_COMPARE(webPage.settings()->testAttribute(QWebSettings::OfflineStorageDatabaseEnabled), true); - QTRY_COMPARE(webPage.settings()->testAttribute(QWebSettings::OfflineWebApplicationCacheEnabled), true); - - QTRY_VERIFY(!webPage.settings()->offlineStoragePath().isEmpty()); - QTRY_VERIFY(!webPage.settings()->offlineWebApplicationCachePath().isEmpty()); - QTRY_VERIFY(!webPage.settings()->iconDatabasePath().isEmpty()); -} - -void tst_QWebPage::defaultTextEncoding() -{ - QWebFrame* mainFrame = m_page->mainFrame(); - - QString defaultCharset = mainFrame->evaluateJavaScript("document.defaultCharset").toString(); - QVERIFY(!defaultCharset.isEmpty()); - QCOMPARE(QWebSettings::globalSettings()->defaultTextEncoding(), defaultCharset); - - m_page->settings()->setDefaultTextEncoding(QString("utf-8")); - QString charset = mainFrame->evaluateJavaScript("document.defaultCharset").toString(); - QCOMPARE(charset, QString("utf-8")); - QCOMPARE(m_page->settings()->defaultTextEncoding(), charset); - - m_page->settings()->setDefaultTextEncoding(QString()); - charset = mainFrame->evaluateJavaScript("document.defaultCharset").toString(); - QVERIFY(!charset.isEmpty()); - QCOMPARE(charset, defaultCharset); - - QWebSettings::globalSettings()->setDefaultTextEncoding(QString("utf-8")); - charset = mainFrame->evaluateJavaScript("document.defaultCharset").toString(); - QCOMPARE(charset, QString("utf-8")); - QCOMPARE(QWebSettings::globalSettings()->defaultTextEncoding(), charset); -} - -class ErrorPage : public QWebPage -{ -public: - - ErrorPage(QWidget* parent = 0): QWebPage(parent) - { - } - - virtual bool supportsExtension(Extension extension) const - { - return extension == ErrorPageExtension; - } - - virtual bool extension(Extension, const ExtensionOption* option, ExtensionReturn* output) - { - ErrorPageExtensionReturn* errorPage = static_cast(output); - - errorPage->content = "data:text/html,error"; - return true; - } -}; - -void tst_QWebPage::errorPageExtension() -{ - ErrorPage* page = new ErrorPage; - m_view->setPage(page); - - QSignalSpy spyLoadFinished(m_view, SIGNAL(loadFinished(bool))); - - m_view->setUrl(QUrl("data:text/html,foo")); - QTRY_COMPARE(spyLoadFinished.count(), 1); - - page->mainFrame()->setUrl(QUrl("http://non.existent/url")); - QTRY_COMPARE(spyLoadFinished.count(), 2); - QCOMPARE(page->mainFrame()->toPlainText(), QString("data:text/html,error")); - QCOMPARE(page->history()->count(), 2); - QCOMPARE(page->history()->currentItem().url(), QUrl("http://non.existent/url")); - QCOMPARE(page->history()->canGoBack(), true); - QCOMPARE(page->history()->canGoForward(), false); - - page->triggerAction(QWebPage::Back); - QTRY_COMPARE(page->history()->canGoBack(), false); - QTRY_COMPARE(page->history()->canGoForward(), true); - - page->triggerAction(QWebPage::Forward); - QTRY_COMPARE(page->history()->canGoBack(), true); - QTRY_COMPARE(page->history()->canGoForward(), false); - - page->triggerAction(QWebPage::Back); - QTRY_COMPARE(page->history()->canGoBack(), false); - QTRY_COMPARE(page->history()->canGoForward(), true); - QTRY_COMPARE(page->history()->currentItem().url(), QUrl("data:text/html,foo")); - - m_view->setPage(0); -} - -void tst_QWebPage::errorPageExtensionInIFrames() -{ - ErrorPage* page = new ErrorPage; - m_view->setPage(page); - - m_view->setHtml(QString("data:text/html," - "

h1

" - "" - "")); - QSignalSpy spyLoadFinished(m_view, SIGNAL(loadFinished(bool))); - QTRY_COMPARE(spyLoadFinished.count(), 1); - - QCOMPARE(page->mainFrame()->childFrames()[1]->toPlainText(), QString("data:text/html,error")); - - m_view->setPage(0); -} - -void tst_QWebPage::errorPageExtensionInFrameset() -{ - ErrorPage* page = new ErrorPage; - m_view->setPage(page); - - m_view->load(QUrl("qrc:///resources/index.html")); - - QSignalSpy spyLoadFinished(m_view, SIGNAL(loadFinished(bool))); - QTRY_COMPARE(spyLoadFinished.count(), 1); - QCOMPARE(page->mainFrame()->childFrames()[1]->toPlainText(), QString("data:text/html,error")); - - m_view->setPage(0); -} - -class FriendlyWebPage : public QWebPage -{ -public: - friend class tst_QWebPage; -}; - -void tst_QWebPage::userAgentApplicationName() -{ - const QString oldApplicationName = QCoreApplication::applicationName(); - FriendlyWebPage page; - - const QString applicationNameMarker = QString::fromUtf8("StrangeName\342\210\236"); - QCoreApplication::setApplicationName(applicationNameMarker); - QVERIFY(page.userAgentForUrl(QUrl()).contains(applicationNameMarker)); - - QCoreApplication::setApplicationName(oldApplicationName); -} - -void tst_QWebPage::userAgentLocaleChange() -{ - FriendlyWebPage page; - m_view->setPage(&page); - - const QString markerString = QString::fromLatin1(" nn-NO)"); - - if (page.userAgentForUrl(QUrl()).contains(markerString)) - QSKIP("marker string already present", SkipSingle); - - m_view->setLocale(QLocale(QString::fromLatin1("nn_NO"))); - QVERIFY(page.userAgentForUrl(QUrl()).contains(markerString)); -} - -void tst_QWebPage::crashTests_LazyInitializationOfMainFrame() -{ - { - QWebPage webPage; - } - { - QWebPage webPage; - webPage.selectedText(); - } - { - QWebPage webPage; - webPage.triggerAction(QWebPage::Back, true); - } - { - QWebPage webPage; - QPoint pos(10,10); - webPage.updatePositionDependentActions(pos); - } -} - -static void takeScreenshot(QWebPage* page) -{ - QWebFrame* mainFrame = page->mainFrame(); - page->setViewportSize(mainFrame->contentsSize()); - QImage image(page->viewportSize(), QImage::Format_ARGB32); - QPainter painter(&image); - mainFrame->render(&painter); - painter.end(); -} - -void tst_QWebPage::screenshot_data() -{ - QTest::addColumn("html"); - QTest::newRow("WithoutPlugin") << "text"; - QTest::newRow("WindowedPlugin") << QString("text"); - QTest::newRow("WindowlessPlugin") << QString("text"); -} - -void tst_QWebPage::screenshot() -{ - if (!QDir(TESTS_SOURCE_DIR).exists()) - QSKIP(QString("This test requires access to resources found in '%1'").arg(TESTS_SOURCE_DIR).toLatin1().constData(), SkipAll); - - QDir::setCurrent(TESTS_SOURCE_DIR); - - QFETCH(QString, html); - QWebPage* page = new QWebPage; - page->settings()->setAttribute(QWebSettings::PluginsEnabled, true); - QWebFrame* mainFrame = page->mainFrame(); - mainFrame->setHtml(html, QUrl::fromLocalFile(TESTS_SOURCE_DIR)); - ::waitForSignal(mainFrame, SIGNAL(loadFinished(bool)), 2000); - - // take screenshot without a view - takeScreenshot(page); - - QWebView* view = new QWebView; - view->setPage(page); - - // take screenshot when attached to a view - takeScreenshot(page); - - delete page; - delete view; - - QDir::setCurrent(QApplication::applicationDirPath()); -} - -void tst_QWebPage::originatingObjectInNetworkRequests() -{ - TestNetworkManager* networkManager = new TestNetworkManager(m_page); - m_page->setNetworkAccessManager(networkManager); - networkManager->requests.clear(); - - m_view->setHtml(QString("data:text/html,foo \">" - ""), QUrl()); - QVERIFY(::waitForSignal(m_view, SIGNAL(loadFinished(bool)))); - - QCOMPARE(networkManager->requests.count(), 2); - - QList childFrames = m_page->mainFrame()->childFrames(); - QCOMPARE(childFrames.count(), 2); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - for (int i = 0; i < 2; ++i) - QVERIFY(qobject_cast(networkManager->requests.at(i).originatingObject()) == childFrames.at(i)); -#endif -} - -/** - * Test fixups for https://bugs.webkit.org/show_bug.cgi?id=30914 - * - * From JS we test the following conditions. - * - * OK + QString() => SUCCESS, empty string (but not null) - * OK + "text" => SUCCESS, "text" - * CANCEL + QString() => CANCEL, null string - * CANCEL + "text" => CANCEL, null string - */ -class JSPromptPage : public QWebPage { - Q_OBJECT -public: - JSPromptPage() - {} - - bool javaScriptPrompt(QWebFrame* frame, const QString& msg, const QString& defaultValue, QString* result) - { - if (msg == QLatin1String("test1")) { - *result = QString(); - return true; - } else if (msg == QLatin1String("test2")) { - *result = QLatin1String("text"); - return true; - } else if (msg == QLatin1String("test3")) { - *result = QString(); - return false; - } else if (msg == QLatin1String("test4")) { - *result = QLatin1String("text"); - return false; - } - - qFatal("Unknown msg."); - return QWebPage::javaScriptPrompt(frame, msg, defaultValue, result); - } -}; - -void tst_QWebPage::testJSPrompt() -{ - JSPromptPage page; - bool res; - - // OK + QString() - res = page.mainFrame()->evaluateJavaScript( - "var retval = prompt('test1');" - "retval=='' && retval.length == 0;").toBool(); - QVERIFY(res); - - // OK + "text" - res = page.mainFrame()->evaluateJavaScript( - "var retval = prompt('test2');" - "retval=='text' && retval.length == 4;").toBool(); - QVERIFY(res); - - // Cancel + QString() - res = page.mainFrame()->evaluateJavaScript( - "var retval = prompt('test3');" - "retval===null;").toBool(); - QVERIFY(res); - - // Cancel + "text" - res = page.mainFrame()->evaluateJavaScript( - "var retval = prompt('test4');" - "retval===null;").toBool(); - QVERIFY(res); -} - -class TestModalPage : public QWebPage -{ - Q_OBJECT -public: - TestModalPage(QObject* parent = 0) : QWebPage(parent) { - } - virtual QWebPage* createWindow(WebWindowType) { - QWebPage* page = new TestModalPage(); - connect(page, SIGNAL(windowCloseRequested()), page, SLOT(deleteLater())); - return page; - } -}; - -void tst_QWebPage::showModalDialog() -{ - TestModalPage page; - page.mainFrame()->setHtml(QString("")); - QString res = page.mainFrame()->evaluateJavaScript("window.showModalDialog('javascript:window.returnValue=dialogArguments; window.close();', 'This is a test');").toString(); - QCOMPARE(res, QString("This is a test")); -} - -void tst_QWebPage::testStopScheduledPageRefresh() -{ - // Without QWebPage::StopScheduledPageRefresh - QWebPage page1; - page1.setNetworkAccessManager(new TestNetworkManager(&page1)); - page1.mainFrame()->setHtml("" - "" - "

Page redirects immediately...

" - ""); - QVERIFY(::waitForSignal(&page1, SIGNAL(loadFinished(bool)))); - QTest::qWait(500); - QCOMPARE(page1.mainFrame()->url().toString(), QString("http://qt.nokia.com/favicon.ico")); - - // With QWebPage::StopScheduledPageRefresh - QWebPage page2; - page2.setNetworkAccessManager(new TestNetworkManager(&page2)); - page2.mainFrame()->setHtml("" - "" - "

Page redirect test with 1 sec timeout...

" - ""); - page2.triggerAction(QWebPage::StopScheduledPageRefresh); - QTest::qWait(1500); - QCOMPARE(page2.mainFrame()->url().toString(), QString("about:blank")); -} - -void tst_QWebPage::findText() -{ - m_view->setHtml(QString("
foo bar
")); - m_page->triggerAction(QWebPage::SelectAll); - QVERIFY(!m_page->selectedText().isEmpty()); - m_page->findText(""); - QVERIFY(m_page->selectedText().isEmpty()); - QStringList words = (QStringList() << "foo" << "bar"); - foreach (QString subString, words) { - m_page->findText(subString, QWebPage::FindWrapsAroundDocument); - QCOMPARE(m_page->selectedText(), subString); - m_page->findText(""); - QVERIFY(m_page->selectedText().isEmpty()); - } -} - -QTEST_MAIN(tst_QWebPage) -#include "tst_qwebpage.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage.loc --- a/WebKit/qt/tests/qwebpage/tst_qwebpage.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_qwebpage" -#define STRING_r_caption "tst_qwebpage" -#else -#define STRING_r_short_caption "tst_qwebpage" -#define STRING_r_caption "tst_qwebpage" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage.qrc --- a/WebKit/qt/tests/qwebpage/tst_qwebpage.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ - - - resources/index.html - resources/frame_a.html - resources/iframe.html - resources/iframe2.html - resources/iframe3.html - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage.rss --- a/WebKit/qt/tests/qwebpage/tst_qwebpage.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage_installer.pkg --- a/WebKit/qt/tests/qwebpage/tst_qwebpage_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebpage/tst_qwebpage_installer.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebpage installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/qwebpage/tst_qwebpage.sis" - "c:\private\2002CCCE\import\tst_qwebpage.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage_reg.rss --- a/WebKit/qt/tests/qwebpage/tst_qwebpage_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:40 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xEa61c4d3 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_qwebpage"; - localisable_resource_file="\\resource\\apps\\tst_qwebpage"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage_stub.pkg --- a/WebKit/qt/tests/qwebpage/tst_qwebpage_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebpage/tst_qwebpage_stub.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebpage"},(0xEa61c4d3),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_qwebpage.exe" -"" - "z:\resource\apps\tst_qwebpage.rsc" -"" - "z:\private\10003a3f\import\apps\tst_qwebpage_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebpage/tst_qwebpage_template.pkg --- a/WebKit/qt/tests/qwebpage/tst_qwebpage_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebpage/tst_qwebpage_template.pkg generated by qmake at 2010-08-16T17:48:40 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebpage"},(0xEa61c4d3),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_qwebpage.exe" - "!:\sys\bin\tst_qwebpage.exe" -"/epoc32/data/z/resource/apps/tst_qwebpage.rsc" - "!:\resource\apps\tst_qwebpage.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_qwebpage_reg.rsc" - "!:\private\10003a3f\import\apps\tst_qwebpage_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebplugindatabase/qwebplugindatabase.pro --- a/WebKit/qt/tests/qwebplugindatabase/qwebplugindatabase.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebplugindatabase/tst_qwebplugindatabase.cpp --- a/WebKit/qt/tests/qwebplugindatabase/tst_qwebplugindatabase.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,437 +0,0 @@ -/* - Copyright (C) 2009 Jakub Wieczorek - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include - -#include -#include -#include -#include -#include -#include - -class tst_QWebPluginDatabase : public QObject -{ - Q_OBJECT - -private slots: - void installedPlugins(); - void searchPaths(); - void null_data(); - void null(); - void pluginForMimeType(); - void enabled(); - void operatorequal_data(); - void operatorequal(); - void preferredPlugin(); - void operatorassign_data(); - void operatorassign(); -}; - -typedef QWebPluginInfo::MimeType MimeType; - -void tst_QWebPluginDatabase::installedPlugins() -{ - QWebPage page; - page.settings()->setAttribute(QWebSettings::PluginsEnabled, true); - QWebFrame* frame = page.mainFrame(); - - QVariantMap jsPluginsMap = frame->evaluateJavaScript("window.navigator.plugins").toMap(); - QList plugins = QWebSettings::pluginDatabase()->plugins(); - QCOMPARE(plugins, QWebSettings::pluginDatabase()->plugins()); - - int length = jsPluginsMap["length"].toInt(); - QCOMPARE(length, plugins.count()); - - for (int i = 0; i < length; ++i) { - QWebPluginInfo plugin = plugins.at(i); - - QVariantMap jsPlugin = frame->evaluateJavaScript(QString("window.navigator.plugins[%1]").arg(i)).toMap(); - QString name = jsPlugin["name"].toString(); - QString description = jsPlugin["description"].toString(); - QString fileName = jsPlugin["filename"].toString(); - - QCOMPARE(plugin.name(), name); - QCOMPARE(plugin.description(), description); - QCOMPARE(QFileInfo(plugin.path()).fileName(), fileName); - - QList mimeTypes; - int mimeTypesCount = jsPlugin["length"].toInt(); - - for (int j = 0; j < mimeTypesCount; ++j) { - QVariantMap jsMimeType = frame->evaluateJavaScript(QString("window.navigator.plugins[%1][%2]").arg(i).arg(j)).toMap(); - - MimeType mimeType; - mimeType.name = jsMimeType["type"].toString(); - mimeType.description = jsMimeType["description"].toString(); - mimeType.fileExtensions = jsMimeType["suffixes"].toString().split(',', QString::SkipEmptyParts); - - mimeTypes.append(mimeType); - QVERIFY(plugin.supportsMimeType(mimeType.name)); - } - - QCOMPARE(plugin.mimeTypes(), mimeTypes); - - QVERIFY(!plugin.isNull()); - QVERIFY(plugin.isEnabled()); - } -} - -void tst_QWebPluginDatabase::searchPaths() -{ - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QList plugins = database->plugins(); - QStringList directories = database->searchPaths(); - QCOMPARE(QWebPluginDatabase::defaultSearchPaths(), directories); - - database->setSearchPaths(directories); - QCOMPARE(QWebPluginDatabase::defaultSearchPaths(), directories); - QCOMPARE(database->searchPaths(), directories); - QCOMPARE(database->plugins(), plugins); - database->refresh(); - QCOMPARE(database->plugins(), plugins); - - database->setSearchPaths(QStringList()); - QCOMPARE(QWebPluginDatabase::defaultSearchPaths(), directories); - QCOMPARE(database->searchPaths(), QStringList()); - QCOMPARE(database->plugins().count(), 0); - - database->setSearchPaths(directories); - QCOMPARE(database->searchPaths(), directories); - database->addSearchPath(QDir::tempPath()); - QCOMPARE(database->searchPaths().count(), directories.count() + 1); - QVERIFY(database->searchPaths().contains(QDir::tempPath())); - directories.append(QDir::tempPath()); - QCOMPARE(database->searchPaths(), directories); - - // As an empty set of search paths has been set, the database has been rebuilt - // from scratch after bringing the old path set back. - // Because the QWebPlugins no longer point to the same PluginPackages, - // the list is also no longer equal to the older one, even though it contains - // the same information. - QCOMPARE(database->plugins().count(), plugins.count()); - plugins = database->plugins(); - QCOMPARE(database->plugins(), plugins); - - for (int i = (directories.count() - 1); i >= 0; --i) { - QDir directory(directories.at(i)); - if (!directory.exists() || !directory.count()) - directories.removeAt(i); - } - - database->setSearchPaths(directories); - QCOMPARE(database->plugins(), plugins); - database->refresh(); - QCOMPARE(database->plugins(), plugins); - - database->setSearchPaths(QWebPluginDatabase::defaultSearchPaths()); - directories = QWebPluginDatabase::defaultSearchPaths(); - QCOMPARE(QWebPluginDatabase::defaultSearchPaths(), directories); - QCOMPARE(database->searchPaths(), directories); - QCOMPARE(database->plugins(), plugins); -} - -Q_DECLARE_METATYPE(QWebPluginInfo) -void tst_QWebPluginDatabase::null_data() -{ - QTest::addColumn("plugin"); - QTest::addColumn("null"); - - QTest::newRow("null") << QWebPluginInfo() << true; - QTest::newRow("foo") << QWebSettings::pluginDatabase()->pluginForMimeType("foobarbaz") << true; - - QList plugins = QWebSettings::pluginDatabase()->plugins(); - for (int i = 0; i < plugins.count(); ++i) - QTest::newRow(QString::number(i).toUtf8().constData()) << plugins.at(i) << false; -} - -void tst_QWebPluginDatabase::null() -{ - QFETCH(QWebPluginInfo, plugin); - QFETCH(bool, null); - - QCOMPARE(plugin.isNull(), null); -} - -void tst_QWebPluginDatabase::pluginForMimeType() -{ - QMultiMap pluginsMap; - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QList plugins = database->plugins(); - - for (int i = 0; i < plugins.count(); ++i) { - QWebPluginInfo plugin = plugins.at(i); - - QList mimeTypes = plugin.mimeTypes(); - for (int j = 0; j < mimeTypes.count(); ++j) { - QString mimeType = mimeTypes.at(j).name; - pluginsMap.insert(mimeType, plugin); - QVERIFY(plugin.supportsMimeType(mimeType)); - } - } - - for (int i = 0; i < plugins.count(); ++i) { - QWebPluginInfo plugin = plugins.at(i); - - QList mimeTypes = plugin.mimeTypes(); - for (int j = 0; j < mimeTypes.count(); ++j) { - QString mimeType = mimeTypes.at(j).name; - - QVERIFY(pluginsMap.count(mimeType) > 0); - if (pluginsMap.count(mimeType) > 1) - continue; - - QWebPluginInfo pluginForMimeType = database->pluginForMimeType(mimeType); - QCOMPARE(pluginForMimeType, plugin); - database->setSearchPaths(database->searchPaths()); - QCOMPARE(pluginForMimeType, plugin); - QCOMPARE(pluginForMimeType, database->pluginForMimeType(mimeType.toUpper())); - QCOMPARE(pluginForMimeType, database->pluginForMimeType(mimeType.toLower())); - QVERIFY(plugin.supportsMimeType(mimeType)); - QVERIFY(!pluginForMimeType.isNull()); - QVERIFY(!plugin.isNull()); - } - } -} - -void tst_QWebPluginDatabase::enabled() -{ - QMultiMap pluginsMap; - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QList plugins = database->plugins(); - - for (int i = 0; i < plugins.count(); ++i) { - QWebPluginInfo plugin = plugins.at(i); - - QList mimeTypes = plugin.mimeTypes(); - for (int j = 0; j < mimeTypes.count(); ++j) { - QString mimeType = mimeTypes.at(j).name; - pluginsMap.insert(mimeType, plugin); - QVERIFY(plugin.supportsMimeType(mimeType)); - } - } - - QMultiMap::iterator it = pluginsMap.begin(); - while (it != pluginsMap.end()) { - QString mimeType = it.key(); - QWebPluginInfo plugin = it.value(); - QWebPluginInfo pluginForMimeType = database->pluginForMimeType(mimeType); - - QVERIFY(pluginsMap.count(mimeType) > 0); - - if (pluginsMap.count(mimeType) == 1) { - QCOMPARE(plugin, pluginForMimeType); - - QVERIFY(plugin.isEnabled()); - QVERIFY(pluginForMimeType.isEnabled()); - plugin.setEnabled(false); - QVERIFY(!plugin.isEnabled()); - QVERIFY(!pluginForMimeType.isEnabled()); - } else { - QVERIFY(plugin.isEnabled()); - QVERIFY(pluginForMimeType.isEnabled()); - plugin.setEnabled(false); - QVERIFY(!plugin.isEnabled()); - } - - QVERIFY(!plugin.isNull()); - QVERIFY(!pluginForMimeType.isNull()); - - QWebPluginInfo pluginForMimeType2 = database->pluginForMimeType(mimeType); - if (pluginsMap.count(mimeType) == 1) { - QVERIFY(pluginForMimeType2 != plugin); - QVERIFY(pluginForMimeType2.isNull()); - } else { - QVERIFY(pluginForMimeType2 != plugin); - QVERIFY(!pluginForMimeType2.isNull()); - } - - plugin.setEnabled(true); - - ++it; - } -} - -void tst_QWebPluginDatabase::operatorequal_data() -{ - QTest::addColumn("first"); - QTest::addColumn("second"); - QTest::addColumn("equal"); - - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QTest::newRow("null") << QWebPluginInfo() << QWebPluginInfo() << true; - QTest::newRow("application/x-shockwave-flash") << database->pluginForMimeType("application/x-shockwave-flash") - << database->pluginForMimeType("application/x-shockwave-flash") << true; - QTest::newRow("foo/bar-baz") << database->pluginForMimeType("foo/bar-baz") - << database->pluginForMimeType("foo/bar-baz") << true; - - QList plugins = database->plugins(); - for (int i = 0; i < (plugins.count() - 1); ++i) { - QWebPluginInfo first = plugins.at(i); - QWebPluginInfo second = plugins.at(i + 1); - - QTest::newRow(QString("%1==%2").arg(first.name(), second.name()).toUtf8().constData()) - << first << second << false; - } -} - -void tst_QWebPluginDatabase::operatorequal() -{ - QFETCH(QWebPluginInfo, first); - QFETCH(QWebPluginInfo, second); - QFETCH(bool, equal); - - QCOMPARE(first == second, equal); -} - -void tst_QWebPluginDatabase::preferredPlugin() -{ - QMultiMap pluginsMap; - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QList plugins = database->plugins(); - - for (int i = 0; i < plugins.count(); ++i) { - QWebPluginInfo plugin = plugins.at(i); - - QList mimeTypes = plugin.mimeTypes(); - for (int j = 0; j < mimeTypes.count(); ++j) { - QString mimeType = mimeTypes.at(j).name; - pluginsMap.insert(mimeType, plugin); - } - } - - QMultiMap::iterator it = pluginsMap.begin(); - while (it != pluginsMap.end()) { - QString mimeType = it.key(); - - if (pluginsMap.count(mimeType) > 1) { - QList pluginsForMimeType = pluginsMap.values(mimeType); - QWebPluginInfo plugin = database->pluginForMimeType(mimeType); - QVERIFY(plugin.supportsMimeType(mimeType)); - - pluginsForMimeType.removeAll(plugin); - for (int i = 0; i < pluginsForMimeType.count(); ++i) { - QWebPluginInfo anotherPlugin = pluginsForMimeType.at(i); - QVERIFY(plugin.supportsMimeType(mimeType)); - QVERIFY(plugin != anotherPlugin); - - QCOMPARE(database->pluginForMimeType(mimeType), plugin); - database->setPreferredPluginForMimeType(mimeType, anotherPlugin); - QCOMPARE(database->pluginForMimeType(mimeType), anotherPlugin); - - anotherPlugin.setEnabled(false); - QCOMPARE(database->pluginForMimeType(mimeType), plugin); - - anotherPlugin.setEnabled(true); - QCOMPARE(database->pluginForMimeType(mimeType), anotherPlugin); - database->setSearchPaths(database->searchPaths()); - QCOMPARE(database->pluginForMimeType(mimeType), anotherPlugin); - - database->setPreferredPluginForMimeType(mimeType, QWebPluginInfo()); - QCOMPARE(database->pluginForMimeType(mimeType), plugin); - } - } else { - QWebPluginInfo plugin = database->pluginForMimeType(mimeType); - QCOMPARE(pluginsMap.value(mimeType), plugin); - - database->setPreferredPluginForMimeType(mimeType, plugin); - QCOMPARE(database->pluginForMimeType(mimeType), plugin); - - plugin.setEnabled(false); - QCOMPARE(database->pluginForMimeType(mimeType), QWebPluginInfo()); - plugin.setEnabled(true); - - database->setPreferredPluginForMimeType(mimeType, QWebPluginInfo()); - QCOMPARE(database->pluginForMimeType(mimeType), plugin); - } - - ++it; - } - - if (pluginsMap.keys().count() >= 2) { - QStringList mimeTypes = pluginsMap.uniqueKeys(); - - QString mimeType1 = mimeTypes.at(0); - QString mimeType2 = mimeTypes.at(1); - QWebPluginInfo plugin1 = database->pluginForMimeType(mimeType1); - QWebPluginInfo plugin2 = database->pluginForMimeType(mimeType2); - - int i = 2; - while (plugin2.supportsMimeType(mimeType1) - && !mimeType2.isEmpty() - && i < mimeTypes.count()) { - mimeType2 = mimeTypes.at(i); - plugin2 = database->pluginForMimeType(mimeType2); - ++i; - } - - plugin1 = database->pluginForMimeType(mimeType1); - QVERIFY(plugin1.supportsMimeType(mimeType1)); - QVERIFY(!plugin1.isNull()); - plugin2 = database->pluginForMimeType(mimeType2); - QVERIFY(plugin2.supportsMimeType(mimeType2)); - QVERIFY(!plugin2.isNull()); - - database->setPreferredPluginForMimeType(mimeType2, plugin1); - QVERIFY(!plugin1.supportsMimeType(mimeType2)); - QCOMPARE(database->pluginForMimeType(mimeType2), plugin2); - - database->setPreferredPluginForMimeType(mimeType1, plugin1); - QVERIFY(!plugin2.supportsMimeType(mimeType1)); - QCOMPARE(database->pluginForMimeType(mimeType2), plugin2); - } -} - -void tst_QWebPluginDatabase::operatorassign_data() -{ - QTest::addColumn("first"); - QTest::addColumn("second"); - - QWebPluginDatabase* database = QWebSettings::pluginDatabase(); - QTest::newRow("null") << QWebPluginInfo() << QWebPluginInfo(); - - QList plugins = database->plugins(); - for (int i = 0; i < (plugins.count() - 1); ++i) { - QWebPluginInfo first = plugins.at(i); - QWebPluginInfo second = plugins.at(i + 1); - - QTest::newRow(QString("%1=%2").arg(first.name(), second.name()).toUtf8().constData()) << first << second; - } -} - -void tst_QWebPluginDatabase::operatorassign() -{ - QFETCH(QWebPluginInfo, first); - QFETCH(QWebPluginInfo, second); - - QWebPluginInfo info; - QCOMPARE(info.mimeTypes(), QList()); - QCOMPARE(info = first, first); - QCOMPARE(info, first); - QCOMPARE(info.mimeTypes(), first.mimeTypes()); - QCOMPARE(info = second, second); - QCOMPARE(info, second); - QCOMPARE(info.mimeTypes(), second.mimeTypes()); - QCOMPARE(info = QWebPluginInfo(), QWebPluginInfo()); - QCOMPARE(info.mimeTypes(), QList()); -} - -QTEST_MAIN(tst_QWebPluginDatabase) - -#include "tst_qwebplugindatabase.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/.gitignore --- a/WebKit/qt/tests/qwebview/.gitignore Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -qwebview diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/Makefile --- a/WebKit/qt/tests/qwebview/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,581 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:42 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebview" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/qwebview.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/tst_qwebview.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis tst_qwebview.sis tst_qwebview.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard tst_qwebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebview_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard tst_qwebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o tst_qwebview_template.pkg $(QT_SIS_TARGET) - -tst_qwebview.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: tst_qwebview.sis - $(if $(wildcard tst_qwebview_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) tst_qwebview_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard tst_qwebview_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) tst_qwebview_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call tst_qwebview.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: qrc_tst_qwebview.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_tst_qwebview.cpp -qrc_tst_qwebview.cpp: tst_qwebview.qrc \ - resources\index.html \ - resources\frame_a.html \ - resources\input_types.html - \epoc32\tools\rcc.exe -name tst_qwebview u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.qrc -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\qrc_tst_qwebview.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: tst_qwebview.moc -compiler_moc_source_clean: - -$(DEL_FILE) tst_qwebview.moc -tst_qwebview.moc: u:\epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtest_global.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - u:\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - u:\epoc32\include\stdapis\_ansi.h \ - u:\epoc32\include\e32def.h \ - u:\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtTest\qtestcase.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - u:\epoc32\include\e32std.h \ - u:\epoc32\include\e32cmn.h \ - u:\epoc32\include\e32const.h \ - u:\epoc32\include\e32err.h \ - u:\epoc32\include\e32lang.h \ - u:\epoc32\include\e32reg.h \ - u:\epoc32\include\e32capability.h \ - u:\epoc32\include\platform\e32const_private.h \ - u:\epoc32\include\stdapis\string.h \ - u:\epoc32\include\stdapis\strings.h \ - u:\epoc32\include\e32des8.h \ - u:\epoc32\include\platform\e32des8_private.h \ - u:\epoc32\include\e32des16.h \ - u:\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - u:\epoc32\include\e32cmn.inl \ - u:\epoc32\include\platform\e32cmn_private.h \ - u:\epoc32\include\e32std.inl \ - u:\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - u:\epoc32\include\stdapis\stdarg.h \ - u:\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - u:\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - u:\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - u:\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - u:\epoc32\include\stdapis\libm_aliases.h \ - u:\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - u:\epoc32\include\stdapis\stlportv5\climits \ - u:\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - u:\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - u:\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - u:\epoc32\include\stdapis\_ctype.h \ - u:\epoc32\include\stdapis\stdio.h \ - u:\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - u:\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - u:\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - u:\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - u:\epoc32\include\e32atomics.h \ - u:\epoc32\include\stdapis\pthread.h \ - u:\epoc32\include\stdapis\pthreadtypes.h \ - u:\epoc32\include\stdapis\sched.h \ - u:\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - u:\epoc32\include\stdapis\stlportv5\cstdio \ - u:\epoc32\include\stdapis\stlportv5\cwchar \ - u:\epoc32\include\stdapis\stlportv5\cassert \ - u:\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - u:\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - u:\epoc32\include\stdapis\stlportv5\cfloat \ - u:\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - u:\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - u:\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - u:\epoc32\include\stdapis\stlportv5\new \ - u:\epoc32\include\stdapis\stlportv5\exception \ - u:\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtTest\qtestdata.h \ - \epoc32\include\mw\QtTest\qbenchmark.h \ - \epoc32\include\mw\QtTest\qbenchmarkmetric.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtTest\qtestsystem.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtCore\qelapsedtimer.h \ - \epoc32\include\mw\QtTest\qtest_gui.h \ - \epoc32\include\mw\QtTest\qtestassert.h \ - \epoc32\include\mw\QtTest\qtest.h \ - \epoc32\include\mw\QtTest\qtestevent.h \ - \epoc32\include\mw\QtTest\qtestkeyboard.h \ - \epoc32\include\mw\QtTest\qtestspontaneevent.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - \epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtCore\qvector.h \ - u:\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - u:\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtTest\qtestmouse.h \ - \epoc32\include\mw\QtTest\qtesttouch.h \ - \epoc32\include\mw\QtGui\qicon.h \ - ..\util.h \ - u:\epoc32\include\mw\QtCore\QEventLoop \ - u:\epoc32\include\mw\QtCore\qeventloop.h \ - u:\epoc32\include\mw\QtTest\QSignalSpy \ - u:\epoc32\include\mw\QtTest\qsignalspy.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - u:\epoc32\include\mw\QtCore\QTimer \ - u:\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - u:\epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\Api\qwebview.h \ - ..\..\Api\qwebkitglobal.h \ - ..\..\Api\qwebpage.h \ - ..\..\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - u:\epoc32\include\mw\QtCore\qobject.h \ - u:\epoc32\include\mw\QtNetwork\qnetworkrequest.h \ - \epoc32\include\mw\QtCore\QSharedDataPointer \ - u:\epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\QString \ - u:\epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\QUrl \ - u:\epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\QVariant \ - u:\epoc32\include\mw\QtCore\qvariant.h \ - u:\epoc32\include\mw\QtCore\qdiriterator.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - ..\..\Api\qwebkitversion.h \ - ..\..\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - tst_qwebview.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.cpp -o u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\qwebview_0xE82493bd.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\qwebview_0xE82493bd.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\tst_qwebview.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKit\qt\tests\qwebview\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/bld.inf --- a/WebKit/qt/tests/qwebview/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -// ============================================================================ -// * Makefile for building: tst_qwebview -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:42 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: qwebview.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_QWEBVIEW_F89D9274 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -qwebview_0xE82493bd.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/qrc_tst_qwebview.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.qrc U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/resources/index.html U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/resources/frame_a.html U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/resources/input_types.html -OPTION COMMAND /epoc32/tools/rcc.exe -name tst_qwebview u:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.qrc -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebview/qrc_tst_qwebview.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.moc -OPTION DEPS U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtest_global.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtTest/qtestcase.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtTest/qtestdata.h U:/epoc32/include/mw/QtTest/qbenchmark.h U:/epoc32/include/mw/QtTest/qbenchmarkmetric.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtTest/qtestsystem.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtTest/qtest_gui.h U:/epoc32/include/mw/QtTest/qtestassert.h U:/epoc32/include/mw/QtTest/qtest.h U:/epoc32/include/mw/QtTest/qtestevent.h U:/epoc32/include/mw/QtTest/qtestkeyboard.h U:/epoc32/include/mw/QtTest/qtestspontaneevent.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtTest/qtestmouse.h U:/epoc32/include/mw/QtTest/qtesttouch.h U:/epoc32/include/mw/QtGui/qicon.h U:/yaels-qtwebkit/WebKit/qt/tests/util.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtTest/QSignalSpy U:/epoc32/include/mw/QtTest/qsignalspy.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/QTimer U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtNetwork/qnetworkrequest.h U:/epoc32/include/mw/QtCore/QSharedDataPointer U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/QUrl U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitversion.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/WebKit/qt/tests" -I"U:/yaels-qtwebkit/WebKit/qt/Api" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKit/qt/tests/qwebview" -DSYMBIAN u:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.cpp -o u:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/qwebview.pro --- a/WebKit/qt/tests/qwebview/qwebview.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3 +0,0 @@ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../tests.pri) -exists($${TARGET}.qrc):RESOURCES += $${TARGET}.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/qwebview_0xEc433489.mmp --- a/WebKit/qt/tests/qwebview/qwebview_0xEc433489.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,107 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:24 -// This file is generated by qmake and should not be modified by the -// user. -// Name : qwebview.mmp -// ============================================================================== - -TARGET tst_qwebview.exe -TARGETTYPE EXE - -UID 0x100039CE 0xEc433489 -SECUREID 0xEc433489 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE tst_qwebview.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE tst_qwebview_reg.rss -DEPENDS tst_qwebview.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE .. -SYSTEMINCLUDE ../../Api -SYSTEMINCLUDE ../../../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE tst_qwebview.cpp -SOURCE qrc_tst_qwebview.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/resources/frame_a.html --- a/WebKit/qt/tests/qwebview/resources/frame_a.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -Google -Yahoo diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/resources/index.html --- a/WebKit/qt/tests/qwebview/resources/index.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/resources/input_types.html --- a/WebKit/qt/tests/qwebview/resources/input_types.html Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,9 +0,0 @@ - -
-
-
-
-
-
-
- diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview.cpp --- a/WebKit/qt/tests/qwebview/tst_qwebview.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,326 +0,0 @@ -/* - Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - Copyright (C) 2009 Torch Mobile Inc. - Copyright (C) 2009 Girish Ramakrishnan - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include -#include "../util.h" - -#include -#include -#include -#include -#include -#include -#include - -class tst_QWebView : public QObject -{ - Q_OBJECT - -public slots: - void initTestCase(); - void cleanupTestCase(); - void init(); - void cleanup(); - -private slots: - void renderHints(); - void getWebKitVersion(); - - void reusePage_data(); - void reusePage(); - void microFocusCoordinates(); - void focusInputTypes(); - - void crashTests(); -}; - -class WebView : public QWebView -{ - Q_OBJECT - -public: - void fireMouseClick(QPoint point) { - QMouseEvent presEv(QEvent::MouseButtonPress, point, Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); - QMouseEvent relEv(QEvent::MouseButtonRelease, point, Qt::LeftButton, Qt::LeftButton, Qt::NoModifier); - QWebView::mousePressEvent(&presEv); - QWebView::mousePressEvent(&relEv); - } - -}; - -// This will be called before the first test function is executed. -// It is only called once. -void tst_QWebView::initTestCase() -{ -} - -// This will be called after the last test function is executed. -// It is only called once. -void tst_QWebView::cleanupTestCase() -{ -} - -// This will be called before each test function is executed. -void tst_QWebView::init() -{ -} - -// This will be called after every test function. -void tst_QWebView::cleanup() -{ -} - -void tst_QWebView::renderHints() -{ - QWebView webView; - - // default is only text antialiasing - QVERIFY(!(webView.renderHints() & QPainter::Antialiasing)); - QVERIFY(webView.renderHints() & QPainter::TextAntialiasing); - QVERIFY(!(webView.renderHints() & QPainter::SmoothPixmapTransform)); - QVERIFY(!(webView.renderHints() & QPainter::HighQualityAntialiasing)); - - webView.setRenderHint(QPainter::Antialiasing, true); - QVERIFY(webView.renderHints() & QPainter::Antialiasing); - QVERIFY(webView.renderHints() & QPainter::TextAntialiasing); - QVERIFY(!(webView.renderHints() & QPainter::SmoothPixmapTransform)); - QVERIFY(!(webView.renderHints() & QPainter::HighQualityAntialiasing)); - - webView.setRenderHint(QPainter::Antialiasing, false); - QVERIFY(!(webView.renderHints() & QPainter::Antialiasing)); - QVERIFY(webView.renderHints() & QPainter::TextAntialiasing); - QVERIFY(!(webView.renderHints() & QPainter::SmoothPixmapTransform)); - QVERIFY(!(webView.renderHints() & QPainter::HighQualityAntialiasing)); - - webView.setRenderHint(QPainter::SmoothPixmapTransform, true); - QVERIFY(!(webView.renderHints() & QPainter::Antialiasing)); - QVERIFY(webView.renderHints() & QPainter::TextAntialiasing); - QVERIFY(webView.renderHints() & QPainter::SmoothPixmapTransform); - QVERIFY(!(webView.renderHints() & QPainter::HighQualityAntialiasing)); - - webView.setRenderHint(QPainter::SmoothPixmapTransform, false); - QVERIFY(webView.renderHints() & QPainter::TextAntialiasing); - QVERIFY(!(webView.renderHints() & QPainter::SmoothPixmapTransform)); - QVERIFY(!(webView.renderHints() & QPainter::HighQualityAntialiasing)); -} - -void tst_QWebView::getWebKitVersion() -{ - QVERIFY(qWebKitVersion().toDouble() > 0); -} - -void tst_QWebView::reusePage_data() -{ - QTest::addColumn("html"); - QTest::newRow("WithoutPlugin") << "text"; - QTest::newRow("WindowedPlugin") << QString("text"); - QTest::newRow("WindowlessPlugin") << QString("text"); -} - -void tst_QWebView::reusePage() -{ - if (!QDir(TESTS_SOURCE_DIR).exists()) - QSKIP(QString("This test requires access to resources found in '%1'").arg(TESTS_SOURCE_DIR).toLatin1().constData(), SkipAll); - - QDir::setCurrent(TESTS_SOURCE_DIR); - - QFETCH(QString, html); - QWebView* view1 = new QWebView; - QPointer page = new QWebPage; - view1->setPage(page); - page->settings()->setAttribute(QWebSettings::PluginsEnabled, true); - QWebFrame* mainFrame = page->mainFrame(); - mainFrame->setHtml(html, QUrl::fromLocalFile(TESTS_SOURCE_DIR)); - if (html.contains("")) { - // some reasonable time for the PluginStream to feed test.swf to flash and start painting - waitForSignal(view1, SIGNAL(loadFinished(bool)), 2000); - } - - view1->show(); -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QTest::qWaitForWindowShown(view1); -#else - QTest::qWait(2000); -#endif - delete view1; - QVERIFY(page != 0); // deleting view must not have deleted the page, since it's not a child of view - - QWebView *view2 = new QWebView; - view2->setPage(page); - view2->show(); // in Windowless mode, you should still be able to see the plugin here -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QTest::qWaitForWindowShown(view2); -#else - QTest::qWait(2000); -#endif - delete view2; - - delete page; // must not crash - - QDir::setCurrent(QApplication::applicationDirPath()); -} - -// Class used in crashTests -class WebViewCrashTest : public QObject { - Q_OBJECT - QWebView* m_view; -public: - bool m_executed; - - - WebViewCrashTest(QWebView* view) - : m_view(view) - , m_executed(false) - { - view->connect(view, SIGNAL(loadProgress(int)), this, SLOT(loading(int))); - } - -private slots: - void loading(int progress) - { - if (progress >= 20 && progress < 90) { - QVERIFY(!m_executed); - m_view->stop(); - m_executed = true; - } - } -}; - - -// Should not crash. -void tst_QWebView::crashTests() -{ - // Test if loading can be stopped in loadProgress handler without crash. - // Test page should have frames. - QWebView view; - WebViewCrashTest tester(&view); - QUrl url("qrc:///resources/index.html"); - view.load(url); - QTRY_VERIFY(tester.m_executed); // If fail it means that the test wasn't executed. -} - -void tst_QWebView::microFocusCoordinates() -{ - QWebPage* page = new QWebPage; - QWebView* webView = new QWebView; - webView->setPage( page ); - - page->mainFrame()->setHtml("" \ - "
" \ - "" \ - "
" \ - "" \ - ""); - - page->mainFrame()->setFocus(); - - QVariant initialMicroFocus = page->inputMethodQuery(Qt::ImMicroFocus); - QVERIFY(initialMicroFocus.isValid()); - - page->mainFrame()->scroll(0,50); - - QVariant currentMicroFocus = page->inputMethodQuery(Qt::ImMicroFocus); - QVERIFY(currentMicroFocus.isValid()); - - QCOMPARE(initialMicroFocus.toRect().translated(QPoint(0,-50)), currentMicroFocus.toRect()); -} - -void tst_QWebView::focusInputTypes() -{ - QWebPage* page = new QWebPage; - WebView* webView = new WebView; - webView->setPage( page ); - - QCoreApplication::processEvents(); - QUrl url("qrc:///resources/input_types.html"); - page->mainFrame()->load(url); - page->mainFrame()->setFocus(); - - QVERIFY(waitForSignal(page, SIGNAL(loadFinished(bool)))); - - // 'text' type - webView->fireMouseClick(QPoint(20, 10)); -#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) || defined(Q_OS_SYMBIAN) - QVERIFY(webView->inputMethodHints() & Qt::ImhNoAutoUppercase); - QVERIFY(webView->inputMethodHints() & Qt::ImhNoPredictiveText); -#else - QVERIFY(webView->inputMethodHints() == Qt::ImhNone); -#endif - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'password' field - webView->fireMouseClick(QPoint(20, 60)); - QVERIFY(webView->inputMethodHints() == Qt::ImhHiddenText); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'tel' field - webView->fireMouseClick(QPoint(20, 110)); - QVERIFY(webView->inputMethodHints() == Qt::ImhDialableCharactersOnly); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'number' field - webView->fireMouseClick(QPoint(20, 160)); - QVERIFY(webView->inputMethodHints() == Qt::ImhDigitsOnly); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'email' field - webView->fireMouseClick(QPoint(20, 210)); - QVERIFY(webView->inputMethodHints() == Qt::ImhEmailCharactersOnly); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'url' field - webView->fireMouseClick(QPoint(20, 260)); - QVERIFY(webView->inputMethodHints() == Qt::ImhUrlCharactersOnly); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'password' field - webView->fireMouseClick(QPoint(20, 60)); - QVERIFY(webView->inputMethodHints() == Qt::ImhHiddenText); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'text' type - webView->fireMouseClick(QPoint(20, 10)); -#if defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6) || defined(Q_OS_SYMBIAN) - QVERIFY(webView->inputMethodHints() & Qt::ImhNoAutoUppercase); - QVERIFY(webView->inputMethodHints() & Qt::ImhNoPredictiveText); -#else - QVERIFY(webView->inputMethodHints() == Qt::ImhNone); -#endif - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - // 'password' field - webView->fireMouseClick(QPoint(20, 60)); - QVERIFY(webView->inputMethodHints() == Qt::ImhHiddenText); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - qWarning("clicking on text area"); - // 'text area' field - webView->fireMouseClick(QPoint(20, 320)); - QVERIFY(webView->inputMethodHints() == Qt::ImhNone); - QVERIFY(webView->testAttribute(Qt::WA_InputMethodEnabled)); - - delete webView; - -} - -QTEST_MAIN(tst_QWebView) -#include "tst_qwebview.moc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview.loc --- a/WebKit/qt/tests/qwebview/tst_qwebview.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:42 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "tst_qwebview" -#define STRING_r_caption "tst_qwebview" -#else -#define STRING_r_short_caption "tst_qwebview" -#define STRING_r_caption "tst_qwebview" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview.qrc --- a/WebKit/qt/tests/qwebview/tst_qwebview.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ - - - resources/index.html - resources/frame_a.html - resources/input_types.html - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview.rss --- a/WebKit/qt/tests/qwebview/tst_qwebview.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:42 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview_installer.pkg --- a/WebKit/qt/tests/qwebview/tst_qwebview_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview_installer.pkg generated by qmake at 2010-08-16T17:48:42 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebview installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview.sis" - "c:\private\2002CCCE\import\tst_qwebview.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview_reg.rss --- a/WebKit/qt/tests/qwebview/tst_qwebview_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:42 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE82493bd - -RESOURCE APP_REGISTRATION_INFO - { - app_file="tst_qwebview"; - localisable_resource_file="\\resource\\apps\\tst_qwebview"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview_stub.pkg --- a/WebKit/qt/tests/qwebview/tst_qwebview_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview_stub.pkg generated by qmake at 2010-08-16T17:48:42 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebview"},(0xE82493bd),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\tst_qwebview.exe" -"" - "z:\resource\apps\tst_qwebview.rsc" -"" - "z:\private\10003a3f\import\apps\tst_qwebview_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/qwebview/tst_qwebview_template.pkg --- a/WebKit/qt/tests/qwebview/tst_qwebview_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKit/qt/tests/qwebview/tst_qwebview_template.pkg generated by qmake at 2010-08-16T17:48:42 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"tst_qwebview"},(0xE82493bd),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/tst_qwebview.exe" - "!:\sys\bin\tst_qwebview.exe" -"/epoc32/data/z/resource/apps/tst_qwebview.rsc" - "!:\resource\apps\tst_qwebview.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/tst_qwebview_reg.rsc" - "!:\private\10003a3f\import\apps\tst_qwebview_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/resources/image2.png Binary file WebKit/qt/tests/resources/image2.png has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/resources/test.swf Binary file WebKit/qt/tests/resources/test.swf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/tests.pri --- a/WebKit/qt/tests/tests.pri Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -TEMPLATE = app -CONFIG -= app_bundle - -VPATH += $$_PRO_FILE_PWD_ -# Add the tst_ prefix, In QTDIR_build it's done by qttest_p4.prf -CONFIG(QTDIR_build) { load(qttest_p4) } -ELSE { TARGET = tst_$$TARGET } -SOURCES += $${TARGET}.cpp -INCLUDEPATH += \ - $$PWD \ - $$PWD/../Api - -include(../../../WebKit.pri) -QT += testlib network - -QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR - -symbian { - TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices -} - -# This define is used by some tests to look up resources in the source tree -!symbian: DEFINES += TESTS_SOURCE_DIR=\\\"$$PWD/\\\" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/tests.pro --- a/WebKit/qt/tests/tests.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,4 +0,0 @@ - -TEMPLATE = subdirs -SUBDIRS = qwebframe qwebpage qwebelement qgraphicswebview qwebhistoryinterface qwebview qwebhistory qwebinspector hybridPixmap -SUBDIRS += benchmarks/painting benchmarks/loading diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/qt/tests/util.h --- a/WebKit/qt/tests/util.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ -/* - Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ -// Functions and macros that really need to be in QTestLib - -#include -#include -#include - -#if !defined(TESTS_SOURCE_DIR) -#define TESTS_SOURCE_DIR "" -#endif - -/** - * Starts an event loop that runs until the given signal is received. - * Optionally the event loop - * can return earlier on a timeout. - * - * \return \p true if the requested signal was received - * \p false on timeout - */ -static bool waitForSignal(QObject* obj, const char* signal, int timeout = 10000) -{ - QEventLoop loop; - QObject::connect(obj, signal, &loop, SLOT(quit())); - QTimer timer; - QSignalSpy timeoutSpy(&timer, SIGNAL(timeout())); - if (timeout > 0) { - QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit())); - timer.setSingleShot(true); - timer.start(timeout); - } - loop.exec(); - return timeoutSpy.isEmpty(); -} - -// Will try to wait for the condition while allowing event processing -#define QTRY_VERIFY(__expr) \ - do { \ - const int __step = 50; \ - const int __timeout = 5000; \ - if (!(__expr)) { \ - QTest::qWait(0); \ - } \ - for (int __i = 0; __i < __timeout && !(__expr); __i+=__step) { \ - QTest::qWait(__step); \ - } \ - QVERIFY(__expr); \ - } while(0) - -// Will try to wait for the condition while allowing event processing -#define QTRY_COMPARE(__expr, __expected) \ - do { \ - const int __step = 50; \ - const int __timeout = 5000; \ - if ((__expr) != (__expected)) { \ - QTest::qWait(0); \ - } \ - for (int __i = 0; __i < __timeout && ((__expr) != (__expected)); __i+=__step) { \ - QTest::qWait(__step); \ - } \ - QCOMPARE(__expr, __expected); \ - } while(0) diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/win/ChangeLog --- a/WebKit/win/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/win/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,15 @@ +2010-07-27 Steve Block + + Reviewed by Alexey Proskuryakov. + + Client-based Geolocation does not pass enableHighAccuracy option to controller and client + https://bugs.webkit.org/show_bug.cgi?id=40374 + + Stub out setEnableHighAccuracy method for the Win port. + + * WebCoreSupport/WebGeolocationControllerClient.h: + (WebGeolocationControllerClient::setEnableHighAccuracy): + 2010-07-21 Brady Eidson Reviewed by Geoffrey Garen. diff -r 4f2f89ce4247 -r 303757a437d3 WebKit/win/WebCoreSupport/WebGeolocationControllerClient.h --- a/WebKit/win/WebCoreSupport/WebGeolocationControllerClient.h Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKit/win/WebCoreSupport/WebGeolocationControllerClient.h Mon Oct 04 01:32:07 2010 +0300 @@ -42,6 +42,7 @@ virtual void geolocationDestroyed(); virtual void startUpdating(); virtual void stopUpdating(); + virtual void setEnableHighAccuracy(bool) { } virtual WebCore::GeolocationPosition* lastPosition(); private: diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/JavaScriptCore/DerivedSources_0xE4592bbf.mmp --- a/WebKitBuild/Release/JavaScriptCore/DerivedSources_0xE4592bbf.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,80 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:45 -// This file is generated by qmake and should not be modified by the -// user. -// Name : ..\..\..\JavaScriptCore\DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xE4592bbf -SECUREID 0xE4592bbf - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . -SYSTEMINCLUDE JavaScriptCore - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/JavaScriptCore/Makefile.DerivedSources --- a/WebKitBuild/Release/JavaScriptCore/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1207 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Thu 12. Aug 12:39:45 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebKitBuild/Release/JavaScriptCore/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/JavaScriptCore" -I"JavaScriptCore" -first: default -default: debug-winscw -all: -generated_files: compiler_lut_make_all compiler_keywordlut_make_all compiler_rvctstubs_make_all compiler_ctgen_make_all compiler_retgen_make_all - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_lut_make_all: generated\ArrayPrototype.lut.h generated\DatePrototype.lut.h generated\JSONObject.lut.h generated\MathObject.lut.h generated\NumberConstructor.lut.h generated\RegExpConstructor.lut.h generated\RegExpObject.lut.h generated\StringPrototype.lut.h -compiler_lut_clean: - -$(DEL_FILE) generated\ArrayPrototype.lut.h generated\DatePrototype.lut.h generated\JSONObject.lut.h generated\MathObject.lut.h generated\NumberConstructor.lut.h generated\RegExpConstructor.lut.h generated\RegExpObject.lut.h generated\StringPrototype.lut.h -generated\ArrayPrototype.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\ArrayPrototype.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\JSStringBuilder.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\runtime\Operations.h \ - ..\..\..\JavaScriptCore\runtime\ArrayPrototype.cpp \ - ..\..\..\JavaScriptCore\runtime\ArrayPrototype.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\ArrayPrototype.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\ArrayPrototype.lut.h - -generated\DatePrototype.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\DatePrototype.h \ - ..\..\..\JavaScriptCore\runtime\DateInstance.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\DateConversion.h \ - ..\..\..\JavaScriptCore\runtime\Error.h \ - ..\..\..\JavaScriptCore\runtime\JSStringBuilder.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\wtf\StringExtras.h \ - ..\..\..\JavaScriptCore\runtime\DatePrototype.cpp \ - ..\..\..\JavaScriptCore\runtime\DatePrototype.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\DatePrototype.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\DatePrototype.lut.h - -generated\JSONObject.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\JSONObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\BooleanObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\Error.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\LiteralParser.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObjectFunctions.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\StringBuilder.h \ - ..\..\..\JavaScriptCore\runtime\JSONObject.cpp \ - ..\..\..\JavaScriptCore\runtime\JSONObject.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\JSONObject.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\JSONObject.lut.h - -generated\MathObject.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\MathObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\runtime\Operations.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\wtf\RandomNumber.h \ - ..\..\..\JavaScriptCore\wtf\RandomNumberSeed.h \ - ..\..\..\JavaScriptCore\runtime\MathObject.cpp \ - ..\..\..\JavaScriptCore\runtime\MathObject.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\MathObject.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\MathObject.lut.h - -generated\NumberConstructor.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\NumberConstructor.h \ - ..\..\..\JavaScriptCore\runtime\InternalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\NumberConstructor.cpp \ - ..\..\..\JavaScriptCore\runtime\NumberConstructor.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\NumberConstructor.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\NumberConstructor.lut.h - -generated\RegExpConstructor.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\RegExpConstructor.h \ - ..\..\..\JavaScriptCore\runtime\InternalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\RegExp.h \ - ..\..\..\JavaScriptCore\yarr\RegexJIT.h \ - ..\..\..\JavaScriptCore\yarr\RegexPattern.h \ - ..\..\..\JavaScriptCore\yarr\RegexInterpreter.h \ - ..\..\..\JavaScriptCore\yarr\RegexParser.h \ - ..\..\..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\..\..\JavaScriptCore\runtime\ArrayPrototype.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\Error.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\JSFunction.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\runtime\RegExpMatchesArray.h \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.h \ - ..\..\..\JavaScriptCore\runtime\RegExpPrototype.h \ - ..\..\..\JavaScriptCore\runtime\RegExpCache.h \ - ..\..\..\JavaScriptCore\runtime\RegExpKey.h \ - ..\..\..\JavaScriptCore\runtime\RegExpConstructor.cpp \ - ..\..\..\JavaScriptCore\runtime\RegExpConstructor.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\RegExpConstructor.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\RegExpConstructor.lut.h - -generated\RegExpObject.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\RegExp.h \ - ..\..\..\JavaScriptCore\yarr\RegexJIT.h \ - ..\..\..\JavaScriptCore\yarr\RegexPattern.h \ - ..\..\..\JavaScriptCore\yarr\RegexInterpreter.h \ - ..\..\..\JavaScriptCore\yarr\RegexParser.h \ - ..\..\..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\..\..\JavaScriptCore\runtime\Error.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\RegExpConstructor.h \ - ..\..\..\JavaScriptCore\runtime\InternalFunction.h \ - ..\..\..\JavaScriptCore\runtime\RegExpPrototype.h \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.cpp \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\RegExpObject.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\RegExpObject.lut.h - -generated\StringPrototype.lut.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.h \ - ..\..\..\JavaScriptCore\runtime\StringObject.h \ - ..\..\..\JavaScriptCore\runtime\JSWrapperObject.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\Error.h \ - ..\..\..\JavaScriptCore\runtime\Executable.h \ - ..\..\..\JavaScriptCore\runtime\JSFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObjectFunctions.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSStringBuilder.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\runtime\Lookup.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\JSVariableObject.h \ - ..\..\..\JavaScriptCore\runtime\SymbolTable.h \ - ..\..\..\JavaScriptCore\runtime\NumberPrototype.h \ - ..\..\..\JavaScriptCore\runtime\NumberObject.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\runtime\Operations.h \ - ..\..\..\JavaScriptCore\runtime\RegExpCache.h \ - ..\..\..\JavaScriptCore\runtime\RegExp.h \ - ..\..\..\JavaScriptCore\yarr\RegexJIT.h \ - ..\..\..\JavaScriptCore\yarr\RegexPattern.h \ - ..\..\..\JavaScriptCore\yarr\RegexInterpreter.h \ - ..\..\..\JavaScriptCore\yarr\RegexParser.h \ - ..\..\..\JavaScriptCore\runtime\RegExpKey.h \ - ..\..\..\JavaScriptCore\runtime\RegExpConstructor.h \ - ..\..\..\JavaScriptCore\runtime\InternalFunction.h \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Collator.h \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.cpp \ - ..\..\..\JavaScriptCore\runtime\StringPrototype.cpp \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\runtime\StringPrototype.cpp -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\StringPrototype.lut.h - -compiler_keywordlut_make_all: generated\Lexer.lut.h -compiler_keywordlut_clean: - -$(DEL_FILE) generated\Lexer.lut.h -generated\Lexer.lut.h: ..\..\..\JavaScriptCore\parser\Keywords.table \ - ..\..\..\JavaScriptCore\parser\Keywords.table \ - ..\..\..\JavaScriptCore\create_hash_table - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_hash_table JavaScriptCore\parser\Keywords.table -i > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\Lexer.lut.h - -compiler_rvctstubs_make_all: generated\GeneratedJITStubs_RVCT.h -compiler_rvctstubs_clean: - -$(DEL_FILE) generated\GeneratedJITStubs_RVCT.h -generated\GeneratedJITStubs_RVCT.h: ..\..\..\JavaScriptCore\config.h \ - ..\..\..\JavaScriptCore\wtf\Platform.h \ - ..\..\..\JavaScriptCore\wtf\FastMalloc.h \ - ..\..\..\JavaScriptCore\wtf\PossiblyNull.h \ - ..\..\..\JavaScriptCore\wtf\Assertions.h \ - ..\..\..\JavaScriptCore\wtf\DisallowCType.h \ - ..\..\..\JavaScriptCore\jit\JITStubs.h \ - ..\..\..\JavaScriptCore\runtime\CallData.h \ - ..\..\..\JavaScriptCore\runtime\JSValue.h \ - ..\..\..\JavaScriptCore\wtf\AlwaysInline.h \ - ..\..\..\JavaScriptCore\wtf\HashTraits.h \ - ..\..\..\JavaScriptCore\wtf\HashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\RefPtr.h \ - ..\..\..\JavaScriptCore\wtf\FastAllocBase.h \ - ..\..\..\JavaScriptCore\wtf\TypeTraits.h \ - ..\..\..\JavaScriptCore\wtf\PassRefPtr.h \ - ..\..\..\JavaScriptCore\wtf\MathExtras.h \ - ..\..\..\JavaScriptCore\runtime\NativeFunctionWrapper.h \ - ..\..\..\JavaScriptCore\jit\ThunkGenerators.h \ - ..\..\..\JavaScriptCore\wtf\HashMap.h \ - ..\..\..\JavaScriptCore\wtf\HashTable.h \ - ..\..\..\JavaScriptCore\wtf\ValueCheck.h \ - ..\..\..\JavaScriptCore\wtf\Threading.h \ - ..\..\..\JavaScriptCore\wtf\Atomics.h \ - ..\..\..\JavaScriptCore\wtf\Locker.h \ - ..\..\..\JavaScriptCore\wtf\Noncopyable.h \ - ..\..\..\JavaScriptCore\wtf\MainThread.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSafeShared.h \ - ..\..\..\JavaScriptCore\wtf\ThreadingPrimitives.h \ - ..\..\..\JavaScriptCore\wtf\HashIterators.h \ - ..\..\..\JavaScriptCore\wtf\RefPtrHashMap.h \ - ..\..\..\JavaScriptCore\runtime\Collector.h \ - ..\..\..\JavaScriptCore\wtf\FixedArray.h \ - ..\..\..\JavaScriptCore\wtf\HashCountedSet.h \ - ..\..\..\JavaScriptCore\wtf\Vector.h \ - ..\..\..\JavaScriptCore\wtf\NotFound.h \ - ..\..\..\JavaScriptCore\wtf\VectorTraits.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtr.h \ - ..\..\..\JavaScriptCore\wtf\OwnPtrCommon.h \ - ..\..\..\JavaScriptCore\wtf\HashSet.h \ - ..\..\..\JavaScriptCore\wtf\StdLibExtras.h \ - ..\..\..\JavaScriptCore\wtf\symbian\BlockAllocatorSymbian.h \ - ..\..\..\JavaScriptCore\runtime\ExceptionHelpers.h \ - ..\..\..\JavaScriptCore\jit\JIT.h \ - ..\..\..\JavaScriptCore\jit\JSInterfaceJIT.h \ - ..\..\..\JavaScriptCore\jit\JITCode.h \ - ..\..\..\JavaScriptCore\runtime\JSImmediate.h \ - ..\..\..\JavaScriptCore\bytecode\SamplingTool.h \ - ..\..\..\JavaScriptCore\bytecode\Opcode.h \ - ..\..\..\JavaScriptCore\runtime\JSArray.h \ - ..\..\..\JavaScriptCore\runtime\JSObject.h \ - ..\..\..\JavaScriptCore\runtime\ArgList.h \ - ..\..\..\JavaScriptCore\runtime\ClassInfo.h \ - ..\..\..\JavaScriptCore\runtime\CommonIdentifiers.h \ - ..\..\..\JavaScriptCore\runtime\Identifier.h \ - ..\..\..\JavaScriptCore\runtime\JSGlobalData.h \ - ..\..\..\JavaScriptCore\runtime\CachedTranscendentalFunction.h \ - ..\..\..\JavaScriptCore\runtime\DateInstanceCache.h \ - ..\..\..\JavaScriptCore\wtf\DateMath.h \ - ..\..\..\JavaScriptCore\wtf\CurrentTime.h \ - ..\..\..\JavaScriptCore\wtf\UnusedParam.h \ - ..\..\..\JavaScriptCore\wtf\RefCounted.h \ - ..\..\..\JavaScriptCore\runtime\MarkStack.h \ - ..\..\..\JavaScriptCore\runtime\NumericStrings.h \ - ..\..\..\JavaScriptCore\runtime\UString.h \ - ..\..\..\JavaScriptCore\runtime\UStringImpl.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImpl.h \ - ..\..\..\JavaScriptCore\wtf\ASCIICType.h \ - ..\..\..\JavaScriptCore\wtf\CrossThreadRefCounted.h \ - ..\..\..\JavaScriptCore\wtf\OwnFastMallocPtr.h \ - ..\..\..\JavaScriptCore\wtf\StringHashFunctions.h \ - ..\..\..\JavaScriptCore\wtf\unicode\Unicode.h \ - ..\..\..\JavaScriptCore\wtf\unicode\qt4\UnicodeQt4.h \ - ..\..\..\JavaScriptCore\wtf\unicode\icu\UnicodeIcu.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeGLib.h \ - ..\..\..\JavaScriptCore\wtf\unicode\glib\UnicodeMacrosFromICU.h \ - ..\..\..\JavaScriptCore\wtf\unicode\wince\UnicodeWince.h \ - ..\..\..\JavaScriptCore\wtf\text\StringImplBase.h \ - ..\..\..\JavaScriptCore\wtf\text\CString.h \ - ..\..\..\JavaScriptCore\runtime\SmallStrings.h \ - ..\..\..\JavaScriptCore\runtime\Terminator.h \ - ..\..\..\JavaScriptCore\runtime\TimeoutChecker.h \ - ..\..\..\JavaScriptCore\runtime\WeakRandom.h \ - ..\..\..\JavaScriptCore\wtf\Forward.h \ - ..\..\..\JavaScriptCore\wtf\ThreadSpecific.h \ - ..\..\..\JavaScriptCore\runtime\Completion.h \ - ..\..\..\JavaScriptCore\runtime\JSCell.h \ - ..\..\..\JavaScriptCore\runtime\ConstructData.h \ - ..\..\..\JavaScriptCore\runtime\Structure.h \ - ..\..\..\JavaScriptCore\runtime\JSType.h \ - ..\..\..\JavaScriptCore\runtime\PropertyMapHashTable.h \ - ..\..\..\JavaScriptCore\runtime\PropertyNameArray.h \ - ..\..\..\JavaScriptCore\wtf\OwnArrayPtr.h \ - ..\..\..\JavaScriptCore\runtime\Protect.h \ - ..\..\..\JavaScriptCore\runtime\StructureChain.h \ - ..\..\..\JavaScriptCore\runtime\StructureTransitionTable.h \ - ..\..\..\JavaScriptCore\runtime\JSTypeInfo.h \ - ..\..\..\JavaScriptCore\runtime\WeakGCPtr.h \ - ..\..\..\JavaScriptCore\runtime\JSNumberCell.h \ - ..\..\..\JavaScriptCore\runtime\PropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\PutPropertySlot.h \ - ..\..\..\JavaScriptCore\runtime\ScopeChain.h \ - ..\..\..\JavaScriptCore\runtime\JSString.h \ - ..\..\..\JavaScriptCore\runtime\PropertyDescriptor.h \ - ..\..\..\JavaScriptCore\runtime\RopeImpl.h \ - ..\..\..\JavaScriptCore\runtime\JSFunction.h \ - ..\..\..\JavaScriptCore\runtime\JSObjectWithGlobalObject.h \ - ..\..\..\JavaScriptCore\runtime\ObjectPrototype.h \ - ..\..\..\JavaScriptCore\runtime\Operations.h \ - ..\..\..\JavaScriptCore\runtime\RegExpObject.h \ - ..\..\..\JavaScriptCore\runtime\RegExp.h \ - ..\..\..\JavaScriptCore\yarr\RegexJIT.h \ - ..\..\..\JavaScriptCore\yarr\RegexPattern.h \ - ..\..\..\JavaScriptCore\yarr\RegexInterpreter.h \ - ..\..\..\JavaScriptCore\yarr\RegexParser.h \ - ..\..\..\JavaScriptCore\wtf\PassOwnPtr.h \ - ..\..\..\JavaScriptCore\runtime\RegExpPrototype.h \ - ..\..\..\JavaScriptCore\jit\JITStubs.cpp \ - ..\..\..\JavaScriptCore\jit\JITStubs.cpp \ - ..\..\..\JavaScriptCore\create_jit_stubs - perl -i Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_jit_stubs --prefix RVCT JavaScriptCore\jit\JITStubs.cpp > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\GeneratedJITStubs_RVCT.h - -compiler_ctgen_make_all: generated\chartables.c -compiler_ctgen_clean: - -$(DEL_FILE) generated\chartables.c generateddftables -generated\chartables.c: ..\..\..\JavaScriptCore\pcre\dftables \ - ..\..\..\JavaScriptCore\pcre\dftables - perl Z:/qtwebkit-symbian-qtp/JavaScriptCore/pcre/dftables z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\chartables.c - -compiler_retgen_make_all: generated\RegExpJitTables.h -compiler_retgen_clean: - -$(DEL_FILE) generated\RegExpJitTables.h -generated\RegExpJitTables.h: ..\..\..\JavaScriptCore\create_regex_tables \ - ..\..\..\JavaScriptCore\create_regex_tables - python Z:/qtwebkit-symbian-qtp/JavaScriptCore/create_regex_tables > z:\qtwebkit-symbian-qtp\JavaScriptCore\generated\RegExpJitTables.h - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_lut_clean compiler_keywordlut_clean compiler_rvctstubs_clean compiler_ctgen_clean compiler_retgen_clean - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\Makefile.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\Makefile.DerivedSources" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\DerivedSources_0xE4592bbf.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\DerivedSources_0xE4592bbf.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\bld.inf.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\JavaScriptCore\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/JavaScriptCore/bld.inf.DerivedSources --- a/WebKitBuild/Release/JavaScriptCore/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: ..\..\..\JavaScriptCore\DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_FE405A88 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xE4592bbf.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/Makefile.DerivedSources --- a/WebKitBuild/Release/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -// ============================================================================ -// * Makefile for building: DerivedSources -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: ..\..\DerivedSources.pro -// * Template: subdirs -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_06A77C28 - -#ifndef BLD_INF_DERIVEDSOURCES_FE405A88 - #include "JavaScriptCore/bld.inf.DerivedSources" -#endif -#ifndef BLD_INF_DERIVEDSOURCES_FAFCD6C7 - #include "WebCore/bld.inf.DerivedSources" -#endif -#ifndef BLD_INF_DERIVEDSOURCES_FAC649A2 - #include "WebKit/qt/Api/bld.inf.DerivedSources" -#endif - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/Makefile.Makefile.DerivedSources --- a/WebKitBuild/Release/Makefile.Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,116 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Thu 12. Aug 12:39:46 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebKitBuild/Release//Makefile.Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/epoc32/include/stdapis/stlportv5" -I"../qtwebkit-symbian-qtp" -first: default -default: debug-winscw -all: -JavaScriptCore\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\DerivedSources.pro -o Makefile.DerivedSources -sub-JavaScriptCore-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) JavaScriptCore\ $(MKDIR) JavaScriptCore\ - cd JavaScriptCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\JavaScriptCore\DerivedSources.pro -o Makefile.DerivedSources -sub-JavaScriptCore-DerivedSources-pro: JavaScriptCore\Makefile.DerivedSources FORCE - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources -WebCore\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebCore\DerivedSources.pro -o Makefile.DerivedSources -sub-WebCore-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebCore\ $(MKDIR) WebCore\ - cd WebCore\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebCore\DerivedSources.pro -o Makefile.DerivedSources -sub-WebCore-DerivedSources-pro: WebCore\Makefile.DerivedSources FORCE - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources -WebKit\qt\Api\Makefile.DerivedSources: - @$(CHK_DIR_EXISTS) WebKit\qt\Api\ $(MKDIR) WebKit\qt\Api\ - cd WebKit\qt\Api\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebKit\qt\Api\DerivedSources.pro -o Makefile.DerivedSources -sub-WebKit-qt-Api-DerivedSources-pro-qmake_all: FORCE - @$(CHK_DIR_EXISTS) WebKit\qt\Api\ $(MKDIR) WebKit\qt\Api\ - cd WebKit\qt\Api\ && $(QMAKE) z:\qtwebkit-symbian-qtp\WebKit\qt\Api\DerivedSources.pro -o Makefile.DerivedSources -sub-WebKit-qt-Api-DerivedSources-pro: WebKit\qt\Api\Makefile.DerivedSources FORCE - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources - - -generated_files-JavaScriptCore-DerivedSources-pro: - (cd JavaScriptCore && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files-WebCore-DerivedSources-pro: - (cd WebCore && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files-WebKit-qt-Api-DerivedSources-pro: - (cd WebKit/qt/Api && $(MAKE) -f Makefile.DerivedSources generated_files) - -generated_files: generated_files-JavaScriptCore-DerivedSources-pro generated_files-WebCore-DerivedSources-pro generated_files-WebKit-qt-Api-DerivedSources-pro - -sub-JavaScriptCore-DerivedSources-pro-check: JavaScriptCore\Makefile.DerivedSources - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources check -sub-WebCore-DerivedSources-pro-check: WebCore\Makefile.DerivedSources - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources check -sub-WebKit-qt-Api-DerivedSources-pro-check: WebKit\qt\Api\Makefile.DerivedSources - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources check -check: sub-JavaScriptCore-DerivedSources-pro-check sub-WebCore-DerivedSources-pro-check sub-WebKit-qt-Api-DerivedSources-pro-check - -sub-JavaScriptCore-DerivedSources-pro-sis_target: JavaScriptCore\Makefile.DerivedSources - cd JavaScriptCore\ && $(MAKE) -f Makefile.DerivedSources sis -sub-WebCore-DerivedSources-pro-sis_target: WebCore\Makefile.DerivedSources - cd WebCore\ && $(MAKE) -f Makefile.DerivedSources sis -sub-WebKit-qt-Api-DerivedSources-pro-sis_target: WebKit\qt\Api\Makefile.DerivedSources - cd WebKit\qt\Api\ && $(MAKE) -f Makefile.DerivedSources sis -sis: sub-JavaScriptCore-DerivedSources-pro-sis_target sub-WebCore-DerivedSources-pro-sis_target sub-WebKit-qt-Api-DerivedSources-pro-sis_target - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all -FORCE: - -dodistclean: - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\JavaScriptCore\Makefile.DerivedSources" dodistclean - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\WebCore\Makefile.DerivedSources" dodistclean - -$(MAKE) -f "z:\qtwebkit-symbian-qtp\WebKit\qt\Api\Makefile.DerivedSources" dodistclean - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\Makefile.Makefile.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\Makefile.Makefile.DerivedSources" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\Makefile.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\Makefile.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebCore/DerivedSources_0xEee3c016.mmp --- a/WebKitBuild/Release/WebCore/DerivedSources_0xEee3c016.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,126 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:45 -// This file is generated by qmake and should not be modified by the -// user. -// Name : ..\..\..\WebCore\DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xEee3c016 -SECUREID 0xEee3c016 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO ENABLE_JAVASCRIPT_DEBUGGER=1 -MACRO ENABLE_DATABASE=1 -MACRO ENABLE_EVENTSOURCE=1 -MACRO ENABLE_OFFLINE_WEB_APPLICATIONS=1 -MACRO ENABLE_DOM_STORAGE=1 -MACRO ENABLE_ICONDATABASE=1 -MACRO ENABLE_CHANNEL_MESSAGING=1 -MACRO ENABLE_ORIENTATION_EVENTS=0 -MACRO ENABLE_DIRECTORY_UPLOAD=0 -MACRO ENABLE_SQLITE=1 -MACRO ENABLE_DASHBOARD_SUPPORT=0 -MACRO ENABLE_FILTERS=1 -MACRO ENABLE_XPATH=1 -MACRO ENABLE_WCSS=0 -MACRO ENABLE_WML=0 -MACRO ENABLE_SHARED_WORKERS=1 -MACRO ENABLE_WORKERS=1 -MACRO ENABLE_XHTMLMP=0 -MACRO ENABLE_DATAGRID=0 -MACRO ENABLE_RUBY=1 -MACRO ENABLE_SANDBOX=1 -MACRO ENABLE_METER_TAG=1 -MACRO ENABLE_PROGRESS_TAG=1 -MACRO ENABLE_BLOB_SLICE=0 -MACRO ENABLE_NOTIFICATIONS=1 -MACRO ENABLE_IMAGE_RESIZER=0 -MACRO ENABLE_INPUT_SPEECH=0 -MACRO ENABLE_HAPTICS=1 -MACRO ENABLE_3D_RENDERING=1 -MACRO ENABLE_SVG=1 -MACRO ENABLE_SVG_FONTS=1 -MACRO ENABLE_SVG_FOREIGN_OBJECT=1 -MACRO ENABLE_SVG_ANIMATION=1 -MACRO ENABLE_SVG_AS_IMAGE=1 -MACRO ENABLE_SVG_USE=1 -MACRO ENABLE_DATALIST=1 -MACRO ENABLE_TILED_BACKING_STORE=1 -MACRO ENABLE_NETSCAPE_PLUGIN_API=1 -MACRO ENABLE_WEB_SOCKETS=1 -MACRO ENABLE_WEB_TIMING=0 -MACRO ENABLE_XSLT=1 -MACRO ENABLE_GEOLOCATION=1 -MACRO ENABLE_QT_BEARER=1 -MACRO ENABLE_TOUCH_EVENTS=1 -MACRO ENABLE_TRANSFORMACTION_EVENTS=1 -MACRO ENABLE_VIDEO=1 -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . -SYSTEMINCLUDE WebCore - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebCore/Makefile.DerivedSources --- a/WebKitBuild/Release/WebCore/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,3931 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Thu 12. Aug 12:39:45 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebKitBuild/Release/WebCore/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DENABLE_JAVASCRIPT_DEBUGGER=1 -DENABLE_DATABASE=1 -DENABLE_EVENTSOURCE=1 -DENABLE_OFFLINE_WEB_APPLICATIONS=1 -DENABLE_DOM_STORAGE=1 -DENABLE_ICONDATABASE=1 -DENABLE_CHANNEL_MESSAGING=1 -DENABLE_ORIENTATION_EVENTS=0 -DENABLE_DIRECTORY_UPLOAD=0 -DENABLE_SQLITE=1 -DENABLE_DASHBOARD_SUPPORT=0 -DENABLE_FILTERS=1 -DENABLE_XPATH=1 -DENABLE_WCSS=0 -DENABLE_WML=0 -DENABLE_SHARED_WORKERS=1 -DENABLE_WORKERS=1 -DENABLE_XHTMLMP=0 -DENABLE_DATAGRID=0 -DENABLE_RUBY=1 -DENABLE_SANDBOX=1 -DENABLE_METER_TAG=1 -DENABLE_PROGRESS_TAG=1 -DENABLE_BLOB_SLICE=0 -DENABLE_NOTIFICATIONS=1 -DENABLE_IMAGE_RESIZER=0 -DENABLE_INPUT_SPEECH=0 -DENABLE_HAPTICS=1 -DENABLE_3D_RENDERING=1 -DENABLE_SVG=1 -DENABLE_SVG_FONTS=1 -DENABLE_SVG_FOREIGN_OBJECT=1 -DENABLE_SVG_ANIMATION=1 -DENABLE_SVG_AS_IMAGE=1 -DENABLE_SVG_USE=1 -DENABLE_DATALIST=1 -DENABLE_TILED_BACKING_STORE=1 -DENABLE_NETSCAPE_PLUGIN_API=1 -DENABLE_WEB_SOCKETS=1 -DENABLE_WEB_TIMING=0 -DENABLE_XSLT=1 -DENABLE_GEOLOCATION=1 -DENABLE_QT_BEARER=1 -DENABLE_TOUCH_EVENTS=1 -DENABLE_TRANSFORMACTION_EVENTS=1 -DENABLE_VIDEO=1 -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebCore" -I"WebCore" -first: default -default: debug-winscw -all: -generated_files: compiler_mathmlnames_make_all compiler_svgnames_make_all compiler_xlinknames_make_all compiler_cssprops_make_all compiler_cssvalues_make_all compiler_idl_make_all compiler_inspectorIDL_make_all compiler_tokenizer_make_all compiler_cssbison_make_all compiler_htmlnames_make_all compiler_xmlnsnames_make_all compiler_xmlnames_make_all compiler_entities_make_all compiler_doctypestrings_make_all compiler_colordata_make_all compiler_stylesheets_make_all compiler_xpathbison_make_all compiler_webkitversion_make_all - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_mathmlnames_make_all: generated\MathMLNames.cpp -compiler_mathmlnames_clean: - -$(DEL_FILE) generated\MathMLNames.cpp -generated\MathMLNames.cpp: ..\..\..\WebCore\mathml\mathtags.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --tags Z:/qtwebkit-symbian-qtp/WebCore/mathml/mathtags.in --attrs Z:/qtwebkit-symbian-qtp/WebCore/mathml/mathattrs.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_HAPTICS=1 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_svgnames_make_all: generated\SVGNames.cpp -compiler_svgnames_clean: - -$(DEL_FILE) generated\SVGNames.cpp -generated\SVGNames.cpp: ..\..\..\WebCore\svg\svgtags.in \ - ..\..\..\WebCore\svg\svgattrs.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --tags Z:/qtwebkit-symbian-qtp/WebCore/svg/svgtags.in --attrs Z:/qtwebkit-symbian-qtp/WebCore/svg/svgattrs.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_HAPTICS=1 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_xlinknames_make_all: generated\XLinkNames.cpp -compiler_xlinknames_clean: - -$(DEL_FILE) generated\XLinkNames.cpp -generated\XLinkNames.cpp: ..\..\..\WebCore\svg\xlinkattrs.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --attrs Z:/qtwebkit-symbian-qtp/WebCore/svg/xlinkattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_cssprops_make_all: generated\CSSPropertyNames.cpp -compiler_cssprops_clean: - -$(DEL_FILE) generated\CSSPropertyNames.cpp -generated\CSSPropertyNames.cpp: ..\..\..\WebCore\css\CSSPropertyNames.in \ - ..\..\..\WebCore\css\CSSPropertyNames.in \ - ..\..\..\WebCore\css\DashboardSupportCSSPropertyNames.in \ - ..\..\..\WebCore\css\SVGCSSPropertyNames.in \ - ..\..\..\WebCore\css\makeprop.pl - perl -ne "print lc" WebCore\css\CSSPropertyNames.in Z:/qtwebkit-symbian-qtp/WebCore/css/DashboardSupportCSSPropertyNames.in Z:/qtwebkit-symbian-qtp/WebCore/css/SVGCSSPropertyNames.in > generated/CSSPropertyNames.in && cd generated && perl Z:/qtwebkit-symbian-qtp/WebCore/css/makeprop.pl && $(DEL_FILE) CSSPropertyNames.in CSSPropertyNames.gperf - -compiler_cssvalues_make_all: generated\CSSValueKeywords.cpp -compiler_cssvalues_clean: - -$(DEL_FILE) generated\CSSValueKeywords.cpp generated/CSSValueKeywords.h -generated\CSSValueKeywords.cpp: ..\..\..\WebCore\css\CSSValueKeywords.in \ - ..\..\..\WebCore\css\CSSValueKeywords.in \ - ..\..\..\WebCore\css\SVGCSSValueKeywords.in \ - ..\..\..\WebCore\css\makevalues.pl - perl -ne "print lc" WebCore\css\CSSValueKeywords.in Z:/qtwebkit-symbian-qtp/WebCore/css/SVGCSSValueKeywords.in > generated/CSSValueKeywords.in && cd generated && perl Z:/qtwebkit-symbian-qtp/WebCore/css/makevalues.pl && $(DEL_FILE) CSSValueKeywords.in CSSValueKeywords.gperf - -compiler_idl_make_all: generated\JSCounter.cpp generated\JSCSSCharsetRule.cpp generated\JSCSSFontFaceRule.cpp generated\JSCSSImportRule.cpp generated\JSCSSMediaRule.cpp generated\JSCSSPageRule.cpp generated\JSCSSPrimitiveValue.cpp generated\JSCSSRule.cpp generated\JSCSSRuleList.cpp generated\JSCSSStyleDeclaration.cpp generated\JSCSSStyleRule.cpp generated\JSCSSStyleSheet.cpp generated\JSCSSValue.cpp generated\JSCSSValueList.cpp generated\JSCSSVariablesDeclaration.cpp generated\JSCSSVariablesRule.cpp generated\JSMediaList.cpp generated\JSRect.cpp generated\JSRGBColor.cpp generated\JSStyleMedia.cpp generated\JSStyleSheet.cpp generated\JSStyleSheetList.cpp generated\JSWebKitCSSKeyframeRule.cpp generated\JSWebKitCSSKeyframesRule.cpp generated\JSWebKitCSSMatrix.cpp generated\JSWebKitCSSTransformValue.cpp generated\JSAttr.cpp generated\JSBeforeLoadEvent.cpp generated\JSBeforeProcessEvent.cpp generated\JSCharacterData.cpp generated\JSClientRect.cpp generated\JSClientRectList.cpp generated\JSClipboard.cpp generated\JSCDATASection.cpp generated\JSComment.cpp generated\JSCompositionEvent.cpp generated\JSCustomEvent.cpp generated\JSDeviceOrientationEvent.cpp generated\JSDocumentFragment.cpp generated\JSDocument.cpp generated\JSDocumentType.cpp generated\JSDOMCoreException.cpp generated\JSDOMImplementation.cpp generated\JSDOMStringList.cpp generated\JSDOMStringMap.cpp generated\JSElement.cpp generated\JSEntity.cpp generated\JSEntityReference.cpp generated\JSErrorEvent.cpp generated\JSEvent.cpp generated\JSEventException.cpp generated\JSKeyboardEvent.cpp generated\JSMouseEvent.cpp generated\JSMessageChannel.cpp generated\JSMessageEvent.cpp generated\JSMessagePort.cpp generated\JSMutationEvent.cpp generated\JSNamedNodeMap.cpp generated\JSNode.cpp generated\JSNodeFilter.cpp generated\JSNodeIterator.cpp generated\JSNodeList.cpp generated\JSNotation.cpp generated\JSOverflowEvent.cpp generated\JSPageTransitionEvent.cpp generated\JSPopStateEvent.cpp generated\JSProcessingInstruction.cpp generated\JSProgressEvent.cpp generated\JSRangeException.cpp generated\JSRange.cpp generated\JSText.cpp generated\JSTextEvent.cpp generated\JSTouch.cpp generated\JSTouchEvent.cpp generated\JSTouchList.cpp generated\JSTransformActionEvent.cpp generated\JSTreeWalker.cpp generated\JSUIEvent.cpp generated\JSWebKitAnimationEvent.cpp generated\JSWebKitTransitionEvent.cpp generated\JSWheelEvent.cpp generated\JSBlob.cpp generated\JSBlobBuilder.cpp generated\JSArrayBufferView.cpp generated\JSArrayBuffer.cpp generated\JSInt8Array.cpp generated\JSFloat32Array.cpp generated\JSCanvasGradient.cpp generated\JSInt32Array.cpp generated\JSCanvasPattern.cpp generated\JSCanvasRenderingContext.cpp generated\JSCanvasRenderingContext2D.cpp generated\JSWebGLActiveInfo.cpp generated\JSWebGLBuffer.cpp generated\JSWebGLContextAttributes.cpp generated\JSWebGLFramebuffer.cpp generated\JSWebGLProgram.cpp generated\JSWebGLRenderbuffer.cpp generated\JSWebGLRenderingContext.cpp generated\JSWebGLShader.cpp generated\JSInt16Array.cpp generated\JSWebGLTexture.cpp generated\JSWebGLUniformLocation.cpp generated\JSUint8Array.cpp generated\JSUint32Array.cpp generated\JSUint16Array.cpp generated\JSDataGridColumn.cpp generated\JSDataGridColumnList.cpp generated\JSDOMFormData.cpp generated\JSFile.cpp generated\JSFileError.cpp generated\JSFileList.cpp generated\JSFileReader.cpp generated\JSHTMLAllCollection.cpp generated\JSHTMLAudioElement.cpp generated\JSHTMLAnchorElement.cpp generated\JSHTMLAppletElement.cpp generated\JSHTMLAreaElement.cpp generated\JSHTMLBaseElement.cpp generated\JSHTMLBaseFontElement.cpp generated\JSHTMLBlockquoteElement.cpp generated\JSHTMLBodyElement.cpp generated\JSHTMLBRElement.cpp generated\JSHTMLButtonElement.cpp generated\JSHTMLCanvasElement.cpp generated\JSHTMLCollection.cpp generated\JSHTMLDataGridElement.cpp generated\JSHTMLDataGridCellElement.cpp generated\JSHTMLDataGridColElement.cpp generated\JSHTMLDataGridRowElement.cpp generated\JSHTMLDataListElement.cpp generated\JSHTMLDirectoryElement.cpp generated\JSHTMLDivElement.cpp generated\JSHTMLDListElement.cpp generated\JSHTMLDocument.cpp generated\JSHTMLElement.cpp generated\JSHTMLEmbedElement.cpp generated\JSHTMLFieldSetElement.cpp generated\JSHTMLFontElement.cpp generated\JSHTMLFormElement.cpp generated\JSHTMLFrameElement.cpp generated\JSHTMLFrameSetElement.cpp generated\JSHTMLHeadElement.cpp generated\JSHTMLHeadingElement.cpp generated\JSHTMLHRElement.cpp generated\JSHTMLHtmlElement.cpp generated\JSHTMLIFrameElement.cpp generated\JSHTMLImageElement.cpp generated\JSHTMLInputElement.cpp generated\JSHTMLIsIndexElement.cpp generated\JSHTMLLabelElement.cpp generated\JSHTMLLegendElement.cpp generated\JSHTMLLIElement.cpp generated\JSHTMLLinkElement.cpp generated\JSHTMLMapElement.cpp generated\JSHTMLMarqueeElement.cpp generated\JSHTMLMediaElement.cpp generated\JSHTMLMenuElement.cpp generated\JSHTMLMetaElement.cpp generated\JSHTMLMeterElement.cpp generated\JSHTMLModElement.cpp generated\JSHTMLObjectElement.cpp generated\JSHTMLOListElement.cpp generated\JSHTMLOptGroupElement.cpp generated\JSHTMLOptionElement.cpp generated\JSHTMLOptionsCollection.cpp generated\JSHTMLParagraphElement.cpp generated\JSHTMLParamElement.cpp generated\JSHTMLPreElement.cpp generated\JSHTMLProgressElement.cpp generated\JSHTMLQuoteElement.cpp generated\JSHTMLScriptElement.cpp generated\JSHTMLSelectElement.cpp generated\JSHTMLSourceElement.cpp generated\JSHTMLStyleElement.cpp generated\JSHTMLTableCaptionElement.cpp generated\JSHTMLTableCellElement.cpp generated\JSHTMLTableColElement.cpp generated\JSHTMLTableElement.cpp generated\JSHTMLTableRowElement.cpp generated\JSHTMLTableSectionElement.cpp generated\JSHTMLTextAreaElement.cpp generated\JSHTMLTitleElement.cpp generated\JSHTMLUListElement.cpp generated\JSHTMLVideoElement.cpp generated\JSImageData.cpp generated\JSMediaError.cpp generated\JSTextMetrics.cpp generated\JSTimeRanges.cpp generated\JSValidityState.cpp generated\JSVoidCallback.cpp generated\JSInjectedScriptHost.cpp generated\JSInspectorBackend.cpp generated\JSInspectorFrontendHost.cpp generated\JSJavaScriptCallFrame.cpp generated\JSScriptProfile.cpp generated\JSScriptProfileNode.cpp generated\JSDOMApplicationCache.cpp generated\JSNotification.cpp generated\JSNotificationCenter.cpp generated\JSBarInfo.cpp generated\JSConsole.cpp generated\JSCoordinates.cpp generated\JSDOMSelection.cpp generated\JSDOMWindow.cpp generated\JSEventSource.cpp generated\JSGeolocation.cpp generated\JSGeoposition.cpp generated\JSHistory.cpp generated\JSLocation.cpp generated\JSMemoryInfo.cpp generated\JSNavigation.cpp generated\JSNavigator.cpp generated\JSPerformance.cpp generated\JSPositionError.cpp generated\JSScreen.cpp generated\JSTiming.cpp generated\JSWebKitPoint.cpp generated\JSWorkerNavigator.cpp generated\JSDOMPlugin.cpp generated\JSDOMMimeType.cpp generated\JSDOMPluginArray.cpp generated\JSDOMMimeTypeArray.cpp generated\JSDatabase.cpp generated\JSDatabaseCallback.cpp generated\JSDatabaseSync.cpp generated\JSIDBAny.cpp generated\JSIDBDatabaseError.cpp generated\JSIDBDatabaseException.cpp generated\JSIDBDatabaseRequest.cpp generated\JSIDBErrorEvent.cpp generated\JSIDBEvent.cpp generated\JSIDBIndexRequest.cpp generated\JSIDBKey.cpp generated\JSIDBKeyRange.cpp generated\JSIDBObjectStoreRequest.cpp generated\JSIDBRequest.cpp generated\JSIDBSuccessEvent.cpp generated\JSIndexedDatabaseRequest.cpp generated\JSStorage.cpp generated\JSStorageEvent.cpp generated\JSSQLError.cpp generated\JSSQLException.cpp generated\JSSQLResultSet.cpp generated\JSSQLResultSetRowList.cpp generated\JSSQLStatementCallback.cpp generated\JSSQLStatementErrorCallback.cpp generated\JSSQLTransaction.cpp generated\JSSQLTransactionCallback.cpp generated\JSSQLTransactionErrorCallback.cpp generated\JSSQLTransactionSync.cpp generated\JSSQLTransactionSyncCallback.cpp generated\JSSVGZoomEvent.cpp generated\JSSVGAElement.cpp generated\JSSVGAltGlyphElement.cpp generated\JSSVGAngle.cpp generated\JSSVGAnimateColorElement.cpp generated\JSSVGAnimatedAngle.cpp generated\JSSVGAnimatedBoolean.cpp generated\JSSVGAnimatedEnumeration.cpp generated\JSSVGAnimatedInteger.cpp generated\JSSVGAnimatedLength.cpp generated\JSSVGAnimatedLengthList.cpp generated\JSSVGAnimatedNumber.cpp generated\JSSVGAnimatedNumberList.cpp generated\JSSVGAnimatedPreserveAspectRatio.cpp generated\JSSVGAnimatedRect.cpp generated\JSSVGAnimatedString.cpp generated\JSSVGAnimatedTransformList.cpp generated\JSSVGAnimateElement.cpp generated\JSSVGAnimateTransformElement.cpp generated\JSSVGAnimationElement.cpp generated\JSSVGCircleElement.cpp generated\JSSVGClipPathElement.cpp generated\JSSVGColor.cpp generated\JSSVGComponentTransferFunctionElement.cpp generated\JSSVGCursorElement.cpp generated\JSSVGDefsElement.cpp generated\JSSVGDescElement.cpp generated\JSSVGDocument.cpp generated\JSSVGElement.cpp generated\JSSVGElementInstance.cpp generated\JSSVGElementInstanceList.cpp generated\JSSVGEllipseElement.cpp generated\JSSVGException.cpp generated\JSSVGFEBlendElement.cpp generated\JSSVGFEColorMatrixElement.cpp generated\JSSVGFEComponentTransferElement.cpp generated\JSSVGFECompositeElement.cpp generated\JSSVGFEConvolveMatrixElement.cpp generated\JSSVGFEDiffuseLightingElement.cpp generated\JSSVGFEDisplacementMapElement.cpp generated\JSSVGFEDistantLightElement.cpp generated\JSSVGFEFloodElement.cpp generated\JSSVGFEFuncAElement.cpp generated\JSSVGFEFuncBElement.cpp generated\JSSVGFEFuncGElement.cpp generated\JSSVGFEFuncRElement.cpp generated\JSSVGFEGaussianBlurElement.cpp generated\JSSVGFEImageElement.cpp generated\JSSVGFEMergeElement.cpp generated\JSSVGFEMergeNodeElement.cpp generated\JSSVGFEMorphologyElement.cpp generated\JSSVGFEOffsetElement.cpp generated\JSSVGFEPointLightElement.cpp generated\JSSVGFESpecularLightingElement.cpp generated\JSSVGFESpotLightElement.cpp generated\JSSVGFETileElement.cpp generated\JSSVGFETurbulenceElement.cpp generated\JSSVGFilterElement.cpp generated\JSSVGFontElement.cpp generated\JSSVGFontFaceElement.cpp generated\JSSVGFontFaceFormatElement.cpp generated\JSSVGFontFaceNameElement.cpp generated\JSSVGFontFaceSrcElement.cpp generated\JSSVGFontFaceUriElement.cpp generated\JSSVGForeignObjectElement.cpp generated\JSSVGGElement.cpp generated\JSSVGGlyphElement.cpp generated\JSSVGGradientElement.cpp generated\JSSVGHKernElement.cpp generated\JSSVGImageElement.cpp generated\JSSVGLength.cpp generated\JSSVGLengthList.cpp generated\JSSVGLinearGradientElement.cpp generated\JSSVGLineElement.cpp generated\JSSVGMarkerElement.cpp generated\JSSVGMaskElement.cpp generated\JSSVGMatrix.cpp generated\JSSVGMetadataElement.cpp generated\JSSVGMissingGlyphElement.cpp generated\JSSVGNumber.cpp generated\JSSVGNumberList.cpp generated\JSSVGPaint.cpp generated\JSSVGPathElement.cpp generated\JSSVGPathSegArcAbs.cpp generated\JSSVGPathSegArcRel.cpp generated\JSSVGPathSegClosePath.cpp generated\JSSVGPathSegCurvetoCubicAbs.cpp generated\JSSVGPathSegCurvetoCubicRel.cpp generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp generated\JSSVGPathSegCurvetoQuadraticAbs.cpp generated\JSSVGPathSegCurvetoQuadraticRel.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp generated\JSSVGPathSeg.cpp generated\JSSVGPathSegLinetoAbs.cpp generated\JSSVGPathSegLinetoHorizontalAbs.cpp generated\JSSVGPathSegLinetoHorizontalRel.cpp generated\JSSVGPathSegLinetoRel.cpp generated\JSSVGPathSegLinetoVerticalAbs.cpp generated\JSSVGPathSegLinetoVerticalRel.cpp generated\JSSVGPathSegList.cpp generated\JSSVGPathSegMovetoAbs.cpp generated\JSSVGPathSegMovetoRel.cpp generated\JSSVGPatternElement.cpp generated\JSSVGPoint.cpp generated\JSSVGPointList.cpp generated\JSSVGPolygonElement.cpp generated\JSSVGPolylineElement.cpp generated\JSSVGPreserveAspectRatio.cpp generated\JSSVGRadialGradientElement.cpp generated\JSSVGRectElement.cpp generated\JSSVGRect.cpp generated\JSSVGRenderingIntent.cpp generated\JSSVGScriptElement.cpp generated\JSSVGSetElement.cpp generated\JSSVGStopElement.cpp generated\JSSVGStringList.cpp generated\JSSVGStyleElement.cpp generated\JSSVGSVGElement.cpp generated\JSSVGSwitchElement.cpp generated\JSSVGSymbolElement.cpp generated\JSSVGTextContentElement.cpp generated\JSSVGTextElement.cpp generated\JSSVGTextPathElement.cpp generated\JSSVGTextPositioningElement.cpp generated\JSSVGTitleElement.cpp generated\JSSVGTransform.cpp generated\JSSVGTransformList.cpp generated\JSSVGTRefElement.cpp generated\JSSVGTSpanElement.cpp generated\JSSVGUnitTypes.cpp generated\JSSVGUseElement.cpp generated\JSSVGViewElement.cpp generated\JSSVGVKernElement.cpp generated\JSWebSocket.cpp generated\JSAbstractWorker.cpp generated\JSDedicatedWorkerContext.cpp generated\JSSharedWorker.cpp generated\JSSharedWorkerContext.cpp generated\JSWorker.cpp generated\JSWorkerContext.cpp generated\JSWorkerLocation.cpp generated\JSDOMParser.cpp generated\JSXMLHttpRequest.cpp generated\JSXMLHttpRequestException.cpp generated\JSXMLHttpRequestProgressEvent.cpp generated\JSXMLHttpRequestUpload.cpp generated\JSXMLSerializer.cpp generated\JSXPathNSResolver.cpp generated\JSXPathException.cpp generated\JSXPathExpression.cpp generated\JSXPathResult.cpp generated\JSXPathEvaluator.cpp generated\JSXSLTProcessor.cpp -compiler_idl_clean: - -$(DEL_FILE) generated\JSCounter.cpp generated\JSCSSCharsetRule.cpp generated\JSCSSFontFaceRule.cpp generated\JSCSSImportRule.cpp generated\JSCSSMediaRule.cpp generated\JSCSSPageRule.cpp generated\JSCSSPrimitiveValue.cpp generated\JSCSSRule.cpp generated\JSCSSRuleList.cpp generated\JSCSSStyleDeclaration.cpp generated\JSCSSStyleRule.cpp generated\JSCSSStyleSheet.cpp generated\JSCSSValue.cpp generated\JSCSSValueList.cpp generated\JSCSSVariablesDeclaration.cpp generated\JSCSSVariablesRule.cpp generated\JSMediaList.cpp generated\JSRect.cpp generated\JSRGBColor.cpp generated\JSStyleMedia.cpp generated\JSStyleSheet.cpp generated\JSStyleSheetList.cpp generated\JSWebKitCSSKeyframeRule.cpp generated\JSWebKitCSSKeyframesRule.cpp generated\JSWebKitCSSMatrix.cpp generated\JSWebKitCSSTransformValue.cpp generated\JSAttr.cpp generated\JSBeforeLoadEvent.cpp generated\JSBeforeProcessEvent.cpp generated\JSCharacterData.cpp generated\JSClientRect.cpp generated\JSClientRectList.cpp generated\JSClipboard.cpp generated\JSCDATASection.cpp generated\JSComment.cpp generated\JSCompositionEvent.cpp generated\JSCustomEvent.cpp generated\JSDeviceOrientationEvent.cpp generated\JSDocumentFragment.cpp generated\JSDocument.cpp generated\JSDocumentType.cpp generated\JSDOMCoreException.cpp generated\JSDOMImplementation.cpp generated\JSDOMStringList.cpp generated\JSDOMStringMap.cpp generated\JSElement.cpp generated\JSEntity.cpp generated\JSEntityReference.cpp generated\JSErrorEvent.cpp generated\JSEvent.cpp generated\JSEventException.cpp generated\JSKeyboardEvent.cpp generated\JSMouseEvent.cpp generated\JSMessageChannel.cpp generated\JSMessageEvent.cpp generated\JSMessagePort.cpp generated\JSMutationEvent.cpp generated\JSNamedNodeMap.cpp generated\JSNode.cpp generated\JSNodeFilter.cpp generated\JSNodeIterator.cpp generated\JSNodeList.cpp generated\JSNotation.cpp generated\JSOverflowEvent.cpp generated\JSPageTransitionEvent.cpp generated\JSPopStateEvent.cpp generated\JSProcessingInstruction.cpp generated\JSProgressEvent.cpp - -$(DEL_FILE) generated\JSRangeException.cpp generated\JSRange.cpp generated\JSText.cpp generated\JSTextEvent.cpp generated\JSTouch.cpp generated\JSTouchEvent.cpp generated\JSTouchList.cpp generated\JSTransformActionEvent.cpp generated\JSTreeWalker.cpp generated\JSUIEvent.cpp generated\JSWebKitAnimationEvent.cpp generated\JSWebKitTransitionEvent.cpp generated\JSWheelEvent.cpp generated\JSBlob.cpp generated\JSBlobBuilder.cpp generated\JSArrayBufferView.cpp generated\JSArrayBuffer.cpp generated\JSInt8Array.cpp generated\JSFloat32Array.cpp generated\JSCanvasGradient.cpp generated\JSInt32Array.cpp generated\JSCanvasPattern.cpp generated\JSCanvasRenderingContext.cpp generated\JSCanvasRenderingContext2D.cpp generated\JSWebGLActiveInfo.cpp generated\JSWebGLBuffer.cpp generated\JSWebGLContextAttributes.cpp generated\JSWebGLFramebuffer.cpp generated\JSWebGLProgram.cpp generated\JSWebGLRenderbuffer.cpp generated\JSWebGLRenderingContext.cpp generated\JSWebGLShader.cpp generated\JSInt16Array.cpp generated\JSWebGLTexture.cpp generated\JSWebGLUniformLocation.cpp generated\JSUint8Array.cpp generated\JSUint32Array.cpp generated\JSUint16Array.cpp generated\JSDataGridColumn.cpp generated\JSDataGridColumnList.cpp generated\JSDOMFormData.cpp generated\JSFile.cpp generated\JSFileError.cpp generated\JSFileList.cpp generated\JSFileReader.cpp generated\JSHTMLAllCollection.cpp generated\JSHTMLAudioElement.cpp generated\JSHTMLAnchorElement.cpp generated\JSHTMLAppletElement.cpp generated\JSHTMLAreaElement.cpp generated\JSHTMLBaseElement.cpp generated\JSHTMLBaseFontElement.cpp generated\JSHTMLBlockquoteElement.cpp generated\JSHTMLBodyElement.cpp generated\JSHTMLBRElement.cpp generated\JSHTMLButtonElement.cpp generated\JSHTMLCanvasElement.cpp generated\JSHTMLCollection.cpp generated\JSHTMLDataGridElement.cpp generated\JSHTMLDataGridCellElement.cpp generated\JSHTMLDataGridColElement.cpp generated\JSHTMLDataGridRowElement.cpp generated\JSHTMLDataListElement.cpp generated\JSHTMLDirectoryElement.cpp generated\JSHTMLDivElement.cpp - -$(DEL_FILE) generated\JSHTMLDListElement.cpp generated\JSHTMLDocument.cpp generated\JSHTMLElement.cpp generated\JSHTMLEmbedElement.cpp generated\JSHTMLFieldSetElement.cpp generated\JSHTMLFontElement.cpp generated\JSHTMLFormElement.cpp generated\JSHTMLFrameElement.cpp generated\JSHTMLFrameSetElement.cpp generated\JSHTMLHeadElement.cpp generated\JSHTMLHeadingElement.cpp generated\JSHTMLHRElement.cpp generated\JSHTMLHtmlElement.cpp generated\JSHTMLIFrameElement.cpp generated\JSHTMLImageElement.cpp generated\JSHTMLInputElement.cpp generated\JSHTMLIsIndexElement.cpp generated\JSHTMLLabelElement.cpp generated\JSHTMLLegendElement.cpp generated\JSHTMLLIElement.cpp generated\JSHTMLLinkElement.cpp generated\JSHTMLMapElement.cpp generated\JSHTMLMarqueeElement.cpp generated\JSHTMLMediaElement.cpp generated\JSHTMLMenuElement.cpp generated\JSHTMLMetaElement.cpp generated\JSHTMLMeterElement.cpp generated\JSHTMLModElement.cpp generated\JSHTMLObjectElement.cpp generated\JSHTMLOListElement.cpp generated\JSHTMLOptGroupElement.cpp generated\JSHTMLOptionElement.cpp generated\JSHTMLOptionsCollection.cpp generated\JSHTMLParagraphElement.cpp generated\JSHTMLParamElement.cpp generated\JSHTMLPreElement.cpp generated\JSHTMLProgressElement.cpp generated\JSHTMLQuoteElement.cpp generated\JSHTMLScriptElement.cpp generated\JSHTMLSelectElement.cpp generated\JSHTMLSourceElement.cpp generated\JSHTMLStyleElement.cpp generated\JSHTMLTableCaptionElement.cpp generated\JSHTMLTableCellElement.cpp generated\JSHTMLTableColElement.cpp generated\JSHTMLTableElement.cpp generated\JSHTMLTableRowElement.cpp generated\JSHTMLTableSectionElement.cpp generated\JSHTMLTextAreaElement.cpp generated\JSHTMLTitleElement.cpp generated\JSHTMLUListElement.cpp generated\JSHTMLVideoElement.cpp generated\JSImageData.cpp generated\JSMediaError.cpp generated\JSTextMetrics.cpp generated\JSTimeRanges.cpp generated\JSValidityState.cpp generated\JSVoidCallback.cpp generated\JSInjectedScriptHost.cpp generated\JSInspectorBackend.cpp generated\JSInspectorFrontendHost.cpp - -$(DEL_FILE) generated\JSJavaScriptCallFrame.cpp generated\JSScriptProfile.cpp generated\JSScriptProfileNode.cpp generated\JSDOMApplicationCache.cpp generated\JSNotification.cpp generated\JSNotificationCenter.cpp generated\JSBarInfo.cpp generated\JSConsole.cpp generated\JSCoordinates.cpp generated\JSDOMSelection.cpp generated\JSDOMWindow.cpp generated\JSEventSource.cpp generated\JSGeolocation.cpp generated\JSGeoposition.cpp generated\JSHistory.cpp generated\JSLocation.cpp generated\JSMemoryInfo.cpp generated\JSNavigation.cpp generated\JSNavigator.cpp generated\JSPerformance.cpp generated\JSPositionError.cpp generated\JSScreen.cpp generated\JSTiming.cpp generated\JSWebKitPoint.cpp generated\JSWorkerNavigator.cpp generated\JSDOMPlugin.cpp generated\JSDOMMimeType.cpp generated\JSDOMPluginArray.cpp generated\JSDOMMimeTypeArray.cpp generated\JSDatabase.cpp generated\JSDatabaseCallback.cpp generated\JSDatabaseSync.cpp generated\JSIDBAny.cpp generated\JSIDBDatabaseError.cpp generated\JSIDBDatabaseException.cpp generated\JSIDBDatabaseRequest.cpp generated\JSIDBErrorEvent.cpp generated\JSIDBEvent.cpp generated\JSIDBIndexRequest.cpp generated\JSIDBKey.cpp generated\JSIDBKeyRange.cpp generated\JSIDBObjectStoreRequest.cpp generated\JSIDBRequest.cpp generated\JSIDBSuccessEvent.cpp generated\JSIndexedDatabaseRequest.cpp generated\JSStorage.cpp generated\JSStorageEvent.cpp generated\JSSQLError.cpp generated\JSSQLException.cpp generated\JSSQLResultSet.cpp generated\JSSQLResultSetRowList.cpp generated\JSSQLStatementCallback.cpp generated\JSSQLStatementErrorCallback.cpp generated\JSSQLTransaction.cpp generated\JSSQLTransactionCallback.cpp generated\JSSQLTransactionErrorCallback.cpp generated\JSSQLTransactionSync.cpp generated\JSSQLTransactionSyncCallback.cpp generated\JSSVGZoomEvent.cpp generated\JSSVGAElement.cpp generated\JSSVGAltGlyphElement.cpp generated\JSSVGAngle.cpp generated\JSSVGAnimateColorElement.cpp generated\JSSVGAnimatedAngle.cpp generated\JSSVGAnimatedBoolean.cpp generated\JSSVGAnimatedEnumeration.cpp - -$(DEL_FILE) generated\JSSVGAnimatedInteger.cpp generated\JSSVGAnimatedLength.cpp generated\JSSVGAnimatedLengthList.cpp generated\JSSVGAnimatedNumber.cpp generated\JSSVGAnimatedNumberList.cpp generated\JSSVGAnimatedPreserveAspectRatio.cpp generated\JSSVGAnimatedRect.cpp generated\JSSVGAnimatedString.cpp generated\JSSVGAnimatedTransformList.cpp generated\JSSVGAnimateElement.cpp generated\JSSVGAnimateTransformElement.cpp generated\JSSVGAnimationElement.cpp generated\JSSVGCircleElement.cpp generated\JSSVGClipPathElement.cpp generated\JSSVGColor.cpp generated\JSSVGComponentTransferFunctionElement.cpp generated\JSSVGCursorElement.cpp generated\JSSVGDefsElement.cpp generated\JSSVGDescElement.cpp generated\JSSVGDocument.cpp generated\JSSVGElement.cpp generated\JSSVGElementInstance.cpp generated\JSSVGElementInstanceList.cpp generated\JSSVGEllipseElement.cpp generated\JSSVGException.cpp generated\JSSVGFEBlendElement.cpp generated\JSSVGFEColorMatrixElement.cpp generated\JSSVGFEComponentTransferElement.cpp generated\JSSVGFECompositeElement.cpp generated\JSSVGFEConvolveMatrixElement.cpp generated\JSSVGFEDiffuseLightingElement.cpp generated\JSSVGFEDisplacementMapElement.cpp generated\JSSVGFEDistantLightElement.cpp generated\JSSVGFEFloodElement.cpp generated\JSSVGFEFuncAElement.cpp generated\JSSVGFEFuncBElement.cpp generated\JSSVGFEFuncGElement.cpp generated\JSSVGFEFuncRElement.cpp generated\JSSVGFEGaussianBlurElement.cpp generated\JSSVGFEImageElement.cpp generated\JSSVGFEMergeElement.cpp generated\JSSVGFEMergeNodeElement.cpp generated\JSSVGFEMorphologyElement.cpp generated\JSSVGFEOffsetElement.cpp generated\JSSVGFEPointLightElement.cpp generated\JSSVGFESpecularLightingElement.cpp generated\JSSVGFESpotLightElement.cpp generated\JSSVGFETileElement.cpp generated\JSSVGFETurbulenceElement.cpp generated\JSSVGFilterElement.cpp generated\JSSVGFontElement.cpp generated\JSSVGFontFaceElement.cpp generated\JSSVGFontFaceFormatElement.cpp generated\JSSVGFontFaceNameElement.cpp generated\JSSVGFontFaceSrcElement.cpp - -$(DEL_FILE) generated\JSSVGFontFaceUriElement.cpp generated\JSSVGForeignObjectElement.cpp generated\JSSVGGElement.cpp generated\JSSVGGlyphElement.cpp generated\JSSVGGradientElement.cpp generated\JSSVGHKernElement.cpp generated\JSSVGImageElement.cpp generated\JSSVGLength.cpp generated\JSSVGLengthList.cpp generated\JSSVGLinearGradientElement.cpp generated\JSSVGLineElement.cpp generated\JSSVGMarkerElement.cpp generated\JSSVGMaskElement.cpp generated\JSSVGMatrix.cpp generated\JSSVGMetadataElement.cpp generated\JSSVGMissingGlyphElement.cpp generated\JSSVGNumber.cpp generated\JSSVGNumberList.cpp generated\JSSVGPaint.cpp generated\JSSVGPathElement.cpp generated\JSSVGPathSegArcAbs.cpp generated\JSSVGPathSegArcRel.cpp generated\JSSVGPathSegClosePath.cpp generated\JSSVGPathSegCurvetoCubicAbs.cpp generated\JSSVGPathSegCurvetoCubicRel.cpp generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp generated\JSSVGPathSegCurvetoQuadraticAbs.cpp generated\JSSVGPathSegCurvetoQuadraticRel.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp generated\JSSVGPathSeg.cpp generated\JSSVGPathSegLinetoAbs.cpp generated\JSSVGPathSegLinetoHorizontalAbs.cpp generated\JSSVGPathSegLinetoHorizontalRel.cpp generated\JSSVGPathSegLinetoRel.cpp generated\JSSVGPathSegLinetoVerticalAbs.cpp generated\JSSVGPathSegLinetoVerticalRel.cpp generated\JSSVGPathSegList.cpp generated\JSSVGPathSegMovetoAbs.cpp generated\JSSVGPathSegMovetoRel.cpp generated\JSSVGPatternElement.cpp generated\JSSVGPoint.cpp generated\JSSVGPointList.cpp generated\JSSVGPolygonElement.cpp generated\JSSVGPolylineElement.cpp generated\JSSVGPreserveAspectRatio.cpp generated\JSSVGRadialGradientElement.cpp generated\JSSVGRectElement.cpp generated\JSSVGRect.cpp generated\JSSVGRenderingIntent.cpp generated\JSSVGScriptElement.cpp generated\JSSVGSetElement.cpp generated\JSSVGStopElement.cpp generated\JSSVGStringList.cpp generated\JSSVGStyleElement.cpp generated\JSSVGSVGElement.cpp - -$(DEL_FILE) generated\JSSVGSwitchElement.cpp generated\JSSVGSymbolElement.cpp generated\JSSVGTextContentElement.cpp generated\JSSVGTextElement.cpp generated\JSSVGTextPathElement.cpp generated\JSSVGTextPositioningElement.cpp generated\JSSVGTitleElement.cpp generated\JSSVGTransform.cpp generated\JSSVGTransformList.cpp generated\JSSVGTRefElement.cpp generated\JSSVGTSpanElement.cpp generated\JSSVGUnitTypes.cpp generated\JSSVGUseElement.cpp generated\JSSVGViewElement.cpp generated\JSSVGVKernElement.cpp generated\JSWebSocket.cpp generated\JSAbstractWorker.cpp generated\JSDedicatedWorkerContext.cpp generated\JSSharedWorker.cpp generated\JSSharedWorkerContext.cpp generated\JSWorker.cpp generated\JSWorkerContext.cpp generated\JSWorkerLocation.cpp generated\JSDOMParser.cpp generated\JSXMLHttpRequest.cpp generated\JSXMLHttpRequestException.cpp generated\JSXMLHttpRequestProgressEvent.cpp generated\JSXMLHttpRequestUpload.cpp generated\JSXMLSerializer.cpp generated\JSXPathNSResolver.cpp generated\JSXPathException.cpp generated\JSXPathExpression.cpp generated\JSXPathResult.cpp generated\JSXPathEvaluator.cpp generated\JSXSLTProcessor.cpp -generated\JSCounter.cpp: ..\..\..\WebCore\css\Counter.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\Counter.idl - -generated\JSCSSCharsetRule.cpp: ..\..\..\WebCore\css\CSSCharsetRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSCharsetRule.idl - -generated\JSCSSFontFaceRule.cpp: ..\..\..\WebCore\css\CSSFontFaceRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSFontFaceRule.idl - -generated\JSCSSImportRule.cpp: ..\..\..\WebCore\css\CSSImportRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSImportRule.idl - -generated\JSCSSMediaRule.cpp: ..\..\..\WebCore\css\CSSMediaRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSMediaRule.idl - -generated\JSCSSPageRule.cpp: ..\..\..\WebCore\css\CSSPageRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSPageRule.idl - -generated\JSCSSPrimitiveValue.cpp: ..\..\..\WebCore\css\CSSPrimitiveValue.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSPrimitiveValue.idl - -generated\JSCSSRule.cpp: ..\..\..\WebCore\css\CSSRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSRule.idl - -generated\JSCSSRuleList.cpp: ..\..\..\WebCore\css\CSSRuleList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSRuleList.idl - -generated\JSCSSStyleDeclaration.cpp: ..\..\..\WebCore\css\CSSStyleDeclaration.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSStyleDeclaration.idl - -generated\JSCSSStyleRule.cpp: ..\..\..\WebCore\css\CSSStyleRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSStyleRule.idl - -generated\JSCSSStyleSheet.cpp: ..\..\..\WebCore\css\CSSStyleSheet.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSStyleSheet.idl - -generated\JSCSSValue.cpp: ..\..\..\WebCore\css\CSSValue.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSValue.idl - -generated\JSCSSValueList.cpp: ..\..\..\WebCore\css\CSSValueList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSValueList.idl - -generated\JSCSSVariablesDeclaration.cpp: ..\..\..\WebCore\css\CSSVariablesDeclaration.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSVariablesDeclaration.idl - -generated\JSCSSVariablesRule.cpp: ..\..\..\WebCore\css\CSSVariablesRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\CSSVariablesRule.idl - -generated\JSMediaList.cpp: ..\..\..\WebCore\css\MediaList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\MediaList.idl - -generated\JSRect.cpp: ..\..\..\WebCore\css\Rect.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\Rect.idl - -generated\JSRGBColor.cpp: ..\..\..\WebCore\css\RGBColor.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\RGBColor.idl - -generated\JSStyleMedia.cpp: ..\..\..\WebCore\css\StyleMedia.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\StyleMedia.idl - -generated\JSStyleSheet.cpp: ..\..\..\WebCore\css\StyleSheet.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\StyleSheet.idl - -generated\JSStyleSheetList.cpp: ..\..\..\WebCore\css\StyleSheetList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\StyleSheetList.idl - -generated\JSWebKitCSSKeyframeRule.cpp: ..\..\..\WebCore\css\WebKitCSSKeyframeRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\WebKitCSSKeyframeRule.idl - -generated\JSWebKitCSSKeyframesRule.cpp: ..\..\..\WebCore\css\WebKitCSSKeyframesRule.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\WebKitCSSKeyframesRule.idl - -generated\JSWebKitCSSMatrix.cpp: ..\..\..\WebCore\css\WebKitCSSMatrix.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\WebKitCSSMatrix.idl - -generated\JSWebKitCSSTransformValue.cpp: ..\..\..\WebCore\css\WebKitCSSTransformValue.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\css\WebKitCSSTransformValue.idl - -generated\JSAttr.cpp: ..\..\..\WebCore\dom\Attr.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Attr.idl - -generated\JSBeforeLoadEvent.cpp: ..\..\..\WebCore\dom\BeforeLoadEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\BeforeLoadEvent.idl - -generated\JSBeforeProcessEvent.cpp: ..\..\..\WebCore\dom\BeforeProcessEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\BeforeProcessEvent.idl - -generated\JSCharacterData.cpp: ..\..\..\WebCore\dom\CharacterData.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\CharacterData.idl - -generated\JSClientRect.cpp: ..\..\..\WebCore\dom\ClientRect.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\ClientRect.idl - -generated\JSClientRectList.cpp: ..\..\..\WebCore\dom\ClientRectList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\ClientRectList.idl - -generated\JSClipboard.cpp: ..\..\..\WebCore\dom\Clipboard.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Clipboard.idl - -generated\JSCDATASection.cpp: ..\..\..\WebCore\dom\CDATASection.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\CDATASection.idl - -generated\JSComment.cpp: ..\..\..\WebCore\dom\Comment.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Comment.idl - -generated\JSCompositionEvent.cpp: ..\..\..\WebCore\dom\CompositionEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\CompositionEvent.idl - -generated\JSCustomEvent.cpp: ..\..\..\WebCore\dom\CustomEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\CustomEvent.idl - -generated\JSDeviceOrientationEvent.cpp: ..\..\..\WebCore\dom\DeviceOrientationEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DeviceOrientationEvent.idl - -generated\JSDocumentFragment.cpp: ..\..\..\WebCore\dom\DocumentFragment.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DocumentFragment.idl - -generated\JSDocument.cpp: ..\..\..\WebCore\dom\Document.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Document.idl - -generated\JSDocumentType.cpp: ..\..\..\WebCore\dom\DocumentType.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DocumentType.idl - -generated\JSDOMCoreException.cpp: ..\..\..\WebCore\dom\DOMCoreException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DOMCoreException.idl - -generated\JSDOMImplementation.cpp: ..\..\..\WebCore\dom\DOMImplementation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DOMImplementation.idl - -generated\JSDOMStringList.cpp: ..\..\..\WebCore\dom\DOMStringList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DOMStringList.idl - -generated\JSDOMStringMap.cpp: ..\..\..\WebCore\dom\DOMStringMap.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\DOMStringMap.idl - -generated\JSElement.cpp: ..\..\..\WebCore\dom\Element.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Element.idl - -generated\JSEntity.cpp: ..\..\..\WebCore\dom\Entity.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Entity.idl - -generated\JSEntityReference.cpp: ..\..\..\WebCore\dom\EntityReference.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\EntityReference.idl - -generated\JSErrorEvent.cpp: ..\..\..\WebCore\dom\ErrorEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\ErrorEvent.idl - -generated\JSEvent.cpp: ..\..\..\WebCore\dom\Event.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Event.idl - -generated\JSEventException.cpp: ..\..\..\WebCore\dom\EventException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\EventException.idl - -generated\JSKeyboardEvent.cpp: ..\..\..\WebCore\dom\KeyboardEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\KeyboardEvent.idl - -generated\JSMouseEvent.cpp: ..\..\..\WebCore\dom\MouseEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\MouseEvent.idl - -generated\JSMessageChannel.cpp: ..\..\..\WebCore\dom\MessageChannel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\MessageChannel.idl - -generated\JSMessageEvent.cpp: ..\..\..\WebCore\dom\MessageEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\MessageEvent.idl - -generated\JSMessagePort.cpp: ..\..\..\WebCore\dom\MessagePort.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\MessagePort.idl - -generated\JSMutationEvent.cpp: ..\..\..\WebCore\dom\MutationEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\MutationEvent.idl - -generated\JSNamedNodeMap.cpp: ..\..\..\WebCore\dom\NamedNodeMap.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\NamedNodeMap.idl - -generated\JSNode.cpp: ..\..\..\WebCore\dom\Node.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Node.idl - -generated\JSNodeFilter.cpp: ..\..\..\WebCore\dom\NodeFilter.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\NodeFilter.idl - -generated\JSNodeIterator.cpp: ..\..\..\WebCore\dom\NodeIterator.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\NodeIterator.idl - -generated\JSNodeList.cpp: ..\..\..\WebCore\dom\NodeList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\NodeList.idl - -generated\JSNotation.cpp: ..\..\..\WebCore\dom\Notation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Notation.idl - -generated\JSOverflowEvent.cpp: ..\..\..\WebCore\dom\OverflowEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\OverflowEvent.idl - -generated\JSPageTransitionEvent.cpp: ..\..\..\WebCore\dom\PageTransitionEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\PageTransitionEvent.idl - -generated\JSPopStateEvent.cpp: ..\..\..\WebCore\dom\PopStateEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\PopStateEvent.idl - -generated\JSProcessingInstruction.cpp: ..\..\..\WebCore\dom\ProcessingInstruction.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\ProcessingInstruction.idl - -generated\JSProgressEvent.cpp: ..\..\..\WebCore\dom\ProgressEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\ProgressEvent.idl - -generated\JSRangeException.cpp: ..\..\..\WebCore\dom\RangeException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\RangeException.idl - -generated\JSRange.cpp: ..\..\..\WebCore\dom\Range.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Range.idl - -generated\JSText.cpp: ..\..\..\WebCore\dom\Text.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Text.idl - -generated\JSTextEvent.cpp: ..\..\..\WebCore\dom\TextEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\TextEvent.idl - -generated\JSTouch.cpp: ..\..\..\WebCore\dom\Touch.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\Touch.idl - -generated\JSTouchEvent.cpp: ..\..\..\WebCore\dom\TouchEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\TouchEvent.idl - -generated\JSTouchList.cpp: ..\..\..\WebCore\dom\TouchList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\TouchList.idl - -generated\JSTransformActionEvent.cpp: ..\..\..\WebCore\dom\TransformActionEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\TransformActionEvent.idl - -generated\JSTreeWalker.cpp: ..\..\..\WebCore\dom\TreeWalker.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\TreeWalker.idl - -generated\JSUIEvent.cpp: ..\..\..\WebCore\dom\UIEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\UIEvent.idl - -generated\JSWebKitAnimationEvent.cpp: ..\..\..\WebCore\dom\WebKitAnimationEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\WebKitAnimationEvent.idl - -generated\JSWebKitTransitionEvent.cpp: ..\..\..\WebCore\dom\WebKitTransitionEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\WebKitTransitionEvent.idl - -generated\JSWheelEvent.cpp: ..\..\..\WebCore\dom\WheelEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\dom\WheelEvent.idl - -generated\JSBlob.cpp: ..\..\..\WebCore\html\Blob.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\Blob.idl - -generated\JSBlobBuilder.cpp: ..\..\..\WebCore\html\BlobBuilder.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\BlobBuilder.idl - -generated\JSArrayBufferView.cpp: ..\..\..\WebCore\html\canvas\ArrayBufferView.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\ArrayBufferView.idl - -generated\JSArrayBuffer.cpp: ..\..\..\WebCore\html\canvas\ArrayBuffer.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\ArrayBuffer.idl - -generated\JSInt8Array.cpp: ..\..\..\WebCore\html\canvas\Int8Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Int8Array.idl - -generated\JSFloat32Array.cpp: ..\..\..\WebCore\html\canvas\Float32Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Float32Array.idl - -generated\JSCanvasGradient.cpp: ..\..\..\WebCore\html\canvas\CanvasGradient.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\CanvasGradient.idl - -generated\JSInt32Array.cpp: ..\..\..\WebCore\html\canvas\Int32Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Int32Array.idl - -generated\JSCanvasPattern.cpp: ..\..\..\WebCore\html\canvas\CanvasPattern.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\CanvasPattern.idl - -generated\JSCanvasRenderingContext.cpp: ..\..\..\WebCore\html\canvas\CanvasRenderingContext.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\CanvasRenderingContext.idl - -generated\JSCanvasRenderingContext2D.cpp: ..\..\..\WebCore\html\canvas\CanvasRenderingContext2D.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\CanvasRenderingContext2D.idl - -generated\JSWebGLActiveInfo.cpp: ..\..\..\WebCore\html\canvas\WebGLActiveInfo.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLActiveInfo.idl - -generated\JSWebGLBuffer.cpp: ..\..\..\WebCore\html\canvas\WebGLBuffer.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLBuffer.idl - -generated\JSWebGLContextAttributes.cpp: ..\..\..\WebCore\html\canvas\WebGLContextAttributes.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLContextAttributes.idl - -generated\JSWebGLFramebuffer.cpp: ..\..\..\WebCore\html\canvas\WebGLFramebuffer.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLFramebuffer.idl - -generated\JSWebGLProgram.cpp: ..\..\..\WebCore\html\canvas\WebGLProgram.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLProgram.idl - -generated\JSWebGLRenderbuffer.cpp: ..\..\..\WebCore\html\canvas\WebGLRenderbuffer.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLRenderbuffer.idl - -generated\JSWebGLRenderingContext.cpp: ..\..\..\WebCore\html\canvas\WebGLRenderingContext.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLRenderingContext.idl - -generated\JSWebGLShader.cpp: ..\..\..\WebCore\html\canvas\WebGLShader.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLShader.idl - -generated\JSInt16Array.cpp: ..\..\..\WebCore\html\canvas\Int16Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Int16Array.idl - -generated\JSWebGLTexture.cpp: ..\..\..\WebCore\html\canvas\WebGLTexture.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLTexture.idl - -generated\JSWebGLUniformLocation.cpp: ..\..\..\WebCore\html\canvas\WebGLUniformLocation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\WebGLUniformLocation.idl - -generated\JSUint8Array.cpp: ..\..\..\WebCore\html\canvas\Uint8Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Uint8Array.idl - -generated\JSUint32Array.cpp: ..\..\..\WebCore\html\canvas\Uint32Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Uint32Array.idl - -generated\JSUint16Array.cpp: ..\..\..\WebCore\html\canvas\Uint16Array.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\canvas\Uint16Array.idl - -generated\JSDataGridColumn.cpp: ..\..\..\WebCore\html\DataGridColumn.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\DataGridColumn.idl - -generated\JSDataGridColumnList.cpp: ..\..\..\WebCore\html\DataGridColumnList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\DataGridColumnList.idl - -generated\JSDOMFormData.cpp: ..\..\..\WebCore\html\DOMFormData.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\DOMFormData.idl - -generated\JSFile.cpp: ..\..\..\WebCore\html\File.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\File.idl - -generated\JSFileError.cpp: ..\..\..\WebCore\html\FileError.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\FileError.idl - -generated\JSFileList.cpp: ..\..\..\WebCore\html\FileList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\FileList.idl - -generated\JSFileReader.cpp: ..\..\..\WebCore\html\FileReader.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\FileReader.idl - -generated\JSHTMLAllCollection.cpp: ..\..\..\WebCore\html\HTMLAllCollection.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLAllCollection.idl - -generated\JSHTMLAudioElement.cpp: ..\..\..\WebCore\html\HTMLAudioElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLAudioElement.idl - -generated\JSHTMLAnchorElement.cpp: ..\..\..\WebCore\html\HTMLAnchorElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLAnchorElement.idl - -generated\JSHTMLAppletElement.cpp: ..\..\..\WebCore\html\HTMLAppletElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLAppletElement.idl - -generated\JSHTMLAreaElement.cpp: ..\..\..\WebCore\html\HTMLAreaElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLAreaElement.idl - -generated\JSHTMLBaseElement.cpp: ..\..\..\WebCore\html\HTMLBaseElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLBaseElement.idl - -generated\JSHTMLBaseFontElement.cpp: ..\..\..\WebCore\html\HTMLBaseFontElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLBaseFontElement.idl - -generated\JSHTMLBlockquoteElement.cpp: ..\..\..\WebCore\html\HTMLBlockquoteElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLBlockquoteElement.idl - -generated\JSHTMLBodyElement.cpp: ..\..\..\WebCore\html\HTMLBodyElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLBodyElement.idl - -generated\JSHTMLBRElement.cpp: ..\..\..\WebCore\html\HTMLBRElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLBRElement.idl - -generated\JSHTMLButtonElement.cpp: ..\..\..\WebCore\html\HTMLButtonElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLButtonElement.idl - -generated\JSHTMLCanvasElement.cpp: ..\..\..\WebCore\html\HTMLCanvasElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLCanvasElement.idl - -generated\JSHTMLCollection.cpp: ..\..\..\WebCore\html\HTMLCollection.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLCollection.idl - -generated\JSHTMLDataGridElement.cpp: ..\..\..\WebCore\html\HTMLDataGridElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDataGridElement.idl - -generated\JSHTMLDataGridCellElement.cpp: ..\..\..\WebCore\html\HTMLDataGridCellElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDataGridCellElement.idl - -generated\JSHTMLDataGridColElement.cpp: ..\..\..\WebCore\html\HTMLDataGridColElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDataGridColElement.idl - -generated\JSHTMLDataGridRowElement.cpp: ..\..\..\WebCore\html\HTMLDataGridRowElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDataGridRowElement.idl - -generated\JSHTMLDataListElement.cpp: ..\..\..\WebCore\html\HTMLDataListElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDataListElement.idl - -generated\JSHTMLDirectoryElement.cpp: ..\..\..\WebCore\html\HTMLDirectoryElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDirectoryElement.idl - -generated\JSHTMLDivElement.cpp: ..\..\..\WebCore\html\HTMLDivElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDivElement.idl - -generated\JSHTMLDListElement.cpp: ..\..\..\WebCore\html\HTMLDListElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDListElement.idl - -generated\JSHTMLDocument.cpp: ..\..\..\WebCore\html\HTMLDocument.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLDocument.idl - -generated\JSHTMLElement.cpp: ..\..\..\WebCore\html\HTMLElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLElement.idl - -generated\JSHTMLEmbedElement.cpp: ..\..\..\WebCore\html\HTMLEmbedElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLEmbedElement.idl - -generated\JSHTMLFieldSetElement.cpp: ..\..\..\WebCore\html\HTMLFieldSetElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLFieldSetElement.idl - -generated\JSHTMLFontElement.cpp: ..\..\..\WebCore\html\HTMLFontElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLFontElement.idl - -generated\JSHTMLFormElement.cpp: ..\..\..\WebCore\html\HTMLFormElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLFormElement.idl - -generated\JSHTMLFrameElement.cpp: ..\..\..\WebCore\html\HTMLFrameElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLFrameElement.idl - -generated\JSHTMLFrameSetElement.cpp: ..\..\..\WebCore\html\HTMLFrameSetElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLFrameSetElement.idl - -generated\JSHTMLHeadElement.cpp: ..\..\..\WebCore\html\HTMLHeadElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLHeadElement.idl - -generated\JSHTMLHeadingElement.cpp: ..\..\..\WebCore\html\HTMLHeadingElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLHeadingElement.idl - -generated\JSHTMLHRElement.cpp: ..\..\..\WebCore\html\HTMLHRElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLHRElement.idl - -generated\JSHTMLHtmlElement.cpp: ..\..\..\WebCore\html\HTMLHtmlElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLHtmlElement.idl - -generated\JSHTMLIFrameElement.cpp: ..\..\..\WebCore\html\HTMLIFrameElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLIFrameElement.idl - -generated\JSHTMLImageElement.cpp: ..\..\..\WebCore\html\HTMLImageElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLImageElement.idl - -generated\JSHTMLInputElement.cpp: ..\..\..\WebCore\html\HTMLInputElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLInputElement.idl - -generated\JSHTMLIsIndexElement.cpp: ..\..\..\WebCore\html\HTMLIsIndexElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLIsIndexElement.idl - -generated\JSHTMLLabelElement.cpp: ..\..\..\WebCore\html\HTMLLabelElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLLabelElement.idl - -generated\JSHTMLLegendElement.cpp: ..\..\..\WebCore\html\HTMLLegendElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLLegendElement.idl - -generated\JSHTMLLIElement.cpp: ..\..\..\WebCore\html\HTMLLIElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLLIElement.idl - -generated\JSHTMLLinkElement.cpp: ..\..\..\WebCore\html\HTMLLinkElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLLinkElement.idl - -generated\JSHTMLMapElement.cpp: ..\..\..\WebCore\html\HTMLMapElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMapElement.idl - -generated\JSHTMLMarqueeElement.cpp: ..\..\..\WebCore\html\HTMLMarqueeElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMarqueeElement.idl - -generated\JSHTMLMediaElement.cpp: ..\..\..\WebCore\html\HTMLMediaElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMediaElement.idl - -generated\JSHTMLMenuElement.cpp: ..\..\..\WebCore\html\HTMLMenuElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMenuElement.idl - -generated\JSHTMLMetaElement.cpp: ..\..\..\WebCore\html\HTMLMetaElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMetaElement.idl - -generated\JSHTMLMeterElement.cpp: ..\..\..\WebCore\html\HTMLMeterElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLMeterElement.idl - -generated\JSHTMLModElement.cpp: ..\..\..\WebCore\html\HTMLModElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLModElement.idl - -generated\JSHTMLObjectElement.cpp: ..\..\..\WebCore\html\HTMLObjectElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLObjectElement.idl - -generated\JSHTMLOListElement.cpp: ..\..\..\WebCore\html\HTMLOListElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLOListElement.idl - -generated\JSHTMLOptGroupElement.cpp: ..\..\..\WebCore\html\HTMLOptGroupElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLOptGroupElement.idl - -generated\JSHTMLOptionElement.cpp: ..\..\..\WebCore\html\HTMLOptionElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLOptionElement.idl - -generated\JSHTMLOptionsCollection.cpp: ..\..\..\WebCore\html\HTMLOptionsCollection.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLOptionsCollection.idl - -generated\JSHTMLParagraphElement.cpp: ..\..\..\WebCore\html\HTMLParagraphElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLParagraphElement.idl - -generated\JSHTMLParamElement.cpp: ..\..\..\WebCore\html\HTMLParamElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLParamElement.idl - -generated\JSHTMLPreElement.cpp: ..\..\..\WebCore\html\HTMLPreElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLPreElement.idl - -generated\JSHTMLProgressElement.cpp: ..\..\..\WebCore\html\HTMLProgressElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLProgressElement.idl - -generated\JSHTMLQuoteElement.cpp: ..\..\..\WebCore\html\HTMLQuoteElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLQuoteElement.idl - -generated\JSHTMLScriptElement.cpp: ..\..\..\WebCore\html\HTMLScriptElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLScriptElement.idl - -generated\JSHTMLSelectElement.cpp: ..\..\..\WebCore\html\HTMLSelectElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLSelectElement.idl - -generated\JSHTMLSourceElement.cpp: ..\..\..\WebCore\html\HTMLSourceElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLSourceElement.idl - -generated\JSHTMLStyleElement.cpp: ..\..\..\WebCore\html\HTMLStyleElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLStyleElement.idl - -generated\JSHTMLTableCaptionElement.cpp: ..\..\..\WebCore\html\HTMLTableCaptionElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableCaptionElement.idl - -generated\JSHTMLTableCellElement.cpp: ..\..\..\WebCore\html\HTMLTableCellElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableCellElement.idl - -generated\JSHTMLTableColElement.cpp: ..\..\..\WebCore\html\HTMLTableColElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableColElement.idl - -generated\JSHTMLTableElement.cpp: ..\..\..\WebCore\html\HTMLTableElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableElement.idl - -generated\JSHTMLTableRowElement.cpp: ..\..\..\WebCore\html\HTMLTableRowElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableRowElement.idl - -generated\JSHTMLTableSectionElement.cpp: ..\..\..\WebCore\html\HTMLTableSectionElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTableSectionElement.idl - -generated\JSHTMLTextAreaElement.cpp: ..\..\..\WebCore\html\HTMLTextAreaElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTextAreaElement.idl - -generated\JSHTMLTitleElement.cpp: ..\..\..\WebCore\html\HTMLTitleElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLTitleElement.idl - -generated\JSHTMLUListElement.cpp: ..\..\..\WebCore\html\HTMLUListElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLUListElement.idl - -generated\JSHTMLVideoElement.cpp: ..\..\..\WebCore\html\HTMLVideoElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\HTMLVideoElement.idl - -generated\JSImageData.cpp: ..\..\..\WebCore\html\ImageData.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\ImageData.idl - -generated\JSMediaError.cpp: ..\..\..\WebCore\html\MediaError.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\MediaError.idl - -generated\JSTextMetrics.cpp: ..\..\..\WebCore\html\TextMetrics.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\TextMetrics.idl - -generated\JSTimeRanges.cpp: ..\..\..\WebCore\html\TimeRanges.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\TimeRanges.idl - -generated\JSValidityState.cpp: ..\..\..\WebCore\html\ValidityState.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\ValidityState.idl - -generated\JSVoidCallback.cpp: ..\..\..\WebCore\html\VoidCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\html\VoidCallback.idl - -generated\JSInjectedScriptHost.cpp: ..\..\..\WebCore\inspector\InjectedScriptHost.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\InjectedScriptHost.idl - -generated\JSInspectorBackend.cpp: ..\..\..\WebCore\inspector\InspectorBackend.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\InspectorBackend.idl - -generated\JSInspectorFrontendHost.cpp: ..\..\..\WebCore\inspector\InspectorFrontendHost.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\InspectorFrontendHost.idl - -generated\JSJavaScriptCallFrame.cpp: ..\..\..\WebCore\inspector\JavaScriptCallFrame.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\JavaScriptCallFrame.idl - -generated\JSScriptProfile.cpp: ..\..\..\WebCore\inspector\ScriptProfile.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\ScriptProfile.idl - -generated\JSScriptProfileNode.cpp: ..\..\..\WebCore\inspector\ScriptProfileNode.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\ScriptProfileNode.idl - -generated\JSDOMApplicationCache.cpp: ..\..\..\WebCore\loader\appcache\DOMApplicationCache.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\loader\appcache\DOMApplicationCache.idl - -generated\JSNotification.cpp: ..\..\..\WebCore\notifications\Notification.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\notifications\Notification.idl - -generated\JSNotificationCenter.cpp: ..\..\..\WebCore\notifications\NotificationCenter.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\notifications\NotificationCenter.idl - -generated\JSBarInfo.cpp: ..\..\..\WebCore\page\BarInfo.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\BarInfo.idl - -generated\JSConsole.cpp: ..\..\..\WebCore\page\Console.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Console.idl - -generated\JSCoordinates.cpp: ..\..\..\WebCore\page\Coordinates.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Coordinates.idl - -generated\JSDOMSelection.cpp: ..\..\..\WebCore\page\DOMSelection.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\DOMSelection.idl - -generated\JSDOMWindow.cpp: ..\..\..\WebCore\page\DOMWindow.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\DOMWindow.idl - -generated\JSEventSource.cpp: ..\..\..\WebCore\page\EventSource.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\EventSource.idl - -generated\JSGeolocation.cpp: ..\..\..\WebCore\page\Geolocation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Geolocation.idl - -generated\JSGeoposition.cpp: ..\..\..\WebCore\page\Geoposition.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Geoposition.idl - -generated\JSHistory.cpp: ..\..\..\WebCore\page\History.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\History.idl - -generated\JSLocation.cpp: ..\..\..\WebCore\page\Location.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Location.idl - -generated\JSMemoryInfo.cpp: ..\..\..\WebCore\page\MemoryInfo.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\MemoryInfo.idl - -generated\JSNavigation.cpp: ..\..\..\WebCore\page\Navigation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Navigation.idl - -generated\JSNavigator.cpp: ..\..\..\WebCore\page\Navigator.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Navigator.idl - -generated\JSPerformance.cpp: ..\..\..\WebCore\page\Performance.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Performance.idl - -generated\JSPositionError.cpp: ..\..\..\WebCore\page\PositionError.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\PositionError.idl - -generated\JSScreen.cpp: ..\..\..\WebCore\page\Screen.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Screen.idl - -generated\JSTiming.cpp: ..\..\..\WebCore\page\Timing.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\Timing.idl - -generated\JSWebKitPoint.cpp: ..\..\..\WebCore\page\WebKitPoint.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\WebKitPoint.idl - -generated\JSWorkerNavigator.cpp: ..\..\..\WebCore\page\WorkerNavigator.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\page\WorkerNavigator.idl - -generated\JSDOMPlugin.cpp: ..\..\..\WebCore\plugins\DOMPlugin.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\plugins\DOMPlugin.idl - -generated\JSDOMMimeType.cpp: ..\..\..\WebCore\plugins\DOMMimeType.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\plugins\DOMMimeType.idl - -generated\JSDOMPluginArray.cpp: ..\..\..\WebCore\plugins\DOMPluginArray.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\plugins\DOMPluginArray.idl - -generated\JSDOMMimeTypeArray.cpp: ..\..\..\WebCore\plugins\DOMMimeTypeArray.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\plugins\DOMMimeTypeArray.idl - -generated\JSDatabase.cpp: ..\..\..\WebCore\storage\Database.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\Database.idl - -generated\JSDatabaseCallback.cpp: ..\..\..\WebCore\storage\DatabaseCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\DatabaseCallback.idl - -generated\JSDatabaseSync.cpp: ..\..\..\WebCore\storage\DatabaseSync.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\DatabaseSync.idl - -generated\JSIDBAny.cpp: ..\..\..\WebCore\storage\IDBAny.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBAny.idl - -generated\JSIDBDatabaseError.cpp: ..\..\..\WebCore\storage\IDBDatabaseError.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBDatabaseError.idl - -generated\JSIDBDatabaseException.cpp: ..\..\..\WebCore\storage\IDBDatabaseException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBDatabaseException.idl - -generated\JSIDBDatabaseRequest.cpp: ..\..\..\WebCore\storage\IDBDatabaseRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBDatabaseRequest.idl - -generated\JSIDBErrorEvent.cpp: ..\..\..\WebCore\storage\IDBErrorEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBErrorEvent.idl - -generated\JSIDBEvent.cpp: ..\..\..\WebCore\storage\IDBEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBEvent.idl - -generated\JSIDBIndexRequest.cpp: ..\..\..\WebCore\storage\IDBIndexRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBIndexRequest.idl - -generated\JSIDBKey.cpp: ..\..\..\WebCore\storage\IDBKey.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBKey.idl - -generated\JSIDBKeyRange.cpp: ..\..\..\WebCore\storage\IDBKeyRange.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBKeyRange.idl - -generated\JSIDBObjectStoreRequest.cpp: ..\..\..\WebCore\storage\IDBObjectStoreRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBObjectStoreRequest.idl - -generated\JSIDBRequest.cpp: ..\..\..\WebCore\storage\IDBRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBRequest.idl - -generated\JSIDBSuccessEvent.cpp: ..\..\..\WebCore\storage\IDBSuccessEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IDBSuccessEvent.idl - -generated\JSIndexedDatabaseRequest.cpp: ..\..\..\WebCore\storage\IndexedDatabaseRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\IndexedDatabaseRequest.idl - -generated\JSStorage.cpp: ..\..\..\WebCore\storage\Storage.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\Storage.idl - -generated\JSStorageEvent.cpp: ..\..\..\WebCore\storage\StorageEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\StorageEvent.idl - -generated\JSSQLError.cpp: ..\..\..\WebCore\storage\SQLError.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLError.idl - -generated\JSSQLException.cpp: ..\..\..\WebCore\storage\SQLException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLException.idl - -generated\JSSQLResultSet.cpp: ..\..\..\WebCore\storage\SQLResultSet.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLResultSet.idl - -generated\JSSQLResultSetRowList.cpp: ..\..\..\WebCore\storage\SQLResultSetRowList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLResultSetRowList.idl - -generated\JSSQLStatementCallback.cpp: ..\..\..\WebCore\storage\SQLStatementCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLStatementCallback.idl - -generated\JSSQLStatementErrorCallback.cpp: ..\..\..\WebCore\storage\SQLStatementErrorCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLStatementErrorCallback.idl - -generated\JSSQLTransaction.cpp: ..\..\..\WebCore\storage\SQLTransaction.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLTransaction.idl - -generated\JSSQLTransactionCallback.cpp: ..\..\..\WebCore\storage\SQLTransactionCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLTransactionCallback.idl - -generated\JSSQLTransactionErrorCallback.cpp: ..\..\..\WebCore\storage\SQLTransactionErrorCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLTransactionErrorCallback.idl - -generated\JSSQLTransactionSync.cpp: ..\..\..\WebCore\storage\SQLTransactionSync.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLTransactionSync.idl - -generated\JSSQLTransactionSyncCallback.cpp: ..\..\..\WebCore\storage\SQLTransactionSyncCallback.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\storage\SQLTransactionSyncCallback.idl - -generated\JSSVGZoomEvent.cpp: ..\..\..\WebCore\svg\SVGZoomEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGZoomEvent.idl - -generated\JSSVGAElement.cpp: ..\..\..\WebCore\svg\SVGAElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAElement.idl - -generated\JSSVGAltGlyphElement.cpp: ..\..\..\WebCore\svg\SVGAltGlyphElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAltGlyphElement.idl - -generated\JSSVGAngle.cpp: ..\..\..\WebCore\svg\SVGAngle.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAngle.idl - -generated\JSSVGAnimateColorElement.cpp: ..\..\..\WebCore\svg\SVGAnimateColorElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimateColorElement.idl - -generated\JSSVGAnimatedAngle.cpp: ..\..\..\WebCore\svg\SVGAnimatedAngle.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedAngle.idl - -generated\JSSVGAnimatedBoolean.cpp: ..\..\..\WebCore\svg\SVGAnimatedBoolean.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedBoolean.idl - -generated\JSSVGAnimatedEnumeration.cpp: ..\..\..\WebCore\svg\SVGAnimatedEnumeration.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedEnumeration.idl - -generated\JSSVGAnimatedInteger.cpp: ..\..\..\WebCore\svg\SVGAnimatedInteger.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedInteger.idl - -generated\JSSVGAnimatedLength.cpp: ..\..\..\WebCore\svg\SVGAnimatedLength.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedLength.idl - -generated\JSSVGAnimatedLengthList.cpp: ..\..\..\WebCore\svg\SVGAnimatedLengthList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedLengthList.idl - -generated\JSSVGAnimatedNumber.cpp: ..\..\..\WebCore\svg\SVGAnimatedNumber.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedNumber.idl - -generated\JSSVGAnimatedNumberList.cpp: ..\..\..\WebCore\svg\SVGAnimatedNumberList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedNumberList.idl - -generated\JSSVGAnimatedPreserveAspectRatio.cpp: ..\..\..\WebCore\svg\SVGAnimatedPreserveAspectRatio.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedPreserveAspectRatio.idl - -generated\JSSVGAnimatedRect.cpp: ..\..\..\WebCore\svg\SVGAnimatedRect.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedRect.idl - -generated\JSSVGAnimatedString.cpp: ..\..\..\WebCore\svg\SVGAnimatedString.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedString.idl - -generated\JSSVGAnimatedTransformList.cpp: ..\..\..\WebCore\svg\SVGAnimatedTransformList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimatedTransformList.idl - -generated\JSSVGAnimateElement.cpp: ..\..\..\WebCore\svg\SVGAnimateElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimateElement.idl - -generated\JSSVGAnimateTransformElement.cpp: ..\..\..\WebCore\svg\SVGAnimateTransformElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimateTransformElement.idl - -generated\JSSVGAnimationElement.cpp: ..\..\..\WebCore\svg\SVGAnimationElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGAnimationElement.idl - -generated\JSSVGCircleElement.cpp: ..\..\..\WebCore\svg\SVGCircleElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGCircleElement.idl - -generated\JSSVGClipPathElement.cpp: ..\..\..\WebCore\svg\SVGClipPathElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGClipPathElement.idl - -generated\JSSVGColor.cpp: ..\..\..\WebCore\svg\SVGColor.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGColor.idl - -generated\JSSVGComponentTransferFunctionElement.cpp: ..\..\..\WebCore\svg\SVGComponentTransferFunctionElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGComponentTransferFunctionElement.idl - -generated\JSSVGCursorElement.cpp: ..\..\..\WebCore\svg\SVGCursorElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGCursorElement.idl - -generated\JSSVGDefsElement.cpp: ..\..\..\WebCore\svg\SVGDefsElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGDefsElement.idl - -generated\JSSVGDescElement.cpp: ..\..\..\WebCore\svg\SVGDescElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGDescElement.idl - -generated\JSSVGDocument.cpp: ..\..\..\WebCore\svg\SVGDocument.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGDocument.idl - -generated\JSSVGElement.cpp: ..\..\..\WebCore\svg\SVGElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGElement.idl - -generated\JSSVGElementInstance.cpp: ..\..\..\WebCore\svg\SVGElementInstance.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGElementInstance.idl - -generated\JSSVGElementInstanceList.cpp: ..\..\..\WebCore\svg\SVGElementInstanceList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGElementInstanceList.idl - -generated\JSSVGEllipseElement.cpp: ..\..\..\WebCore\svg\SVGEllipseElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGEllipseElement.idl - -generated\JSSVGException.cpp: ..\..\..\WebCore\svg\SVGException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGException.idl - -generated\JSSVGFEBlendElement.cpp: ..\..\..\WebCore\svg\SVGFEBlendElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEBlendElement.idl - -generated\JSSVGFEColorMatrixElement.cpp: ..\..\..\WebCore\svg\SVGFEColorMatrixElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEColorMatrixElement.idl - -generated\JSSVGFEComponentTransferElement.cpp: ..\..\..\WebCore\svg\SVGFEComponentTransferElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEComponentTransferElement.idl - -generated\JSSVGFECompositeElement.cpp: ..\..\..\WebCore\svg\SVGFECompositeElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFECompositeElement.idl - -generated\JSSVGFEConvolveMatrixElement.cpp: ..\..\..\WebCore\svg\SVGFEConvolveMatrixElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEConvolveMatrixElement.idl - -generated\JSSVGFEDiffuseLightingElement.cpp: ..\..\..\WebCore\svg\SVGFEDiffuseLightingElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEDiffuseLightingElement.idl - -generated\JSSVGFEDisplacementMapElement.cpp: ..\..\..\WebCore\svg\SVGFEDisplacementMapElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEDisplacementMapElement.idl - -generated\JSSVGFEDistantLightElement.cpp: ..\..\..\WebCore\svg\SVGFEDistantLightElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEDistantLightElement.idl - -generated\JSSVGFEFloodElement.cpp: ..\..\..\WebCore\svg\SVGFEFloodElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEFloodElement.idl - -generated\JSSVGFEFuncAElement.cpp: ..\..\..\WebCore\svg\SVGFEFuncAElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEFuncAElement.idl - -generated\JSSVGFEFuncBElement.cpp: ..\..\..\WebCore\svg\SVGFEFuncBElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEFuncBElement.idl - -generated\JSSVGFEFuncGElement.cpp: ..\..\..\WebCore\svg\SVGFEFuncGElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEFuncGElement.idl - -generated\JSSVGFEFuncRElement.cpp: ..\..\..\WebCore\svg\SVGFEFuncRElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEFuncRElement.idl - -generated\JSSVGFEGaussianBlurElement.cpp: ..\..\..\WebCore\svg\SVGFEGaussianBlurElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEGaussianBlurElement.idl - -generated\JSSVGFEImageElement.cpp: ..\..\..\WebCore\svg\SVGFEImageElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEImageElement.idl - -generated\JSSVGFEMergeElement.cpp: ..\..\..\WebCore\svg\SVGFEMergeElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEMergeElement.idl - -generated\JSSVGFEMergeNodeElement.cpp: ..\..\..\WebCore\svg\SVGFEMergeNodeElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEMergeNodeElement.idl - -generated\JSSVGFEMorphologyElement.cpp: ..\..\..\WebCore\svg\SVGFEMorphologyElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEMorphologyElement.idl - -generated\JSSVGFEOffsetElement.cpp: ..\..\..\WebCore\svg\SVGFEOffsetElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEOffsetElement.idl - -generated\JSSVGFEPointLightElement.cpp: ..\..\..\WebCore\svg\SVGFEPointLightElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFEPointLightElement.idl - -generated\JSSVGFESpecularLightingElement.cpp: ..\..\..\WebCore\svg\SVGFESpecularLightingElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFESpecularLightingElement.idl - -generated\JSSVGFESpotLightElement.cpp: ..\..\..\WebCore\svg\SVGFESpotLightElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFESpotLightElement.idl - -generated\JSSVGFETileElement.cpp: ..\..\..\WebCore\svg\SVGFETileElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFETileElement.idl - -generated\JSSVGFETurbulenceElement.cpp: ..\..\..\WebCore\svg\SVGFETurbulenceElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFETurbulenceElement.idl - -generated\JSSVGFilterElement.cpp: ..\..\..\WebCore\svg\SVGFilterElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFilterElement.idl - -generated\JSSVGFontElement.cpp: ..\..\..\WebCore\svg\SVGFontElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontElement.idl - -generated\JSSVGFontFaceElement.cpp: ..\..\..\WebCore\svg\SVGFontFaceElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontFaceElement.idl - -generated\JSSVGFontFaceFormatElement.cpp: ..\..\..\WebCore\svg\SVGFontFaceFormatElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontFaceFormatElement.idl - -generated\JSSVGFontFaceNameElement.cpp: ..\..\..\WebCore\svg\SVGFontFaceNameElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontFaceNameElement.idl - -generated\JSSVGFontFaceSrcElement.cpp: ..\..\..\WebCore\svg\SVGFontFaceSrcElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontFaceSrcElement.idl - -generated\JSSVGFontFaceUriElement.cpp: ..\..\..\WebCore\svg\SVGFontFaceUriElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGFontFaceUriElement.idl - -generated\JSSVGForeignObjectElement.cpp: ..\..\..\WebCore\svg\SVGForeignObjectElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGForeignObjectElement.idl - -generated\JSSVGGElement.cpp: ..\..\..\WebCore\svg\SVGGElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGGElement.idl - -generated\JSSVGGlyphElement.cpp: ..\..\..\WebCore\svg\SVGGlyphElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGGlyphElement.idl - -generated\JSSVGGradientElement.cpp: ..\..\..\WebCore\svg\SVGGradientElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGGradientElement.idl - -generated\JSSVGHKernElement.cpp: ..\..\..\WebCore\svg\SVGHKernElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGHKernElement.idl - -generated\JSSVGImageElement.cpp: ..\..\..\WebCore\svg\SVGImageElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGImageElement.idl - -generated\JSSVGLength.cpp: ..\..\..\WebCore\svg\SVGLength.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGLength.idl - -generated\JSSVGLengthList.cpp: ..\..\..\WebCore\svg\SVGLengthList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGLengthList.idl - -generated\JSSVGLinearGradientElement.cpp: ..\..\..\WebCore\svg\SVGLinearGradientElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGLinearGradientElement.idl - -generated\JSSVGLineElement.cpp: ..\..\..\WebCore\svg\SVGLineElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGLineElement.idl - -generated\JSSVGMarkerElement.cpp: ..\..\..\WebCore\svg\SVGMarkerElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGMarkerElement.idl - -generated\JSSVGMaskElement.cpp: ..\..\..\WebCore\svg\SVGMaskElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGMaskElement.idl - -generated\JSSVGMatrix.cpp: ..\..\..\WebCore\svg\SVGMatrix.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGMatrix.idl - -generated\JSSVGMetadataElement.cpp: ..\..\..\WebCore\svg\SVGMetadataElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGMetadataElement.idl - -generated\JSSVGMissingGlyphElement.cpp: ..\..\..\WebCore\svg\SVGMissingGlyphElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGMissingGlyphElement.idl - -generated\JSSVGNumber.cpp: ..\..\..\WebCore\svg\SVGNumber.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGNumber.idl - -generated\JSSVGNumberList.cpp: ..\..\..\WebCore\svg\SVGNumberList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGNumberList.idl - -generated\JSSVGPaint.cpp: ..\..\..\WebCore\svg\SVGPaint.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPaint.idl - -generated\JSSVGPathElement.cpp: ..\..\..\WebCore\svg\SVGPathElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathElement.idl - -generated\JSSVGPathSegArcAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegArcAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegArcAbs.idl - -generated\JSSVGPathSegArcRel.cpp: ..\..\..\WebCore\svg\SVGPathSegArcRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegArcRel.idl - -generated\JSSVGPathSegClosePath.cpp: ..\..\..\WebCore\svg\SVGPathSegClosePath.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegClosePath.idl - -generated\JSSVGPathSegCurvetoCubicAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoCubicAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoCubicAbs.idl - -generated\JSSVGPathSegCurvetoCubicRel.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoCubicRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoCubicRel.idl - -generated\JSSVGPathSegCurvetoCubicSmoothAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoCubicSmoothAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoCubicSmoothAbs.idl - -generated\JSSVGPathSegCurvetoCubicSmoothRel.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoCubicSmoothRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoCubicSmoothRel.idl - -generated\JSSVGPathSegCurvetoQuadraticAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoQuadraticAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoQuadraticAbs.idl - -generated\JSSVGPathSegCurvetoQuadraticRel.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoQuadraticRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoQuadraticRel.idl - -generated\JSSVGPathSegCurvetoQuadraticSmoothAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoQuadraticSmoothAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoQuadraticSmoothAbs.idl - -generated\JSSVGPathSegCurvetoQuadraticSmoothRel.cpp: ..\..\..\WebCore\svg\SVGPathSegCurvetoQuadraticSmoothRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegCurvetoQuadraticSmoothRel.idl - -generated\JSSVGPathSeg.cpp: ..\..\..\WebCore\svg\SVGPathSeg.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSeg.idl - -generated\JSSVGPathSegLinetoAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoAbs.idl - -generated\JSSVGPathSegLinetoHorizontalAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoHorizontalAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoHorizontalAbs.idl - -generated\JSSVGPathSegLinetoHorizontalRel.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoHorizontalRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoHorizontalRel.idl - -generated\JSSVGPathSegLinetoRel.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoRel.idl - -generated\JSSVGPathSegLinetoVerticalAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoVerticalAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoVerticalAbs.idl - -generated\JSSVGPathSegLinetoVerticalRel.cpp: ..\..\..\WebCore\svg\SVGPathSegLinetoVerticalRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegLinetoVerticalRel.idl - -generated\JSSVGPathSegList.cpp: ..\..\..\WebCore\svg\SVGPathSegList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegList.idl - -generated\JSSVGPathSegMovetoAbs.cpp: ..\..\..\WebCore\svg\SVGPathSegMovetoAbs.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegMovetoAbs.idl - -generated\JSSVGPathSegMovetoRel.cpp: ..\..\..\WebCore\svg\SVGPathSegMovetoRel.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPathSegMovetoRel.idl - -generated\JSSVGPatternElement.cpp: ..\..\..\WebCore\svg\SVGPatternElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPatternElement.idl - -generated\JSSVGPoint.cpp: ..\..\..\WebCore\svg\SVGPoint.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPoint.idl - -generated\JSSVGPointList.cpp: ..\..\..\WebCore\svg\SVGPointList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPointList.idl - -generated\JSSVGPolygonElement.cpp: ..\..\..\WebCore\svg\SVGPolygonElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPolygonElement.idl - -generated\JSSVGPolylineElement.cpp: ..\..\..\WebCore\svg\SVGPolylineElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPolylineElement.idl - -generated\JSSVGPreserveAspectRatio.cpp: ..\..\..\WebCore\svg\SVGPreserveAspectRatio.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGPreserveAspectRatio.idl - -generated\JSSVGRadialGradientElement.cpp: ..\..\..\WebCore\svg\SVGRadialGradientElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGRadialGradientElement.idl - -generated\JSSVGRectElement.cpp: ..\..\..\WebCore\svg\SVGRectElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGRectElement.idl - -generated\JSSVGRect.cpp: ..\..\..\WebCore\svg\SVGRect.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGRect.idl - -generated\JSSVGRenderingIntent.cpp: ..\..\..\WebCore\svg\SVGRenderingIntent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGRenderingIntent.idl - -generated\JSSVGScriptElement.cpp: ..\..\..\WebCore\svg\SVGScriptElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGScriptElement.idl - -generated\JSSVGSetElement.cpp: ..\..\..\WebCore\svg\SVGSetElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGSetElement.idl - -generated\JSSVGStopElement.cpp: ..\..\..\WebCore\svg\SVGStopElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGStopElement.idl - -generated\JSSVGStringList.cpp: ..\..\..\WebCore\svg\SVGStringList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGStringList.idl - -generated\JSSVGStyleElement.cpp: ..\..\..\WebCore\svg\SVGStyleElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGStyleElement.idl - -generated\JSSVGSVGElement.cpp: ..\..\..\WebCore\svg\SVGSVGElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGSVGElement.idl - -generated\JSSVGSwitchElement.cpp: ..\..\..\WebCore\svg\SVGSwitchElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGSwitchElement.idl - -generated\JSSVGSymbolElement.cpp: ..\..\..\WebCore\svg\SVGSymbolElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGSymbolElement.idl - -generated\JSSVGTextContentElement.cpp: ..\..\..\WebCore\svg\SVGTextContentElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTextContentElement.idl - -generated\JSSVGTextElement.cpp: ..\..\..\WebCore\svg\SVGTextElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTextElement.idl - -generated\JSSVGTextPathElement.cpp: ..\..\..\WebCore\svg\SVGTextPathElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTextPathElement.idl - -generated\JSSVGTextPositioningElement.cpp: ..\..\..\WebCore\svg\SVGTextPositioningElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTextPositioningElement.idl - -generated\JSSVGTitleElement.cpp: ..\..\..\WebCore\svg\SVGTitleElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTitleElement.idl - -generated\JSSVGTransform.cpp: ..\..\..\WebCore\svg\SVGTransform.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTransform.idl - -generated\JSSVGTransformList.cpp: ..\..\..\WebCore\svg\SVGTransformList.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTransformList.idl - -generated\JSSVGTRefElement.cpp: ..\..\..\WebCore\svg\SVGTRefElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTRefElement.idl - -generated\JSSVGTSpanElement.cpp: ..\..\..\WebCore\svg\SVGTSpanElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGTSpanElement.idl - -generated\JSSVGUnitTypes.cpp: ..\..\..\WebCore\svg\SVGUnitTypes.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGUnitTypes.idl - -generated\JSSVGUseElement.cpp: ..\..\..\WebCore\svg\SVGUseElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGUseElement.idl - -generated\JSSVGViewElement.cpp: ..\..\..\WebCore\svg\SVGViewElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGViewElement.idl - -generated\JSSVGVKernElement.cpp: ..\..\..\WebCore\svg\SVGVKernElement.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\svg\SVGVKernElement.idl - -generated\JSWebSocket.cpp: ..\..\..\WebCore\websockets\WebSocket.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\websockets\WebSocket.idl - -generated\JSAbstractWorker.cpp: ..\..\..\WebCore\workers\AbstractWorker.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\AbstractWorker.idl - -generated\JSDedicatedWorkerContext.cpp: ..\..\..\WebCore\workers\DedicatedWorkerContext.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\DedicatedWorkerContext.idl - -generated\JSSharedWorker.cpp: ..\..\..\WebCore\workers\SharedWorker.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\SharedWorker.idl - -generated\JSSharedWorkerContext.cpp: ..\..\..\WebCore\workers\SharedWorkerContext.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\SharedWorkerContext.idl - -generated\JSWorker.cpp: ..\..\..\WebCore\workers\Worker.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\Worker.idl - -generated\JSWorkerContext.cpp: ..\..\..\WebCore\workers\WorkerContext.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\WorkerContext.idl - -generated\JSWorkerLocation.cpp: ..\..\..\WebCore\workers\WorkerLocation.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\workers\WorkerLocation.idl - -generated\JSDOMParser.cpp: ..\..\..\WebCore\xml\DOMParser.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\DOMParser.idl - -generated\JSXMLHttpRequest.cpp: ..\..\..\WebCore\xml\XMLHttpRequest.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XMLHttpRequest.idl - -generated\JSXMLHttpRequestException.cpp: ..\..\..\WebCore\xml\XMLHttpRequestException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XMLHttpRequestException.idl - -generated\JSXMLHttpRequestProgressEvent.cpp: ..\..\..\WebCore\xml\XMLHttpRequestProgressEvent.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XMLHttpRequestProgressEvent.idl - -generated\JSXMLHttpRequestUpload.cpp: ..\..\..\WebCore\xml\XMLHttpRequestUpload.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XMLHttpRequestUpload.idl - -generated\JSXMLSerializer.cpp: ..\..\..\WebCore\xml\XMLSerializer.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XMLSerializer.idl - -generated\JSXPathNSResolver.cpp: ..\..\..\WebCore\xml\XPathNSResolver.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XPathNSResolver.idl - -generated\JSXPathException.cpp: ..\..\..\WebCore\xml\XPathException.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XPathException.idl - -generated\JSXPathExpression.cpp: ..\..\..\WebCore\xml\XPathExpression.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XPathExpression.idl - -generated\JSXPathResult.cpp: ..\..\..\WebCore\xml\XPathResult.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XPathResult.idl - -generated\JSXPathEvaluator.cpp: ..\..\..\WebCore\xml\XPathEvaluator.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XPathEvaluator.idl - -generated\JSXSLTProcessor.cpp: ..\..\..\WebCore\xml\XSLTProcessor.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\bindings\scripts\CodeGeneratorJS.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator JS --include Z:/qtwebkit-symbian-qtp/WebCore/dom --include Z:/qtwebkit-symbian-qtp/WebCore/html --include Z:/qtwebkit-symbian-qtp/WebCore/xml --include Z:/qtwebkit-symbian-qtp/WebCore/svg --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\xml\XSLTProcessor.idl - -compiler_inspectorIDL_make_all: generated\RemoteInspectorFrontend.cpp -compiler_inspectorIDL_clean: - -$(DEL_FILE) generated\RemoteInspectorFrontend.cpp -generated\RemoteInspectorFrontend.cpp: ..\..\..\WebCore\inspector\Inspector.idl \ - ..\..\..\WebCore\bindings\scripts\CodeGenerator.pm \ - ..\..\..\WebCore\inspector\CodeGeneratorInspector.pm \ - ..\..\..\WebCore\bindings\scripts\IDLParser.pm \ - ..\..\..\WebCore\bindings\scripts\IDLStructure.pm \ - ..\..\..\WebCore\bindings\scripts\InFilesParser.pm \ - ..\..\..\WebCore\bindings\scripts\generate-bindings.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts -IZ:/qtwebkit-symbian-qtp/WebCore/inspector Z:/qtwebkit-symbian-qtp/WebCore/bindings/scripts/generate-bindings.pl --defines "LANGUAGE_JAVASCRIPT=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_EVENTSOURCE=1 ENABLE_DATABASE=1 ENABLE_DATALIST=1 ENABLE_DOM_STORAGE=1 ENABLE_WORKERS=1 ENABLE_SHARED_WORKERS=1 ENABLE_VIDEO=1 ENABLE_XPATH=1 ENABLE_XSLT=1 ENABLE_FILTERS=1 ENABLE_SVG=1 ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_WEB_SOCKETS=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NOTIFICATIONS=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_GEOLOCATION=1" --generator Inspector --outputDir generated --preprocessor "\epoc32/tools\moc.exe -E" WebCore\inspector\Inspector.idl - -compiler_tokenizer_make_all: generated\tokenizer.cpp -compiler_tokenizer_clean: - -$(DEL_FILE) generated\tokenizer.cpp -generated\tokenizer.cpp: ..\..\..\WebCore\css\tokenizer.flex \ - ..\..\..\WebCore\css\maketokenizer - flex -t < WebCore\css\tokenizer.flex | perl Z:/qtwebkit-symbian-qtp/WebCore/css/maketokenizer > z:\qtwebkit-symbian-qtp\WebCore\generated\tokenizer.cpp - -compiler_cssbison_make_all: generated\CSSGrammar.cpp -compiler_cssbison_clean: - -$(DEL_FILE) generated\CSSGrammar.cpp -generated\CSSGrammar.cpp: ..\..\..\WebCore\config.h \ - ..\..\..\WebCore\css\CSSMediaRule.h \ - ..\..\..\WebCore\css\CSSRule.h \ - ..\..\..\WebCore\css\CSSStyleSheet.h \ - ..\..\..\WebCore\css\CSSRuleList.h \ - ..\..\..\WebCore\css\StyleSheet.h \ - ..\..\..\WebCore\css\StyleList.h \ - ..\..\..\WebCore\css\StyleBase.h \ - ..\..\..\WebCore\css\MediaList.h \ - ..\..\..\WebCore\css\CSSParser.h \ - ..\..\..\WebCore\css\CSSParserValues.h \ - ..\..\..\WebCore\css\CSSSelectorList.h \ - ..\..\..\WebCore\css\CSSSelector.h \ - ..\..\..\WebCore\css\MediaQuery.h \ - ..\..\..\WebCore\css\CSSPrimitiveValue.h \ - ..\..\..\WebCore\css\CSSValue.h \ - ..\..\..\WebCore\css\WebKitCSSKeyframeRule.h \ - ..\..\..\WebCore\css\WebKitCSSKeyframesRule.h \ - ..\..\..\WebCore\css\CSSGrammar.y \ - ..\..\..\WebCore\css\CSSGrammar.y \ - ..\..\..\WebCore\css\makegrammar.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/css/makegrammar.pl WebCore\css\CSSGrammar.y generated/CSSGrammar - -compiler_htmlnames_make_all: generated\HTMLNames.cpp -compiler_htmlnames_clean: - -$(DEL_FILE) generated\HTMLNames.cpp -generated\HTMLNames.cpp: ..\..\..\WebCore\html\HTMLTagNames.in \ - ..\..\..\WebCore\html\HTMLAttributeNames.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --tags Z:/qtwebkit-symbian-qtp/WebCore/html/HTMLTagNames.in --attrs Z:/qtwebkit-symbian-qtp/WebCore/html/HTMLAttributeNames.in --extraDefines "UNICODE QT_KEYPAD_NAVIGATION QT_SOFTKEYS_ENABLED QT_USE_MATH_H_FLOATS ENABLE_JAVASCRIPT_DEBUGGER=1 ENABLE_DATABASE=1 ENABLE_EVENTSOURCE=1 ENABLE_OFFLINE_WEB_APPLICATIONS=1 ENABLE_DOM_STORAGE=1 ENABLE_ICONDATABASE=1 ENABLE_CHANNEL_MESSAGING=1 ENABLE_ORIENTATION_EVENTS=0 ENABLE_DIRECTORY_UPLOAD=0 ENABLE_SQLITE=1 ENABLE_DASHBOARD_SUPPORT=0 ENABLE_FILTERS=1 ENABLE_XPATH=1 ENABLE_WCSS=0 ENABLE_WML=0 ENABLE_SHARED_WORKERS=1 ENABLE_WORKERS=1 ENABLE_XHTMLMP=0 ENABLE_DATAGRID=0 ENABLE_RUBY=1 ENABLE_SANDBOX=1 ENABLE_METER_TAG=1 ENABLE_PROGRESS_TAG=1 ENABLE_BLOB_SLICE=0 ENABLE_NOTIFICATIONS=1 ENABLE_IMAGE_RESIZER=0 ENABLE_INPUT_SPEECH=0 ENABLE_HAPTICS=1 ENABLE_3D_RENDERING=1 ENABLE_SVG=1 ENABLE_SVG_FONTS=1 ENABLE_SVG_FOREIGN_OBJECT=1 ENABLE_SVG_ANIMATION=1 ENABLE_SVG_AS_IMAGE=1 ENABLE_SVG_USE=1 ENABLE_DATALIST=1 ENABLE_TILED_BACKING_STORE=1 ENABLE_NETSCAPE_PLUGIN_API=1 ENABLE_WEB_SOCKETS=1 ENABLE_WEB_TIMING=0 ENABLE_XSLT=1 ENABLE_GEOLOCATION=1 ENABLE_QT_BEARER=1 ENABLE_TOUCH_EVENTS=1 ENABLE_TRANSFORMACTION_EVENTS=1 ENABLE_VIDEO=1" --preprocessor "\epoc32/tools\moc.exe -E" --factory --wrapperFactory --outputDir generated - -compiler_xmlnsnames_make_all: generated\XMLNSNames.cpp -compiler_xmlnsnames_clean: - -$(DEL_FILE) generated\XMLNSNames.cpp -generated\XMLNSNames.cpp: ..\..\..\WebCore\xml\xmlnsattrs.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --attrs Z:/qtwebkit-symbian-qtp/WebCore/xml/xmlnsattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_xmlnames_make_all: generated\XMLNames.cpp -compiler_xmlnames_clean: - -$(DEL_FILE) generated\XMLNames.cpp -generated\XMLNames.cpp: ..\..\..\WebCore\xml\xmlattrs.in \ - ..\..\..\WebCore\dom\make_names.pl - perl -IZ:/qtwebkit-symbian-qtp/WebCore/bindings/scripts Z:/qtwebkit-symbian-qtp/WebCore/dom/make_names.pl --attrs Z:/qtwebkit-symbian-qtp/WebCore/xml/xmlattrs.in --preprocessor "\epoc32/tools\moc.exe -E" --outputDir generated - -compiler_entities_make_all: generated\HTMLEntityNames.cpp -compiler_entities_clean: - -$(DEL_FILE) generated\HTMLEntityNames.cpp -generated\HTMLEntityNames.cpp: ..\..\..\WebCore\html\HTMLEntityNames.gperf \ - ..\..\..\WebCore\make-hash-tools.pl \ - ..\..\..\WebCore\make-hash-tools.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/make-hash-tools.pl generated Z:/qtwebkit-symbian-qtp/WebCore/html/HTMLEntityNames.gperf - -compiler_doctypestrings_make_all: generated\DocTypeStrings.cpp -compiler_doctypestrings_clean: - -$(DEL_FILE) generated\DocTypeStrings.cpp -generated\DocTypeStrings.cpp: ..\..\..\WebCore\html\DocTypeStrings.gperf \ - ..\..\..\WebCore\make-hash-tools.pl \ - ..\..\..\WebCore\make-hash-tools.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/make-hash-tools.pl generated Z:/qtwebkit-symbian-qtp/WebCore/html/DocTypeStrings.gperf - -compiler_colordata_make_all: generated\ColorData.cpp -compiler_colordata_clean: - -$(DEL_FILE) generated\ColorData.cpp -generated\ColorData.cpp: ..\..\..\WebCore\platform\ColorData.gperf \ - ..\..\..\WebCore\make-hash-tools.pl \ - ..\..\..\WebCore\make-hash-tools.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/make-hash-tools.pl generated Z:/qtwebkit-symbian-qtp/WebCore/platform/ColorData.gperf - -compiler_stylesheets_make_all: generated\UserAgentStyleSheetsData.cpp -compiler_stylesheets_clean: - -$(DEL_FILE) generated\UserAgentStyleSheetsData.cpp generated/UserAgentStyleSheets.h -generated\UserAgentStyleSheetsData.cpp: ..\..\..\WebCore\css\make-css-file-arrays.pl \ - ..\..\..\WebCore\css\html.css \ - ..\..\..\WebCore\css\quirks.css \ - ..\..\..\WebCore\css\mathml.css \ - ..\..\..\WebCore\css\svg.css \ - ..\..\..\WebCore\css\view-source.css \ - ..\..\..\WebCore\css\wml.css \ - ..\..\..\WebCore\css\mediaControls.css \ - ..\..\..\WebCore\css\mediaControlsQt.css \ - ..\..\..\WebCore\css\themeQtNoListboxes.css \ - ..\..\..\WebCore\css\themeQtMaemo5.css \ - ..\..\..\WebCore\css\make-css-file-arrays.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/css/make-css-file-arrays.pl generated/UserAgentStyleSheets.h z:\qtwebkit-symbian-qtp\WebCore\generated\UserAgentStyleSheetsData.cpp Z:/qtwebkit-symbian-qtp/WebCore/css/html.css Z:/qtwebkit-symbian-qtp/WebCore/css/quirks.css Z:/qtwebkit-symbian-qtp/WebCore/css/mathml.css Z:/qtwebkit-symbian-qtp/WebCore/css/svg.css Z:/qtwebkit-symbian-qtp/WebCore/css/view-source.css Z:/qtwebkit-symbian-qtp/WebCore/css/wml.css Z:/qtwebkit-symbian-qtp/WebCore/css/mediaControls.css Z:/qtwebkit-symbian-qtp/WebCore/css/mediaControlsQt.css Z:/qtwebkit-symbian-qtp/WebCore/css/themeQtNoListboxes.css Z:/qtwebkit-symbian-qtp/WebCore/css/themeQtMaemo5.css - -compiler_xpathbison_make_all: generated\XPathGrammar.cpp -compiler_xpathbison_clean: - -$(DEL_FILE) generated\XPathGrammar.cpp -generated\XPathGrammar.cpp: ..\..\..\WebCore\config.h \ - ..\..\..\WebCore\xml\XPathFunctions.h \ - ..\..\..\WebCore\xml\XPathExpressionNode.h \ - ..\..\..\WebCore\xml\XPathValue.h \ - ..\..\..\WebCore\xml\XPathNodeSet.h \ - ..\..\..\WebCore\xml\XPathNSResolver.h \ - ..\..\..\WebCore\xml\XPathParser.h \ - ..\..\..\WebCore\xml\XPathStep.h \ - ..\..\..\WebCore\xml\XPathPredicate.h \ - ..\..\..\WebCore\xml\XPathPath.h \ - ..\..\..\WebCore\xml\XPathVariableReference.h \ - ..\..\..\WebCore\xml\XPathGrammar.y \ - ..\..\..\WebCore\xml\XPathGrammar.y - bison -d -p xpathyy WebCore\xml\XPathGrammar.y -o generated/XPathGrammar.tab.c && $(MOVE) generated\XPathGrammar.tab.c generated\XPathGrammar.cpp && $(MOVE) generated\XPathGrammar.tab.h generated\XPathGrammar.h - -compiler_webkitversion_make_all: generated\WebKitVersion.h -compiler_webkitversion_clean: - -$(DEL_FILE) generated/WebKitVersion.h -generated\WebKitVersion.h: ..\..\..\WebKit\scripts\generate-webkitversion.pl \ - ..\..\..\WebKit\scripts\generate-webkitversion.pl - perl Z:/qtwebkit-symbian-qtp/WebCore/../WebKit/scripts/generate-webkitversion.pl --config Z:/qtwebkit-symbian-qtp/WebCore/../WebKit/mac/Configurations/Version.xcconfig --outputDir generated/ - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_mathmlnames_clean compiler_svgnames_clean compiler_xlinknames_clean compiler_cssprops_clean compiler_cssvalues_clean compiler_idl_clean compiler_inspectorIDL_clean compiler_tokenizer_clean compiler_cssbison_clean compiler_htmlnames_clean compiler_xmlnsnames_clean compiler_xmlnames_clean compiler_entities_clean compiler_doctypestrings_clean compiler_colordata_clean compiler_stylesheets_clean compiler_xpathbison_clean compiler_webkitversion_clean - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\Makefile.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\Makefile.DerivedSources" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\DerivedSources_0xEee3c016.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\DerivedSources_0xEee3c016.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\bld.inf.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebCore\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebCore/bld.inf.DerivedSources --- a/WebKitBuild/Release/WebCore/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:45 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: ..\..\..\WebCore\DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_FAFCD6C7 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xEee3c016.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebKit/qt/Api/DerivedSources_0xE7e24b3c.mmp --- a/WebKitBuild/Release/WebKit/qt/Api/DerivedSources_0xE7e24b3c.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,79 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:46 -// This file is generated by qmake and should not be modified by the -// user. -// Name : z:\qtwebkit-symbian-qtp\WebKit\qt\Api\DerivedSources.mmp -// ============================================================================== - -TARGET dummy.dll -TARGETTYPE DLL - -UID 0x1000008d 0xE7e24b3c -SECUREID 0xE7e24b3c - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x020000 0x800000 - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - - -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -#ifdef WINSCW -DEFFILE ./bwins/dummy.def -#elif defined EABI -DEFFILE ./eabi/dummy.def -#endif - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebKit/qt/Api/Makefile.DerivedSources --- a/WebKitBuild/Release/WebKit/qt/Api/Makefile.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,181 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Thu 12. Aug 12:39:46 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : Z:/qtwebkit-symbian-qtp/WebKitBuild/Release/WebKit/qt/Api/Makefile.DerivedSources -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DerivedSources -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"Z:/epoc32/include/mw/QtCore" -I"Z:/epoc32/include/mw/QtGui" -I"Z:/epoc32/include/mw" -I"Z:/sf/mw/qt/mkspecs/common/symbian" -I"Z:/epoc32/include" -I"Z:/epoc32/include/stdapis" -I"Z:/epoc32/include/stdapis/sys" -I"Z:/epoc32/include/platform/mw" -I"Z:/epoc32/include/platform" -I"Z:/epoc32/include/platform/loc" -I"Z:/epoc32/include/platform/mw/loc" -I"Z:/epoc32/include/platform/loc/sc" -I"Z:/epoc32/include/platform/mw/loc/sc" -I"Z:/epoc32/include/stdapis/stlportv5" -I"Z:/qtwebkit-symbian-qtp/WebKit/qt/Api" -first: default -default: debug-winscw -all: -../../../include/QtWebKit/qwebframe.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebframe.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebframe.h" > ../../../include/QtWebKit/qwebframe.h - -../../../include/QtWebKit/QWebHitTestResult: ../../../include/QtWebKit/qwebframe.h - echo #include "qwebframe.h" > ../../../include/QtWebKit/QWebHitTestResult - -../../../include/QtWebKit/QWebFrame: ../../../include/QtWebKit/qwebframe.h - echo #include "qwebframe.h" > ../../../include/QtWebKit/QWebFrame - -../../../include/QtWebKit/qgraphicswebview.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qgraphicswebview.h" > ../../../include/QtWebKit/qgraphicswebview.h - -../../../include/QtWebKit/QGraphicsWebView: ../../../include/QtWebKit/qgraphicswebview.h - echo #include "qgraphicswebview.h" > ../../../include/QtWebKit/QGraphicsWebView - -../../../include/QtWebKit/qwebkitglobal.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitglobal.h" > ../../../include/QtWebKit/qwebkitglobal.h - -../../../include/QtWebKit/qwebkitplatformplugin.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitplatformplugin.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitplatformplugin.h" > ../../../include/QtWebKit/qwebkitplatformplugin.h - -../../../include/QtWebKit/qwebpage.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpage.h" > ../../../include/QtWebKit/qwebpage.h - -../../../include/QtWebKit/QWebPage: ../../../include/QtWebKit/qwebpage.h - echo #include "qwebpage.h" > ../../../include/QtWebKit/QWebPage - -../../../include/QtWebKit/qwebview.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebview.h" > ../../../include/QtWebKit/qwebview.h - -../../../include/QtWebKit/QWebView: ../../../include/QtWebKit/qwebview.h - echo #include "qwebview.h" > ../../../include/QtWebKit/QWebView - -../../../include/QtWebKit/qwebsettings.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsettings.h" > ../../../include/QtWebKit/qwebsettings.h - -../../../include/QtWebKit/QWebSettings: ../../../include/QtWebKit/qwebsettings.h - echo #include "qwebsettings.h" > ../../../include/QtWebKit/QWebSettings - -../../../include/QtWebKit/qwebhistoryinterface.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistoryinterface.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistoryinterface.h" > ../../../include/QtWebKit/qwebhistoryinterface.h - -../../../include/QtWebKit/QWebHistoryInterface: ../../../include/QtWebKit/qwebhistoryinterface.h - echo #include "qwebhistoryinterface.h" > ../../../include/QtWebKit/QWebHistoryInterface - -../../../include/QtWebKit/qwebdatabase.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebdatabase.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebdatabase.h" > ../../../include/QtWebKit/qwebdatabase.h - -../../../include/QtWebKit/QWebDatabase: ../../../include/QtWebKit/qwebdatabase.h - echo #include "qwebdatabase.h" > ../../../include/QtWebKit/QWebDatabase - -../../../include/QtWebKit/qwebsecurityorigin.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsecurityorigin.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebsecurityorigin.h" > ../../../include/QtWebKit/qwebsecurityorigin.h - -../../../include/QtWebKit/QWebSecurityOrigin: ../../../include/QtWebKit/qwebsecurityorigin.h - echo #include "qwebsecurityorigin.h" > ../../../include/QtWebKit/QWebSecurityOrigin - -../../../include/QtWebKit/qwebelement.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebelement.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebelement.h" > ../../../include/QtWebKit/qwebelement.h - -../../../include/QtWebKit/QWebElement: ../../../include/QtWebKit/qwebelement.h - echo #include "qwebelement.h" > ../../../include/QtWebKit/QWebElement - -../../../include/QtWebKit/QWebElementCollection: ../../../include/QtWebKit/qwebelement.h - echo #include "qwebelement.h" > ../../../include/QtWebKit/QWebElementCollection - -../../../include/QtWebKit/qwebpluginfactory.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpluginfactory.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebpluginfactory.h" > ../../../include/QtWebKit/qwebpluginfactory.h - -../../../include/QtWebKit/QWebPluginFactory: ../../../include/QtWebKit/qwebpluginfactory.h - echo #include "qwebpluginfactory.h" > ../../../include/QtWebKit/QWebPluginFactory - -../../../include/QtWebKit/qwebhistory.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistory.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebhistory.h" > ../../../include/QtWebKit/qwebhistory.h - -../../../include/QtWebKit/QWebHistoryItem: ../../../include/QtWebKit/qwebhistory.h - echo #include "qwebhistory.h" > ../../../include/QtWebKit/QWebHistoryItem - -../../../include/QtWebKit/QWebHistory: ../../../include/QtWebKit/qwebhistory.h - echo #include "qwebhistory.h" > ../../../include/QtWebKit/QWebHistory - -../../../include/QtWebKit/qwebinspector.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebinspector.h" > ../../../include/QtWebKit/qwebinspector.h - -../../../include/QtWebKit/QWebInspector: ../../../include/QtWebKit/qwebinspector.h - echo #include "qwebinspector.h" > ../../../include/QtWebKit/QWebInspector - -../../../include/QtWebKit/qwebkitversion.h: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitversion.h - echo #include "Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/qwebkitversion.h" > ../../../include/QtWebKit/qwebkitversion.h - -../../../include/QtWebKit/QtWebKit: Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/DerivedSources.pro ../../../include/QtWebKit/qwebframe.h ../../../include/QtWebKit/qgraphicswebview.h ../../../include/QtWebKit/qwebkitglobal.h ../../../include/QtWebKit/qwebkitplatformplugin.h ../../../include/QtWebKit/qwebpage.h ../../../include/QtWebKit/qwebview.h ../../../include/QtWebKit/qwebsettings.h ../../../include/QtWebKit/qwebhistoryinterface.h ../../../include/QtWebKit/qwebdatabase.h ../../../include/QtWebKit/qwebsecurityorigin.h ../../../include/QtWebKit/qwebelement.h ../../../include/QtWebKit/qwebpluginfactory.h ../../../include/QtWebKit/qwebhistory.h ../../../include/QtWebKit/qwebinspector.h ../../../include/QtWebKit/qwebkitversion.h - echo #ifndef QT_QTWEBKIT_MODULE_H > ../../../include/QtWebKit/QtWebKit && echo #define QT_QTWEBKIT_MODULE_H >> ../../../include/QtWebKit/QtWebKit && echo #include ^ >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebframe.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qgraphicswebview.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitglobal.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitplatformplugin.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebpage.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebview.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebsettings.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebhistoryinterface.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebdatabase.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebsecurityorigin.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebelement.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebpluginfactory.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebhistory.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebinspector.h" >> ../../../include/QtWebKit/QtWebKit && echo #include "qwebkitversion.h" >> ../../../include/QtWebKit/QtWebKit && echo #endif // QT_QTWEBKIT_MODULE_H >> ../../../include/QtWebKit/QtWebKit - -../../../include/QtWebKit/classheaders.pri: ../../../include/QtWebKit/QWebHitTestResult ../../../include/QtWebKit/QWebFrame ../../../include/QtWebKit/QGraphicsWebView ../../../include/QtWebKit/QWebPage ../../../include/QtWebKit/QWebView ../../../include/QtWebKit/QWebSettings ../../../include/QtWebKit/QWebHistoryInterface ../../../include/QtWebKit/QWebDatabase ../../../include/QtWebKit/QWebSecurityOrigin ../../../include/QtWebKit/QWebElement ../../../include/QtWebKit/QWebElementCollection ../../../include/QtWebKit/QWebPluginFactory ../../../include/QtWebKit/QWebHistoryItem ../../../include/QtWebKit/QWebHistory ../../../include/QtWebKit/QWebInspector Z:/qtwebkit-symbian-qtp/WebKit/qt/Api/DerivedSources.pro - echo WEBKIT_CLASS_HEADERS = $$$$PWD/QtWebKit $$$$PWD/QWebHitTestResult $$$$PWD/QWebFrame $$$$PWD/QGraphicsWebView $$$$PWD/QWebPage $$$$PWD/QWebView $$$$PWD/QWebSettings $$$$PWD/QWebHistoryInterface $$$$PWD/QWebDatabase $$$$PWD/QWebSecurityOrigin $$$$PWD/QWebElement $$$$PWD/QWebElementCollection $$$$PWD/QWebPluginFactory $$$$PWD/QWebHistoryItem $$$$PWD/QWebHistory $$$$PWD/QWebInspector > ../../../include/QtWebKit/classheaders.pri - -generated_files: ../../../include/QtWebKit/QWebHitTestResult ../../../include/QtWebKit/QWebFrame ../../../include/QtWebKit/QGraphicsWebView ../../../include/QtWebKit/QWebPage ../../../include/QtWebKit/QWebView ../../../include/QtWebKit/QWebSettings ../../../include/QtWebKit/QWebHistoryInterface ../../../include/QtWebKit/QWebDatabase ../../../include/QtWebKit/QWebSecurityOrigin ../../../include/QtWebKit/QWebElement ../../../include/QtWebKit/QWebElementCollection ../../../include/QtWebKit/QWebPluginFactory ../../../include/QtWebKit/QWebHistoryItem ../../../include/QtWebKit/QWebHistory ../../../include/QtWebKit/QWebInspector ../../../include/QtWebKit/QtWebKit ../../../include/QtWebKit/classheaders.pri - -check: first - -sis: - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: - -dodistclean: - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\Makefile.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\Makefile.DerivedSources" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\DerivedSources_0xE7e24b3c.mmp" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\DerivedSources_0xE7e24b3c.mmp" - -@ if EXIST "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\bld.inf.DerivedSources" $(DEL_FILE) "z:\qtwebkit-symbian-qtp\WebKitBuild\Release\WebKit\qt\Api\bld.inf.DerivedSources" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitBuild/Release/WebKit/qt/Api/bld.inf.DerivedSources --- a/WebKitBuild/Release/WebKit/qt/Api/bld.inf.DerivedSources Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: dummy -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-12T12:39:46 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: z:\qtwebkit-symbian-qtp\WebKit\qt\Api\DerivedSources.pro -// * Template: lib -// ============================================================================ - -#define BLD_INF_DERIVEDSOURCES_FAC649A2 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DerivedSources_0xE7e24b3c.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/ChangeLog --- a/WebKitTools/ChangeLog Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKitTools/ChangeLog Mon Oct 04 01:32:07 2010 +0300 @@ -1,3 +1,143 @@ +2010-09-01 Mahesh Kulkarni + + Reviewed by Laszlo Gombos. + + [Qt] QWebPage::allowGeolocationRequest should be async API + https://bugs.webkit.org/show_bug.cgi?id=41364 + + Implements new async API for geolocation permission similar to + Notification. WebPage maintains list of geolocation permission request + QtWebkit and set's when LayoutTestController gets the access from test JS + + * DumpRenderTree/qt/DumpRenderTreeQt.cpp: + (WebCore::WebPage::WebPage): + (WebCore::WebPage::resetSettings): + (WebCore::WebPage::requestPermission): + (WebCore::WebPage::cancelPermission): + (WebCore::WebPage::permissionSet): + (WebCore::DumpRenderTree::DumpRenderTree): + (WebCore::DumpRenderTree::processLine): + (WebCore::DumpRenderTree::geolocationPermissionSet): + * DumpRenderTree/qt/DumpRenderTreeQt.h: + * DumpRenderTree/qt/LayoutTestControllerQt.cpp: + (LayoutTestController::reset): + (LayoutTestController::setGeolocationPermission): + (LayoutTestController::setGeolocationPermissionCommon): + * DumpRenderTree/qt/LayoutTestControllerQt.h: + +2010-08-02 Steve Block + + Reviewed by Alexey Proskuryakov. + + Adds Geolocation LayoutTests for the case where permission is not granted or denied immediately + https://bugs.webkit.org/show_bug.cgi?id=40002 + + The code in LayoutTestController::setGeolocationPermission() was moved to + setGeolocationPermissionCommon() to allow each port to provide its own + implementation of setGeolocationPermission(). + + For the Mac port, setGeolocationPermission() notifies the UIDelegate of the + new permission, so it can call back to WebCore if permission requests are in + progress and are waiting for a response. A minor fix to the Mac + MockGeolocationProvider was also required to make sure that the mock provider + calls back to WebCore when it is first started. + + For other ports, LayoutTestController::setGeolocationPermission() is not + implemented. + + * DumpRenderTree/LayoutTestController.cpp: + (LayoutTestController::setGeolocationPermissionCommon): + * DumpRenderTree/LayoutTestController.h: + * DumpRenderTree/gtk/LayoutTestControllerGtk.cpp: + (LayoutTestController::setGeolocationPermission): + * DumpRenderTree/mac/LayoutTestControllerMac.mm: + (LayoutTestController::setGeolocationPermission): + * DumpRenderTree/mac/MockGeolocationProvider.mm: + (-[MockGeolocationProvider registerWebView:]): + * DumpRenderTree/mac/UIDelegate.h: + * DumpRenderTree/mac/UIDelegate.mm: + (-[UIDelegate webView:decidePolicyForGeolocationRequestFromOrigin:frame:listener:]): + (-[UIDelegate setGeolocationPermission:]): + (-[UIDelegate dealloc]): + * DumpRenderTree/win/LayoutTestControllerWin.cpp: + (LayoutTestController::setGeolocationPermission): + * DumpRenderTree/wx/LayoutTestControllerWx.cpp: + (LayoutTestController::setGeolocationPermission): + +2010-08-17 Laszlo Gombos + + Reviewed by Ariya Hidayat. + + [Qt] [Symbian] Consistently use Q_OS_SYMBIAN to guard all Symbian platform dependencies + https://bugs.webkit.org/show_bug.cgi?id=44124 + + Q_WS_S60 is not defined for Symbian^4 devices as Q_WS_S60 used to guard + Avkon UI framework dependencies. Use Q_OS_SYMBIAN everywhere to mark + Symbian dependencies. + + * DumpRenderTree/qt/DumpRenderTreeQt.cpp: + (WebCore::DumpRenderTree::open): + * QtTestBrowser/launcherwindow.cpp: + (LauncherWindow::init): + (LauncherWindow::toggleFullScreenMode): + (LauncherWindow::showFPS): + (LauncherWindow::updateFPS): + * QtTestBrowser/launcherwindow.h: + (WindowOptions::WindowOptions): + * QtTestBrowser/mainwindow.cpp: + (MainWindow::buildUI): + +2010-08-19 Ojan Vafai + + Reviewed by Adam Barth. + + install rietveld's upload script from a versioned url + https://bugs.webkit.org/show_bug.cgi?id=44291 + + autoinstall expects the file at a given URL to never change. + In order to be able to update the file, we need to be able to + change the path. + + * Scripts/webkitpy/thirdparty/__init__.py: + +2010-08-11 Antonio Gomes + + Reviewed by Ariya Hidayat. + + [Qt] QtTestBrowser: after switching between QWebView and QGraphicsWebView, rotation actions get broken + https://bugs.webkit.org/show_bug.cgi?id=43853 + + LauncherWindow::createChrome is connecting menu itens to WebViewGraphicsBased's slots directly. + It behaviors badly when user launches the QtTestBrowser in QWebView mode, since then switching to + QGraphicsWebView mode, createChrome is not called again, and menu items end up not getting connected + to slots at all. + + * QtTestBrowser/launcherwindow.cpp: + (LauncherWindow::createChrome): + (LauncherWindow::animatedFlip): + (LauncherWindow::animatedYFlip): + * QtTestBrowser/launcherwindow.h: + +2010-08-11 Antonio Gomes + + Reviewed by Simon Hausmann. + + [Qt] QtTestBrowser: switching between QWebView and QGraphicsWebView modes is broken + https://bugs.webkit.org/show_bug.cgi?id=43851 + + All window options data (including the bool holding if the view is either QWebView or + QGraphicsWebView based) is stored in m_windowOptions, a class member of LauncherWindow. + When toggle the view from QWebView to QGraphicsWebView based (and vice-versa), we were + not updating LauncherWindow::WindowOptions::m_useGraphicsView bit, and then things were + getting broken. + + Patch addresses this issue. + + * QtTestBrowser/launcherwindow.cpp: + (LauncherWindow::createChrome): + (LauncherWindow::toggleWebView): + (LauncherWindow::toggleAcceleratedCompositing): + 2010-08-09 Antonio Gomes Reviewed by Ariya Hidayat. diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/AccessibilityController.cpp --- a/WebKitTools/DumpRenderTree/AccessibilityController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,122 +0,0 @@ -/* - * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityController.h" - -#include "AccessibilityUIElement.h" -#include - -// Static Value Getters - -static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->focusedElement()); -} - -static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->rootElement()); -} - -// Object Creation - -void AccessibilityController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) -{ - JSRetainPtr accessibilityControllerStr(Adopt, JSStringCreateWithUTF8CString("accessibilityController")); - - JSClassRef classRef = getJSClass(); - JSValueRef accessibilityControllerObject = JSObjectMake(context, classRef, this); - JSClassRelease(classRef); - - JSObjectSetProperty(context, windowObject, accessibilityControllerStr.get(), accessibilityControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception); -} - -static JSValueRef logFocusEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*) -{ - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setLogFocusEvents(true); - return JSValueMakeUndefined(ctx); -} - -static JSValueRef logValueChangeEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*) -{ - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setLogValueChangeEvents(true); - return JSValueMakeUndefined(ctx); -} - -static JSValueRef logScrollingStartEventsCallback(JSContextRef ctx, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*) -{ - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setLogScrollingStartEvents(true); - return JSValueMakeUndefined(ctx); -} - -static JSValueRef getElementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int x = 0; - int y = 0; - if (argumentCount == 2) { - x = JSValueToNumber(context, arguments[0], exception); - y = JSValueToNumber(context, arguments[1], exception); - } - - AccessibilityController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, controller->elementAtPoint(x, y)); -} - -JSClassRef AccessibilityController::getJSClass() -{ - static JSStaticFunction staticFunctions[] = { - { "logFocusEvents", logFocusEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "logValueChangeEvents", logValueChangeEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "logScrollingStartEvents", logScrollingStartEventsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "elementAtPoint", getElementAtPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } - }; - - static JSStaticValue staticValues[] = { - { "focusedElement", getFocusedElementCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "rootElement", getRootElementCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0, 0 } - }; - - static JSClassDefinition classDefinition = { - 0, kJSClassAttributeNone, "AccessibilityController", 0, staticValues, staticFunctions, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - }; - - return JSClassCreate(&classDefinition); -} - -void AccessibilityController::resetToConsistentState() -{ - setLogFocusEvents(false); - setLogValueChangeEvents(false); - setLogScrollingStartEvents(false); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/AccessibilityController.h --- a/WebKitTools/DumpRenderTree/AccessibilityController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef AccessibilityController_h -#define AccessibilityController_h - -#include "AccessibilityUIElement.h" -#include -#include -#include -#include -#if PLATFORM(WIN) -#include -#endif - -class AccessibilityController { -public: - AccessibilityController(); - ~AccessibilityController(); - - void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception); - - // Controller Methods - platform-independent implementations - AccessibilityUIElement rootElement(); - AccessibilityUIElement focusedElement(); - AccessibilityUIElement elementAtPoint(int x, int y); - - void setLogFocusEvents(bool); - void setLogValueChangeEvents(bool); - void setLogScrollingStartEvents(bool); - - void resetToConsistentState(); - - void addNotificationListener(PlatformUIElement, JSObjectRef functionCallback); - void notificationReceived(PlatformUIElement, const std::string& eventName); - -private: - static JSClassRef getJSClass(); - -#if PLATFORM(WIN) - HWINEVENTHOOK m_focusEventHook; - HWINEVENTHOOK m_valueChangeEventHook; - HWINEVENTHOOK m_scrollingStartEventHook; - - HWINEVENTHOOK m_allEventsHook; - HashMap m_notificationListeners; -#endif -}; - -#endif // AccessibilityController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/AccessibilityUIElement.cpp --- a/WebKitTools/DumpRenderTree/AccessibilityUIElement.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,762 +0,0 @@ -/* - * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityUIElement.h" - -#include - -// Static Functions - -static inline AccessibilityUIElement* toAXElement(JSObjectRef object) -{ - // FIXME: We should ASSERT that it is the right class here. - return static_cast(JSObjectGetPrivate(object)); -} - -static JSValueRef allAttributesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributes(Adopt, toAXElement(thisObject)->allAttributes()); - return JSValueMakeString(context, attributes.get()); -} - -static JSValueRef attributesOfLinkedUIElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfLinkedUIElements()); - return JSValueMakeString(context, linkedUIDescription.get()); -} - -static JSValueRef attributesOfDocumentLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr linkedUIDescription(Adopt, toAXElement(thisObject)->attributesOfDocumentLinks()); - return JSValueMakeString(context, linkedUIDescription.get()); -} - -static JSValueRef attributesOfChildrenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr childrenDescription(Adopt, toAXElement(thisObject)->attributesOfChildren()); - return JSValueMakeString(context, childrenDescription.get()); -} - -static JSValueRef parameterizedAttributeNamesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr parameterizedAttributeNames(Adopt, toAXElement(thisObject)->parameterizedAttributeNames()); - return JSValueMakeString(context, parameterizedAttributeNames.get()); -} - -static JSValueRef attributesOfColumnHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfColumnHeaders(Adopt, toAXElement(thisObject)->attributesOfColumnHeaders()); - return JSValueMakeString(context, attributesOfColumnHeaders.get()); -} - -static JSValueRef attributesOfRowHeadersCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfRowHeaders(Adopt, toAXElement(thisObject)->attributesOfRowHeaders()); - return JSValueMakeString(context, attributesOfRowHeaders.get()); -} - -static JSValueRef attributesOfColumnsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfColumns(Adopt, toAXElement(thisObject)->attributesOfColumns()); - return JSValueMakeString(context, attributesOfColumns.get()); -} - -static JSValueRef attributesOfRowsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfRows(Adopt, toAXElement(thisObject)->attributesOfRows()); - return JSValueMakeString(context, attributesOfRows.get()); -} - -static JSValueRef attributesOfVisibleCellsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfVisibleCells(Adopt, toAXElement(thisObject)->attributesOfVisibleCells()); - return JSValueMakeString(context, attributesOfVisibleCells.get()); -} - -static JSValueRef attributesOfHeaderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr attributesOfHeader(Adopt, toAXElement(thisObject)->attributesOfHeader()); - return JSValueMakeString(context, attributesOfHeader.get()); -} - -static JSValueRef indexInTableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->indexInTable()); -} - -static JSValueRef rowIndexRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr rowIndexRange(Adopt, toAXElement(thisObject)->rowIndexRange()); - return JSValueMakeString(context, rowIndexRange.get()); -} - -static JSValueRef columnIndexRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSRetainPtr columnIndexRange(Adopt, toAXElement(thisObject)->columnIndexRange()); - return JSValueMakeString(context, columnIndexRange.get()); -} - -static JSValueRef lineForIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = -1; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return JSValueMakeNumber(context, toAXElement(thisObject)->lineForIndex(indexNumber)); -} - -static JSValueRef boundsForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - unsigned location = UINT_MAX, length = 0; - if (argumentCount == 2) { - location = JSValueToNumber(context, arguments[0], exception); - length = JSValueToNumber(context, arguments[1], exception); - } - - JSRetainPtr boundsDescription(Adopt, toAXElement(thisObject)->boundsForRange(location, length)); - return JSValueMakeString(context, boundsDescription.get()); -} - -static JSValueRef stringForRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - unsigned location = UINT_MAX, length = 0; - if (argumentCount == 2) { - location = JSValueToNumber(context, arguments[0], exception); - length = JSValueToNumber(context, arguments[1], exception); - } - - JSRetainPtr stringDescription(Adopt, toAXElement(thisObject)->stringForRange(location, length)); - return JSValueMakeString(context, stringDescription.get()); -} - -static JSValueRef indexOfChildCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 1) - return 0; - - JSObjectRef otherElement = JSValueToObject(context, arguments[0], exception); - AccessibilityUIElement* childElement = toAXElement(otherElement); - return JSValueMakeNumber(context, (double)toAXElement(thisObject)->indexOfChild(childElement)); -} - -static JSValueRef childAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = -1; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->getChildAtIndex(indexNumber)); -} - -static JSValueRef linkedUIElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = -1; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->linkedUIElementAtIndex(indexNumber)); -} - -static JSValueRef disclosedRowAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = 0; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->disclosedRowAtIndex(indexNumber)); -} - -static JSValueRef ariaOwnsElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = 0; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->ariaOwnsElementAtIndex(indexNumber)); -} - -static JSValueRef ariaFlowToElementAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = 0; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->ariaFlowToElementAtIndex(indexNumber)); -} - -static JSValueRef selectedRowAtIndexCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int indexNumber = 0; - if (argumentCount == 1) - indexNumber = JSValueToNumber(context, arguments[0], exception); - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->selectedRowAtIndex(indexNumber)); -} - -static JSValueRef isEqualCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSObjectRef otherElement = 0; - if (argumentCount == 1) - otherElement = JSValueToObject(context, arguments[0], exception); - else - return JSValueMakeBoolean(context, false); - - return JSValueMakeBoolean(context, toAXElement(thisObject)->isEqual(toAXElement(otherElement))); -} - -static JSValueRef elementAtPointCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int x = 0; - int y = 0; - if (argumentCount == 2) { - x = JSValueToNumber(context, arguments[0], exception); - y = JSValueToNumber(context, arguments[1], exception); - } - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->elementAtPoint(x, y)); -} - -static JSValueRef isAttributeSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSStringRef attribute = 0; - if (argumentCount == 1) - attribute = JSValueToStringCopy(context, arguments[0], exception); - JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->isAttributeSupported(attribute)); - if (attribute) - JSStringRelease(attribute); - return result; -} - -static JSValueRef isAttributeSettableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSStringRef attribute = 0; - if (argumentCount == 1) - attribute = JSValueToStringCopy(context, arguments[0], exception); - JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->isAttributeSettable(attribute)); - if (attribute) - JSStringRelease(attribute); - return result; -} - - -static JSValueRef isActionSupportedCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSStringRef action = 0; - if (argumentCount == 1) - action = JSValueToStringCopy(context, arguments[0], exception); - JSValueRef result = JSValueMakeBoolean(context, toAXElement(thisObject)->isActionSupported(action)); - if (action) - JSStringRelease(action); - return result; -} - -static JSValueRef boolAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSStringRef attribute = 0; - if (argumentCount == 1) - attribute = JSValueToStringCopy(context, arguments[0], exception); - bool val = toAXElement(thisObject)->boolAttributeValue(attribute); - JSValueRef result = JSValueMakeBoolean(context, val); - if (attribute) - JSStringRelease(attribute); - return result; -} - -static JSValueRef stringAttributeValueCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - JSStringRef attribute = 0; - if (argumentCount == 1) - attribute = JSValueToStringCopy(context, arguments[0], exception); - JSRetainPtr stringAttributeValue(Adopt, toAXElement(thisObject)->stringAttributeValue(attribute)); - JSValueRef result = JSValueMakeString(context, stringAttributeValue.get()); - if (attribute) - JSStringRelease(attribute); - return result; -} - -static JSValueRef cellForColumnAndRowCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - unsigned column = 0, row = 0; - if (argumentCount == 2) { - column = JSValueToNumber(context, arguments[0], exception); - row = JSValueToNumber(context, arguments[1], exception); - } - - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->cellForColumnAndRow(column, row)); -} - -static JSValueRef titleUIElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->titleUIElement()); -} - -static JSValueRef parentElementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->parentElement()); -} - -static JSValueRef disclosedByRowCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - return AccessibilityUIElement::makeJSAccessibilityUIElement(context, toAXElement(thisObject)->disclosedByRow()); -} - -static JSValueRef setSelectedTextRangeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - unsigned location = UINT_MAX, length = 0; - if (argumentCount == 2) { - location = JSValueToNumber(context, arguments[0], exception); - length = JSValueToNumber(context, arguments[1], exception); - } - - toAXElement(thisObject)->setSelectedTextRange(location, length); - return JSValueMakeUndefined(context); -} - -static JSValueRef incrementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->increment(); - return JSValueMakeUndefined(context); -} - -static JSValueRef decrementCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->decrement(); - return JSValueMakeUndefined(context); -} - -static JSValueRef showMenuCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->showMenu(); - return JSValueMakeUndefined(context); -} - -static JSValueRef pressCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->press(); - return JSValueMakeUndefined(context); -} - -static JSValueRef takeFocusCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->takeFocus(); - return JSValueMakeUndefined(context); -} - -static JSValueRef takeSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->takeSelection(); - return JSValueMakeUndefined(context); -} - -static JSValueRef addSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->addSelection(); - return JSValueMakeUndefined(context); -} - -static JSValueRef removeSelectionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->removeSelection(); - return JSValueMakeUndefined(context); -} - - -// Static Value Getters - -static JSValueRef getARIADropEffectsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr dropEffects(Adopt, toAXElement(thisObject)->ariaDropEffects()); - return JSValueMakeString(context, dropEffects.get()); -} - -static JSValueRef getARIAIsGrabbedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->ariaIsGrabbed()); -} - -static JSValueRef getIsValidCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - AccessibilityUIElement* uiElement = toAXElement(thisObject); - if (!uiElement->platformUIElement()) - return JSValueMakeBoolean(context, false); - - // There might be other platform logic that one could check here... - - return JSValueMakeBoolean(context, true); -} - -static JSValueRef getRoleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr role(Adopt, toAXElement(thisObject)->role()); - return JSValueMakeString(context, role.get()); -} - -static JSValueRef getSubroleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr role(Adopt, toAXElement(thisObject)->subrole()); - return JSValueMakeString(context, role.get()); -} - -static JSValueRef getRoleDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr roleDesc(Adopt, toAXElement(thisObject)->roleDescription()); - return JSValueMakeString(context, roleDesc.get()); -} - -static JSValueRef getTitleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr title(Adopt, toAXElement(thisObject)->title()); - return JSValueMakeString(context, title.get()); -} - -static JSValueRef getDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr description(Adopt, toAXElement(thisObject)->description()); - return JSValueMakeString(context, description.get()); -} - -static JSValueRef getStringValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr stringValue(Adopt, toAXElement(thisObject)->stringValue()); - return JSValueMakeString(context, stringValue.get()); -} - -static JSValueRef getLanguageCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr language(Adopt, toAXElement(thisObject)->language()); - return JSValueMakeString(context, language.get()); -} - -static JSValueRef getHelpTextCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr language(Adopt, toAXElement(thisObject)->helpText()); - return JSValueMakeString(context, language.get()); -} - -static JSValueRef getOrientationCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr orientation(Adopt, toAXElement(thisObject)->orientation()); - return JSValueMakeString(context, orientation.get()); -} - -static JSValueRef getChildrenCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->childrenCount()); -} - -static JSValueRef rowCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->rowCount()); -} - -static JSValueRef columnCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->columnCount()); -} - -static JSValueRef getXCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->x()); -} - -static JSValueRef getYCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->y()); -} - -static JSValueRef getWidthCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->width()); -} - -static JSValueRef getHeightCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->height()); -} - -static JSValueRef getClickPointXCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->clickPointX()); -} - -static JSValueRef getClickPointYCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->clickPointY()); -} - -static JSValueRef getIntValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->intValue()); -} - -static JSValueRef getMinValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->minValue()); -} - -static JSValueRef getMaxValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->maxValue()); -} - -static JSValueRef getInsertionPointLineNumberCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->insertionPointLineNumber()); -} - -static JSValueRef getSelectedTextRangeCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr selectedTextRange(Adopt, toAXElement(thisObject)->selectedTextRange()); - return JSValueMakeString(context, selectedTextRange.get()); -} - -static JSValueRef getIsEnabledCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isEnabled()); -} - -static JSValueRef getIsRequiredCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isRequired()); -} - -static JSValueRef getIsSelectedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isSelected()); -} - -static JSValueRef getIsSelectableCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isSelectable()); -} - -static JSValueRef getIsMultiSelectableCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isMultiSelectable()); -} - -static JSValueRef getIsExpandedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isExpanded()); -} - -static JSValueRef getIsCheckedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isChecked()); -} - -static JSValueRef getIsVisibleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isVisible()); -} - -static JSValueRef getIsOffScreenCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isOffScreen()); -} - -static JSValueRef getIsCollapsedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->isCollapsed()); -} - -static JSValueRef getHasPopupCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeBoolean(context, toAXElement(thisObject)->hasPopup()); -} - -static JSValueRef hierarchicalLevelCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef, JSValueRef*) -{ - return JSValueMakeNumber(context, toAXElement(thisObject)->hierarchicalLevel()); -} - -static JSValueRef getValueDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr valueDescription(Adopt, toAXElement(thisObject)->valueDescription()); - return JSValueMakeString(context, valueDescription.get()); -} - -static JSValueRef getAccessibilityValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr accessibilityValue(Adopt, toAXElement(thisObject)->accessibilityValue()); - return JSValueMakeString(context, accessibilityValue.get()); -} - -static JSValueRef getDocumentEncodingCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr documentEncoding(Adopt, toAXElement(thisObject)->documentEncoding()); - return JSValueMakeString(context, documentEncoding.get()); -} - -static JSValueRef getDocumentURICallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr documentURI(Adopt, toAXElement(thisObject)->documentURI()); - return JSValueMakeString(context, documentURI.get()); -} - -static JSValueRef getURLCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - JSRetainPtr url(Adopt, toAXElement(thisObject)->url()); - return JSValueMakeString(context, url.get()); -} - -static JSValueRef addNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 1) - return JSValueMakeBoolean(context, false); - - JSObjectRef callback = JSValueToObject(context, arguments[0], exception); - bool succeeded = toAXElement(thisObject)->addNotificationListener(callback); - return JSValueMakeBoolean(context, succeeded); -} - -static JSValueRef removeNotificationListenerCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - toAXElement(thisObject)->removeNotificationListener(); - return JSValueMakeUndefined(context); -} - -// Destruction - -static void finalize(JSObjectRef thisObject) -{ - delete toAXElement(thisObject); -} - -// Object Creation - -JSObjectRef AccessibilityUIElement::makeJSAccessibilityUIElement(JSContextRef context, const AccessibilityUIElement& element) -{ - return JSObjectMake(context, AccessibilityUIElement::getJSClass(), new AccessibilityUIElement(element)); -} - -JSClassRef AccessibilityUIElement::getJSClass() -{ - static JSStaticValue staticValues[] = { - { "accessibilityValue", getAccessibilityValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "role", getRoleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "subrole", getSubroleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "roleDescription", getRoleDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "title", getTitleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "description", getDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "language", getLanguageCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "helpText", getHelpTextCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "stringValue", getStringValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "x", getXCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "y", getYCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "width", getWidthCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "height", getHeightCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "clickPointX", getClickPointXCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "clickPointY", getClickPointYCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "intValue", getIntValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "minValue", getMinValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "maxValue", getMaxValueCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "childrenCount", getChildrenCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "rowCount", rowCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "columnCount", columnCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "insertionPointLineNumber", getInsertionPointLineNumberCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "selectedTextRange", getSelectedTextRangeCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isEnabled", getIsEnabledCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isRequired", getIsRequiredCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isSelected", getIsSelectedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isSelectable", getIsSelectableCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isMultiSelectable", getIsMultiSelectableCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isExpanded", getIsExpandedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isChecked", getIsCheckedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isVisible", getIsVisibleCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isOffScreen", getIsOffScreenCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isCollapsed", getIsCollapsedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "hasPopup", getHasPopupCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "valueDescription", getValueDescriptionCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "hierarchicalLevel", hierarchicalLevelCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "documentEncoding", getDocumentEncodingCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "documentURI", getDocumentURICallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "url", getURLCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isValid", getIsValidCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "orientation", getOrientationCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "ariaIsGrabbed", getARIAIsGrabbedCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "ariaDropEffects", getARIADropEffectsCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0, 0 } - }; - - static JSStaticFunction staticFunctions[] = { - { "allAttributes", allAttributesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfLinkedUIElements", attributesOfLinkedUIElementsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfDocumentLinks", attributesOfDocumentLinksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfChildren", attributesOfChildrenCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "parameterizedAttributeNames", parameterizedAttributeNamesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "lineForIndex", lineForIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "boundsForRange", boundsForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "stringForRange", stringForRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "childAtIndex", childAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "linkedUIElementAtIndex", linkedUIElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "indexOfChild", indexOfChildCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "elementAtPoint", elementAtPointCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfColumnHeaders", attributesOfColumnHeadersCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfRowHeaders", attributesOfRowHeadersCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfColumns", attributesOfColumnsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfRows", attributesOfRowsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfVisibleCells", attributesOfVisibleCellsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "attributesOfHeader", attributesOfHeaderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "indexInTable", indexInTableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "rowIndexRange", rowIndexRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "columnIndexRange", columnIndexRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "cellForColumnAndRow", cellForColumnAndRowCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "titleUIElement", titleUIElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setSelectedTextRange", setSelectedTextRangeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "stringAttributeValue", stringAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "boolAttributeValue", boolAttributeValueCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isAttributeSupported", isAttributeSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isAttributeSettable", isAttributeSettableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isActionSupported", isActionSupportedCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "parentElement", parentElementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "disclosedByRow", disclosedByRowCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "increment", incrementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "decrement", decrementCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "showMenu", showMenuCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "press", pressCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "disclosedRowAtIndex", disclosedRowAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "ariaOwnsElementAtIndex", ariaOwnsElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "ariaFlowToElementAtIndex", ariaFlowToElementAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "selectedRowAtIndex", selectedRowAtIndexCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isEqual", isEqualCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addNotificationListener", addNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "removeNotificationListener", removeNotificationListenerCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "takeFocus", takeFocusCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "takeSelection", takeSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addSelection", addSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "removeSelection", removeSelectionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } - }; - - static JSClassDefinition classDefinition = { - 0, kJSClassAttributeNone, "AccessibilityUIElement", 0, staticValues, staticFunctions, - 0, finalize, 0, 0, 0, 0, 0, 0, 0, 0, 0 - }; - - static JSClassRef accessibilityUIElementClass = JSClassCreate(&classDefinition); - return accessibilityUIElementClass; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/AccessibilityUIElement.h --- a/WebKitTools/DumpRenderTree/AccessibilityUIElement.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,200 +0,0 @@ -/* - * Copyright (C) 2008 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef AccessibilityUIElement_h -#define AccessibilityUIElement_h - -#include -#include -#include - -#if PLATFORM(MAC) -#ifdef __OBJC__ -typedef id PlatformUIElement; -#else -typedef struct objc_object* PlatformUIElement; -#endif -#elif PLATFORM(WIN) -#undef _WINSOCKAPI_ -#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h - -#include -#include - -typedef COMPtr PlatformUIElement; -#elif PLATFORM(GTK) -#include -typedef AtkObject* PlatformUIElement; -#else -typedef void* PlatformUIElement; -#endif - -#if PLATFORM(MAC) -#ifdef __OBJC__ -typedef id NotificationHandler; -#else -typedef struct objc_object* NotificationHandler; -#endif -#endif - -class AccessibilityUIElement { -public: - AccessibilityUIElement(PlatformUIElement); - AccessibilityUIElement(const AccessibilityUIElement&); - ~AccessibilityUIElement(); - - PlatformUIElement platformUIElement() { return m_element; } - - static JSObjectRef makeJSAccessibilityUIElement(JSContextRef, const AccessibilityUIElement&); - - bool isEqual(AccessibilityUIElement* otherElement) { return platformUIElement() == otherElement->platformUIElement(); } - - void getLinkedUIElements(Vector&); - void getDocumentLinks(Vector&); - void getChildren(Vector&); - void getChildrenWithRange(Vector&, unsigned location, unsigned length); - - AccessibilityUIElement elementAtPoint(int x, int y); - AccessibilityUIElement getChildAtIndex(unsigned); - unsigned indexOfChild(AccessibilityUIElement*); - int childrenCount(); - AccessibilityUIElement titleUIElement(); - AccessibilityUIElement parentElement(); - - void takeFocus(); - void takeSelection(); - void addSelection(); - void removeSelection(); - - // Methods - platform-independent implementations - JSStringRef allAttributes(); - JSStringRef attributesOfLinkedUIElements(); - AccessibilityUIElement linkedUIElementAtIndex(unsigned); - - JSStringRef attributesOfDocumentLinks(); - JSStringRef attributesOfChildren(); - JSStringRef parameterizedAttributeNames(); - void increment(); - void decrement(); - void showMenu(); - void press(); - - // Attributes - platform-independent implementations - JSStringRef stringAttributeValue(JSStringRef attribute); - bool boolAttributeValue(JSStringRef attribute); - bool isAttributeSupported(JSStringRef attribute); - bool isAttributeSettable(JSStringRef attribute); - bool isActionSupported(JSStringRef action); - JSStringRef role(); - JSStringRef subrole(); - JSStringRef roleDescription(); - JSStringRef title(); - JSStringRef description(); - JSStringRef language(); - JSStringRef stringValue(); - JSStringRef accessibilityValue() const; - JSStringRef helpText() const; - JSStringRef orientation() const; - double x(); - double y(); - double width(); - double height(); - double intValue() const; - double minValue(); - double maxValue(); - JSStringRef valueDescription(); - int insertionPointLineNumber(); - JSStringRef selectedTextRange(); - bool isEnabled(); - bool isRequired() const; - bool isSelected() const; - bool isSelectable() const; - bool isMultiSelectable() const; - bool isExpanded() const; - bool isChecked() const; - bool isVisible() const; - bool isOffScreen() const; - bool isCollapsed() const; - bool hasPopup() const; - int hierarchicalLevel() const; - double clickPointX(); - double clickPointY(); - JSStringRef documentEncoding(); - JSStringRef documentURI(); - JSStringRef url(); - - // Table-specific attributes - JSStringRef attributesOfColumnHeaders(); - JSStringRef attributesOfRowHeaders(); - JSStringRef attributesOfColumns(); - JSStringRef attributesOfRows(); - JSStringRef attributesOfVisibleCells(); - JSStringRef attributesOfHeader(); - int indexInTable(); - JSStringRef rowIndexRange(); - JSStringRef columnIndexRange(); - int rowCount(); - int columnCount(); - - // Tree/Outline specific attributes - AccessibilityUIElement selectedRowAtIndex(unsigned); - AccessibilityUIElement disclosedByRow(); - AccessibilityUIElement disclosedRowAtIndex(unsigned); - - // ARIA specific - AccessibilityUIElement ariaOwnsElementAtIndex(unsigned); - AccessibilityUIElement ariaFlowToElementAtIndex(unsigned); - - // ARIA Drag and Drop - bool ariaIsGrabbed() const; - // A space concatentated string of all the drop effects. - JSStringRef ariaDropEffects() const; - - // Parameterized attributes - int lineForIndex(int); - JSStringRef boundsForRange(unsigned location, unsigned length); - void setSelectedTextRange(unsigned location, unsigned length); - JSStringRef stringForRange(unsigned location, unsigned length); - - // Table-specific - AccessibilityUIElement cellForColumnAndRow(unsigned column, unsigned row); - - // Notifications - // Function callback should take one argument, the name of the notification. - bool addNotificationListener(JSObjectRef functionCallback); - // Make sure you call remove, because you can't rely on objects being deallocated in a timely fashion. - void removeNotificationListener(); - -private: - static JSClassRef getJSClass(); - PlatformUIElement m_element; - - // A retained, platform specific object used to help manage notifications for this object. -#if PLATFORM(MAC) - NotificationHandler m_notificationHandler; -#endif -}; - -#endif // AccessibilityUIElement_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTree.gypi --- a/WebKitTools/DumpRenderTree/DumpRenderTree.gypi Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -{ - 'variables': { - 'drt_files': [ - 'chromium/AccessibilityController.cpp', - 'chromium/AccessibilityController.h', - 'chromium/AccessibilityUIElement.cpp', - 'chromium/AccessibilityUIElement.h', - 'chromium/CppBoundClass.cpp', - 'chromium/CppBoundClass.h', - 'chromium/CppVariant.cpp', - 'chromium/CppVariant.h', - 'chromium/DRTDevToolsAgent.cpp', - 'chromium/DRTDevToolsAgent.h', - 'chromium/DRTDevToolsCallArgs.cpp', - 'chromium/DRTDevToolsCallArgs.h', - 'chromium/DRTDevToolsClient.cpp', - 'chromium/DRTDevToolsClient.h', - 'chromium/DumpRenderTree.cpp', - 'chromium/EventSender.cpp', - 'chromium/EventSender.h', - 'chromium/LayoutTestController.cpp', - 'chromium/LayoutTestController.h', - 'chromium/MockSpellCheck.cpp', - 'chromium/MockSpellCheck.h', - 'chromium/NotificationPresenter.h', - 'chromium/NotificationPresenter.cpp', - 'chromium/PlainTextController.cpp', - 'chromium/PlainTextController.h', - 'chromium/TestEventPrinter.h', - 'chromium/TestEventPrinter.cpp', - 'chromium/TestNavigationController.cpp', - 'chromium/TestNavigationController.h', - 'chromium/TestShell.cpp', - 'chromium/TestShell.h', - 'chromium/TestShellGtk.cpp', - 'chromium/TestShellMac.mm', - 'chromium/TestShellWin.cpp', - 'chromium/TextInputController.cpp', - 'chromium/TextInputController.h', - 'chromium/WebViewHost.cpp', - 'chromium/WebViewHost.h', - ], - 'conditions': [ - ['OS=="win"', { - 'drt_files': [ - 'chromium/WebThemeControlDRT.cpp', - 'chromium/WebThemeControlDRT.h', - 'chromium/WebThemeEngineDRT.cpp', - 'chromium/WebThemeEngineDRT.h', - ], - }], - ], - } -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTree.h --- a/WebKitTools/DumpRenderTree/DumpRenderTree.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,64 +0,0 @@ -/* - * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTree_h -#define DumpRenderTree_h - -// FIXME: Remove this when all platforms are using config.h -#ifndef Config_H -#include -#endif - -#if PLATFORM(MAC) -#include "DumpRenderTreeMac.h" -#elif PLATFORM(WIN) -#include "DumpRenderTreeWin.h" -#elif PLATFORM(GTK) -#include "DumpRenderTreeGtk.h" -#elif PLATFORM(WX) -#include "DumpRenderTreeWx.h" -#endif - -#include -#include - -#if !OS(OPENBSD) -std::wstring urlSuitableForTestResult(const std::wstring& url); -#endif - -class LayoutTestController; - -extern volatile bool done; - -// FIXME: This is a bad abstraction. We should insted pass this to other controller objects which need access to it. -extern RefPtr gLayoutTestController; - -void dump(); -void displayWebView(); - -#endif // DumpRenderTree_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTree.sln --- a/WebKitTools/DumpRenderTree/DumpRenderTree.sln Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DumpRenderTree", "win\DumpRenderTree.vcproj", "{6567DFD4-D6DE-4CD5-825D-17E353D160E1}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestNetscapePlugin", "TestNetscapePlugin\win\TestNetscapePlugin.vcproj", "{C0737398-3565-439E-A2B8-AB2BE4D5430C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FindSafari", "..\FindSafari\FindSafari.vcproj", "{DA31DA52-6675-48D4-89E0-333A7144397C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ImageDiff", "win\ImageDiff.vcproj", "{59CC0547-70AC-499C-9B19-EC01C6F61137}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug_All|Win32 = Debug_All|Win32 - Debug_Internal|Win32 = Debug_Internal|Win32 - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_All|Win32.ActiveCfg = Debug_All|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_All|Win32.Build.0 = Debug_All|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_Internal|Win32.ActiveCfg = Debug_Internal|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug_Internal|Win32.Build.0 = Debug_Internal|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.ActiveCfg = Debug|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Debug|Win32.Build.0 = Debug|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.ActiveCfg = Release|Win32 - {6567DFD4-D6DE-4CD5-825D-17E353D160E1}.Release|Win32.Build.0 = Release|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.ActiveCfg = Debug_All|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_All|Win32.Build.0 = Debug_All|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_Internal|Win32.ActiveCfg = Debug_Internal|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug_Internal|Win32.Build.0 = Debug_Internal|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.ActiveCfg = Debug|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Debug|Win32.Build.0 = Debug|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.ActiveCfg = Release|Win32 - {C0737398-3565-439E-A2B8-AB2BE4D5430C}.Release|Win32.Build.0 = Release|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug_All|Win32.ActiveCfg = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug_All|Win32.Build.0 = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug_Internal|Win32.ActiveCfg = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug_Internal|Win32.Build.0 = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug|Win32.ActiveCfg = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Debug|Win32.Build.0 = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Release|Win32.ActiveCfg = all|Win32 - {DA31DA52-6675-48D4-89E0-333A7144397C}.Release|Win32.Build.0 = all|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.ActiveCfg = Debug_All|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_All|Win32.Build.0 = Debug_All|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_Internal|Win32.ActiveCfg = Debug_Internal|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug_Internal|Win32.Build.0 = Debug_Internal|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.ActiveCfg = Debug|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Debug|Win32.Build.0 = Debug|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.ActiveCfg = Release|Win32 - {59CC0547-70AC-499C-9B19-EC01C6F61137}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj --- a/WebKitTools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,992 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 42; - objects = { - -/* Begin PBXAggregateTarget section */ - A84F608D08B1370600E9745F /* All */ = { - isa = PBXAggregateTarget; - buildConfigurationList = A84F609208B1371400E9745F /* Build configuration list for PBXAggregateTarget "All" */; - buildPhases = ( - ); - dependencies = ( - A84F609108B1370E00E9745F /* PBXTargetDependency */, - A84F608F08B1370E00E9745F /* PBXTargetDependency */, - 141BF238096A451E00E0753C /* PBXTargetDependency */, - 5DC82A701023C93D00FD1D3B /* PBXTargetDependency */, - ); - name = All; - productName = All; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 0F37A4A711E6628700275F54 /* PluginObjectMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0F37A4A611E6628700275F54 /* PluginObjectMac.mm */; }; - 0F37A4AA11E6629100275F54 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5A752A108AF5D1F00138E45 /* QuartzCore.framework */; }; - 141BF435096A455900E0753C /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9335435F03D75502008635CE /* WebKit.framework */; }; - 141BF436096A455900E0753C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; }; - 141BF438096A455900E0753C /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A817090308B164D300CCB9FB /* JavaScriptCore.framework */; }; - 141BF439096A455900E0753C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; }; - 141BF453096A45EB00E0753C /* PluginObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 141BF447096A45C800E0753C /* PluginObject.h */; }; - 14770FE20A22ADF7009342EE /* GCController.h in Headers */ = {isa = PBXBuildFile; fileRef = 14770FE00A22ADF7009342EE /* GCController.h */; }; - 1A8F02E80BB9B4EC008CFA34 /* TestObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A8F024C0BB9B056008CFA34 /* TestObject.h */; }; - 1AC6C8490D07638600CD3161 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C77F0D07589B00CD3161 /* main.cpp */; }; - 1AC6C84A0D07638600CD3161 /* PluginObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C7800D07589B00CD3161 /* PluginObject.cpp */; }; - 1AC6C84B0D07638600CD3161 /* TestObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC6C7810D07589B00CD3161 /* TestObject.cpp */; }; - 23BCB8900EA57623003C6289 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23BCB88F0EA57623003C6289 /* OpenGL.framework */; }; - 3713EDE2115BE19300705720 /* ColorBits-A.png in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 3713EDDF115BE16F00705720 /* ColorBits-A.png */; }; - 3713EDE3115BE19300705720 /* ColorBits.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 3713EDE0115BE16F00705720 /* ColorBits.ttf */; }; - 5185F6B210714E07007AA393 /* HistoryDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5185F69F10714A57007AA393 /* HistoryDelegate.mm */; }; - 5185F6B310714E12007AA393 /* HistoryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 5185F69E10714A57007AA393 /* HistoryDelegate.h */; }; - 5DB9AC970F722C3600684641 /* AHEM____.TTF in Copy Font Files */ = {isa = PBXBuildFile; fileRef = AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */; }; - 5DB9AC980F722C3600684641 /* WebKitWeightWatcher100.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */; }; - 5DB9AC990F722C3600684641 /* WebKitWeightWatcher200.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */; }; - 5DB9AC9A0F722C3600684641 /* WebKitWeightWatcher300.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */; }; - 5DB9AC9B0F722C3600684641 /* WebKitWeightWatcher400.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */; }; - 5DB9AC9C0F722C3600684641 /* WebKitWeightWatcher500.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */; }; - 5DB9AC9D0F722C3600684641 /* WebKitWeightWatcher600.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */; }; - 5DB9AC9E0F722C3600684641 /* WebKitWeightWatcher700.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */; }; - 5DB9AC9F0F722C3600684641 /* WebKitWeightWatcher800.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */; }; - 5DB9ACA00F722C3600684641 /* WebKitWeightWatcher900.ttf in Copy Font Files */ = {isa = PBXBuildFile; fileRef = 375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */; }; - 8465E2C70FFA8DF2003B8342 /* PixelDumpSupport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */; }; - 933BF5AB0F93FA5C000F0441 /* PlainTextController.h in Headers */ = {isa = PBXBuildFile; fileRef = 933BF5A90F93FA5C000F0441 /* PlainTextController.h */; }; - 933BF5AC0F93FA5C000F0441 /* PlainTextController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 933BF5AA0F93FA5C000F0441 /* PlainTextController.mm */; }; - 9340994C08540CAE007F3BC8 /* DumpRenderTreePrefix.h in Headers */ = {isa = PBXBuildFile; fileRef = 32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */; }; - 9340995108540CAE007F3BC8 /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9335435F03D75502008635CE /* WebKit.framework */; }; - A817090008B163EF00CCB9FB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; }; - A817090408B164D300CCB9FB /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A817090308B164D300CCB9FB /* JavaScriptCore.framework */; }; - A84F608A08B136DA00E9745F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A84F608908B136DA00E9745F /* Cocoa.framework */; }; - A8B91ADA0CF3B32F008F91FF /* DumpRenderTreePasteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */; }; - A8B91ADC0CF3B32F008F91FF /* DumpRenderTreeWindow.mm in Sources */ = {isa = PBXBuildFile; fileRef = A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */; }; - A8B91AE00CF3B372008F91FF /* DumpRenderTreeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */; }; - A8B91AE20CF3B372008F91FF /* DumpRenderTreePasteboard.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */; }; - A8B91BFD0CF522B4008F91FF /* CheckedMalloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */; }; - A8B91BFF0CF522B4008F91FF /* CheckedMalloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */; }; - A8D79CEA0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */; }; - A8D79CEB0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */; }; - AE8259F308D22463000507AB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; }; - AE8259F408D22463000507AB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AE8257EF08D22389000507AB /* Carbon.framework */; }; - B5A752A208AF5D1F00138E45 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B5A752A108AF5D1F00138E45 /* QuartzCore.framework */; }; - BC0131DA0C9772010087317D /* LayoutTestController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC0131D80C9772010087317D /* LayoutTestController.cpp */; }; - BC0131DB0C9772010087317D /* LayoutTestController.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0131D90C9772010087317D /* LayoutTestController.h */; }; - BC0E24E00E2D9451001B6BC2 /* AccessibilityUIElement.h in Headers */ = {isa = PBXBuildFile; fileRef = BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */; }; - BC0E24E10E2D9451001B6BC2 /* AccessibilityUIElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */; }; - BC0E26150E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */; }; - BC47412A0D038A4C0072B006 /* JavaScriptThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4741290D038A4C0072B006 /* JavaScriptThreading.h */; }; - BC4741410D038A570072B006 /* JavaScriptThreadingPthreads.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */; }; - BC9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */; }; - BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D90220C97472E0099A4A3 /* WorkQueue.h */; }; - BC9D90260C97472E0099A4A3 /* WorkQueueItem.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */; }; - BCA18B230C9B014B00114369 /* GCControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B210C9B014B00114369 /* GCControllerMac.mm */; }; - BCA18B240C9B014B00114369 /* LayoutTestControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B220C9B014B00114369 /* LayoutTestControllerMac.mm */; }; - BCA18B260C9B015C00114369 /* WorkQueueItemMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */; }; - BCA18B310C9B01B400114369 /* ObjCController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B2F0C9B01B400114369 /* ObjCController.h */; }; - BCA18B320C9B01B400114369 /* ObjCController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B300C9B01B400114369 /* ObjCController.m */; }; - BCA18B380C9B021900114369 /* AppleScriptController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B360C9B021900114369 /* AppleScriptController.h */; }; - BCA18B390C9B021900114369 /* AppleScriptController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B370C9B021900114369 /* AppleScriptController.m */; }; - BCA18B3C0C9B024900114369 /* TextInputController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B3A0C9B024900114369 /* TextInputController.h */; }; - BCA18B490C9B02C400114369 /* TextInputController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B480C9B02C400114369 /* TextInputController.m */; }; - BCA18B610C9B08C200114369 /* EditingDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B570C9B08C200114369 /* EditingDelegate.h */; }; - BCA18B620C9B08C200114369 /* EditingDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B580C9B08C200114369 /* EditingDelegate.mm */; }; - BCA18B630C9B08C200114369 /* FrameLoadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */; }; - BCA18B640C9B08C200114369 /* FrameLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */; }; - BCA18B650C9B08C200114369 /* PolicyDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */; }; - BCA18B660C9B08C200114369 /* PolicyDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */; }; - BCA18B670C9B08C200114369 /* ResourceLoadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */; }; - BCA18B680C9B08C200114369 /* ResourceLoadDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */; }; - BCA18B690C9B08C200114369 /* UIDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B5F0C9B08C200114369 /* UIDelegate.h */; }; - BCA18B6A0C9B08C200114369 /* UIDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B600C9B08C200114369 /* UIDelegate.mm */; }; - BCA18B6F0C9B08DB00114369 /* EventSendingController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B6B0C9B08DB00114369 /* EventSendingController.h */; }; - BCA18B700C9B08DB00114369 /* EventSendingController.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */; }; - BCA18B710C9B08DB00114369 /* NavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B6D0C9B08DB00114369 /* NavigationController.h */; }; - BCA18B720C9B08DB00114369 /* NavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B6E0C9B08DB00114369 /* NavigationController.m */; }; - BCA18B7A0C9B08F100114369 /* DumpRenderTreeDraggingInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */; }; - BCA18B7B0C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */; }; - BCA18B7D0C9B08F100114369 /* ObjCPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B760C9B08F100114369 /* ObjCPlugin.h */; }; - BCA18B7E0C9B08F100114369 /* ObjCPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B770C9B08F100114369 /* ObjCPlugin.m */; }; - BCA18B7F0C9B08F100114369 /* ObjCPluginFunction.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */; }; - BCA18B800C9B08F100114369 /* ObjCPluginFunction.m in Sources */ = {isa = PBXBuildFile; fileRef = BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */; }; - BCA18C0B0C9B59EF00114369 /* DumpRenderTreeMac.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */; }; - BCA18C470C9B5B9400114369 /* DumpRenderTree.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */; settings = {COMPILER_FLAGS = "-Wno-deprecated-declarations"; }; }; - BCB284C70CFA83C4007E533E /* PixelDumpSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */; }; - BCB284CD0CFA83C8007E533E /* PixelDumpSupportCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */; }; - BCB284D00CFA83CC007E533E /* PixelDumpSupportCG.h in Headers */ = {isa = PBXBuildFile; fileRef = BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */; }; - BCB284D60CFA83D1007E533E /* PixelDumpSupportMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */; }; - BCB284F60CFA84F8007E533E /* ImageDiffCG.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */; }; - BCD08B3A0E1057EF00A7D0C1 /* AccessibilityController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */; }; - BCD08B710E1059D200A7D0C1 /* AccessibilityControllerMac.mm in Sources */ = {isa = PBXBuildFile; fileRef = BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */; }; - BCF6C6500C98E9C000AC063E /* GCController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCF6C64F0C98E9C000AC063E /* GCController.cpp */; }; - E1B7816511AF31B7007E1BC2 /* MockGeolocationProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */; }; - E1B7816711AF31C3007E1BC2 /* MockGeolocationProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 141BF237096A451E00E0753C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 141BF21E096A441D00E0753C; - remoteInfo = TestNetscapePlugIn; - }; - 5DC82A6F1023C93D00FD1D3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5DC82A661023C8DE00FD1D3B; - remoteInfo = "DumpRenderTree Perl Support"; - }; - A84F608E08B1370E00E9745F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B5A7525A08AF4A4A00138E45; - remoteInfo = ImageDiff; - }; - A84F609008B1370E00E9745F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9340994A08540CAE007F3BC8; - remoteInfo = DumpRenderTree; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXCopyFilesBuildPhase section */ - 5DB9ACAA0F722C4400684641 /* Copy Font Files */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = DumpRenderTree.resources; - dstSubfolderSpec = 7; - files = ( - 5DB9AC970F722C3600684641 /* AHEM____.TTF in Copy Font Files */, - 3713EDE2115BE19300705720 /* ColorBits-A.png in Copy Font Files */, - 3713EDE3115BE19300705720 /* ColorBits.ttf in Copy Font Files */, - 5DB9AC980F722C3600684641 /* WebKitWeightWatcher100.ttf in Copy Font Files */, - 5DB9AC990F722C3600684641 /* WebKitWeightWatcher200.ttf in Copy Font Files */, - 5DB9AC9A0F722C3600684641 /* WebKitWeightWatcher300.ttf in Copy Font Files */, - 5DB9AC9B0F722C3600684641 /* WebKitWeightWatcher400.ttf in Copy Font Files */, - 5DB9AC9C0F722C3600684641 /* WebKitWeightWatcher500.ttf in Copy Font Files */, - 5DB9AC9D0F722C3600684641 /* WebKitWeightWatcher600.ttf in Copy Font Files */, - 5DB9AC9E0F722C3600684641 /* WebKitWeightWatcher700.ttf in Copy Font Files */, - 5DB9AC9F0F722C3600684641 /* WebKitWeightWatcher800.ttf in Copy Font Files */, - 5DB9ACA00F722C3600684641 /* WebKitWeightWatcher900.ttf in Copy Font Files */, - ); - name = "Copy Font Files"; - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXCopyFilesBuildPhase section */ - -/* Begin PBXFileReference section */ - 0F37A4A611E6628700275F54 /* PluginObjectMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PluginObjectMac.mm; sourceTree = ""; }; - 141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TestNetscapePlugIn.plugin; sourceTree = BUILT_PRODUCTS_DIR; }; - 141BF447096A45C800E0753C /* PluginObject.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PluginObject.h; sourceTree = ""; }; - 141BF448096A45C800E0753C /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.plist.xml; name = Info.plist; path = mac/Info.plist; sourceTree = ""; }; - 14770FE00A22ADF7009342EE /* GCController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCController.h; sourceTree = ""; }; - 1A8F024C0BB9B056008CFA34 /* TestObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestObject.h; sourceTree = ""; }; - 1AC6C77F0D07589B00CD3161 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; - 1AC6C7800D07589B00CD3161 /* PluginObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginObject.cpp; sourceTree = ""; }; - 1AC6C7810D07589B00CD3161 /* TestObject.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = TestObject.cpp; sourceTree = ""; }; - 23BCB88F0EA57623003C6289 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = ""; }; - 32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DumpRenderTreePrefix.h; sourceTree = ""; }; - 3713EDDF115BE16F00705720 /* ColorBits-A.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "ColorBits-A.png"; path = "fonts/ColorBits-A.png"; sourceTree = ""; }; - 3713EDE0115BE16F00705720 /* ColorBits.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = ColorBits.ttf; path = fonts/ColorBits.ttf; sourceTree = ""; }; - 375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher100.ttf; path = fonts/WebKitWeightWatcher100.ttf; sourceTree = ""; }; - 375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher200.ttf; path = fonts/WebKitWeightWatcher200.ttf; sourceTree = ""; }; - 375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher300.ttf; path = fonts/WebKitWeightWatcher300.ttf; sourceTree = ""; }; - 375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher400.ttf; path = fonts/WebKitWeightWatcher400.ttf; sourceTree = ""; }; - 375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher500.ttf; path = fonts/WebKitWeightWatcher500.ttf; sourceTree = ""; }; - 375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher600.ttf; path = fonts/WebKitWeightWatcher600.ttf; sourceTree = ""; }; - 375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher700.ttf; path = fonts/WebKitWeightWatcher700.ttf; sourceTree = ""; }; - 375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher800.ttf; path = fonts/WebKitWeightWatcher800.ttf; sourceTree = ""; }; - 375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = WebKitWeightWatcher900.ttf; path = fonts/WebKitWeightWatcher900.ttf; sourceTree = ""; }; - 5185F69E10714A57007AA393 /* HistoryDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HistoryDelegate.h; path = mac/HistoryDelegate.h; sourceTree = ""; }; - 5185F69F10714A57007AA393 /* HistoryDelegate.mm */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 4; name = HistoryDelegate.mm; path = mac/HistoryDelegate.mm; sourceTree = ""; }; - 8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; path = PixelDumpSupport.cpp; sourceTree = ""; }; - 9335435F03D75502008635CE /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 933BF5A90F93FA5C000F0441 /* PlainTextController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PlainTextController.h; path = mac/PlainTextController.h; sourceTree = ""; }; - 933BF5AA0F93FA5C000F0441 /* PlainTextController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = PlainTextController.mm; path = mac/PlainTextController.mm; sourceTree = ""; }; - 9340995408540CAF007F3BC8 /* DumpRenderTree */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = DumpRenderTree; sourceTree = BUILT_PRODUCTS_DIR; }; - A803FF7409CAAD08009B2A37 /* DumpRenderTree.h */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.h; fileEncoding = 4; path = DumpRenderTree.h; sourceTree = ""; }; - A817090308B164D300CCB9FB /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JavaScriptCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A84F608908B136DA00E9745F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = ""; }; - A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DumpRenderTreePasteboard.m; path = mac/DumpRenderTreePasteboard.m; sourceTree = ""; }; - A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTreeWindow.mm; path = mac/DumpRenderTreeWindow.mm; sourceTree = ""; }; - A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeWindow.h; path = mac/DumpRenderTreeWindow.h; sourceTree = ""; }; - A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreePasteboard.h; path = mac/DumpRenderTreePasteboard.h; sourceTree = ""; }; - A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CheckedMalloc.cpp; path = mac/CheckedMalloc.cpp; sourceTree = ""; }; - A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CheckedMalloc.h; path = mac/CheckedMalloc.h; sourceTree = ""; }; - A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DumpRenderTreeFileDraggingSource.h; sourceTree = ""; }; - A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DumpRenderTreeFileDraggingSource.m; sourceTree = ""; }; - AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; name = "AHEM____.TTF"; path = "qt/fonts/AHEM____.TTF"; sourceTree = ""; }; - AE8257EF08D22389000507AB /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = ""; }; - B5A7526708AF4A4A00138E45 /* ImageDiff */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ImageDiff; sourceTree = BUILT_PRODUCTS_DIR; }; - B5A752A108AF5D1F00138E45 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /System/Library/Frameworks/QuartzCore.framework; sourceTree = ""; }; - BC0131D80C9772010087317D /* LayoutTestController.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; path = LayoutTestController.cpp; sourceTree = ""; }; - BC0131D90C9772010087317D /* LayoutTestController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = LayoutTestController.h; sourceTree = ""; }; - BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityUIElement.h; sourceTree = ""; }; - BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityUIElement.cpp; sourceTree = ""; }; - BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityUIElementMac.mm; path = mac/AccessibilityUIElementMac.mm; sourceTree = ""; }; - BC4741290D038A4C0072B006 /* JavaScriptThreading.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JavaScriptThreading.h; sourceTree = ""; }; - BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = JavaScriptThreadingPthreads.cpp; path = pthreads/JavaScriptThreadingPthreads.cpp; sourceTree = ""; }; - BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; path = WorkQueue.cpp; sourceTree = ""; }; - BC9D90220C97472E0099A4A3 /* WorkQueue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WorkQueue.h; sourceTree = ""; }; - BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = WorkQueueItem.h; sourceTree = ""; }; - BCA18B210C9B014B00114369 /* GCControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = GCControllerMac.mm; path = mac/GCControllerMac.mm; sourceTree = ""; }; - BCA18B220C9B014B00114369 /* LayoutTestControllerMac.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; name = LayoutTestControllerMac.mm; path = mac/LayoutTestControllerMac.mm; sourceTree = ""; }; - BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = WorkQueueItemMac.mm; path = mac/WorkQueueItemMac.mm; sourceTree = ""; }; - BCA18B2F0C9B01B400114369 /* ObjCController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCController.h; path = mac/ObjCController.h; sourceTree = ""; }; - BCA18B300C9B01B400114369 /* ObjCController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCController.m; path = mac/ObjCController.m; sourceTree = ""; }; - BCA18B360C9B021900114369 /* AppleScriptController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = AppleScriptController.h; path = mac/AppleScriptController.h; sourceTree = ""; }; - BCA18B370C9B021900114369 /* AppleScriptController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = AppleScriptController.m; path = mac/AppleScriptController.m; sourceTree = ""; }; - BCA18B3A0C9B024900114369 /* TextInputController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = TextInputController.h; path = mac/TextInputController.h; sourceTree = ""; }; - BCA18B480C9B02C400114369 /* TextInputController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = TextInputController.m; path = mac/TextInputController.m; sourceTree = ""; }; - BCA18B570C9B08C200114369 /* EditingDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = EditingDelegate.h; path = mac/EditingDelegate.h; sourceTree = ""; }; - BCA18B580C9B08C200114369 /* EditingDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = EditingDelegate.mm; path = mac/EditingDelegate.mm; sourceTree = ""; }; - BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FrameLoadDelegate.h; path = mac/FrameLoadDelegate.h; sourceTree = ""; }; - BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = FrameLoadDelegate.mm; path = mac/FrameLoadDelegate.mm; sourceTree = ""; }; - BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PolicyDelegate.h; path = mac/PolicyDelegate.h; sourceTree = ""; }; - BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = PolicyDelegate.mm; path = mac/PolicyDelegate.mm; sourceTree = ""; }; - BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ResourceLoadDelegate.h; path = mac/ResourceLoadDelegate.h; sourceTree = ""; }; - BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = ResourceLoadDelegate.mm; path = mac/ResourceLoadDelegate.mm; sourceTree = ""; }; - BCA18B5F0C9B08C200114369 /* UIDelegate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = UIDelegate.h; path = mac/UIDelegate.h; sourceTree = ""; }; - BCA18B600C9B08C200114369 /* UIDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = UIDelegate.mm; path = mac/UIDelegate.mm; sourceTree = ""; }; - BCA18B6B0C9B08DB00114369 /* EventSendingController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = EventSendingController.h; path = mac/EventSendingController.h; sourceTree = ""; }; - BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = EventSendingController.mm; path = mac/EventSendingController.mm; sourceTree = ""; }; - BCA18B6D0C9B08DB00114369 /* NavigationController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = NavigationController.h; path = mac/NavigationController.h; sourceTree = ""; }; - BCA18B6E0C9B08DB00114369 /* NavigationController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = NavigationController.m; path = mac/NavigationController.m; sourceTree = ""; }; - BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeDraggingInfo.h; path = mac/DumpRenderTreeDraggingInfo.h; sourceTree = ""; }; - BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTreeDraggingInfo.mm; path = mac/DumpRenderTreeDraggingInfo.mm; sourceTree = ""; }; - BCA18B760C9B08F100114369 /* ObjCPlugin.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCPlugin.h; path = mac/ObjCPlugin.h; sourceTree = ""; }; - BCA18B770C9B08F100114369 /* ObjCPlugin.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCPlugin.m; path = mac/ObjCPlugin.m; sourceTree = ""; }; - BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = ObjCPluginFunction.h; path = mac/ObjCPluginFunction.h; sourceTree = ""; }; - BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = ObjCPluginFunction.m; path = mac/ObjCPluginFunction.m; sourceTree = ""; }; - BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DumpRenderTreeMac.h; path = mac/DumpRenderTreeMac.h; sourceTree = ""; }; - BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = DumpRenderTree.mm; path = mac/DumpRenderTree.mm; sourceTree = ""; }; - BCB281EE0CFA713D007E533E /* Base.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = Base.xcconfig; path = mac/Configurations/Base.xcconfig; sourceTree = ""; }; - BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = DumpRenderTree.xcconfig; path = mac/Configurations/DumpRenderTree.xcconfig; sourceTree = ""; }; - BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = DebugRelease.xcconfig; path = mac/Configurations/DebugRelease.xcconfig; sourceTree = ""; }; - BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = ImageDiff.xcconfig; path = mac/Configurations/ImageDiff.xcconfig; sourceTree = ""; }; - BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; name = TestNetscapePlugIn.xcconfig; path = mac/Configurations/TestNetscapePlugIn.xcconfig; sourceTree = ""; }; - BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; name = PixelDumpSupportCG.cpp; path = cg/PixelDumpSupportCG.cpp; sourceTree = ""; }; - BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PixelDumpSupportCG.h; path = cg/PixelDumpSupportCG.h; sourceTree = ""; }; - BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PixelDumpSupport.h; sourceTree = ""; }; - BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.objcpp; name = PixelDumpSupportMac.mm; path = mac/PixelDumpSupportMac.mm; sourceTree = ""; }; - BCB284B20CFA82CB007E533E /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = /System/Library/Frameworks/ApplicationServices.framework; sourceTree = ""; }; - BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; name = ImageDiffCG.cpp; path = cg/ImageDiffCG.cpp; sourceTree = ""; }; - BCD08A580E10496B00A7D0C1 /* AccessibilityController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessibilityController.h; sourceTree = ""; }; - BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AccessibilityController.cpp; sourceTree = ""; }; - BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AccessibilityControllerMac.mm; path = mac/AccessibilityControllerMac.mm; sourceTree = ""; }; - BCF6C64F0C98E9C000AC063E /* GCController.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objcpp; fileEncoding = 30; path = GCController.cpp; sourceTree = ""; }; - E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MockGeolocationProvider.h; path = mac/MockGeolocationProvider.h; sourceTree = ""; }; - E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = MockGeolocationProvider.mm; path = mac/MockGeolocationProvider.mm; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 141BF21D096A441D00E0753C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 141BF439096A455900E0753C /* Carbon.framework in Frameworks */, - 141BF436096A455900E0753C /* Cocoa.framework in Frameworks */, - 141BF438096A455900E0753C /* JavaScriptCore.framework in Frameworks */, - 141BF435096A455900E0753C /* WebKit.framework in Frameworks */, - 0F37A4AA11E6629100275F54 /* QuartzCore.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9340994F08540CAE007F3BC8 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - AE8259F308D22463000507AB /* Carbon.framework in Frameworks */, - A84F608A08B136DA00E9745F /* Cocoa.framework in Frameworks */, - A817090408B164D300CCB9FB /* JavaScriptCore.framework in Frameworks */, - 23BCB8900EA57623003C6289 /* OpenGL.framework in Frameworks */, - 9340995108540CAE007F3BC8 /* WebKit.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B5A7525F08AF4A4A00138E45 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - AE8259F408D22463000507AB /* Carbon.framework in Frameworks */, - A817090008B163EF00CCB9FB /* Cocoa.framework in Frameworks */, - B5A752A208AF5D1F00138E45 /* QuartzCore.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 08FB7794FE84155DC02AAC07 /* DumpRenderTree */ = { - isa = PBXGroup; - children = ( - 32A70AAB03705E1F00C91783 /* DumpRenderTreePrefix.h */, - 1422A2750AF6F4BD00E1A883 /* Delegates */, - 1422A2690AF6F45200E1A883 /* Controllers */, - BCB284870CFA81ED007E533E /* PixelDump */, - A803FF7409CAAD08009B2A37 /* DumpRenderTree.h */, - BCA18C460C9B5B9400114369 /* DumpRenderTree.mm */, - A8B91BF70CF522B4008F91FF /* CheckedMalloc.cpp */, - A8B91BF90CF522B4008F91FF /* CheckedMalloc.h */, - BC4741290D038A4C0072B006 /* JavaScriptThreading.h */, - BC4741400D038A570072B006 /* JavaScriptThreadingPthreads.cpp */, - BCA18C0A0C9B59EF00114369 /* DumpRenderTreeMac.h */, - BCA18B730C9B08F100114369 /* DumpRenderTreeDraggingInfo.h */, - BCA18B740C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm */, - A8D79CE80FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h */, - A8D79CE90FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m */, - BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */, - BC9D90220C97472E0099A4A3 /* WorkQueue.h */, - BC9D90230C97472E0099A4A3 /* WorkQueueItem.h */, - A8B91AD20CF3B305008F91FF /* AppKit Overrides */, - A8B91AC40CF3B170008F91FF /* ObjCPlugin */, - 141BF1F5096A439800E0753C /* TestNetscapePlugIn */, - 9345229B0BD12B2C0086EDA0 /* Resources */, - A803FF6409CAACC1009B2A37 /* Frameworks */, - 9340995508540CAF007F3BC8 /* Products */, - BCB281ED0CFA711D007E533E /* Configurations */, - ); - name = DumpRenderTree; - sourceTree = ""; - }; - 141BF1F5096A439800E0753C /* TestNetscapePlugIn */ = { - isa = PBXGroup; - children = ( - 141BF448096A45C800E0753C /* Info.plist */, - 1AC6C77F0D07589B00CD3161 /* main.cpp */, - 1AC6C7800D07589B00CD3161 /* PluginObject.cpp */, - 0F37A4A611E6628700275F54 /* PluginObjectMac.mm */, - 141BF447096A45C800E0753C /* PluginObject.h */, - 1AC6C7810D07589B00CD3161 /* TestObject.cpp */, - 1A8F024C0BB9B056008CFA34 /* TestObject.h */, - ); - path = TestNetscapePlugIn; - sourceTree = ""; - }; - 1422A2690AF6F45200E1A883 /* Controllers */ = { - isa = PBXGroup; - children = ( - BCD08B390E1057EF00A7D0C1 /* AccessibilityController.cpp */, - BCD08A580E10496B00A7D0C1 /* AccessibilityController.h */, - BCD08B700E1059D200A7D0C1 /* AccessibilityControllerMac.mm */, - BC0E24DF0E2D9451001B6BC2 /* AccessibilityUIElement.cpp */, - BC0E24DE0E2D9451001B6BC2 /* AccessibilityUIElement.h */, - BC0E26140E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm */, - BCA18B360C9B021900114369 /* AppleScriptController.h */, - BCA18B370C9B021900114369 /* AppleScriptController.m */, - BCA18B6B0C9B08DB00114369 /* EventSendingController.h */, - BCA18B6C0C9B08DB00114369 /* EventSendingController.mm */, - BCF6C64F0C98E9C000AC063E /* GCController.cpp */, - 14770FE00A22ADF7009342EE /* GCController.h */, - BCA18B210C9B014B00114369 /* GCControllerMac.mm */, - BC0131D80C9772010087317D /* LayoutTestController.cpp */, - BC0131D90C9772010087317D /* LayoutTestController.h */, - BCA18B220C9B014B00114369 /* LayoutTestControllerMac.mm */, - E1B7808511AF1643007E1BC2 /* MockGeolocationProvider.h */, - E1B7808711AF1669007E1BC2 /* MockGeolocationProvider.mm */, - BCA18B6D0C9B08DB00114369 /* NavigationController.h */, - BCA18B6E0C9B08DB00114369 /* NavigationController.m */, - BCA18B2F0C9B01B400114369 /* ObjCController.h */, - BCA18B300C9B01B400114369 /* ObjCController.m */, - 933BF5A90F93FA5C000F0441 /* PlainTextController.h */, - 933BF5AA0F93FA5C000F0441 /* PlainTextController.mm */, - BCA18B3A0C9B024900114369 /* TextInputController.h */, - BCA18B480C9B02C400114369 /* TextInputController.m */, - ); - name = Controllers; - sourceTree = ""; - usesTabs = 0; - }; - 1422A2750AF6F4BD00E1A883 /* Delegates */ = { - isa = PBXGroup; - children = ( - BCA18B570C9B08C200114369 /* EditingDelegate.h */, - BCA18B580C9B08C200114369 /* EditingDelegate.mm */, - BCA18B590C9B08C200114369 /* FrameLoadDelegate.h */, - BCA18B5A0C9B08C200114369 /* FrameLoadDelegate.mm */, - 5185F69E10714A57007AA393 /* HistoryDelegate.h */, - 5185F69F10714A57007AA393 /* HistoryDelegate.mm */, - BCA18B5B0C9B08C200114369 /* PolicyDelegate.h */, - BCA18B5C0C9B08C200114369 /* PolicyDelegate.mm */, - BCA18B5D0C9B08C200114369 /* ResourceLoadDelegate.h */, - BCA18B5E0C9B08C200114369 /* ResourceLoadDelegate.mm */, - BCA18B5F0C9B08C200114369 /* UIDelegate.h */, - BCA18B600C9B08C200114369 /* UIDelegate.mm */, - ); - name = Delegates; - sourceTree = ""; - }; - 9340995508540CAF007F3BC8 /* Products */ = { - isa = PBXGroup; - children = ( - 9340995408540CAF007F3BC8 /* DumpRenderTree */, - B5A7526708AF4A4A00138E45 /* ImageDiff */, - 141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */, - ); - name = Products; - sourceTree = ""; - }; - 9345229B0BD12B2C0086EDA0 /* Resources */ = { - isa = PBXGroup; - children = ( - 3713EDDF115BE16F00705720 /* ColorBits-A.png */, - 3713EDE0115BE16F00705720 /* ColorBits.ttf */, - AA7F10C20CB3C1030003BDC9 /* AHEM____.TTF */, - 375F09710DAC3CB600C8B4E5 /* WebKitWeightWatcher100.ttf */, - 375F09720DAC3CB600C8B4E5 /* WebKitWeightWatcher200.ttf */, - 375F09730DAC3CB600C8B4E5 /* WebKitWeightWatcher300.ttf */, - 375F09740DAC3CB600C8B4E5 /* WebKitWeightWatcher400.ttf */, - 375F09750DAC3CB600C8B4E5 /* WebKitWeightWatcher500.ttf */, - 375F09760DAC3CB600C8B4E5 /* WebKitWeightWatcher600.ttf */, - 375F09770DAC3CB600C8B4E5 /* WebKitWeightWatcher700.ttf */, - 375F09780DAC3CB600C8B4E5 /* WebKitWeightWatcher800.ttf */, - 375F09790DAC3CB600C8B4E5 /* WebKitWeightWatcher900.ttf */, - ); - name = Resources; - sourceTree = ""; - }; - A803FF6409CAACC1009B2A37 /* Frameworks */ = { - isa = PBXGroup; - children = ( - BCB284B20CFA82CB007E533E /* ApplicationServices.framework */, - AE8257EF08D22389000507AB /* Carbon.framework */, - A84F608908B136DA00E9745F /* Cocoa.framework */, - A817090308B164D300CCB9FB /* JavaScriptCore.framework */, - 23BCB88F0EA57623003C6289 /* OpenGL.framework */, - B5A752A108AF5D1F00138E45 /* QuartzCore.framework */, - 9335435F03D75502008635CE /* WebKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - A8B91AC40CF3B170008F91FF /* ObjCPlugin */ = { - isa = PBXGroup; - children = ( - BCA18B760C9B08F100114369 /* ObjCPlugin.h */, - BCA18B770C9B08F100114369 /* ObjCPlugin.m */, - BCA18B780C9B08F100114369 /* ObjCPluginFunction.h */, - BCA18B790C9B08F100114369 /* ObjCPluginFunction.m */, - BCA18B250C9B015C00114369 /* WorkQueueItemMac.mm */, - ); - name = ObjCPlugin; - sourceTree = ""; - }; - A8B91AD20CF3B305008F91FF /* AppKit Overrides */ = { - isa = PBXGroup; - children = ( - A8B91ADF0CF3B372008F91FF /* DumpRenderTreePasteboard.h */, - A8B91AD70CF3B32F008F91FF /* DumpRenderTreePasteboard.m */, - A8B91ADD0CF3B372008F91FF /* DumpRenderTreeWindow.h */, - A8B91AD90CF3B32F008F91FF /* DumpRenderTreeWindow.mm */, - ); - name = "AppKit Overrides"; - sourceTree = ""; - }; - BCB281ED0CFA711D007E533E /* Configurations */ = { - isa = PBXGroup; - children = ( - BCB281EE0CFA713D007E533E /* Base.xcconfig */, - BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */, - BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */, - BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */, - BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */, - ); - name = Configurations; - sourceTree = ""; - }; - BCB284870CFA81ED007E533E /* PixelDump */ = { - isa = PBXGroup; - children = ( - BCB284F30CFA84F2007E533E /* ImageDiffCG.cpp */, - 8465E2C60FFA8DF2003B8342 /* PixelDumpSupport.cpp */, - BCB2848A0CFA820F007E533E /* PixelDumpSupport.h */, - BCB284880CFA8202007E533E /* PixelDumpSupportCG.cpp */, - BCB284890CFA8202007E533E /* PixelDumpSupportCG.h */, - BCB2848C0CFA8221007E533E /* PixelDumpSupportMac.mm */, - ); - name = PixelDump; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 141BF44E096A45DD00E0753C /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 141BF453096A45EB00E0753C /* PluginObject.h in Headers */, - 1A8F02E80BB9B4EC008CFA34 /* TestObject.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9340994B08540CAE007F3BC8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BC0E24E00E2D9451001B6BC2 /* AccessibilityUIElement.h in Headers */, - BCA18B380C9B021900114369 /* AppleScriptController.h in Headers */, - A8B91BFF0CF522B4008F91FF /* CheckedMalloc.h in Headers */, - BCA18B7A0C9B08F100114369 /* DumpRenderTreeDraggingInfo.h in Headers */, - A8D79CEA0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.h in Headers */, - BCA18C0B0C9B59EF00114369 /* DumpRenderTreeMac.h in Headers */, - A8B91AE20CF3B372008F91FF /* DumpRenderTreePasteboard.h in Headers */, - 9340994C08540CAE007F3BC8 /* DumpRenderTreePrefix.h in Headers */, - A8B91AE00CF3B372008F91FF /* DumpRenderTreeWindow.h in Headers */, - BCA18B610C9B08C200114369 /* EditingDelegate.h in Headers */, - BCA18B6F0C9B08DB00114369 /* EventSendingController.h in Headers */, - BCA18B630C9B08C200114369 /* FrameLoadDelegate.h in Headers */, - 14770FE20A22ADF7009342EE /* GCController.h in Headers */, - BC47412A0D038A4C0072B006 /* JavaScriptThreading.h in Headers */, - BC0131DB0C9772010087317D /* LayoutTestController.h in Headers */, - BCA18B710C9B08DB00114369 /* NavigationController.h in Headers */, - BCA18B310C9B01B400114369 /* ObjCController.h in Headers */, - BCA18B7D0C9B08F100114369 /* ObjCPlugin.h in Headers */, - BCA18B7F0C9B08F100114369 /* ObjCPluginFunction.h in Headers */, - BCB284C70CFA83C4007E533E /* PixelDumpSupport.h in Headers */, - BCB284D00CFA83CC007E533E /* PixelDumpSupportCG.h in Headers */, - 933BF5AB0F93FA5C000F0441 /* PlainTextController.h in Headers */, - BCA18B650C9B08C200114369 /* PolicyDelegate.h in Headers */, - BCA18B670C9B08C200114369 /* ResourceLoadDelegate.h in Headers */, - BCA18B3C0C9B024900114369 /* TextInputController.h in Headers */, - BCA18B690C9B08C200114369 /* UIDelegate.h in Headers */, - BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */, - BC9D90260C97472E0099A4A3 /* WorkQueueItem.h in Headers */, - 5185F6B310714E12007AA393 /* HistoryDelegate.h in Headers */, - E1B7816711AF31C3007E1BC2 /* MockGeolocationProvider.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B5A7525B08AF4A4A00138E45 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXLegacyTarget section */ - 5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */ = { - isa = PBXLegacyTarget; - buildArgumentsString = "$(ACTION)"; - buildConfigurationList = 5DC82A6E1023C92A00FD1D3B /* Build configuration list for PBXLegacyTarget "DumpRenderTree Perl Support" */; - buildPhases = ( - ); - buildToolPath = /usr/bin/make; - buildWorkingDirectory = "$(SRCROOT)/mac/PerlSupport"; - dependencies = ( - ); - name = "DumpRenderTree Perl Support"; - passBuildSettingsInEnvironment = 1; - productName = "DumpRenderTree Perl Support"; - }; -/* End PBXLegacyTarget section */ - -/* Begin PBXNativeTarget section */ - 141BF21E096A441D00E0753C /* TestNetscapePlugIn */ = { - isa = PBXNativeTarget; - buildConfigurationList = 141BF221096A441E00E0753C /* Build configuration list for PBXNativeTarget "TestNetscapePlugIn" */; - buildPhases = ( - 141BF21B096A441D00E0753C /* Resources */, - 141BF44E096A45DD00E0753C /* Headers */, - 141BF21C096A441D00E0753C /* Sources */, - 141BF21D096A441D00E0753C /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = TestNetscapePlugIn; - productName = TestNetscapePlugIn.plugin; - productReference = 141BF233096A44CF00E0753C /* TestNetscapePlugIn.plugin */; - productType = "com.apple.product-type.bundle"; - }; - 9340994A08540CAE007F3BC8 /* DumpRenderTree */ = { - isa = PBXNativeTarget; - buildConfigurationList = 149C29BF08902C6D008A9EFC /* Build configuration list for PBXNativeTarget "DumpRenderTree" */; - buildPhases = ( - 9340994B08540CAE007F3BC8 /* Headers */, - 9340994D08540CAE007F3BC8 /* Sources */, - 9340994F08540CAE007F3BC8 /* Frameworks */, - 5DB9ACAA0F722C4400684641 /* Copy Font Files */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = DumpRenderTree; - productInstallPath = "$(HOME)/bin"; - productName = DumpRenderTree; - productReference = 9340995408540CAF007F3BC8 /* DumpRenderTree */; - productType = "com.apple.product-type.tool"; - }; - B5A7525A08AF4A4A00138E45 /* ImageDiff */ = { - isa = PBXNativeTarget; - buildConfigurationList = B5A7526408AF4A4A00138E45 /* Build configuration list for PBXNativeTarget "ImageDiff" */; - buildPhases = ( - B5A7525B08AF4A4A00138E45 /* Headers */, - B5A7525D08AF4A4A00138E45 /* Sources */, - B5A7525F08AF4A4A00138E45 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ImageDiff; - productInstallPath = "$(HOME)/bin"; - productName = DumpRenderTree; - productReference = B5A7526708AF4A4A00138E45 /* ImageDiff */; - productType = "com.apple.product-type.tool"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 08FB7793FE84155DC02AAC07 /* Project object */ = { - isa = PBXProject; - buildConfigurationList = 149C29C308902C6D008A9EFC /* Build configuration list for PBXProject "DumpRenderTree" */; - compatibilityVersion = "Xcode 2.4"; - hasScannedForEncodings = 1; - mainGroup = 08FB7794FE84155DC02AAC07 /* DumpRenderTree */; - productRefGroup = 9340995508540CAF007F3BC8 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - A84F608D08B1370600E9745F /* All */, - 9340994A08540CAE007F3BC8 /* DumpRenderTree */, - B5A7525A08AF4A4A00138E45 /* ImageDiff */, - 141BF21E096A441D00E0753C /* TestNetscapePlugIn */, - 5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 141BF21B096A441D00E0753C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 141BF21C096A441D00E0753C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1AC6C8490D07638600CD3161 /* main.cpp in Sources */, - 1AC6C84A0D07638600CD3161 /* PluginObject.cpp in Sources */, - 1AC6C84B0D07638600CD3161 /* TestObject.cpp in Sources */, - 0F37A4A711E6628700275F54 /* PluginObjectMac.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9340994D08540CAE007F3BC8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BCD08B3A0E1057EF00A7D0C1 /* AccessibilityController.cpp in Sources */, - BCD08B710E1059D200A7D0C1 /* AccessibilityControllerMac.mm in Sources */, - BC0E24E10E2D9451001B6BC2 /* AccessibilityUIElement.cpp in Sources */, - BC0E26150E2DA4C6001B6BC2 /* AccessibilityUIElementMac.mm in Sources */, - BCA18B390C9B021900114369 /* AppleScriptController.m in Sources */, - A8B91BFD0CF522B4008F91FF /* CheckedMalloc.cpp in Sources */, - BCA18C470C9B5B9400114369 /* DumpRenderTree.mm in Sources */, - BCA18B7B0C9B08F100114369 /* DumpRenderTreeDraggingInfo.mm in Sources */, - A8D79CEB0FC28B2C004AC8FE /* DumpRenderTreeFileDraggingSource.m in Sources */, - A8B91ADA0CF3B32F008F91FF /* DumpRenderTreePasteboard.m in Sources */, - A8B91ADC0CF3B32F008F91FF /* DumpRenderTreeWindow.mm in Sources */, - BCA18B620C9B08C200114369 /* EditingDelegate.mm in Sources */, - BCA18B700C9B08DB00114369 /* EventSendingController.mm in Sources */, - BCA18B640C9B08C200114369 /* FrameLoadDelegate.mm in Sources */, - BCF6C6500C98E9C000AC063E /* GCController.cpp in Sources */, - BCA18B230C9B014B00114369 /* GCControllerMac.mm in Sources */, - BC4741410D038A570072B006 /* JavaScriptThreadingPthreads.cpp in Sources */, - BC0131DA0C9772010087317D /* LayoutTestController.cpp in Sources */, - BCA18B240C9B014B00114369 /* LayoutTestControllerMac.mm in Sources */, - BCA18B720C9B08DB00114369 /* NavigationController.m in Sources */, - BCA18B320C9B01B400114369 /* ObjCController.m in Sources */, - BCA18B7E0C9B08F100114369 /* ObjCPlugin.m in Sources */, - BCA18B800C9B08F100114369 /* ObjCPluginFunction.m in Sources */, - 8465E2C70FFA8DF2003B8342 /* PixelDumpSupport.cpp in Sources */, - BCB284CD0CFA83C8007E533E /* PixelDumpSupportCG.cpp in Sources */, - BCB284D60CFA83D1007E533E /* PixelDumpSupportMac.mm in Sources */, - 933BF5AC0F93FA5C000F0441 /* PlainTextController.mm in Sources */, - BCA18B660C9B08C200114369 /* PolicyDelegate.mm in Sources */, - BCA18B680C9B08C200114369 /* ResourceLoadDelegate.mm in Sources */, - BCA18B490C9B02C400114369 /* TextInputController.m in Sources */, - BCA18B6A0C9B08C200114369 /* UIDelegate.mm in Sources */, - BC9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */, - BCA18B260C9B015C00114369 /* WorkQueueItemMac.mm in Sources */, - 5185F6B210714E07007AA393 /* HistoryDelegate.mm in Sources */, - E1B7816511AF31B7007E1BC2 /* MockGeolocationProvider.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B5A7525D08AF4A4A00138E45 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BCB284F60CFA84F8007E533E /* ImageDiffCG.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 141BF238096A451E00E0753C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 141BF21E096A441D00E0753C /* TestNetscapePlugIn */; - targetProxy = 141BF237096A451E00E0753C /* PBXContainerItemProxy */; - }; - 5DC82A701023C93D00FD1D3B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 5DC82A661023C8DE00FD1D3B /* DumpRenderTree Perl Support */; - targetProxy = 5DC82A6F1023C93D00FD1D3B /* PBXContainerItemProxy */; - }; - A84F608F08B1370E00E9745F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = B5A7525A08AF4A4A00138E45 /* ImageDiff */; - targetProxy = A84F608E08B1370E00E9745F /* PBXContainerItemProxy */; - }; - A84F609108B1370E00E9745F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 9340994A08540CAE007F3BC8 /* DumpRenderTree */; - targetProxy = A84F609008B1370E00E9745F /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 141BF222096A441E00E0753C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */; - buildSettings = { - INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist; - }; - name = Debug; - }; - 141BF223096A441E00E0753C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */; - buildSettings = { - INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist; - }; - name = Release; - }; - 149C29C008902C6D008A9EFC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */; - buildSettings = { - }; - name = Debug; - }; - 149C29C108902C6D008A9EFC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */; - buildSettings = { - }; - name = Release; - }; - 149C29C408902C6D008A9EFC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */; - buildSettings = { - GCC_OPTIMIZATION_LEVEL = 0; - }; - name = Debug; - }; - 149C29C508902C6D008A9EFC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB282F40CFA7450007E533E /* DebugRelease.xcconfig */; - buildSettings = { - }; - name = Release; - }; - 5DC82A671023C8DE00FD1D3B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "DumpRenderTree Perl Support"; - }; - name = Debug; - }; - 5DC82A681023C8DE00FD1D3B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "DumpRenderTree Perl Support"; - }; - name = Release; - }; - 5DC82A691023C8DE00FD1D3B /* Production */ = { - isa = XCBuildConfiguration; - buildSettings = { - PRODUCT_NAME = "DumpRenderTree Perl Support"; - }; - name = Production; - }; - 90CBC3500F748B1300A712B7 /* Production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB281EE0CFA713D007E533E /* Base.xcconfig */; - buildSettings = { - WEBKIT_FRAMEWORK_RESOURCES_PATH = WebKit.framework/Versions/A/Resources; - }; - name = Production; - }; - 90CBC3510F748B1300A712B7 /* Production */ = { - isa = XCBuildConfiguration; - buildSettings = { - INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)"; - PRODUCT_NAME = All; - }; - name = Production; - }; - 90CBC3520F748B1300A712B7 /* Production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB281F00CFA713D007E533E /* DumpRenderTree.xcconfig */; - buildSettings = { - INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)"; - SKIP_INSTALL = NO; - }; - name = Production; - }; - 90CBC3530F748B1300A712B7 /* Production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */; - buildSettings = { - INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)"; - SKIP_INSTALL = NO; - }; - name = Production; - }; - 90CBC3540F748B1300A712B7 /* Production */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283DE0CFA7C20007E533E /* TestNetscapePlugIn.xcconfig */; - buildSettings = { - INFOPLIST_FILE = TestNetscapePlugIn/mac/Info.plist; - INSTALL_PATH = "$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)"; - SKIP_INSTALL = NO; - }; - name = Production; - }; - A84F609308B1371400E9745F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = NO; - GCC_GENERATE_DEBUGGING_SYMBOLS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - OTHER_CFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = All; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Debug; - }; - A84F609408B1371400E9745F /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COPY_PHASE_STRIP = YES; - GCC_GENERATE_DEBUGGING_SYMBOLS = NO; - GCC_OPTIMIZATION_LEVEL = 0; - OTHER_CFLAGS = ""; - OTHER_REZFLAGS = ""; - PRODUCT_NAME = All; - SECTORDER_FLAGS = ""; - WARNING_CFLAGS = ( - "-Wmost", - "-Wno-four-char-constants", - "-Wno-unknown-pragmas", - ); - }; - name = Release; - }; - B5A7526508AF4A4A00138E45 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */; - buildSettings = { - }; - name = Debug; - }; - B5A7526608AF4A4A00138E45 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BCB283D80CFA7AFD007E533E /* ImageDiff.xcconfig */; - buildSettings = { - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 141BF221096A441E00E0753C /* Build configuration list for PBXNativeTarget "TestNetscapePlugIn" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 141BF222096A441E00E0753C /* Debug */, - 141BF223096A441E00E0753C /* Release */, - 90CBC3540F748B1300A712B7 /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; - 149C29BF08902C6D008A9EFC /* Build configuration list for PBXNativeTarget "DumpRenderTree" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 149C29C008902C6D008A9EFC /* Debug */, - 149C29C108902C6D008A9EFC /* Release */, - 90CBC3520F748B1300A712B7 /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; - 149C29C308902C6D008A9EFC /* Build configuration list for PBXProject "DumpRenderTree" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 149C29C408902C6D008A9EFC /* Debug */, - 149C29C508902C6D008A9EFC /* Release */, - 90CBC3500F748B1300A712B7 /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; - 5DC82A6E1023C92A00FD1D3B /* Build configuration list for PBXLegacyTarget "DumpRenderTree Perl Support" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5DC82A671023C8DE00FD1D3B /* Debug */, - 5DC82A681023C8DE00FD1D3B /* Release */, - 5DC82A691023C8DE00FD1D3B /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; - A84F609208B1371400E9745F /* Build configuration list for PBXAggregateTarget "All" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A84F609308B1371400E9745F /* Debug */, - A84F609408B1371400E9745F /* Release */, - 90CBC3510F748B1300A712B7 /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; - B5A7526408AF4A4A00138E45 /* Build configuration list for PBXNativeTarget "ImageDiff" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B5A7526508AF4A4A00138E45 /* Debug */, - B5A7526608AF4A4A00138E45 /* Release */, - 90CBC3530F748B1300A712B7 /* Production */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Production; - }; -/* End XCConfigurationList section */ - }; - rootObject = 08FB7793FE84155DC02AAC07 /* Project object */; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTreeFileDraggingSource.h --- a/WebKitTools/DumpRenderTree/DumpRenderTreeFileDraggingSource.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -// Copyright (c) 2009, Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -#import - -// An implementation of NSDraggingSource for use with DumpRenderTreeDraggingInfo when dragging files -// Used by -[EventSendingController beginDragWithFiles:] - -@interface DumpRenderTreeFileDraggingSource : NSObject { -} - -- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m --- a/WebKitTools/DumpRenderTree/DumpRenderTreeFileDraggingSource.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -// Copyright (c) 2009, Google Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions are -// met: -// -// * Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// * Redistributions in binary form must reproduce the above -// copyright notice, this list of conditions and the following disclaimer -// in the documentation and/or other materials provided with the -// distribution. -// * Neither the name of Google Inc. nor the names of its -// contributors may be used to endorse or promote products derived from -// this software without specific prior written permission. -// -// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -#import "DumpRenderTreeFileDraggingSource.h" - -@implementation DumpRenderTreeFileDraggingSource - -- (NSDragOperation)draggingSourceOperationMaskForLocal:(BOOL)flag -{ - return NSDragOperationCopy; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/DumpRenderTreePrefix.h --- a/WebKitTools/DumpRenderTree/DumpRenderTreePrefix.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -/* - * Copyright (C) 2005 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifdef __OBJC__ - -#import - -#endif - -// If we don't define these, they get defined in windef.h. -// We want to use std::min and std::max -#define max max -#define min min diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ASCIICType.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ASCIICType.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Assertions.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Assertions.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Atomics.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Atomics.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/FastMalloc.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/FastMalloc.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashMap.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashMap.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashSet.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashSet.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashTraits.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/HashTraits.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Locker.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Locker.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/MainThread.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/MainThread.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/MathExtras.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/MathExtras.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Noncopyable.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Noncopyable.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/OwnPtr.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/OwnPtr.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/OwnPtrCommon.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/OwnPtrCommon.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/PassOwnPtr.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/PassOwnPtr.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/PassRefPtr.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/PassRefPtr.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Platform.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Platform.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RefCounted.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RefCounted.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RefPtr.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RefPtr.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RetainPtr.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/RetainPtr.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/StringExtras.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/StringExtras.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeShared.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ThreadSafeShared.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Threading.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Threading.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ThreadingPrimitives.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/ThreadingPrimitives.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Vector.h --- a/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/Vector.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/GCController.cpp --- a/WebKitTools/DumpRenderTree/GCController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,100 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "GCController.h" - -#include -#include - -GCController::GCController() -{ -} - -GCController::~GCController() -{ -} - -// Static Functions - -static JSValueRef collectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - GCController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->collect(); - return JSValueMakeUndefined(context); -} - -static JSValueRef collectOnAlternateThreadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - bool waitUntilDone = false; - if (argumentCount > 0) - waitUntilDone = JSValueToBoolean(context, arguments[0]); - - GCController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->collectOnAlternateThread(waitUntilDone); - - return JSValueMakeUndefined(context); -} - -static JSValueRef getJSObjectCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - GCController* controller = static_cast(JSObjectGetPrivate(thisObject)); - size_t jsObjectCount = controller->getJSObjectCount(); - - return JSValueMakeNumber(context, jsObjectCount); -} - -// Object Creation - -void GCController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) -{ - JSRetainPtr gcControllerStr(Adopt, JSStringCreateWithUTF8CString("GCController")); - - JSClassRef classRef = getJSClass(); - JSValueRef gcControllerObject = JSObjectMake(context, classRef, this); - JSClassRelease(classRef); - - JSObjectSetProperty(context, windowObject, gcControllerStr.get(), gcControllerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception); -} - -JSClassRef GCController::getJSClass() -{ - static JSStaticFunction staticFunctions[] = { - { "collect", collectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "collectOnAlternateThread", collectOnAlternateThreadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "getJSObjectCount", getJSObjectCountCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } - }; - - static JSClassDefinition classDefinition = { - 0, kJSClassAttributeNone, "GCController", 0, 0, staticFunctions, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 - }; - - return JSClassCreate(&classDefinition); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/GCController.h --- a/WebKitTools/DumpRenderTree/GCController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,50 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef GCController_h -#define GCController_h - -#include - -class GCController { -public: - GCController(); - ~GCController(); - - void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception); - - // Controller Methods - platfrom independant implementations - void collect() const; - void collectOnAlternateThread(bool waitUntilDone) const; - size_t getJSObjectCount() const; - -private: - static JSClassRef getJSClass(); -}; - -#endif // GCController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/JavaScriptThreading.h --- a/WebKitTools/DumpRenderTree/JavaScriptThreading.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,40 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef JavaScriptThreading_h -#define JavaScriptThreading_h - -/* These functions start/stop threads used to abuse the JavaScript interpreter - and assure that our JS implementation remains threadsafe */ - -void startJavaScriptThreads(); -void stopJavaScriptThreads(); - -#endif // JavaScriptThreading_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/LayoutTestController.cpp --- a/WebKitTools/DumpRenderTree/LayoutTestController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1936 +0,0 @@ -/* - * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "LayoutTestController.h" - -#include "WorkQueue.h" -#include "WorkQueueItem.h" -#include -#include -#include -#include -#include -#include -#include -#include - -LayoutTestController::LayoutTestController(const std::string& testPathOrURL, const std::string& expectedPixelHash) - : m_dumpAsPDF(false) - , m_dumpAsText(false) - , m_dumpBackForwardList(false) - , m_dumpChildFrameScrollPositions(false) - , m_dumpChildFramesAsText(false) - , m_dumpDOMAsWebArchive(false) - , m_dumpDatabaseCallbacks(false) - , m_dumpEditingCallbacks(false) - , m_dumpFrameLoadCallbacks(false) - , m_dumpHistoryDelegateCallbacks(false) - , m_dumpResourceLoadCallbacks(false) - , m_dumpResourceResponseMIMETypes(false) - , m_dumpSelectionRect(false) - , m_dumpSourceAsWebArchive(false) - , m_dumpStatusCallbacks(false) - , m_dumpTitleChanges(false) - , m_dumpIconChanges(false) - , m_dumpVisitedLinksCallback(false) - , m_dumpWillCacheResponse(false) - , m_generatePixelResults(true) - , m_callCloseOnWebViews(true) - , m_canOpenWindows(false) - , m_closeRemainingWindowsWhenComplete(true) - , m_newWindowsCopyBackForwardList(false) - , m_stopProvisionalFrameLoads(false) - , m_testOnscreen(false) - , m_testRepaint(false) - , m_testRepaintSweepHorizontally(false) - , m_waitToDump(false) - , m_willSendRequestReturnsNull(false) - , m_willSendRequestReturnsNullOnRedirect(false) - , m_windowIsKey(true) - , m_alwaysAcceptCookies(false) - , m_globalFlag(false) - , m_isGeolocationPermissionSet(false) - , m_geolocationPermission(false) - , m_handlesAuthenticationChallenges(false) - , m_isPrinting(false) - , m_deferMainResourceDataLoad(true) - , m_testPathOrURL(testPathOrURL) - , m_expectedPixelHash(expectedPixelHash) -{ -} - -PassRefPtr LayoutTestController::create(const std::string& testPathOrURL, const std::string& expectedPixelHash) -{ - return adoptRef(new LayoutTestController(testPathOrURL, expectedPixelHash)); -} - -// Static Functions - -static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpAsPDF(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpAsText(true); - - // Optional paramater, describing whether it's allowed to dump pixel results in dumpAsText mode. - controller->setGeneratePixelResults(argumentCount > 0 ? JSValueToBoolean(context, arguments[0]) : false); - - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpBackForwardList(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpChildFramesAsText(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpChildFrameScrollPositionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpChildFrameScrollPositions(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpDatabaseCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpDatabaseCallbacks(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpDOMAsWebArchiveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpDOMAsWebArchive(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpEditingCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpEditingCallbacks(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpFrameLoadCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpFrameLoadCallbacks(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpResourceLoadCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpResourceLoadCallbacks(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpResourceResponseMIMETypesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpResourceResponseMIMETypes(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpSelectionRectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpSelectionRect(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpSourceAsWebArchiveCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpSourceAsWebArchive(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpStatusCallbacksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpStatusCallbacks(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpTitleChangesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpTitleChanges(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpIconChangesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpIconChanges(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef dumpWillCacheResponseCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpWillCacheResponse(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef pathToLocalResourceCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr localPath(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - JSRetainPtr convertedPath(Adopt, controller->pathToLocalResource(context, localPath.get())); - if (!convertedPath) - return JSValueMakeUndefined(context); - - return JSValueMakeString(context, convertedPath.get()); -} - -static JSValueRef removeAllVisitedLinksCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDumpVisitedLinksCallback(true); - controller->removeAllVisitedLinks(); - return JSValueMakeUndefined(context); -} - -static JSValueRef repaintSweepHorizontallyCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTestRepaintSweepHorizontally(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef setCallCloseOnWebViewsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setCallCloseOnWebViews(JSValueToBoolean(context, arguments[0])); - return JSValueMakeUndefined(context); -} - -static JSValueRef setCanOpenWindowsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setCanOpenWindows(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef setCloseRemainingWindowsWhenCompleteCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setCloseRemainingWindowsWhenComplete(JSValueToBoolean(context, arguments[0])); - return JSValueMakeUndefined(context); -} - -static JSValueRef testOnscreenCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTestOnscreen(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef testRepaintCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTestRepaint(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef addDisallowedURLCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr url(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->addDisallowedURL(url.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef callShouldCloseOnWebViewCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - return JSValueMakeBoolean(context, controller->callShouldCloseOnWebView()); -} - -static JSValueRef clearAllDatabasesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->clearAllDatabases(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef clearBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->clearBackForwardList(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef clearPersistentUserStyleSheetCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->clearPersistentUserStyleSheet(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef decodeHostNameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr name(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr decodedHostName(Adopt, controller->copyDecodedHostName(name.get())); - return JSValueMakeString(context, decodedHostName.get()); -} - -static JSValueRef disableImageLoadingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation, needs windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->disableImageLoading(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef dispatchPendingLoadRequestsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation, needs windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->dispatchPendingLoadRequests(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef displayCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->display(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef encodeHostNameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr name(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr encodedHostName(Adopt, controller->copyEncodedHostName(name.get())); - return JSValueMakeString(context, encodedHostName.get()); -} - -static JSValueRef execCommandCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac & Windows implementations. - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr name(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - // Ignoring the second parameter (userInterface), as this command emulates a manual action. - - JSRetainPtr value; - if (argumentCount >= 3) { - value.adopt(JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - } else - value.adopt(JSStringCreateWithUTF8CString("")); - - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->execCommand(name.get(), value.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef counterValueForElementByIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - if (*exception) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr counterValue(controller->counterValueForElementById(elementId.get())); - if (!counterValue.get()) - return JSValueMakeUndefined(context); - return JSValueMakeString(context, counterValue.get()); -} - -static JSValueRef grantDesktopNotificationPermissionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - controller->grantDesktopNotificationPermission(JSValueToStringCopy(context, arguments[0], NULL)); - - return JSValueMakeUndefined(context); -} - -static JSValueRef isCommandEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac implementation. - - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr name(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - return JSValueMakeBoolean(context, controller->isCommandEnabled(name.get())); -} - -static JSValueRef overridePreferenceCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - JSRetainPtr key(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - JSRetainPtr value(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->overridePreference(key.get(), value.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef keepWebHistoryCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->keepWebHistory(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef computedStyleIncludingVisitedInfoCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 1) - return JSValueMakeUndefined(context); - - // Has mac implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return controller->computedStyleIncludingVisitedInfo(context, arguments[0]); -} - -static JSValueRef layerTreeAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeString(context, controller->layerTreeAsText().get()); -} - -static JSValueRef notifyDoneCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->notifyDone(); - return JSValueMakeUndefined(context); -} - -static bool parsePageParameters(JSContextRef context, int argumentCount, const JSValueRef* arguments, JSValueRef* exception, float& pageWidthInPixels, float& pageHeightInPixels) -{ - pageWidthInPixels = LayoutTestController::maxViewWidth; - pageHeightInPixels = LayoutTestController::maxViewHeight; - switch (argumentCount) { - case 2: - pageWidthInPixels = static_cast(JSValueToNumber(context, arguments[0], exception)); - if (*exception) - return false; - pageHeightInPixels = static_cast(JSValueToNumber(context, arguments[1], exception)); - if (*exception) - return false; - case 0: // Fall through. - break; - default: - return false; - } - return true; -} - -// Caller needs to delete[] propertyName. -static bool parsePagePropertyParameters(JSContextRef context, int argumentCount, const JSValueRef* arguments, JSValueRef* exception, char*& propertyName, int& pageNumber) -{ - pageNumber = 0; - switch (argumentCount) { - case 2: - pageNumber = static_cast(JSValueToNumber(context, arguments[1], exception)); - if (*exception) - return false; - // Fall through. - case 1: { - JSRetainPtr propertyNameString(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - if (*exception) - return false; - - size_t maxLength = JSStringGetMaximumUTF8CStringSize(propertyNameString.get()); - propertyName = new char[maxLength + 1]; - JSStringGetUTF8CString(propertyNameString.get(), propertyName, maxLength + 1); - return true; - } - case 0: - default: - return false; - } -} - -static bool parsePageNumber(JSContextRef context, int argumentCount, const JSValueRef* arguments, JSValueRef* exception, int& pageNumber) -{ - pageNumber = 0; - switch (argumentCount) { - case 1: - pageNumber = static_cast(JSValueToNumber(context, arguments[0], exception)); - if (*exception) - return false; - // Fall through. - case 0: - return true; - default: - return false; - } -} - -static bool parsePageNumberSizeMarings(JSContextRef context, int argumentCount, const JSValueRef* arguments, JSValueRef* exception, int& pageNumber, int& width, int& height, int& marginTop, int& marginRight, int& marginBottom, int& marginLeft) -{ - pageNumber = 0; - width = height = 0; - marginTop = marginRight = marginBottom = marginLeft = 0; - - switch (argumentCount) { - case 7: - marginLeft = static_cast(JSValueToNumber(context, arguments[6], exception)); - if (*exception) - return false; - // Fall through. - case 6: - marginBottom = static_cast(JSValueToNumber(context, arguments[5], exception)); - if (*exception) - return false; - // Fall through. - case 5: - marginRight = static_cast(JSValueToNumber(context, arguments[4], exception)); - if (*exception) - return false; - // Fall through. - case 4: - marginTop = static_cast(JSValueToNumber(context, arguments[3], exception)); - if (*exception) - return false; - // Fall through. - case 3: - height = static_cast(JSValueToNumber(context, arguments[2], exception)); - if (*exception) - return false; - // Fall through. - case 2: - width = static_cast(JSValueToNumber(context, arguments[1], exception)); - if (*exception) - return false; - // Fall through. - case 1: - pageNumber = static_cast(JSValueToNumber(context, arguments[0], exception)); - if (*exception) - return false; - // Fall through. - return true; - default: - return false; - } -} - -static JSValueRef pageNumberForElementByIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - float pageWidthInPixels = 0; - float pageHeightInPixels = 0; - if (!parsePageParameters(context, argumentCount - 1, arguments + 1, exception, pageWidthInPixels, pageHeightInPixels)) - return JSValueMakeUndefined(context); - - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - if (*exception) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - int pageNumber = controller->pageNumberForElementById(elementId.get(), pageWidthInPixels, pageHeightInPixels); - return JSValueMakeNumber(context, pageNumber); -} - -static JSValueRef numberOfPagesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - float pageWidthInPixels = 0; - float pageHeightInPixels = 0; - if (!parsePageParameters(context, argumentCount, arguments, exception, pageWidthInPixels, pageHeightInPixels)) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeNumber(context, controller->numberOfPages(pageWidthInPixels, pageHeightInPixels)); -} - -static JSValueRef pagePropertyCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - char* propertyName = 0; - int pageNumber = 0; - if (!parsePagePropertyParameters(context, argumentCount, arguments, exception, propertyName, pageNumber)) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSValueRef value = JSValueMakeString(context, controller->pageProperty(propertyName, pageNumber).get()); - - delete[] propertyName; - return value; -} - -static JSValueRef isPageBoxVisibleCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int pageNumber = 0; - if (!parsePageNumber(context, argumentCount, arguments, exception, pageNumber)) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeBoolean(context, controller->isPageBoxVisible(pageNumber)); -} - -static JSValueRef pageSizeAndMarginsInPixelsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int pageNumber = 0; - int width = 0, height = 0; - int marginTop = 0, marginRight = 0, marginBottom = 0, marginLeft = 0; - if (!parsePageNumberSizeMarings(context, argumentCount, arguments, exception, pageNumber, width, height, marginTop, marginRight, marginBottom, marginLeft)) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeString(context, controller->pageSizeAndMarginsInPixels(pageNumber, width, height, marginTop, marginRight, marginBottom, marginLeft).get()); -} - -static JSValueRef queueBackNavigationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - double howFarBackDouble = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueBackNavigation(static_cast(howFarBackDouble)); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueForwardNavigationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - double howFarForwardDouble = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueForwardNavigation(static_cast(howFarForwardDouble)); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueLoadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr url(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - JSRetainPtr target; - if (argumentCount >= 2) { - target.adopt(JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - } else - target.adopt(JSStringCreateWithUTF8CString("")); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueLoad(url.get(), target.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueLoadHTMLStringCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac & Windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr content(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - JSRetainPtr baseURL; - if (argumentCount >= 2) { - baseURL.adopt(JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - } else - baseURL.adopt(JSStringCreateWithUTF8CString("")); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueLoadHTMLString(content.get(), baseURL.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueReloadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueReload(); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueLoadingScriptCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr script(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueLoadingScript(script.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef queueNonLoadingScriptCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - // May be able to be made platform independant by using shared WorkQueue - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr script(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->queueNonLoadingScript(script.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAcceptsEditingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAcceptsEditing(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAlwaysAcceptCookiesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAlwaysAcceptCookies(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAppCacheMaximumSizeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - double size = JSValueToNumber(context, arguments[0], NULL); - if (!isnan(size)) - controller->setAppCacheMaximumSize(static_cast(size)); - - return JSValueMakeUndefined(context); - -} - -static JSValueRef setAuthenticationPasswordCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr password(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - size_t maxLength = JSStringGetMaximumUTF8CStringSize(password.get()); - char* passwordBuffer = new char[maxLength + 1]; - JSStringGetUTF8CString(password.get(), passwordBuffer, maxLength + 1); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAuthenticationPassword(passwordBuffer); - delete[] passwordBuffer; - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAuthenticationUsernameCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr username(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - size_t maxLength = JSStringGetMaximumUTF8CStringSize(username.get()); - char* usernameBuffer = new char[maxLength + 1]; - JSStringGetUTF8CString(username.get(), usernameBuffer, maxLength + 1); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAuthenticationUsername(usernameBuffer); - delete[] usernameBuffer; - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAuthorAndUserStylesEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAuthorAndUserStylesEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setCacheModelCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac implementation. - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - int cacheModel = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setCacheModel(cacheModel); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setCustomPolicyDelegateCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - bool permissive = false; - if (argumentCount >= 2) - permissive = JSValueToBoolean(context, arguments[1]); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setCustomPolicyDelegate(JSValueToBoolean(context, arguments[0]), permissive); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setDatabaseQuotaCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - double quota = JSValueToNumber(context, arguments[0], NULL); - if (!isnan(quota)) - controller->setDatabaseQuota(static_cast(quota)); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setDeferMainResourceDataLoadCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac and Windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setDeferMainResourceDataLoad(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setDomainRelaxationForbiddenForURLSchemeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac and Windows implementation - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - - bool forbidden = JSValueToBoolean(context, arguments[0]); - JSRetainPtr scheme(Adopt, JSValueToStringCopy(context, arguments[1], 0)); - controller->setDomainRelaxationForbiddenForURLScheme(forbidden, scheme.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setMockGeolocationPositionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 3) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = reinterpret_cast(JSObjectGetPrivate(thisObject)); - controller->setMockGeolocationPosition(JSValueToNumber(context, arguments[0], NULL), // latitude - JSValueToNumber(context, arguments[1], NULL), // longitude - JSValueToNumber(context, arguments[2], NULL)); // accuracy - - return JSValueMakeUndefined(context); -} - -static JSValueRef setMockGeolocationErrorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - int code = JSValueToNumber(context, arguments[0], NULL); - JSRetainPtr message(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = reinterpret_cast(JSObjectGetPrivate(thisObject)); - controller->setMockGeolocationError(code, message.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setNewWindowsCopyBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setNewWindowsCopyBackForwardList(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setGeolocationPermissionCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setGeolocationPermission(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setHandlesAuthenticationChallengesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setHandlesAuthenticationChallenges(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setPOSIXLocaleCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr locale(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - controller->setPOSIXLocale(locale.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setIconDatabaseEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setIconDatabaseEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setJavaScriptProfilingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setJavaScriptProfilingEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setMainFrameIsFirstResponderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setMainFrameIsFirstResponder(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setPersistentUserStyleSheetLocationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr path(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setPersistentUserStyleSheetLocation(path.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setPrivateBrowsingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setPrivateBrowsingEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setJavaScriptCanAccessClipboardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setJavaScriptCanAccessClipboard(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setXSSAuditorEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setXSSAuditorEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setSpatialNavigationEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setSpatialNavigationEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setPrintingCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setIsPrinting(true); - return JSValueMakeUndefined(context); -} - - -static JSValueRef setFrameFlatteningEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setFrameFlatteningEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAllowUniversalAccessFromFileURLsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAllowUniversalAccessFromFileURLs(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setAllowFileAccessFromFileURLsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setAllowFileAccessFromFileURLs(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setTabKeyCyclesThroughElementsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTabKeyCyclesThroughElements(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setTimelineProfilingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTimelineProfilingEnabled(JSValueToBoolean(context, arguments[0])); - return JSValueMakeUndefined(context); -} - -static JSValueRef setUseDashboardCompatibilityModeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setUseDashboardCompatibilityMode(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setUserStyleSheetEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setUserStyleSheetEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setUserStyleSheetLocationCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr path(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setUserStyleSheetLocation(path.get()); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setWillSendRequestClearHeaderCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr header(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - size_t maxLength = JSStringGetMaximumUTF8CStringSize(header.get()); - char* headerBuffer = new char[maxLength + 1]; - JSStringGetUTF8CString(header.get(), headerBuffer, maxLength + 1); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWillSendRequestClearHeader(headerBuffer); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setWillSendRequestReturnsNullCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has cross-platform implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWillSendRequestReturnsNull(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setWillSendRequestReturnsNullOnRedirectCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has cross-platform implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWillSendRequestReturnsNullOnRedirect(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setWindowIsKeyCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWindowIsKey(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef waitUntilDoneCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWaitToDump(true); - - return JSValueMakeUndefined(context); -} - -static JSValueRef windowCountCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac implementation - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - int windows = controller->windowCount(); - return JSValueMakeNumber(context, windows); -} - -static JSValueRef setPopupBlockingEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setPopupBlockingEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setPluginsEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has mac & windows implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setPluginsEnabled(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - -static JSValueRef setSmartInsertDeleteEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setSmartInsertDeleteEnabled(JSValueToBoolean(context, arguments[0])); - return JSValueMakeUndefined(context); -} - -static JSValueRef setSelectTrailingWhitespaceEnabledCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setSelectTrailingWhitespaceEnabled(JSValueToBoolean(context, arguments[0])); - return JSValueMakeUndefined(context); -} - -static JSValueRef setStopProvisionalFrameLoadsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setStopProvisionalFrameLoads(true); - return JSValueMakeUndefined(context); -} - -static JSValueRef showWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->showWebInspector(); - return JSValueMakeUndefined(context); -} - -static JSValueRef closeWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setTimelineProfilingEnabled(false); - controller->closeWebInspector(); - return JSValueMakeUndefined(context); -} - -static JSValueRef evaluateInWebInspectorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - double callId = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - JSRetainPtr script(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - controller->evaluateInWebInspector(static_cast(callId), script.get()); - return JSValueMakeUndefined(context); -} - -static JSValueRef evaluateScriptInIsolatedWorldCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - double worldID = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - JSRetainPtr script(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - controller->evaluateScriptInIsolatedWorld(static_cast(worldID), JSContextGetGlobalObject(context), script.get()); - return JSValueMakeUndefined(context); -} - -static JSValueRef elementDoesAutoCompleteForElementWithIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - bool autoCompletes = controller->elementDoesAutoCompleteForElementWithId(elementId.get()); - - return JSValueMakeBoolean(context, autoCompletes); -} - -static JSValueRef pauseAnimationAtTimeOnElementWithIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 3) - return JSValueMakeUndefined(context); - - JSRetainPtr animationName(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - double time = JSValueToNumber(context, arguments[1], exception); - ASSERT(!*exception); - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeBoolean(context, controller->pauseAnimationAtTimeOnElementWithId(animationName.get(), time, elementId.get())); -} - -static JSValueRef pauseTransitionAtTimeOnElementWithIdCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 3) - return JSValueMakeUndefined(context); - - JSRetainPtr propertyName(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - double time = JSValueToNumber(context, arguments[1], exception); - ASSERT(!*exception); - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeBoolean(context, controller->pauseTransitionAtTimeOnElementWithId(propertyName.get(), time, elementId.get())); -} - -static JSValueRef sampleSVGAnimationForElementAtTimeCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 3) - return JSValueMakeUndefined(context); - - JSRetainPtr animationId(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - double time = JSValueToNumber(context, arguments[1], exception); - ASSERT(!*exception); - JSRetainPtr elementId(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeBoolean(context, controller->sampleSVGAnimationForElementAtTime(animationId.get(), time, elementId.get())); -} - -static JSValueRef numberOfActiveAnimationsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 0) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeNumber(context, controller->numberOfActiveAnimations()); -} - -static JSValueRef waitForPolicyDelegateCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t, const JSValueRef[], JSValueRef*) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->waitForPolicyDelegate(); - return JSValueMakeUndefined(context); -} - -static JSValueRef addOriginAccessWhitelistEntryCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 4) - return JSValueMakeUndefined(context); - - JSRetainPtr sourceOrigin(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - JSRetainPtr destinationProtocol(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - JSRetainPtr destinationHost(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - bool allowDestinationSubdomains = JSValueToBoolean(context, arguments[3]); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->addOriginAccessWhitelistEntry(sourceOrigin.get(), destinationProtocol.get(), destinationHost.get(), allowDestinationSubdomains); - return JSValueMakeUndefined(context); -} - -static JSValueRef removeOriginAccessWhitelistEntryCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 4) - return JSValueMakeUndefined(context); - - JSRetainPtr sourceOrigin(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - JSRetainPtr destinationProtocol(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - JSRetainPtr destinationHost(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - bool allowDestinationSubdomains = JSValueToBoolean(context, arguments[3]); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->removeOriginAccessWhitelistEntry(sourceOrigin.get(), destinationProtocol.get(), destinationHost.get(), allowDestinationSubdomains); - return JSValueMakeUndefined(context); -} - -static JSValueRef setScrollbarPolicyCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 2) - return JSValueMakeUndefined(context); - - JSRetainPtr orientation(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - JSRetainPtr policy(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setScrollbarPolicy(orientation.get(), policy.get()); - return JSValueMakeUndefined(context); -} - -static JSValueRef addUserScriptCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 3) - return JSValueMakeUndefined(context); - - JSRetainPtr source(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - bool runAtStart = JSValueToBoolean(context, arguments[1]); - bool allFrames = JSValueToBoolean(context, arguments[2]); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->addUserScript(source.get(), runAtStart, allFrames); - return JSValueMakeUndefined(context); -} - -static JSValueRef addUserStyleSheetCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 2) - return JSValueMakeUndefined(context); - - JSRetainPtr source(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - bool allFrames = JSValueToBoolean(context, arguments[1]); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->addUserStyleSheet(source.get(), allFrames); - return JSValueMakeUndefined(context); -} - -static JSValueRef apiTestNewWindowDataLoadBaseURLCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount != 2) - return JSValueMakeUndefined(context); - - JSRetainPtr utf8Data(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - JSRetainPtr baseURL(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->apiTestNewWindowDataLoadBaseURL(utf8Data.get(), baseURL.get()); - return JSValueMakeUndefined(context); -} - -static JSValueRef apiTestGoToCurrentBackForwardItemCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->apiTestGoToCurrentBackForwardItem(); - return JSValueMakeUndefined(context); -} - -static JSValueRef setWebViewEditableCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // Has Mac implementation - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setWebViewEditable(JSValueToBoolean(context, arguments[0])); - - return JSValueMakeUndefined(context); -} - - -static JSValueRef abortModalCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->abortModal(); - return JSValueMakeUndefined(context); -} - -static JSValueRef markerTextForListItemCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - if (argumentCount < 1) - return JSValueMakeUndefined(context); - return JSValueMakeString(context, controller->markerTextForListItem(context, arguments[0]).get()); -} - -static JSValueRef authenticateSessionCallback(JSContextRef context, JSObjectRef, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // authenticateSession(url, username, password) - if (argumentCount != 3) - return JSValueMakeUndefined(context); - - JSRetainPtr url(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - JSRetainPtr username(Adopt, JSValueToStringCopy(context, arguments[1], exception)); - ASSERT(!*exception); - JSRetainPtr password(Adopt, JSValueToStringCopy(context, arguments[2], exception)); - ASSERT(!*exception); - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->authenticateSession(url.get(), username.get(), password.get()); - return JSValueMakeUndefined(context); -} - -static JSValueRef setEditingBehaviorCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - // The editing behavior string. - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - JSRetainPtr editingBehavior(Adopt, JSValueToStringCopy(context, arguments[0], exception)); - ASSERT(!*exception); - - size_t maxLength = JSStringGetMaximumUTF8CStringSize(editingBehavior.get()); - char* behaviorBuffer = new char[maxLength + 1]; - JSStringGetUTF8CString(editingBehavior.get(), behaviorBuffer, maxLength); - - if (strcmp(behaviorBuffer, "mac") && strcmp(behaviorBuffer, "win")) { - JSRetainPtr invalidArgument(JSStringCreateWithUTF8CString("Passed invalid editing behavior. Must be 'mac' or 'win'.")); - *exception = JSValueMakeString(context, invalidArgument.get()); - return JSValueMakeUndefined(context); - } - - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setEditingBehavior(behaviorBuffer); - - delete [] behaviorBuffer; - - return JSValueMakeUndefined(context); -} - -// Static Values - -static JSValueRef getGlobalFlagCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeBoolean(context, controller->globalFlag()); -} - -static JSValueRef getWebHistoryItemCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeNumber(context, controller->webHistoryItemCount()); -} - -static JSValueRef getWorkerThreadCountCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - return JSValueMakeNumber(context, controller->workerThreadCount()); -} - -static bool setGlobalFlagCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(thisObject)); - controller->setGlobalFlag(JSValueToBoolean(context, value)); - return true; -} - -static void layoutTestControllerObjectFinalize(JSObjectRef object) -{ - LayoutTestController* controller = static_cast(JSObjectGetPrivate(object)); - controller->deref(); -} - -// Object Creation - -void LayoutTestController::makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception) -{ - JSRetainPtr layoutTestContollerStr(Adopt, JSStringCreateWithUTF8CString("layoutTestController")); - ref(); - - JSClassRef classRef = getJSClass(); - JSValueRef layoutTestContollerObject = JSObjectMake(context, classRef, this); - JSClassRelease(classRef); - - JSObjectSetProperty(context, windowObject, layoutTestContollerStr.get(), layoutTestContollerObject, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, exception); -} - -JSClassRef LayoutTestController::getJSClass() -{ - static JSStaticValue* staticValues = LayoutTestController::staticValues(); - static JSStaticFunction* staticFunctions = LayoutTestController::staticFunctions(); - static JSClassDefinition classDefinition = { - 0, kJSClassAttributeNone, "LayoutTestController", 0, staticValues, staticFunctions, - 0, layoutTestControllerObjectFinalize, 0, 0, 0, 0, 0, 0, 0, 0, 0 - }; - - return JSClassCreate(&classDefinition); -} - -JSStaticValue* LayoutTestController::staticValues() -{ - static JSStaticValue staticValues[] = { - { "globalFlag", getGlobalFlagCallback, setGlobalFlagCallback, kJSPropertyAttributeNone }, - { "webHistoryItemCount", getWebHistoryItemCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "workerThreadCount", getWorkerThreadCountCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0, 0 } - }; - return staticValues; -} - -JSStaticFunction* LayoutTestController::staticFunctions() -{ - static JSStaticFunction staticFunctions[] = { - { "abortModal", abortModalCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addDisallowedURL", addDisallowedURLCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addUserScript", addUserScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addUserStyleSheet", addUserStyleSheetCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "apiTestNewWindowDataLoadBaseURL", apiTestNewWindowDataLoadBaseURLCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "apiTestGoToCurrentBackForwardItem", apiTestGoToCurrentBackForwardItemCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "callShouldCloseOnWebView", callShouldCloseOnWebViewCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "clearAllDatabases", clearAllDatabasesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "clearBackForwardList", clearBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "clearPersistentUserStyleSheet", clearPersistentUserStyleSheetCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "closeWebInspector", closeWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "computedStyleIncludingVisitedInfo", computedStyleIncludingVisitedInfoCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "decodeHostName", decodeHostNameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "disableImageLoading", disableImageLoadingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dispatchPendingLoadRequests", dispatchPendingLoadRequestsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "display", displayCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpAsText", dumpAsTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpBackForwardList", dumpBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpChildFrameScrollPositions", dumpChildFrameScrollPositionsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpChildFramesAsText", dumpChildFramesAsTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpDOMAsWebArchive", dumpDOMAsWebArchiveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpDatabaseCallbacks", dumpDatabaseCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpEditingCallbacks", dumpEditingCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpFrameLoadCallbacks", dumpFrameLoadCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpResourceLoadCallbacks", dumpResourceLoadCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpResourceResponseMIMETypes", dumpResourceResponseMIMETypesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpSelectionRect", dumpSelectionRectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpSourceAsWebArchive", dumpSourceAsWebArchiveCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpStatusCallbacks", dumpStatusCallbacksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpTitleChanges", dumpTitleChangesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpIconChanges", dumpIconChangesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dumpWillCacheResponse", dumpWillCacheResponseCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "elementDoesAutoCompleteForElementWithId", elementDoesAutoCompleteForElementWithIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "encodeHostName", encodeHostNameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "evaluateInWebInspector", evaluateInWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "evaluateScriptInIsolatedWorld", evaluateScriptInIsolatedWorldCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "execCommand", execCommandCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "counterValueForElementById", counterValueForElementByIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "grantDesktopNotificationPermission", grantDesktopNotificationPermissionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isCommandEnabled", isCommandEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "isPageBoxVisible", isPageBoxVisibleCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "keepWebHistory", keepWebHistoryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "layerTreeAsText", layerTreeAsTextCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "numberOfPages", numberOfPagesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "markerTextForListItem", markerTextForListItemCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "notifyDone", notifyDoneCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "numberOfActiveAnimations", numberOfActiveAnimationsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "overridePreference", overridePreferenceCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pageNumberForElementById", pageNumberForElementByIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pageSizeAndMarginsInPixels", pageSizeAndMarginsInPixelsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pageProperty", pagePropertyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pathToLocalResource", pathToLocalResourceCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pauseAnimationAtTimeOnElementWithId", pauseAnimationAtTimeOnElementWithIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "pauseTransitionAtTimeOnElementWithId", pauseTransitionAtTimeOnElementWithIdCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "sampleSVGAnimationForElementAtTime", sampleSVGAnimationForElementAtTimeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "printToPDF", dumpAsPDFCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueBackNavigation", queueBackNavigationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueForwardNavigation", queueForwardNavigationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueLoad", queueLoadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueLoadHTMLString", queueLoadHTMLStringCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueLoadingScript", queueLoadingScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueNonLoadingScript", queueNonLoadingScriptCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "queueReload", queueReloadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "removeAllVisitedLinks", removeAllVisitedLinksCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "removeOriginAccessWhitelistEntry", removeOriginAccessWhitelistEntryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "repaintSweepHorizontally", repaintSweepHorizontallyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAcceptsEditing", setAcceptsEditingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAllowUniversalAccessFromFileURLs", setAllowUniversalAccessFromFileURLsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAllowFileAccessFromFileURLs", setAllowFileAccessFromFileURLsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAlwaysAcceptCookies", setAlwaysAcceptCookiesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAppCacheMaximumSize", setAppCacheMaximumSizeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAuthenticationPassword", setAuthenticationPasswordCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAuthenticationUsername", setAuthenticationUsernameCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setAuthorAndUserStylesEnabled", setAuthorAndUserStylesEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setCacheModel", setCacheModelCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setCallCloseOnWebViews", setCallCloseOnWebViewsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setCanOpenWindows", setCanOpenWindowsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setCloseRemainingWindowsWhenComplete", setCloseRemainingWindowsWhenCompleteCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setCustomPolicyDelegate", setCustomPolicyDelegateCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setDatabaseQuota", setDatabaseQuotaCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setDeferMainResourceDataLoad", setDeferMainResourceDataLoadCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setDomainRelaxationForbiddenForURLScheme", setDomainRelaxationForbiddenForURLSchemeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setEditingBehavior", setEditingBehaviorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setFrameFlatteningEnabled", setFrameFlatteningEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setGeolocationPermission", setGeolocationPermissionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setHandlesAuthenticationChallenges", setHandlesAuthenticationChallengesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setIconDatabaseEnabled", setIconDatabaseEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setJavaScriptProfilingEnabled", setJavaScriptProfilingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setMainFrameIsFirstResponder", setMainFrameIsFirstResponderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setMockGeolocationError", setMockGeolocationErrorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setMockGeolocationPosition", setMockGeolocationPositionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setNewWindowsCopyBackForwardList", setNewWindowsCopyBackForwardListCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPOSIXLocale", setPOSIXLocaleCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPersistentUserStyleSheetLocation", setPersistentUserStyleSheetLocationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPopupBlockingEnabled", setPopupBlockingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPluginsEnabled", setPluginsEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPrinting", setPrintingCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setPrivateBrowsingEnabled", setPrivateBrowsingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setSelectTrailingWhitespaceEnabled", setSelectTrailingWhitespaceEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setSmartInsertDeleteEnabled", setSmartInsertDeleteEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setSpatialNavigationEnabled", setSpatialNavigationEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setStopProvisionalFrameLoads", setStopProvisionalFrameLoadsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setTabKeyCyclesThroughElements", setTabKeyCyclesThroughElementsCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setTimelineProfilingEnabled", setTimelineProfilingEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setUseDashboardCompatibilityMode", setUseDashboardCompatibilityModeCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setUserStyleSheetEnabled", setUserStyleSheetEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setUserStyleSheetLocation", setUserStyleSheetLocationCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setWebViewEditable", setWebViewEditableCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setWillSendRequestClearHeader", setWillSendRequestClearHeaderCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setWillSendRequestReturnsNull", setWillSendRequestReturnsNullCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setWillSendRequestReturnsNullOnRedirect", setWillSendRequestReturnsNullOnRedirectCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setWindowIsKey", setWindowIsKeyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setJavaScriptCanAccessClipboard", setJavaScriptCanAccessClipboardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setXSSAuditorEnabled", setXSSAuditorEnabledCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "showWebInspector", showWebInspectorCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "testOnscreen", testOnscreenCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "testRepaint", testRepaintCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "waitForPolicyDelegate", waitForPolicyDelegateCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "waitUntilDone", waitUntilDoneCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "windowCount", windowCountCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "addOriginAccessWhitelistEntry", addOriginAccessWhitelistEntryCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "setScrollbarPolicy", setScrollbarPolicyCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "authenticateSession", authenticateSessionCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } - }; - - return staticFunctions; -} - -void LayoutTestController::queueLoadHTMLString(JSStringRef content, JSStringRef baseURL) -{ - WorkQueue::shared()->queue(new LoadHTMLStringItem(content, baseURL)); -} - -void LayoutTestController::queueBackNavigation(int howFarBack) -{ - WorkQueue::shared()->queue(new BackItem(howFarBack)); -} - -void LayoutTestController::queueForwardNavigation(int howFarForward) -{ - WorkQueue::shared()->queue(new ForwardItem(howFarForward)); -} - -void LayoutTestController::queueLoadingScript(JSStringRef script) -{ - WorkQueue::shared()->queue(new LoadingScriptItem(script)); -} - -void LayoutTestController::queueNonLoadingScript(JSStringRef script) -{ - WorkQueue::shared()->queue(new NonLoadingScriptItem(script)); -} - -void LayoutTestController::queueReload() -{ - WorkQueue::shared()->queue(new ReloadItem); -} - -void LayoutTestController::grantDesktopNotificationPermission(JSStringRef origin) -{ - m_desktopNotificationAllowedOrigins.push_back(JSStringRetain(origin)); -} - -bool LayoutTestController::checkDesktopNotificationPermission(JSStringRef origin) -{ - std::vector::iterator i; - for (i = m_desktopNotificationAllowedOrigins.begin(); - i != m_desktopNotificationAllowedOrigins.end(); - ++i) { - if (JSStringIsEqual(*i, origin)) - return true; - } - return false; -} - -void LayoutTestController::waitToDumpWatchdogTimerFired() -{ - const char* message = "FAIL: Timed out waiting for notifyDone to be called\n"; - fprintf(stderr, "%s", message); - fprintf(stdout, "%s", message); - notifyDone(); -} - -void LayoutTestController::setGeolocationPermission(bool allow) -{ - m_isGeolocationPermissionSet = true; - m_geolocationPermission = allow; -} - -void LayoutTestController::setPOSIXLocale(JSStringRef locale) -{ - char localeBuf[32]; - JSStringGetUTF8CString(locale, localeBuf, sizeof(localeBuf)); - setlocale(LC_ALL, localeBuf); -} - -const unsigned LayoutTestController::maxViewWidth = 800; -const unsigned LayoutTestController::maxViewHeight = 600; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/LayoutTestController.h --- a/WebKitTools/DumpRenderTree/LayoutTestController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,344 +0,0 @@ -/* - * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef LayoutTestController_h -#define LayoutTestController_h - -#include -#include -#include -#include -#include -#include -#include - -class LayoutTestController : public RefCounted { -public: - static PassRefPtr create(const std::string& testPathOrURL, const std::string& expectedPixelHash); - ~LayoutTestController(); - - void makeWindowObject(JSContextRef context, JSObjectRef windowObject, JSValueRef* exception); - - void addDisallowedURL(JSStringRef url); - void clearAllDatabases(); - void clearBackForwardList(); - void clearPersistentUserStyleSheet(); - bool callShouldCloseOnWebView(); - JSStringRef copyDecodedHostName(JSStringRef name); - JSStringRef copyEncodedHostName(JSStringRef name); - void disableImageLoading(); - void dispatchPendingLoadRequests(); - void display(); - void execCommand(JSStringRef name, JSStringRef value); - JSRetainPtr counterValueForElementById(JSStringRef id); - bool isCommandEnabled(JSStringRef name); - void keepWebHistory(); - JSValueRef computedStyleIncludingVisitedInfo(JSContextRef, JSValueRef); - void notifyDone(); - int numberOfPages(float pageWidthInPixels, float pageHeightInPixels); - void overridePreference(JSStringRef key, JSStringRef value); - int pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels); - JSRetainPtr pageProperty(const char* propertyName, int pageNumber) const; - JSRetainPtr pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const; - bool isPageBoxVisible(int pageNumber) const; - JSStringRef pathToLocalResource(JSContextRef, JSStringRef url); - void queueBackNavigation(int howFarBackward); - void queueForwardNavigation(int howFarForward); - void queueLoad(JSStringRef url, JSStringRef target); - void queueLoadHTMLString(JSStringRef content, JSStringRef baseURL); - void queueLoadingScript(JSStringRef script); - void queueNonLoadingScript(JSStringRef script); - void queueReload(); - void removeAllVisitedLinks(); - void setAcceptsEditing(bool acceptsEditing); - void setAllowUniversalAccessFromFileURLs(bool); - void setAllowFileAccessFromFileURLs(bool); - void setAppCacheMaximumSize(unsigned long long quota); - void setAuthorAndUserStylesEnabled(bool); - void setCacheModel(int); - void setCustomPolicyDelegate(bool setDelegate, bool permissive); - void setDatabaseQuota(unsigned long long quota); - void setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme); - void setIconDatabaseEnabled(bool iconDatabaseEnabled); - void setJavaScriptProfilingEnabled(bool profilingEnabled); - void setJavaScriptCanAccessClipboard(bool flag); - void setMainFrameIsFirstResponder(bool flag); - void setMockGeolocationError(int code, JSStringRef message); - void setMockGeolocationPosition(double latitude, double longitude, double accuracy); - void setPersistentUserStyleSheetLocation(JSStringRef path); - void setPluginsEnabled(bool flag); - void setPopupBlockingEnabled(bool flag); - void setPrivateBrowsingEnabled(bool flag); - void setSelectTrailingWhitespaceEnabled(bool flag); - void setSmartInsertDeleteEnabled(bool flag); - void setTabKeyCyclesThroughElements(bool cycles); - void setUseDashboardCompatibilityMode(bool flag); - void setUserStyleSheetEnabled(bool flag); - void setUserStyleSheetLocation(JSStringRef path); - void setXSSAuditorEnabled(bool flag); - void setFrameFlatteningEnabled(bool enable); - void setSpatialNavigationEnabled(bool enable); - void setScrollbarPolicy(JSStringRef orientation, JSStringRef policy); - void setEditingBehavior(const char* editingBehavior); - - void waitForPolicyDelegate(); - size_t webHistoryItemCount(); - unsigned workerThreadCount() const; - int windowCount(); - - void grantDesktopNotificationPermission(JSStringRef origin); - bool checkDesktopNotificationPermission(JSStringRef origin); - - bool elementDoesAutoCompleteForElementWithId(JSStringRef id); - - bool dumpAsPDF() const { return m_dumpAsPDF; } - void setDumpAsPDF(bool dumpAsPDF) { m_dumpAsPDF = dumpAsPDF; } - - bool dumpAsText() const { return m_dumpAsText; } - void setDumpAsText(bool dumpAsText) { m_dumpAsText = dumpAsText; } - - bool generatePixelResults() const { return m_generatePixelResults; } - void setGeneratePixelResults(bool generatePixelResults) { m_generatePixelResults = generatePixelResults; } - - bool dumpBackForwardList() const { return m_dumpBackForwardList; } - void setDumpBackForwardList(bool dumpBackForwardList) { m_dumpBackForwardList = dumpBackForwardList; } - - bool dumpChildFrameScrollPositions() const { return m_dumpChildFrameScrollPositions; } - void setDumpChildFrameScrollPositions(bool dumpChildFrameScrollPositions) { m_dumpChildFrameScrollPositions = dumpChildFrameScrollPositions; } - - bool dumpChildFramesAsText() const { return m_dumpChildFramesAsText; } - void setDumpChildFramesAsText(bool dumpChildFramesAsText) { m_dumpChildFramesAsText = dumpChildFramesAsText; } - - bool dumpDatabaseCallbacks() const { return m_dumpDatabaseCallbacks; } - void setDumpDatabaseCallbacks(bool dumpDatabaseCallbacks) { m_dumpDatabaseCallbacks = dumpDatabaseCallbacks; } - - bool dumpDOMAsWebArchive() const { return m_dumpDOMAsWebArchive; } - void setDumpDOMAsWebArchive(bool dumpDOMAsWebArchive) { m_dumpDOMAsWebArchive = dumpDOMAsWebArchive; } - - bool dumpEditingCallbacks() const { return m_dumpEditingCallbacks; } - void setDumpEditingCallbacks(bool dumpEditingCallbacks) { m_dumpEditingCallbacks = dumpEditingCallbacks; } - - bool dumpFrameLoadCallbacks() const { return m_dumpFrameLoadCallbacks; } - void setDumpFrameLoadCallbacks(bool dumpFrameLoadCallbacks) { m_dumpFrameLoadCallbacks = dumpFrameLoadCallbacks; } - - bool dumpHistoryDelegateCallbacks() const { return m_dumpHistoryDelegateCallbacks; } - void setDumpHistoryDelegateCallbacks(bool dumpHistoryDelegateCallbacks) { m_dumpHistoryDelegateCallbacks = dumpHistoryDelegateCallbacks; } - - bool dumpResourceLoadCallbacks() const { return m_dumpResourceLoadCallbacks; } - void setDumpResourceLoadCallbacks(bool dumpResourceLoadCallbacks) { m_dumpResourceLoadCallbacks = dumpResourceLoadCallbacks; } - - bool dumpResourceResponseMIMETypes() const { return m_dumpResourceResponseMIMETypes; } - void setDumpResourceResponseMIMETypes(bool dumpResourceResponseMIMETypes) { m_dumpResourceResponseMIMETypes = dumpResourceResponseMIMETypes; } - - bool dumpSelectionRect() const { return m_dumpSelectionRect; } - void setDumpSelectionRect(bool dumpSelectionRect) { m_dumpSelectionRect = dumpSelectionRect; } - - bool dumpSourceAsWebArchive() const { return m_dumpSourceAsWebArchive; } - void setDumpSourceAsWebArchive(bool dumpSourceAsWebArchive) { m_dumpSourceAsWebArchive = dumpSourceAsWebArchive; } - - bool dumpStatusCallbacks() const { return m_dumpStatusCallbacks; } - void setDumpStatusCallbacks(bool dumpStatusCallbacks) { m_dumpStatusCallbacks = dumpStatusCallbacks; } - - bool dumpTitleChanges() const { return m_dumpTitleChanges; } - void setDumpTitleChanges(bool dumpTitleChanges) { m_dumpTitleChanges = dumpTitleChanges; } - - bool dumpIconChanges() const { return m_dumpIconChanges; } - void setDumpIconChanges(bool dumpIconChanges) { m_dumpIconChanges = dumpIconChanges; } - - bool dumpVisitedLinksCallback() const { return m_dumpVisitedLinksCallback; } - void setDumpVisitedLinksCallback(bool dumpVisitedLinksCallback) { m_dumpVisitedLinksCallback = dumpVisitedLinksCallback; } - - bool dumpWillCacheResponse() const { return m_dumpWillCacheResponse; } - void setDumpWillCacheResponse(bool dumpWillCacheResponse) { m_dumpWillCacheResponse = dumpWillCacheResponse; } - - bool callCloseOnWebViews() const { return m_callCloseOnWebViews; } - void setCallCloseOnWebViews(bool callCloseOnWebViews) { m_callCloseOnWebViews = callCloseOnWebViews; } - - bool canOpenWindows() const { return m_canOpenWindows; } - void setCanOpenWindows(bool canOpenWindows) { m_canOpenWindows = canOpenWindows; } - - bool closeRemainingWindowsWhenComplete() const { return m_closeRemainingWindowsWhenComplete; } - void setCloseRemainingWindowsWhenComplete(bool closeRemainingWindowsWhenComplete) { m_closeRemainingWindowsWhenComplete = closeRemainingWindowsWhenComplete; } - - bool newWindowsCopyBackForwardList() const { return m_newWindowsCopyBackForwardList; } - void setNewWindowsCopyBackForwardList(bool newWindowsCopyBackForwardList) { m_newWindowsCopyBackForwardList = newWindowsCopyBackForwardList; } - - bool stopProvisionalFrameLoads() const { return m_stopProvisionalFrameLoads; } - void setStopProvisionalFrameLoads(bool stopProvisionalFrameLoads) { m_stopProvisionalFrameLoads = stopProvisionalFrameLoads; } - - bool testOnscreen() const { return m_testOnscreen; } - void setTestOnscreen(bool testOnscreen) { m_testOnscreen = testOnscreen; } - - bool testRepaint() const { return m_testRepaint; } - void setTestRepaint(bool testRepaint) { m_testRepaint = testRepaint; } - - bool testRepaintSweepHorizontally() const { return m_testRepaintSweepHorizontally; } - void setTestRepaintSweepHorizontally(bool testRepaintSweepHorizontally) { m_testRepaintSweepHorizontally = testRepaintSweepHorizontally; } - - bool waitToDump() const { return m_waitToDump; } - void setWaitToDump(bool waitToDump); - void waitToDumpWatchdogTimerFired(); - - const std::set& willSendRequestClearHeaders() const { return m_willSendRequestClearHeaders; } - void setWillSendRequestClearHeader(std::string header) { m_willSendRequestClearHeaders.insert(header); } - - bool willSendRequestReturnsNull() const { return m_willSendRequestReturnsNull; } - void setWillSendRequestReturnsNull(bool returnsNull) { m_willSendRequestReturnsNull = returnsNull; } - - bool willSendRequestReturnsNullOnRedirect() const { return m_willSendRequestReturnsNullOnRedirect; } - void setWillSendRequestReturnsNullOnRedirect(bool returnsNull) { m_willSendRequestReturnsNullOnRedirect = returnsNull; } - - bool windowIsKey() const { return m_windowIsKey; } - void setWindowIsKey(bool windowIsKey); - - bool alwaysAcceptCookies() const { return m_alwaysAcceptCookies; } - void setAlwaysAcceptCookies(bool alwaysAcceptCookies); - - bool handlesAuthenticationChallenges() const { return m_handlesAuthenticationChallenges; } - void setHandlesAuthenticationChallenges(bool handlesAuthenticationChallenges) { m_handlesAuthenticationChallenges = handlesAuthenticationChallenges; } - - bool isPrinting() const { return m_isPrinting; } - void setIsPrinting(bool isPrinting) { m_isPrinting = isPrinting; } - - const std::string& authenticationUsername() const { return m_authenticationUsername; } - void setAuthenticationUsername(std::string username) { m_authenticationUsername = username; } - - const std::string& authenticationPassword() const { return m_authenticationPassword; } - void setAuthenticationPassword(std::string password) { m_authenticationPassword = password; } - - bool globalFlag() const { return m_globalFlag; } - void setGlobalFlag(bool globalFlag) { m_globalFlag = globalFlag; } - - bool deferMainResourceDataLoad() const { return m_deferMainResourceDataLoad; } - void setDeferMainResourceDataLoad(bool flag) { m_deferMainResourceDataLoad = flag; } - - const std::string& testPathOrURL() const { return m_testPathOrURL; } - const std::string& expectedPixelHash() const { return m_expectedPixelHash; } - - bool pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId); - bool pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId); - bool sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId); - unsigned numberOfActiveAnimations() const; - - void addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains); - void removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains); - - void addUserScript(JSStringRef source, bool runAtStart, bool allFrames); - void addUserStyleSheet(JSStringRef source, bool allFrames); - - void setGeolocationPermission(bool allow); - bool isGeolocationPermissionSet() const { return m_isGeolocationPermissionSet; } - bool geolocationPermission() const { return m_geolocationPermission; } - - void setDeveloperExtrasEnabled(bool); - void showWebInspector(); - void closeWebInspector(); - void setTimelineProfilingEnabled(bool enabled); - void evaluateInWebInspector(long callId, JSStringRef script); - void evaluateScriptInIsolatedWorld(unsigned worldId, JSObjectRef globalObject, JSStringRef script); - - void setPOSIXLocale(JSStringRef locale); - - void setWebViewEditable(bool); - - void abortModal(); - - // The following API test functions should probably be moved to platform-specific - // unit tests outside of DRT once they exist. - void apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL); - void apiTestGoToCurrentBackForwardItem(); - - // Simulate a request an embedding application could make, populating per-session credential storage. - void authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password); - - JSRetainPtr layerTreeAsText() const; - - JSRetainPtr markerTextForListItem(JSContextRef context, JSValueRef nodeObject) const; - - static const unsigned maxViewWidth; - static const unsigned maxViewHeight; - -private: - LayoutTestController(const std::string& testPathOrURL, const std::string& expectedPixelHash); - - bool m_dumpAsPDF; - bool m_dumpAsText; - bool m_dumpBackForwardList; - bool m_dumpChildFrameScrollPositions; - bool m_dumpChildFramesAsText; - bool m_dumpDOMAsWebArchive; - bool m_dumpDatabaseCallbacks; - bool m_dumpEditingCallbacks; - bool m_dumpFrameLoadCallbacks; - bool m_dumpHistoryDelegateCallbacks; - bool m_dumpResourceLoadCallbacks; - bool m_dumpResourceResponseMIMETypes; - bool m_dumpSelectionRect; - bool m_dumpSourceAsWebArchive; - bool m_dumpStatusCallbacks; - bool m_dumpTitleChanges; - bool m_dumpIconChanges; - bool m_dumpVisitedLinksCallback; - bool m_dumpWillCacheResponse; - bool m_generatePixelResults; - bool m_callCloseOnWebViews; - bool m_canOpenWindows; - bool m_closeRemainingWindowsWhenComplete; - bool m_newWindowsCopyBackForwardList; - bool m_stopProvisionalFrameLoads; - bool m_testOnscreen; - bool m_testRepaint; - bool m_testRepaintSweepHorizontally; - bool m_waitToDump; // True if waitUntilDone() has been called, but notifyDone() has not yet been called. - bool m_willSendRequestReturnsNull; - bool m_willSendRequestReturnsNullOnRedirect; - bool m_windowIsKey; - bool m_alwaysAcceptCookies; - bool m_globalFlag; - bool m_isGeolocationPermissionSet; - bool m_geolocationPermission; - bool m_handlesAuthenticationChallenges; - bool m_isPrinting; - bool m_deferMainResourceDataLoad; - - std::string m_authenticationUsername; - std::string m_authenticationPassword; - std::string m_testPathOrURL; - std::string m_expectedPixelHash; // empty string if no hash - - std::set m_willSendRequestClearHeaders; - - // origins which have been granted desktop notification access - std::vector m_desktopNotificationAllowedOrigins; - - static JSClassRef getJSClass(); - static JSStaticValue* staticValues(); - static JSStaticFunction* staticFunctions(); -}; - -#endif // LayoutTestController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/Makefile --- a/WebKitTools/DumpRenderTree/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2 +0,0 @@ -SCRIPTS_PATH = ../Scripts -include ../../Makefile.shared diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/PixelDumpSupport.cpp --- a/WebKitTools/DumpRenderTree/PixelDumpSupport.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,89 +0,0 @@ -/* - * Copyright (C) 2009 Apple, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include "PixelDumpSupport.h" -#include -#include -#include - -#if PLATFORM(CG) -#include "PixelDumpSupportCG.h" -#elif PLATFORM(CAIRO) -#include "PixelDumpSupportCairo.h" -#endif - -void dumpWebViewAsPixelsAndCompareWithExpected(const std::string& expectedHash) -{ - RefPtr context; -#if PLATFORM(MAC) - if (gLayoutTestController->isPrinting()) - context = createPagedBitmapContext(); - else -#endif - context = createBitmapContextFromWebView(gLayoutTestController->testOnscreen(), gLayoutTestController->testRepaint(), gLayoutTestController->testRepaintSweepHorizontally(), gLayoutTestController->dumpSelectionRect()); - ASSERT(context); - - // Compute the hash of the bitmap context pixels - char actualHash[33]; - computeMD5HashStringForBitmapContext(context.get(), actualHash); - printf("\nActualHash: %s\n", actualHash); - - // Check the computed hash against the expected one and dump image on mismatch - bool dumpImage = true; - if (expectedHash.length() > 0) { - ASSERT(expectedHash.length() == 32); - - printf("\nExpectedHash: %s\n", expectedHash.c_str()); - - if (expectedHash == actualHash) // FIXME: do case insensitive compare - dumpImage = false; - } - - if (dumpImage) - dumpBitmap(context.get()); -} - -void printPNG(const unsigned char* data, const size_t dataLength) -{ - printf("Content-Type: %s\n", "image/png"); - printf("Content-Length: %lu\n", static_cast(dataLength)); - - const size_t bytesToWriteInOneChunk = 1 << 15; - size_t dataRemainingToWrite = dataLength; - while (dataRemainingToWrite) { - size_t bytesToWriteInThisChunk = std::min(dataRemainingToWrite, bytesToWriteInOneChunk); - size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout); - if (bytesWritten != bytesToWriteInThisChunk) - break; - dataRemainingToWrite -= bytesWritten; - data += bytesWritten; - } -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/PixelDumpSupport.h --- a/WebKitTools/DumpRenderTree/PixelDumpSupport.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef PixelDumpSupport_h -#define PixelDumpSupport_h - -#include - -#include - -class BitmapContext; - -void computeMD5HashStringForBitmapContext(BitmapContext*, char hashString[33]); -PassRefPtr createPagedBitmapContext(); -PassRefPtr createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect); -void dumpBitmap(BitmapContext*); -void dumpWebViewAsPixelsAndCompareWithExpected(const std::string& expectedHash); -void printPNG(const unsigned char* data, const size_t dataLength); - -#if PLATFORM(MAC) - -// Can be used as a signal handler -void restoreMainDisplayColorProfile(int ignored); - -// May change your color space, requiring a call to restoreMainDisplayColorProfile -void setupMainDisplayColorProfile(); - -#endif - -#endif // PixelDumpSupport_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObject.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1082 +0,0 @@ -/* - * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. - * Copyright (C) 2009 Holger Hans Peter Freyther - * Copyright (C) 2010 Collabora Ltd. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "PluginObject.h" - -#include "TestObject.h" -#include -#include -#include - -#include -#include - -// Helper function which takes in the plugin window object for logging to the console object. -static void pluginLogWithWindowObject(NPObject* windowObject, NPP instance, const char* message) -{ - NPVariant consoleVariant; - if (!browser->getproperty(instance, windowObject, browser->getstringidentifier("console"), &consoleVariant)) { - fprintf(stderr, "Failed to retrieve console object while logging: %s\n", message); - return; - } - - NPObject* consoleObject = NPVARIANT_TO_OBJECT(consoleVariant); - - NPVariant messageVariant; - STRINGZ_TO_NPVARIANT(message, messageVariant); - - NPVariant result; - if (!browser->invoke(instance, consoleObject, browser->getstringidentifier("log"), &messageVariant, 1, &result)) { - fprintf(stderr, "Failed to invoke console.log while logging: %s\n", message); - browser->releaseobject(consoleObject); - return; - } - - browser->releasevariantvalue(&result); - browser->releaseobject(consoleObject); -} - -// Helper function which takes in the plugin window object for logging to the console object. This function supports variable -// arguments. -static void pluginLogWithWindowObjectVariableArgs(NPObject* windowObject, NPP instance, const char* format, ...) -{ - va_list args; - va_start(args, format); - char message[2048] = "PLUGIN: "; - vsprintf(message + strlen(message), format, args); - va_end(args); - - pluginLogWithWindowObject(windowObject, instance, message); -} - -// Helper function to log to the console object. -void pluginLog(NPP instance, const char* format, ...) -{ - va_list args; - va_start(args, format); - char message[2048] = "PLUGIN: "; - vsprintf(message + strlen(message), format, args); - va_end(args); - - NPObject* windowObject = 0; - NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); - if (error != NPERR_NO_ERROR) { - fprintf(stderr, "Failed to retrieve window object while logging: %s\n", message); - return; - } - - pluginLogWithWindowObject(windowObject, instance, message); - browser->releaseobject(windowObject); -} - -static void pluginInvalidate(NPObject*); -static bool pluginHasProperty(NPObject*, NPIdentifier name); -static bool pluginHasMethod(NPObject*, NPIdentifier name); -static bool pluginGetProperty(NPObject*, NPIdentifier name, NPVariant*); -static bool pluginSetProperty(NPObject*, NPIdentifier name, const NPVariant*); -static bool pluginInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result); -static bool pluginInvokeDefault(NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result); -static NPObject* pluginAllocate(NPP npp, NPClass*); -static void pluginDeallocate(NPObject*); - -NPNetscapeFuncs* browser; - -static NPClass pluginClass = { - NP_CLASS_STRUCT_VERSION, - pluginAllocate, - pluginDeallocate, - pluginInvalidate, - pluginHasMethod, - pluginInvoke, - pluginInvokeDefault, - pluginHasProperty, - pluginGetProperty, - pluginSetProperty, -}; - -NPClass *getPluginClass(void) -{ - return &pluginClass; -} - -static bool identifiersInitialized = false; - -enum { - ID_PROPERTY_PROPERTY = 0, - ID_PROPERTY_EVENT_LOGGING, - ID_PROPERTY_HAS_STREAM, - ID_PROPERTY_TEST_OBJECT, - ID_PROPERTY_LOG_DESTROY, - ID_PROPERTY_RETURN_ERROR_FROM_NEWSTREAM, - ID_PROPERTY_RETURN_NEGATIVE_ONE_FROM_WRITE, - ID_PROPERTY_PRIVATE_BROWSING_ENABLED, - ID_PROPERTY_CACHED_PRIVATE_BROWSING_ENABLED, - ID_PROPERTY_THROW_EXCEPTION_PROPERTY, - ID_LAST_SET_WINDOW_ARGUMENTS, - NUM_PROPERTY_IDENTIFIERS -}; - -static NPIdentifier pluginPropertyIdentifiers[NUM_PROPERTY_IDENTIFIERS]; -static const NPUTF8 *pluginPropertyIdentifierNames[NUM_PROPERTY_IDENTIFIERS] = { - "property", - "eventLoggingEnabled", - "hasStream", - "testObject", - "logDestroy", - "returnErrorFromNewStream", - "returnNegativeOneFromWrite", - "privateBrowsingEnabled", - "cachedPrivateBrowsingEnabled", - "testThrowExceptionProperty", - "lastSetWindowArguments" -}; - -enum { - ID_TEST_CALLBACK_METHOD = 0, - ID_TEST_GETURL, - ID_REMOVE_DEFAULT_METHOD, - ID_TEST_DOM_ACCESS, - ID_TEST_GET_URL_NOTIFY, - ID_TEST_INVOKE_DEFAULT, - ID_DESTROY_STREAM, - ID_TEST_ENUMERATE, - ID_TEST_GETINTIDENTIFIER, - ID_TEST_GET_PROPERTY, - ID_TEST_HAS_PROPERTY, - ID_TEST_HAS_METHOD, - ID_TEST_EVALUATE, - ID_TEST_GET_PROPERTY_RETURN_VALUE, - ID_TEST_IDENTIFIER_TO_STRING, - ID_TEST_IDENTIFIER_TO_INT, - ID_TEST_POSTURL_FILE, - ID_TEST_CONSTRUCT, - ID_TEST_THROW_EXCEPTION_METHOD, - ID_TEST_FAIL_METHOD, - ID_DESTROY_NULL_STREAM, - ID_TEST_RELOAD_PLUGINS_NO_PAGES, - ID_TEST_RELOAD_PLUGINS_AND_PAGES, - ID_TEST_GET_BROWSER_PROPERTY, - ID_TEST_SET_BROWSER_PROPERTY, - ID_REMEMBER, - ID_GET_REMEMBERED_OBJECT, - ID_GET_AND_FORGET_REMEMBERED_OBJECT, - ID_REF_COUNT, - ID_SET_STATUS, - ID_RESIZE_TO, - ID_NORMALIZE, - NUM_METHOD_IDENTIFIERS -}; - -static NPIdentifier pluginMethodIdentifiers[NUM_METHOD_IDENTIFIERS]; -static const NPUTF8 *pluginMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = { - "testCallback", - "getURL", - "removeDefaultMethod", - "testDOMAccess", - "getURLNotify", - "testInvokeDefault", - "destroyStream", - "testEnumerate", - "testGetIntIdentifier", - "testGetProperty", - "testHasProperty", - "testHasMethod", - "testEvaluate", - "testGetPropertyReturnValue", - "testIdentifierToString", - "testIdentifierToInt", - "testPostURLFile", - "testConstruct", - "testThrowException", - "testFail", - "destroyNullStream", - "reloadPluginsNoPages", - "reloadPluginsAndPages", - "testGetBrowserProperty", - "testSetBrowserProperty", - "remember", - "getRememberedObject", - "getAndForgetRememberedObject", - "refCount", - "setStatus", - "resizeTo", - "normalize" -}; - -static NPUTF8* createCStringFromNPVariant(const NPVariant* variant) -{ - size_t length = NPVARIANT_TO_STRING(*variant).UTF8Length; - NPUTF8* result = (NPUTF8*)malloc(length + 1); - memcpy(result, NPVARIANT_TO_STRING(*variant).UTF8Characters, length); - result[length] = '\0'; - return result; -} - -static void initializeIdentifiers(void) -{ - browser->getstringidentifiers(pluginPropertyIdentifierNames, NUM_PROPERTY_IDENTIFIERS, pluginPropertyIdentifiers); - browser->getstringidentifiers(pluginMethodIdentifierNames, NUM_METHOD_IDENTIFIERS, pluginMethodIdentifiers); -} - -static bool pluginHasProperty(NPObject *obj, NPIdentifier name) -{ - for (int i = 0; i < NUM_PROPERTY_IDENTIFIERS; i++) - if (name == pluginPropertyIdentifiers[i]) - return true; - return false; -} - -static bool pluginHasMethod(NPObject *obj, NPIdentifier name) -{ - for (int i = 0; i < NUM_METHOD_IDENTIFIERS; i++) - if (name == pluginMethodIdentifiers[i]) - return true; - return false; -} - -static bool pluginGetProperty(NPObject* obj, NPIdentifier name, NPVariant* result) -{ - PluginObject* plugin = reinterpret_cast(obj); - if (name == pluginPropertyIdentifiers[ID_PROPERTY_PROPERTY]) { - static const char* originalString = "property"; - char* buf = static_cast(browser->memalloc(strlen(originalString) + 1)); - strcpy(buf, originalString); - STRINGZ_TO_NPVARIANT(buf, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_EVENT_LOGGING]) { - BOOLEAN_TO_NPVARIANT(plugin->eventLogging, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_LOG_DESTROY]) { - BOOLEAN_TO_NPVARIANT(plugin->logDestroy, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_HAS_STREAM]) { - BOOLEAN_TO_NPVARIANT(plugin->stream != 0, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_TEST_OBJECT]) { - NPObject* testObject = plugin->testObject; - browser->retainobject(testObject); - OBJECT_TO_NPVARIANT(testObject, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_RETURN_ERROR_FROM_NEWSTREAM]) { - BOOLEAN_TO_NPVARIANT(plugin->returnErrorFromNewStream, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_RETURN_NEGATIVE_ONE_FROM_WRITE]) { - BOOLEAN_TO_NPVARIANT(plugin->returnNegativeOneFromWrite, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_PRIVATE_BROWSING_ENABLED]) { - NPBool privateBrowsingEnabled = FALSE; - browser->getvalue(plugin->npp, NPNVprivateModeBool, &privateBrowsingEnabled); - BOOLEAN_TO_NPVARIANT(privateBrowsingEnabled, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_CACHED_PRIVATE_BROWSING_ENABLED]) { - BOOLEAN_TO_NPVARIANT(plugin->cachedPrivateBrowsingMode, *result); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_THROW_EXCEPTION_PROPERTY]) { - browser->setexception(obj, "plugin object testThrowExceptionProperty SUCCESS"); - return true; - } else if (name == pluginPropertyIdentifiers[ID_LAST_SET_WINDOW_ARGUMENTS]) { - char* buf = static_cast(browser->memalloc(256)); - snprintf(buf, 256, "x: %d, y: %d, width: %u, height: %u, clipRect: (%u, %u, %u, %u)", (int)plugin->lastWindow.x, (int)plugin->lastWindow.y, (unsigned)plugin->lastWindow.width, (unsigned)plugin->lastWindow.height, - plugin->lastWindow.clipRect.left, plugin->lastWindow.clipRect.top, plugin->lastWindow.clipRect.right - plugin->lastWindow.clipRect.left, plugin->lastWindow.clipRect.bottom - plugin->lastWindow.clipRect.top); - - STRINGZ_TO_NPVARIANT(buf, *result); - return true; - } - - return false; -} - -static bool pluginSetProperty(NPObject* obj, NPIdentifier name, const NPVariant* variant) -{ - PluginObject* plugin = reinterpret_cast(obj); - if (name == pluginPropertyIdentifiers[ID_PROPERTY_EVENT_LOGGING]) { - plugin->eventLogging = NPVARIANT_TO_BOOLEAN(*variant); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_LOG_DESTROY]) { - plugin->logDestroy = NPVARIANT_TO_BOOLEAN(*variant); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_RETURN_ERROR_FROM_NEWSTREAM]) { - plugin->returnErrorFromNewStream = NPVARIANT_TO_BOOLEAN(*variant); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_RETURN_NEGATIVE_ONE_FROM_WRITE]) { - plugin->returnNegativeOneFromWrite = NPVARIANT_TO_BOOLEAN(*variant); - return true; - } else if (name == pluginPropertyIdentifiers[ID_PROPERTY_THROW_EXCEPTION_PROPERTY]) { - browser->setexception(obj, "plugin object testThrowExceptionProperty SUCCESS"); - return true; - } - - return false; -} - -static bool testDOMAccess(PluginObject* obj, const NPVariant*, uint32_t, NPVariant* result) -{ - // Get plug-in's DOM element - NPObject* elementObject; - if (browser->getvalue(obj->npp, NPNVPluginElementNPObject, &elementObject) == NPERR_NO_ERROR) { - // Get style - NPVariant styleVariant; - NPIdentifier styleIdentifier = browser->getstringidentifier("style"); - if (browser->getproperty(obj->npp, elementObject, styleIdentifier, &styleVariant) && NPVARIANT_IS_OBJECT(styleVariant)) { - // Set style.border - NPIdentifier borderIdentifier = browser->getstringidentifier("border"); - NPVariant borderVariant; - STRINGZ_TO_NPVARIANT("3px solid red", borderVariant); - browser->setproperty(obj->npp, NPVARIANT_TO_OBJECT(styleVariant), borderIdentifier, &borderVariant); - browser->releasevariantvalue(&styleVariant); - } - - browser->releaseobject(elementObject); - } - VOID_TO_NPVARIANT(*result); - return true; -} - -static NPIdentifier stringVariantToIdentifier(NPVariant variant) -{ - assert(NPVARIANT_IS_STRING(variant)); - NPUTF8* utf8String = createCStringFromNPVariant(&variant); - NPIdentifier identifier = browser->getstringidentifier(utf8String); - free(utf8String); - return identifier; -} - -static NPIdentifier int32VariantToIdentifier(NPVariant variant) -{ - assert(NPVARIANT_IS_INT32(variant)); - int32_t integer = NPVARIANT_TO_INT32(variant); - return browser->getintidentifier(integer); -} - -static NPIdentifier doubleVariantToIdentifier(NPVariant variant) -{ - assert(NPVARIANT_IS_DOUBLE(variant)); - double value = NPVARIANT_TO_DOUBLE(variant); - // Sadly there is no "getdoubleidentifier" - int32_t integer = static_cast(value); - return browser->getintidentifier(integer); -} - -static NPIdentifier variantToIdentifier(NPVariant variant) -{ - if (NPVARIANT_IS_STRING(variant)) - return stringVariantToIdentifier(variant); - else if (NPVARIANT_IS_INT32(variant)) - return int32VariantToIdentifier(variant); - else if (NPVARIANT_IS_DOUBLE(variant)) - return doubleVariantToIdentifier(variant); - return 0; -} - -static bool testIdentifierToString(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 1) - return true; - NPIdentifier identifier = variantToIdentifier(args[0]); - if (!identifier) - return true; - NPUTF8* utf8String = browser->utf8fromidentifier(identifier); - if (!utf8String) - return true; - STRINGZ_TO_NPVARIANT(utf8String, *result); - return true; -} - -static bool testIdentifierToInt(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 1) - return false; - NPIdentifier identifier = variantToIdentifier(args[0]); - if (!identifier) - return false; - int32_t integer = browser->intfromidentifier(identifier); - INT32_TO_NPVARIANT(integer, *result); - return true; -} - -static bool testCallback(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount == 0 || !NPVARIANT_IS_STRING(args[0])) - return false; - - NPObject* windowScriptObject; - browser->getvalue(obj->npp, NPNVWindowNPObject, &windowScriptObject); - - NPUTF8* callbackString = createCStringFromNPVariant(&args[0]); - NPIdentifier callbackIdentifier = browser->getstringidentifier(callbackString); - free(callbackString); - - NPVariant browserResult; - if (browser->invoke(obj->npp, windowScriptObject, callbackIdentifier, 0, 0, &browserResult)) - browser->releasevariantvalue(&browserResult); - - browser->releaseobject(windowScriptObject); - - VOID_TO_NPVARIANT(*result); - return true; -} - -static bool getURL(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount == 2 && NPVARIANT_IS_STRING(args[0]) && NPVARIANT_IS_STRING(args[1])) { - NPUTF8* urlString = createCStringFromNPVariant(&args[0]); - NPUTF8* targetString = createCStringFromNPVariant(&args[1]); - NPError npErr = browser->geturl(obj->npp, urlString, targetString); - free(urlString); - free(targetString); - - INT32_TO_NPVARIANT(npErr, *result); - return true; - } else if (argCount == 1 && NPVARIANT_IS_STRING(args[0])) { - NPUTF8* urlString = createCStringFromNPVariant(&args[0]); - NPError npErr = browser->geturl(obj->npp, urlString, 0); - free(urlString); - - INT32_TO_NPVARIANT(npErr, *result); - return true; - } - return false; -} - -static bool removeDefaultMethod(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - pluginClass.invokeDefault = 0; - VOID_TO_NPVARIANT(*result); - return true; -} - -static bool getURLNotify(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 3 || !NPVARIANT_IS_STRING(args[0]) - || (!NPVARIANT_IS_STRING(args[1]) && !NPVARIANT_IS_NULL(args[1])) - || !NPVARIANT_IS_STRING(args[2])) - return false; - - NPUTF8* urlString = createCStringFromNPVariant(&args[0]); - NPUTF8* targetString = (NPVARIANT_IS_STRING(args[1]) ? createCStringFromNPVariant(&args[1]) : NULL); - NPUTF8* callbackString = createCStringFromNPVariant(&args[2]); - - NPIdentifier callbackIdentifier = browser->getstringidentifier(callbackString); - browser->geturlnotify(obj->npp, urlString, targetString, callbackIdentifier); - - free(urlString); - free(targetString); - free(callbackString); - - VOID_TO_NPVARIANT(*result); - return true; -} - -static bool testInvokeDefault(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (!NPVARIANT_IS_OBJECT(args[0])) - return false; - - NPObject *callback = NPVARIANT_TO_OBJECT(args[0]); - - NPVariant invokeArgs[1]; - NPVariant browserResult; - - STRINGZ_TO_NPVARIANT("test", invokeArgs[0]); - bool retval = browser->invokeDefault(obj->npp, callback, invokeArgs, 1, &browserResult); - - if (retval) - browser->releasevariantvalue(&browserResult); - - BOOLEAN_TO_NPVARIANT(retval, *result); - return true; -} - -static bool destroyStream(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - NPError npError = browser->destroystream(obj->npp, obj->stream, NPRES_USER_BREAK); - INT32_TO_NPVARIANT(npError, *result); - return true; -} - -static bool destroyNullStream(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - NPError npError = browser->destroystream(obj->npp, 0, NPRES_USER_BREAK); - INT32_TO_NPVARIANT(npError, *result); - return true; -} - -static bool testEnumerate(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) || !NPVARIANT_IS_OBJECT(args[1])) - return false; - - uint32_t count; - NPIdentifier* identifiers; - if (browser->enumerate(obj->npp, NPVARIANT_TO_OBJECT(args[0]), &identifiers, &count)) { - NPObject* outArray = NPVARIANT_TO_OBJECT(args[1]); - NPIdentifier pushIdentifier = browser->getstringidentifier("push"); - - for (uint32_t i = 0; i < count; i++) { - NPUTF8* string = browser->utf8fromidentifier(identifiers[i]); - - if (!string) - continue; - - NPVariant args[1]; - STRINGZ_TO_NPVARIANT(string, args[0]); - NPVariant browserResult; - if (browser->invoke(obj->npp, outArray, pushIdentifier, args, 1, &browserResult)) - browser->releasevariantvalue(&browserResult); - browser->memfree(string); - } - - browser->memfree(identifiers); - } - - VOID_TO_NPVARIANT(*result); - return true; -} - -static bool testGetIntIdentifier(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 1 || !NPVARIANT_IS_DOUBLE(args[0])) - return false; - - NPIdentifier identifier = browser->getintidentifier((int)NPVARIANT_TO_DOUBLE(args[0])); - INT32_TO_NPVARIANT((int32_t)(long long)identifier, *result); - return true; -} - -static bool testGetProperty(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount == 0) - return false; - - NPObject *object; - browser->getvalue(obj->npp, NPNVWindowNPObject, &object); - - for (uint32_t i = 0; i < argCount; i++) { - assert(NPVARIANT_IS_STRING(args[i])); - NPUTF8* propertyString = createCStringFromNPVariant(&args[i]); - NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); - free(propertyString); - - NPVariant variant; - bool retval = browser->getproperty(obj->npp, object, propertyIdentifier, &variant); - browser->releaseobject(object); - - if (!retval) - break; - - if (i + 1 < argCount) { - assert(NPVARIANT_IS_OBJECT(variant)); - object = NPVARIANT_TO_OBJECT(variant); - } else { - *result = variant; - return true; - } - } - - VOID_TO_NPVARIANT(*result); - return false; -} - -static bool testHasProperty(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) || !NPVARIANT_IS_STRING(args[1])) - return false; - - NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); - NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); - free(propertyString); - - bool retval = browser->hasproperty(obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier); - - BOOLEAN_TO_NPVARIANT(retval, *result); - return true; -} - -static bool testHasMethod(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) || !NPVARIANT_IS_STRING(args[1])) - return false; - - NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); - NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); - free(propertyString); - - bool retval = browser->hasmethod(obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier); - - BOOLEAN_TO_NPVARIANT(retval, *result); - return true; -} - -static bool testEvaluate(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 1 || !NPVARIANT_IS_STRING(args[0])) - return false; - NPObject* windowScriptObject; - browser->getvalue(obj->npp, NPNVWindowNPObject, &windowScriptObject); - - NPString s = NPVARIANT_TO_STRING(args[0]); - - bool retval = browser->evaluate(obj->npp, windowScriptObject, &s, result); - browser->releaseobject(windowScriptObject); - return retval; -} - -static bool testGetPropertyReturnValue(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 2 || !NPVARIANT_IS_OBJECT(args[0]) || !NPVARIANT_IS_STRING(args[1])) - return false; - - NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); - NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); - free(propertyString); - - NPVariant variant; - bool retval = browser->getproperty(obj->npp, NPVARIANT_TO_OBJECT(args[0]), propertyIdentifier, &variant); - if (retval) - browser->releasevariantvalue(&variant); - - BOOLEAN_TO_NPVARIANT(retval, *result); - return true; -} - -static char* toCString(const NPString& string) -{ - char* result = static_cast(malloc(string.UTF8Length + 1)); - memcpy(result, string.UTF8Characters, string.UTF8Length); - result[string.UTF8Length] = '\0'; - - return result; -} - -static bool testPostURLFile(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (argCount != 4 || !NPVARIANT_IS_STRING(args[0]) || !NPVARIANT_IS_STRING(args[1]) || !NPVARIANT_IS_STRING(args[2]) || !NPVARIANT_IS_STRING(args[3])) - return false; - - NPString urlString = NPVARIANT_TO_STRING(args[0]); - char* url = toCString(urlString); - - NPString targetString = NPVARIANT_TO_STRING(args[1]); - char* target = toCString(targetString); - - NPString pathString = NPVARIANT_TO_STRING(args[2]); - char* path = toCString(pathString); - - NPString contentsString = NPVARIANT_TO_STRING(args[3]); - - FILE* tempFile = fopen(path, "w"); - if (!tempFile) - return false; - - fwrite(contentsString.UTF8Characters, contentsString.UTF8Length, 1, tempFile); - fclose(tempFile); - - NPError error = browser->posturl(obj->npp, url, target, pathString.UTF8Length, path, TRUE); - - free(path); - free(target); - free(url); - - BOOLEAN_TO_NPVARIANT(error == NPERR_NO_ERROR, *result); - return true; -} - -static bool testConstruct(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - if (!argCount || !NPVARIANT_IS_OBJECT(args[0])) - return false; - - return browser->construct(obj->npp, NPVARIANT_TO_OBJECT(args[0]), args + 1, argCount - 1, result); -} - -// Helper function to notify the layout test controller that the test completed. -void notifyTestCompletion(NPP npp, NPObject* object) -{ - NPVariant result; - NPString script; - script.UTF8Characters = "javascript:window.layoutTestController.notifyDone();"; - script.UTF8Length = strlen("javascript:window.layoutTestController.notifyDone();"); - browser->evaluate(npp, object, &script, &result); - browser->releasevariantvalue(&result); -} - -bool testDocumentOpen(NPP npp) -{ - NPIdentifier documentId = browser->getstringidentifier("document"); - NPIdentifier openId = browser->getstringidentifier("open"); - - NPObject *windowObject = NULL; - browser->getvalue(npp, NPNVWindowNPObject, &windowObject); - if (!windowObject) - return false; - - NPVariant docVariant; - browser->getproperty(npp, windowObject, documentId, &docVariant); - if (docVariant.type != NPVariantType_Object) { - browser->releaseobject(windowObject); - return false; - } - - NPObject *documentObject = NPVARIANT_TO_OBJECT(docVariant); - - NPVariant openArgs[2]; - STRINGZ_TO_NPVARIANT("text/html", openArgs[0]); - STRINGZ_TO_NPVARIANT("_blank", openArgs[1]); - - NPVariant result; - if (!browser->invoke(npp, documentObject, openId, openArgs, 2, &result)) { - browser->releaseobject(windowObject); - browser->releaseobject(documentObject); - return false; - } - - browser->releaseobject(documentObject); - - if (result.type != NPVariantType_Object) { - browser->releaseobject(windowObject); - browser->releasevariantvalue(&result); - return false; - } - - pluginLogWithWindowObjectVariableArgs(windowObject, npp, "DOCUMENT OPEN SUCCESS"); - notifyTestCompletion(npp, result.value.objectValue); - browser->releaseobject(result.value.objectValue); - browser->releaseobject(windowObject); - return true; -} - -bool testWindowOpen(NPP npp) -{ - NPIdentifier openId = browser->getstringidentifier("open"); - - NPObject *windowObject = NULL; - browser->getvalue(npp, NPNVWindowNPObject, &windowObject); - if (!windowObject) - return false; - - NPVariant openArgs[2]; - STRINGZ_TO_NPVARIANT("about:blank", openArgs[0]); - STRINGZ_TO_NPVARIANT("_blank", openArgs[1]); - - NPVariant result; - if (!browser->invoke(npp, windowObject, openId, openArgs, 2, &result)) { - browser->releaseobject(windowObject); - return false; - } - - if (result.type != NPVariantType_Object) { - browser->releaseobject(windowObject); - browser->releasevariantvalue(&result); - return false; - } - - pluginLogWithWindowObjectVariableArgs(windowObject, npp, "WINDOW OPEN SUCCESS"); - notifyTestCompletion(npp, result.value.objectValue); - browser->releaseobject(result.value.objectValue); - browser->releaseobject(windowObject); - return true; -} - -static bool testSetStatus(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - char* message = 0; - if (argCount && NPVARIANT_IS_STRING(args[0])) { - NPString statusString = NPVARIANT_TO_STRING(args[0]); - message = toCString(statusString); - } - - browser->status(obj->npp, message); - - free(message); - return true; -} - -static bool testResizeTo(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - VOID_TO_NPVARIANT(*result); - - NPObject* windowObject; - if (NPERR_NO_ERROR != browser->getvalue(obj->npp, NPNVWindowNPObject, &windowObject)) - return false; - - NPVariant callResult; - if (browser->invoke(obj->npp, windowObject, browser->getstringidentifier("resizePlugin"), args, argCount, &callResult)) - browser->releasevariantvalue(&callResult); - - // Force layout. - if (browser->getproperty(obj->npp, windowObject, browser->getstringidentifier("pageYOffset"), &callResult)) - browser->releasevariantvalue(&callResult); - - return true; -} - -static bool normalizeOverride(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - VOID_TO_NPVARIANT(*result); - - NPObject* windowObject; - if (NPERR_NO_ERROR != browser->getvalue(obj->npp, NPNVWindowNPObject, &windowObject)) - return false; - - NPVariant callResult; - if (browser->invoke(obj->npp, windowObject, browser->getstringidentifier("pluginCallback"), args, argCount, &callResult)) - browser->releasevariantvalue(&callResult); - - return true; -} - - -static bool pluginInvoke(NPObject* header, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - PluginObject* plugin = reinterpret_cast(header); - if (name == pluginMethodIdentifiers[ID_TEST_CALLBACK_METHOD]) - return testCallback(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_GETURL]) - return getURL(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_REMOVE_DEFAULT_METHOD]) - return removeDefaultMethod(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_DOM_ACCESS]) - return testDOMAccess(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_GET_URL_NOTIFY]) - return getURLNotify(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_INVOKE_DEFAULT]) - return testInvokeDefault(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_ENUMERATE]) - return testEnumerate(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_DESTROY_STREAM]) - return destroyStream(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_GETINTIDENTIFIER]) - return testGetIntIdentifier(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_EVALUATE]) - return testEvaluate(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_GET_PROPERTY]) - return testGetProperty(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_GET_PROPERTY_RETURN_VALUE]) - return testGetPropertyReturnValue(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_HAS_PROPERTY]) - return testHasProperty(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_HAS_METHOD]) - return testHasMethod(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_IDENTIFIER_TO_STRING]) - return testIdentifierToString(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_IDENTIFIER_TO_INT]) - return testIdentifierToInt(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_POSTURL_FILE]) - return testPostURLFile(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_CONSTRUCT]) - return testConstruct(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_THROW_EXCEPTION_METHOD]) { - browser->setexception(header, "plugin object testThrowException SUCCESS"); - return true; - } else if (name == pluginMethodIdentifiers[ID_TEST_FAIL_METHOD]) { - NPObject* windowScriptObject; - browser->getvalue(plugin->npp, NPNVWindowNPObject, &windowScriptObject); - browser->invoke(plugin->npp, windowScriptObject, name, args, argCount, result); - } else if (name == pluginMethodIdentifiers[ID_DESTROY_NULL_STREAM]) - return destroyNullStream(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_TEST_RELOAD_PLUGINS_NO_PAGES]) { - browser->reloadplugins(false); - return true; - } else if (name == pluginMethodIdentifiers[ID_TEST_RELOAD_PLUGINS_AND_PAGES]) { - browser->reloadplugins(true); - return true; - } else if (name == pluginMethodIdentifiers[ID_TEST_GET_BROWSER_PROPERTY]) { - browser->getproperty(plugin->npp, NPVARIANT_TO_OBJECT(args[0]), stringVariantToIdentifier(args[1]), result); - return true; - } else if (name == pluginMethodIdentifiers[ID_TEST_SET_BROWSER_PROPERTY]) { - browser->setproperty(plugin->npp, NPVARIANT_TO_OBJECT(args[0]), stringVariantToIdentifier(args[1]), &args[2]); - return true; - } else if (name == pluginMethodIdentifiers[ID_REMEMBER]) { - if (plugin->rememberedObject) - browser->releaseobject(plugin->rememberedObject); - plugin->rememberedObject = NPVARIANT_TO_OBJECT(args[0]); - browser->retainobject(plugin->rememberedObject); - VOID_TO_NPVARIANT(*result); - return true; - } else if (name == pluginMethodIdentifiers[ID_GET_REMEMBERED_OBJECT]) { - assert(plugin->rememberedObject); - browser->retainobject(plugin->rememberedObject); - OBJECT_TO_NPVARIANT(plugin->rememberedObject, *result); - return true; - } else if (name == pluginMethodIdentifiers[ID_GET_AND_FORGET_REMEMBERED_OBJECT]) { - assert(plugin->rememberedObject); - OBJECT_TO_NPVARIANT(plugin->rememberedObject, *result); - plugin->rememberedObject = 0; - return true; - } else if (name == pluginMethodIdentifiers[ID_REF_COUNT]) { - uint32_t refCount = NPVARIANT_TO_OBJECT(args[0])->referenceCount; - INT32_TO_NPVARIANT(refCount, *result); - return true; - } else if (name == pluginMethodIdentifiers[ID_SET_STATUS]) - return testSetStatus(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_RESIZE_TO]) - return testResizeTo(plugin, args, argCount, result); - else if (name == pluginMethodIdentifiers[ID_NORMALIZE]) - return normalizeOverride(plugin, args, argCount, result); - - return false; -} - -static bool pluginInvokeDefault(NPObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) -{ - INT32_TO_NPVARIANT(1, *result); - return true; -} - -static void pluginInvalidate(NPObject* header) -{ - PluginObject* plugin = reinterpret_cast(header); - plugin->testObject = 0; - plugin->rememberedObject = 0; -} - -static NPObject *pluginAllocate(NPP npp, NPClass *theClass) -{ - PluginObject* newInstance = (PluginObject*)malloc(sizeof(PluginObject)); - - if (!identifiersInitialized) { - identifiersInitialized = true; - initializeIdentifiers(); - } - - newInstance->npp = npp; - newInstance->testObject = browser->createobject(npp, getTestClass()); - newInstance->rememberedObject = 0; - newInstance->eventLogging = FALSE; - newInstance->onStreamLoad = 0; - newInstance->onStreamDestroy = 0; - newInstance->onDestroy = 0; - newInstance->onURLNotify = 0; - newInstance->onSetWindow = 0; - newInstance->logDestroy = FALSE; - newInstance->logSetWindow = FALSE; - newInstance->returnErrorFromNewStream = FALSE; - newInstance->returnNegativeOneFromWrite = FALSE; - newInstance->stream = 0; - - newInstance->firstUrl = NULL; - newInstance->firstHeaders = NULL; - newInstance->lastUrl = NULL; - newInstance->lastHeaders = NULL; - - newInstance->testGetURLOnDestroy = FALSE; - newInstance->testDocumentOpenInDestroyStream = FALSE; - newInstance->testWindowOpen = FALSE; - newInstance->testKeyboardFocusForPlugins = FALSE; - - return (NPObject*)newInstance; -} - -static void pluginDeallocate(NPObject* header) -{ - PluginObject* plugin = reinterpret_cast(header); - if (plugin->testObject) - browser->releaseobject(plugin->testObject); - if (plugin->rememberedObject) - browser->releaseobject(plugin->rememberedObject); - - free(plugin->firstUrl); - free(plugin->firstHeaders); - free(plugin->lastUrl); - free(plugin->lastHeaders); - free(plugin); -} - -void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData) -{ - assert(object); - - NPVariant args[2]; - - NPObject *windowScriptObject; - browser->getvalue(object->npp, NPNVWindowNPObject, &windowScriptObject); - - NPIdentifier callbackIdentifier = notifyData; - - INT32_TO_NPVARIANT(reason, args[0]); - - char *strHdr = NULL; - if (object->firstUrl && object->firstHeaders && object->lastUrl && object->lastHeaders) { - // Format expected by JavaScript validator: four fields separated by \n\n: - // First URL; first header block; last URL; last header block. - // Note that header blocks already end with \n due to how NPStream::headers works. - int len = strlen(object->firstUrl) + 2 - + strlen(object->firstHeaders) + 1 - + strlen(object->lastUrl) + 2 - + strlen(object->lastHeaders) + 1; - strHdr = (char*)malloc(len + 1); - snprintf(strHdr, len + 1, "%s\n\n%s\n%s\n\n%s\n", - object->firstUrl, object->firstHeaders, object->lastUrl, object->lastHeaders); - STRINGN_TO_NPVARIANT(strHdr, len, args[1]); - } else - NULL_TO_NPVARIANT(args[1]); - - NPVariant browserResult; - if (browser->invoke(object->npp, windowScriptObject, callbackIdentifier, args, 2, &browserResult)) - browser->releasevariantvalue(&browserResult); - - free(strHdr); -} - -void notifyStream(PluginObject* object, const char *url, const char *headers) -{ - if (object->firstUrl == NULL) { - if (url) - object->firstUrl = strdup(url); - if (headers) - object->firstHeaders = strdup(headers); - } else { - free(object->lastUrl); - free(object->lastHeaders); - object->lastUrl = (url ? strdup(url) : NULL); - object->lastHeaders = (headers ? strdup(headers) : NULL); - } -} - -void testNPRuntime(NPP npp) -{ - NPObject* windowScriptObject; - browser->getvalue(npp, NPNVWindowNPObject, &windowScriptObject); - - // Invoke - NPIdentifier testNPInvoke = browser->getstringidentifier("testNPInvoke"); - NPVariant args[7]; - - VOID_TO_NPVARIANT(args[0]); - NULL_TO_NPVARIANT(args[1]); - BOOLEAN_TO_NPVARIANT(true, args[2]); - INT32_TO_NPVARIANT(242, args[3]); - DOUBLE_TO_NPVARIANT(242.242, args[4]); - STRINGZ_TO_NPVARIANT("Hello, World", args[5]); - OBJECT_TO_NPVARIANT(windowScriptObject, args[6]); - - NPVariant result; - if (browser->invoke(npp, windowScriptObject, testNPInvoke, args, 7, &result)) - browser->releasevariantvalue(&result); - - browser->releaseobject(windowScriptObject); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObject.h --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObject.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,86 +0,0 @@ -/* - * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include - -#if XP_MACOSX -#if !defined(MAC_OS_X_VERSION_10_5) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 -#define BUILDING_ON_TIGER 1 -#elif !defined(MAC_OS_X_VERSION_10_6) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6 -#define BUILDING_ON_LEOPARD 1 -#elif !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7 -#define BUILDING_ON_SNOW_LEOPARD 1 -#endif -#endif // XP_MACOSX - -extern NPNetscapeFuncs *browser; - -typedef struct { - NPObject header; - - NPP npp; - NPBool eventLogging; - NPBool logSetWindow; - NPBool logDestroy; - NPBool returnNegativeOneFromWrite; - NPBool returnErrorFromNewStream; - NPBool cachedPrivateBrowsingMode; - NPObject* testObject; - NPObject* rememberedObject; - NPStream* stream; - NPBool testDocumentOpenInDestroyStream; - NPBool testGetURLOnDestroy; - NPBool testWindowOpen; - NPBool testKeyboardFocusForPlugins; - char* onStreamLoad; - char* onStreamDestroy; - char* onDestroy; - char* onURLNotify; - char* onSetWindow; - char* firstUrl; - char* firstHeaders; - char* lastUrl; - char* lastHeaders; -#ifdef XP_MACOSX - NPEventModel eventModel; -#endif -#if XP_MACOSX && !defined(BUILDING_ON_TIGER) - void* coreAnimationLayer; -#endif - NPWindow lastWindow; -} PluginObject; - -extern NPClass *getPluginClass(void); -extern void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData); -extern void notifyStream(PluginObject* object, const char *url, const char *headers); -extern void testNPRuntime(NPP npp); -extern void pluginLog(NPP instance, const char* format, ...); -extern bool testDocumentOpen(NPP npp); -extern bool testWindowOpen(NPP npp); - -#if XP_MACOSX && !defined(BUILDING_ON_TIGER) -extern void* createCoreAnimationLayer(); -#endif - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObjectMac.mm --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObjectMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,102 +0,0 @@ -/* - * Copyright (C) 2010 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "PluginObject.h" - -#if !defined(BUILDING_ON_TIGER) - -#include - -@interface TestPluginLayer : CALayer -@end - -@implementation TestPluginLayer - -- (void)drawInContext:(CGContextRef)context -{ - CGRect bounds = [self bounds]; - const char* text = "Test Plug-in"; - CGContextSelectFont(context, "Helvetica", 24, kCGEncodingMacRoman); - CGContextShowTextAtPoint(context, bounds.origin.x + 3.0f, bounds.origin.y + bounds.size.height - 30.0f, text, strlen(text)); -} - -@end - -void* createCoreAnimationLayer() -{ - CALayer *caLayer = [[TestPluginLayer alloc] init]; - - NSNull *nullValue = [NSNull null]; - NSDictionary *actions = [NSDictionary dictionaryWithObjectsAndKeys: - nullValue, @"anchorPoint", - nullValue, @"bounds", - nullValue, @"contents", - nullValue, @"contentsRect", - nullValue, @"opacity", - nullValue, @"position", - nullValue, @"shadowColor", - nullValue, @"sublayerTransform", - nullValue, @"sublayers", - nullValue, @"transform", - nullValue, @"zPosition", - nil]; - // Turn off default animations. - [caLayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]]; - [caLayer setNeedsDisplayOnBoundsChange:YES]; - - [caLayer setBounds:CGRectMake(0, 0, 200, 100)]; - [caLayer setAnchorPoint:CGPointZero]; - - CGColorRef color = CGColorCreateGenericRGB(0.5, 0.5, 1, 1); - [caLayer setBackgroundColor:color]; - CGColorRelease(color); - - [caLayer setLayoutManager:[CAConstraintLayoutManager layoutManager]]; - - CALayer *sublayer = [CALayer layer]; - // Turn off default animations. - [sublayer setStyle:[NSDictionary dictionaryWithObject:actions forKey:@"actions"]]; - - color = CGColorCreateGenericRGB(0, 0, 0, 0.75); - [sublayer setBackgroundColor:color]; - CGColorRelease(color); - [sublayer setBounds:CGRectMake(0, 0, 180, 20)]; - - [sublayer addConstraint:[CAConstraint constraintWithAttribute:kCAConstraintMinY - relativeTo:@"superlayer" - attribute:kCAConstraintMinY]]; - [sublayer addConstraint:[CAConstraint constraintWithAttribute:kCAConstraintMinX - relativeTo:@"superlayer" - attribute:kCAConstraintMinX]]; - [sublayer addConstraint:[CAConstraint constraintWithAttribute:kCAConstraintMaxX - relativeTo:@"superlayer" - attribute:kCAConstraintMaxX]]; - - [caLayer addSublayer:sublayer]; - return caLayer; -} - -#endif // !defined(BUILDING_ON_TIGER) - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/TestObject.cpp --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/TestObject.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,167 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "TestObject.h" -#include "PluginObject.h" - -#include -#include - -static bool testEnumerate(NPObject *npobj, NPIdentifier **value, uint32_t *count); -static bool testHasMethod(NPObject*, NPIdentifier name); -static bool testInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result); -static bool testHasProperty(NPObject*, NPIdentifier name); -static bool testGetProperty(NPObject*, NPIdentifier name, NPVariant*); -static NPObject *testAllocate(NPP npp, NPClass *theClass); -static void testDeallocate(NPObject *obj); -static bool testConstruct(NPObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result); - -static NPClass testClass = { - NP_CLASS_STRUCT_VERSION, - testAllocate, - testDeallocate, - 0, - testHasMethod, - testInvoke, - 0, - testHasProperty, - testGetProperty, - 0, - 0, - testEnumerate, - testConstruct -}; - -NPClass *getTestClass(void) -{ - return &testClass; -} - -static bool identifiersInitialized = false; - -#define ID_OBJECT_POINTER 2 - -#define NUM_ENUMERATABLE_TEST_IDENTIFIERS 2 -#define NUM_TEST_IDENTIFIERS 3 - -static NPIdentifier testIdentifiers[NUM_TEST_IDENTIFIERS]; -static const NPUTF8 *testIdentifierNames[NUM_TEST_IDENTIFIERS] = { - "foo", - "bar", - "objectPointer", -}; - -#define ID_THROW_EXCEPTION_METHOD 0 -#define NUM_METHOD_IDENTIFIERS 1 - -static NPIdentifier testMethodIdentifiers[NUM_METHOD_IDENTIFIERS]; -static const NPUTF8 *testMethodIdentifierNames[NUM_METHOD_IDENTIFIERS] = { - "throwException", -}; - -static void initializeIdentifiers(void) -{ - browser->getstringidentifiers(testIdentifierNames, NUM_TEST_IDENTIFIERS, testIdentifiers); - browser->getstringidentifiers(testMethodIdentifierNames, NUM_METHOD_IDENTIFIERS, testMethodIdentifiers); -} - -static NPObject *testAllocate(NPP /*npp*/, NPClass* /*theClass*/) -{ - NPObject *newInstance = static_cast(malloc(sizeof(NPObject))); - - if (!identifiersInitialized) { - identifiersInitialized = true; - initializeIdentifiers(); - } - - return newInstance; -} - -static void testDeallocate(NPObject *obj) -{ - free(obj); -} - -static bool testHasMethod(NPObject*, NPIdentifier name) -{ - for (unsigned i = 0; i < NUM_METHOD_IDENTIFIERS; i++) { - if (testMethodIdentifiers[i] == name) - return true; - } - return false; -} - -static bool testInvoke(NPObject* header, NPIdentifier name, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* /*result*/) -{ - if (name == testMethodIdentifiers[ID_THROW_EXCEPTION_METHOD]) { - browser->setexception(header, "test object throwException SUCCESS"); - return true; - } - return false; -} - -static bool testHasProperty(NPObject*, NPIdentifier name) -{ - for (unsigned i = 0; i < NUM_TEST_IDENTIFIERS; i++) { - if (testIdentifiers[i] == name) - return true; - } - - return false; -} - -static bool testGetProperty(NPObject* npobj, NPIdentifier name, NPVariant* result) -{ - if (name == testIdentifiers[ID_OBJECT_POINTER]) { - int32_t objectPointer = static_cast(reinterpret_cast(npobj)); - - INT32_TO_NPVARIANT(objectPointer, *result); - return true; - } - - return false; -} - - -static bool testEnumerate(NPObject* /*npobj*/, NPIdentifier **value, uint32_t *count) -{ - *count = NUM_ENUMERATABLE_TEST_IDENTIFIERS; - - *value = (NPIdentifier*)browser->memalloc(NUM_ENUMERATABLE_TEST_IDENTIFIERS * sizeof(NPIdentifier)); - memcpy(*value, testIdentifiers, sizeof(NPIdentifier) * NUM_ENUMERATABLE_TEST_IDENTIFIERS); - - return true; -} - -static bool testConstruct(NPObject* npobj, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* result) -{ - browser->retainobject(npobj); - - // Just return the same object. - OBJECT_TO_NPVARIANT(npobj, *result); - return true; -} - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/TestObject.h --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/TestObject.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include - -NPClass *getTestClass(void); diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/mac/Info.plist --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/mac/Info.plist Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - TestNetscapePlugIn - CFBundleGetInfoString - 420+, Copyright 2006-2009 Apple Inc. - CFBundleIconFile - - CFBundleIdentifier - com.apple.testnetscapeplugin - CFBundleInfoDictionaryVersion - 6.0 - CFBundlePackageType - BRPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - CFPlugInDynamicRegisterFunction - - CFPlugInDynamicRegistration - NO - CFPlugInFactories - - 00000000-0000-0000-0000-000000000000 - MyFactoryFunction - - CFPlugInTypes - - 00000000-0000-0000-0000-000000000000 - - 00000000-0000-0000-0000-000000000000 - - - CFPlugInUnloadFunction - - WebPluginDescription - Simple Netscape plug-in that handles test content for WebKit - WebPluginMIMETypes - - application/x-webkit-test-netscape - - WebPluginExtensions - - testnetscape - - WebPluginTypeDescription - test netscape content - - - WebPluginName - WebKit Test PlugIn - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/main.cpp --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/main.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,560 +0,0 @@ -/* - * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "PluginObject.h" - -#if XP_WIN -#define STDCALL __stdcall - -static inline int strcasecmp(const char* s1, const char* s2) -{ - return _stricmp(s1, s2); -} - -#else -#define STDCALL -#endif - -// Entry points -extern "C" -NPError STDCALL NP_Initialize(NPNetscapeFuncs *browserFuncs) -{ - browser = browserFuncs; - return NPERR_NO_ERROR; -} - -extern "C" -NPError STDCALL NP_GetEntryPoints(NPPluginFuncs *pluginFuncs) -{ - pluginFuncs->version = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR; - pluginFuncs->size = sizeof(pluginFuncs); - pluginFuncs->newp = NPP_New; - pluginFuncs->destroy = NPP_Destroy; - pluginFuncs->setwindow = NPP_SetWindow; - pluginFuncs->newstream = NPP_NewStream; - pluginFuncs->destroystream = NPP_DestroyStream; - pluginFuncs->asfile = NPP_StreamAsFile; - pluginFuncs->writeready = NPP_WriteReady; - pluginFuncs->write = (NPP_WriteProcPtr)NPP_Write; - pluginFuncs->print = NPP_Print; - pluginFuncs->event = NPP_HandleEvent; - pluginFuncs->urlnotify = NPP_URLNotify; - pluginFuncs->getvalue = NPP_GetValue; - pluginFuncs->setvalue = NPP_SetValue; - - return NPERR_NO_ERROR; -} - -extern "C" -void STDCALL NP_Shutdown(void) -{ -} - -static void executeScript(const PluginObject* obj, const char* script); - -NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData *saved) -{ - bool forceCarbon = false; - -#if XP_MACOSX - NPEventModel eventModel; - - // Always turn on the CG model - NPBool supportsCoreGraphics; - if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR) - supportsCoreGraphics = false; - - if (!supportsCoreGraphics) - return NPERR_INCOMPATIBLE_VERSION_ERROR; - - NPDrawingModel drawingModelToUse = NPDrawingModelCoreGraphics; - - NPBool supportsCoreAnimation; - if (browser->getvalue(instance, NPNVsupportsCoreAnimationBool, &supportsCoreAnimation) != NPERR_NO_ERROR) - supportsCoreAnimation = false; - -#ifndef NP_NO_CARBON - NPBool supportsCarbon = false; -#endif - NPBool supportsCocoa = false; - -#ifndef NP_NO_CARBON - // A browser that doesn't know about NPNVsupportsCarbonBool is one that only supports Carbon event model. - if (browser->getvalue(instance, NPNVsupportsCarbonBool, &supportsCarbon) != NPERR_NO_ERROR) - supportsCarbon = true; -#endif - - if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR) - supportsCocoa = false; - - if (supportsCocoa && !forceCarbon) { - eventModel = NPEventModelCocoa; -#ifndef NP_NO_CARBON - } else if (supportsCarbon) { - eventModel = NPEventModelCarbon; -#endif - } else { - return NPERR_INCOMPATIBLE_VERSION_ERROR; - } - - browser->setvalue(instance, NPPVpluginEventModel, (void *)eventModel); -#endif // XP_MACOSX - - PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass()); - instance->pdata = obj; - -#if XP_MACOSX - obj->eventModel = eventModel; -#if !defined(BUILDING_ON_TIGER) - obj->coreAnimationLayer = 0; -#endif -#endif // XP_MACOSX - - for (int i = 0; i < argc; i++) { - if (strcasecmp(argn[i], "onstreamload") == 0 && !obj->onStreamLoad) - obj->onStreamLoad = strdup(argv[i]); - else if (strcasecmp(argn[i], "onStreamDestroy") == 0 && !obj->onStreamDestroy) - obj->onStreamDestroy = strdup(argv[i]); - else if (strcasecmp(argn[i], "onURLNotify") == 0 && !obj->onURLNotify) - obj->onURLNotify = strdup(argv[i]); - else if (strcasecmp(argn[i], "src") == 0 && - strcasecmp(argv[i], "data:application/x-webkit-test-netscape,returnerrorfromnewstream") == 0) - obj->returnErrorFromNewStream = TRUE; - else if (strcasecmp(argn[i], "onSetWindow") == 0 && !obj->onSetWindow) - obj->onSetWindow = strdup(argv[i]); - else if (strcasecmp(argn[i], "logfirstsetwindow") == 0) - obj->logSetWindow = TRUE; - else if (strcasecmp(argn[i], "testnpruntime") == 0) - testNPRuntime(instance); - else if (strcasecmp(argn[i], "forcecarbon") == 0) - forceCarbon = true; - else if (strcasecmp(argn[i], "logSrc") == 0) { - for (int i = 0; i < argc; i++) - if (strcasecmp(argn[i], "src") == 0) - pluginLog(instance, "src: %s", argv[i]); - } else if (strcasecmp(argn[i], "cleardocumentduringnew") == 0) - executeScript(obj, "document.body.innerHTML = ''"); - else if (!strcasecmp(argn[i], "ondestroy")) - obj->onDestroy = strdup(argv[i]); - else if (strcasecmp(argn[i], "testdocumentopenindestroystream") == 0) - obj->testDocumentOpenInDestroyStream = TRUE; - else if (strcasecmp(argn[i], "testwindowopen") == 0) - obj->testWindowOpen = TRUE; - else if (strcasecmp(argn[i], "drawingmodel") == 0) { -#if XP_MACOSX && !defined(BUILDING_ON_TIGER) - const char* value = argv[i]; - if (strcasecmp(value, "coreanimation") == 0) { - if (supportsCoreAnimation) - drawingModelToUse = NPDrawingModelCoreAnimation; - else - return NPERR_INCOMPATIBLE_VERSION_ERROR; - } else if (strcasecmp(value, "coregraphics") == 0) { - if (supportsCoreGraphics) - drawingModelToUse = NPDrawingModelCoreGraphics; - else - return NPERR_INCOMPATIBLE_VERSION_ERROR; - } else - return NPERR_INCOMPATIBLE_VERSION_ERROR; -#endif - } else if (strcasecmp(argn[i], "testGetURLOnDestroy") == 0) { -#if XP_WIN - // FIXME: When https://bugs.webkit.org/show_bug.cgi?id=41831 is fixed, this #ifdef can be removed. - obj->testGetURLOnDestroy = TRUE; -#endif - } else if (strcasecmp(argn[i], "src") == 0 && strstr(argv[i], "plugin-document-has-focus.pl")) - obj->testKeyboardFocusForPlugins = TRUE; - } - -#if XP_MACOSX - browser->setvalue(instance, NPPVpluginDrawingModel, (void *)drawingModelToUse); -#if !defined(BUILDING_ON_TIGER) - if (drawingModelToUse == NPDrawingModelCoreAnimation) - obj->coreAnimationLayer = createCoreAnimationLayer(); -#endif -#endif - - browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode); - - return NPERR_NO_ERROR; -} - -NPError NPP_Destroy(NPP instance, NPSavedData **save) -{ - PluginObject* obj = static_cast(instance->pdata); - if (obj) { - if (obj->testGetURLOnDestroy) - browser->geturlnotify(obj->npp, "about:blank", "", 0); - - if (obj->onDestroy) { - executeScript(obj, obj->onDestroy); - free(obj->onDestroy); - } - - if (obj->onStreamLoad) - free(obj->onStreamLoad); - - if (obj->onStreamDestroy) - free(obj->onStreamDestroy); - - if (obj->onURLNotify) - free(obj->onURLNotify); - - if (obj->onSetWindow) - free(obj->onSetWindow); - - if (obj->logDestroy) - pluginLog(instance, "NPP_Destroy"); - -#if XP_MACOSX && !defined(BUILDING_ON_TIGER) - if (obj->coreAnimationLayer) - CFRelease(obj->coreAnimationLayer); -#endif - - browser->releaseobject(&obj->header); - } - return NPERR_NO_ERROR; -} - -NPError NPP_SetWindow(NPP instance, NPWindow *window) -{ - PluginObject* obj = static_cast(instance->pdata); - - if (obj) { - obj->lastWindow = *window; - - if (obj->logSetWindow) { - pluginLog(instance, "NPP_SetWindow: %d %d", (int)window->width, (int)window->height); - obj->logSetWindow = FALSE; - } - - if (obj->onSetWindow) - executeScript(obj, obj->onSetWindow); - - if (obj->testWindowOpen) { - testWindowOpen(instance); - obj->testWindowOpen = FALSE; - } - - if (obj->testKeyboardFocusForPlugins) { - obj->eventLogging = true; - executeScript(obj, "eventSender.keyDown('A');"); - } - } - - return NPERR_NO_ERROR; -} - -static void executeScript(const PluginObject* obj, const char* script) -{ - NPObject *windowScriptObject; - browser->getvalue(obj->npp, NPNVWindowNPObject, &windowScriptObject); - - NPString npScript; - npScript.UTF8Characters = script; - npScript.UTF8Length = strlen(script); - - NPVariant browserResult; - browser->evaluate(obj->npp, windowScriptObject, &npScript, &browserResult); - browser->releasevariantvalue(&browserResult); -} - -NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream *stream, NPBool seekable, uint16_t *stype) -{ - PluginObject* obj = static_cast(instance->pdata); - obj->stream = stream; - *stype = NP_NORMAL; - - if (obj->returnErrorFromNewStream) - return NPERR_GENERIC_ERROR; - - if (browser->version >= NPVERS_HAS_RESPONSE_HEADERS) - notifyStream(obj, stream->url, stream->headers); - - if (obj->onStreamLoad) - executeScript(obj, obj->onStreamLoad); - - return NPERR_NO_ERROR; -} - -NPError NPP_DestroyStream(NPP instance, NPStream *stream, NPReason reason) -{ - PluginObject* obj = (PluginObject*)instance->pdata; - - if (obj->onStreamDestroy) { - NPObject* windowObject = 0; - NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); - - if (error == NPERR_NO_ERROR) { - NPVariant onStreamDestroyVariant; - if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) { - if (NPVARIANT_IS_OBJECT(onStreamDestroyVariant)) { - NPObject* onStreamDestroyFunction = NPVARIANT_TO_OBJECT(onStreamDestroyVariant); - - NPVariant reasonVariant; - INT32_TO_NPVARIANT(reason, reasonVariant); - - NPVariant result; - browser->invokeDefault(instance, onStreamDestroyFunction, &reasonVariant, 1, &result); - browser->releasevariantvalue(&result); - } - browser->releasevariantvalue(&onStreamDestroyVariant); - } - browser->releaseobject(windowObject); - } - } - - if (obj->testDocumentOpenInDestroyStream) { - testDocumentOpen(instance); - obj->testDocumentOpenInDestroyStream = FALSE; - } - - return NPERR_NO_ERROR; -} - -int32_t NPP_WriteReady(NPP instance, NPStream *stream) -{ - return 4096; -} - -int32_t NPP_Write(NPP instance, NPStream *stream, int32_t offset, int32_t len, void *buffer) -{ - PluginObject* obj = (PluginObject*)instance->pdata; - - if (obj->returnNegativeOneFromWrite) - return -1; - - return len; -} - -void NPP_StreamAsFile(NPP instance, NPStream *stream, const char *fname) -{ -} - -void NPP_Print(NPP instance, NPPrint *platformPrint) -{ -} - -#if XP_MACOSX -#ifndef NP_NO_CARBON -static int16_t handleEventCarbon(NPP instance, PluginObject* obj, EventRecord* event) -{ - Point pt = { event->where.v, event->where.h }; - - switch (event->what) { - case nullEvent: - // these are delivered non-deterministically, don't log. - break; - case mouseDown: - GlobalToLocal(&pt); - pluginLog(instance, "mouseDown at (%d, %d)", pt.h, pt.v); - break; - case mouseUp: - GlobalToLocal(&pt); - pluginLog(instance, "mouseUp at (%d, %d)", pt.h, pt.v); - break; - case keyDown: - pluginLog(instance, "keyDown '%c'", (char)(event->message & 0xFF)); - break; - case keyUp: - pluginLog(instance, "keyUp '%c'", (char)(event->message & 0xFF)); - if (obj->testKeyboardFocusForPlugins) { - obj->eventLogging = false; - obj->testKeyboardFocusForPlugins = FALSE; - executeScript(obj, "layoutTestController.notifyDone();"); - } - break; - case autoKey: - pluginLog(instance, "autoKey '%c'", (char)(event->message & 0xFF)); - break; - case updateEvt: - pluginLog(instance, "updateEvt"); - break; - case diskEvt: - pluginLog(instance, "diskEvt"); - break; - case activateEvt: - pluginLog(instance, "activateEvt"); - break; - case osEvt: - printf("PLUGIN: osEvt - "); - switch ((event->message & 0xFF000000) >> 24) { - case suspendResumeMessage: - printf("%s\n", (event->message & 0x1) ? "resume" : "suspend"); - break; - case mouseMovedMessage: - printf("mouseMoved\n"); - break; - default: - printf("%08lX\n", event->message); - } - break; - case kHighLevelEvent: - pluginLog(instance, "kHighLevelEvent"); - break; - // NPAPI events - case getFocusEvent: - pluginLog(instance, "getFocusEvent"); - break; - case loseFocusEvent: - pluginLog(instance, "loseFocusEvent"); - break; - case adjustCursorEvent: - pluginLog(instance, "adjustCursorEvent"); - break; - default: - pluginLog(instance, "event %d", event->what); - } - - return 0; -} -#endif - -static int16_t handleEventCocoa(NPP instance, PluginObject* obj, NPCocoaEvent* event) -{ - switch (event->type) { - case NPCocoaEventWindowFocusChanged: - - case NPCocoaEventFocusChanged: - if (event->data.focus.hasFocus) - pluginLog(instance, "getFocusEvent"); - else - pluginLog(instance, "loseFocusEvent"); - return 1; - - case NPCocoaEventDrawRect: - return 1; - - case NPCocoaEventKeyDown: - if (event->data.key.characters) - pluginLog(instance, "keyDown '%c'", CFStringGetCharacterAtIndex(reinterpret_cast(event->data.key.characters), 0)); - return 1; - - case NPCocoaEventKeyUp: - if (event->data.key.characters) { - pluginLog(instance, "keyUp '%c'", CFStringGetCharacterAtIndex(reinterpret_cast(event->data.key.characters), 0)); - if (obj->testKeyboardFocusForPlugins) { - obj->eventLogging = false; - obj->testKeyboardFocusForPlugins = FALSE; - executeScript(obj, "layoutTestController.notifyDone();"); - } - } - return 1; - - case NPCocoaEventFlagsChanged: - return 1; - - case NPCocoaEventMouseDown: - pluginLog(instance, "mouseDown at (%d, %d)", - (int)event->data.mouse.pluginX, - (int)event->data.mouse.pluginY); - return 1; - case NPCocoaEventMouseUp: - pluginLog(instance, "mouseUp at (%d, %d)", - (int)event->data.mouse.pluginX, - (int)event->data.mouse.pluginY); - return 1; - - case NPCocoaEventMouseMoved: - case NPCocoaEventMouseEntered: - case NPCocoaEventMouseExited: - case NPCocoaEventMouseDragged: - case NPCocoaEventScrollWheel: - case NPCocoaEventTextInput: - return 1; - } - - return 0; -} - -#endif // XP_MACOSX - -int16_t NPP_HandleEvent(NPP instance, void *event) -{ - PluginObject* obj = static_cast(instance->pdata); - if (!obj->eventLogging) - return 0; - -#if XP_MACOSX -#ifndef NP_NO_CARBON - if (obj->eventModel == NPEventModelCarbon) - return handleEventCarbon(instance, obj, static_cast(event)); -#endif - - assert(obj->eventModel == NPEventModelCocoa); - return handleEventCocoa(instance, obj, static_cast(event)); -#else - // FIXME: Implement for other platforms. - return 0; -#endif // XP_MACOSX -} - -void NPP_URLNotify(NPP instance, const char *url, NPReason reason, void *notifyData) -{ - PluginObject* obj = static_cast(instance->pdata); - - if (obj->onURLNotify) - executeScript(obj, obj->onURLNotify); - - handleCallback(obj, url, reason, notifyData); -} - -NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value) -{ - PluginObject* obj = static_cast(instance->pdata); - - if (variable == NPPVpluginScriptableNPObject) { - void **v = (void **)value; - // Return value is expected to be retained - browser->retainobject((NPObject *)obj); - *v = obj; - return NPERR_NO_ERROR; - } - -#if XP_MACOSX && !defined(BUILDING_ON_TIGER) - if (variable == NPPVpluginCoreAnimationLayer) { - if (!obj->coreAnimationLayer) - return NPERR_GENERIC_ERROR; - - void **v = (void **)value; - *v = (void*)CFRetain(obj->coreAnimationLayer); - return NPERR_NO_ERROR; - } -#endif - - return NPERR_GENERIC_ERROR; -} - -NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value) -{ - PluginObject* obj = static_cast(instance->pdata); - - switch (variable) { - case NPNVprivateModeBool: - obj->cachedPrivateBrowsingMode = *(NPBool*)value; - return NPERR_NO_ERROR; - default: - return NPERR_GENERIC_ERROR; - } -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.def Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -LIBRARY "npTestNetscapePlugin" - -EXPORTS - NP_GetEntryPoints @1 - NP_Initialize @2 - NP_Shutdown @3 diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.rc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,101 +0,0 @@ -// Microsoft Visual C++ generated resource script. -// -#include "resource.h" - -#define APSTUDIO_READONLY_SYMBOLS -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 2 resource. -// -#include "windows.h" - -///////////////////////////////////////////////////////////////////////////// -#undef APSTUDIO_READONLY_SYMBOLS - -///////////////////////////////////////////////////////////////////////////// -// English (U.S.) resources - -#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) -#ifdef _WIN32 -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) -#endif //_WIN32 - -#ifdef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// TEXTINCLUDE -// - -1 TEXTINCLUDE -BEGIN - "resource.h\0" -END - -2 TEXTINCLUDE -BEGIN - "#include ""windows.h""\r\n" - "\0" -END - -3 TEXTINCLUDE -BEGIN - "\r\n" - "\0" -END - -#endif // APSTUDIO_INVOKED - - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,1 - PRODUCTVERSION 1,0,0,1 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x2L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904e4" - BEGIN - VALUE "CompanyName", "Apple Inc." - VALUE "FileDescription", "TestNetscapePlugIn" - VALUE "FileOpenName", "test netscape content" - VALUE "LegalCopyright", "Copyright Apple Inc. 2007-2009" - VALUE "MIMEType", "application/x-webkit-test-netscape" - VALUE "OriginalFilename", "npTestNetscapePlugin.dll" - VALUE "ProductName", "TestNetscapePlugIn" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1252 - END -END - -#endif // English (U.S.) resources -///////////////////////////////////////////////////////////////////////////// - - - -#ifndef APSTUDIO_INVOKED -///////////////////////////////////////////////////////////////////////////// -// -// Generated from the TEXTINCLUDE 3 resource. -// - - -///////////////////////////////////////////////////////////////////////////// -#endif // not APSTUDIO_INVOKED - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,454 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin_debug.def --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin_debug.def Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,6 +0,0 @@ -LIBRARY "npTestNetscapePlugin_debug" - -EXPORTS - NP_GetEntryPoints @1 - NP_Initialize @2 - NP_Shutdown @3 diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/resource.h --- a/WebKitTools/DumpRenderTree/TestNetscapePlugIn/win/resource.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,14 +0,0 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Visual C++ generated include file. -// Used by TestNetscapePlugin.rc - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 101 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1001 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/WorkQueue.cpp --- a/WebKitTools/DumpRenderTree/WorkQueue.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,104 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "WorkQueue.h" - -#include "WorkQueueItem.h" -#include - -static const unsigned queueLength = 1024; - -static WorkQueueItem* theQueue[queueLength]; -static unsigned startOfQueue; -static unsigned endOfQueue; - -WorkQueue* WorkQueue::shared() -{ - static WorkQueue* sharedInstance = new WorkQueue; - return sharedInstance; -} - -WorkQueue::WorkQueue() - : m_frozen(false) -{ -} - -void WorkQueue::queue(WorkQueueItem* item) -{ - ASSERT(endOfQueue < queueLength); - ASSERT(endOfQueue >= startOfQueue); - - if (m_frozen) { - delete item; - return; - } - - theQueue[endOfQueue++] = item; -} - -WorkQueueItem* WorkQueue::dequeue() -{ - ASSERT(endOfQueue >= startOfQueue); - - if (startOfQueue == endOfQueue) - return 0; - - return theQueue[startOfQueue++]; -} - -unsigned WorkQueue::count() -{ - return endOfQueue - startOfQueue; -} - -void WorkQueue::clear() -{ - for (unsigned i = startOfQueue; i < endOfQueue; ++i) { - delete theQueue[i]; - theQueue[i] = 0; - } - - startOfQueue = 0; - endOfQueue = 0; -} - -bool WorkQueue::processWork() -{ - bool startedLoad = false; - - while (!startedLoad && count()) { - WorkQueueItem* item = dequeue(); - ASSERT(item); - startedLoad = item->invoke(); - delete item; - } - - // If we're done and we didn't start a load, then we're really done, so return true. - return !startedLoad; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/WorkQueue.h --- a/WebKitTools/DumpRenderTree/WorkQueue.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef WorkQueue_h -#define WorkQueue_h - -class WorkQueueItem; - -class WorkQueue { -public: - static WorkQueue* shared(); - - void queue(WorkQueueItem*); - WorkQueueItem* dequeue(); - void clear(); - unsigned count(); - - void setFrozen(bool b) { m_frozen = b; } - - bool processWork(); // Returns true if all work is done, false if we started a load. - -private: - WorkQueue(); - - bool m_frozen; -}; - -#endif // !defined(WorkQueue_h) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/WorkQueueItem.h --- a/WebKitTools/DumpRenderTree/WorkQueueItem.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,141 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef WorkQueueItem_h -#define WorkQueueItem_h - -#include -#include - -class WorkQueueItem { -public: - virtual ~WorkQueueItem() { } - virtual bool invoke() const = 0; // Returns true if this started a load. -}; - -class LoadItem : public WorkQueueItem { -public: - LoadItem(const JSStringRef url, const JSStringRef target) - : m_url(url) - , m_target(target) - { - } - -private: - virtual bool invoke() const; - - JSRetainPtr m_url; - JSRetainPtr m_target; -}; - -class LoadHTMLStringItem : public WorkQueueItem { -public: - LoadHTMLStringItem(const JSStringRef content, const JSStringRef baseURL) - : m_content(content) - , m_baseURL(baseURL) - { - } - -private: - virtual bool invoke() const; - - JSRetainPtr m_content; - JSRetainPtr m_baseURL; -}; - -class ReloadItem : public WorkQueueItem { -private: - virtual bool invoke() const; -}; - -class ScriptItem : public WorkQueueItem { -protected: - ScriptItem(const JSStringRef script) - : m_script(script) - { - } - -protected: - virtual bool invoke() const; - -private: - JSRetainPtr m_script; -}; - -class LoadingScriptItem : public ScriptItem { -public: - LoadingScriptItem(const JSStringRef script) - : ScriptItem(script) - { - } - -private: - virtual bool invoke() const { return ScriptItem::invoke(); } -}; - -class NonLoadingScriptItem : public ScriptItem { -public: - NonLoadingScriptItem(const JSStringRef script) - : ScriptItem(script) - { - } - -private: - virtual bool invoke() const { ScriptItem::invoke(); return false; } -}; - -class BackForwardItem : public WorkQueueItem { -protected: - BackForwardItem(int howFar) - : m_howFar(howFar) - { - } - -private: - virtual bool invoke() const; - - int m_howFar; -}; - -class BackItem : public BackForwardItem { -public: - BackItem(unsigned howFar) - : BackForwardItem(-howFar) - { - } -}; - -class ForwardItem : public BackForwardItem { -public: - ForwardItem(unsigned howFar) - : BackForwardItem(howFar) - { - } -}; - -#endif // !defined(WorkQueueItem_h) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp --- a/WebKitTools/DumpRenderTree/cairo/PixelDumpSupportCairo.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,93 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * (C) 2009 Brent Fulgham - * (C) 2010 Igalia S.L - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PixelDumpSupportCairo.h" - -#include "DumpRenderTree.h" -#include "PixelDumpSupport.h" -#include -#include -#include -#include -#include -#include - -using namespace std; - -static cairo_status_t writeFunction(void* closure, const unsigned char* data, unsigned int length) -{ - Vector* in = reinterpret_cast*>(closure); - in->append(data, length); - return CAIRO_STATUS_SUCCESS; -} - -static void printPNG(cairo_surface_t* image) -{ - Vector pixelData; - // Only PNG output is supported for now. - cairo_surface_write_to_png_stream(image, writeFunction, &pixelData); - - const size_t dataLength = pixelData.size(); - const unsigned char* data = pixelData.data(); - - printPNG(data, dataLength); -} - -void computeMD5HashStringForBitmapContext(BitmapContext* context, char hashString[33]) -{ - cairo_t* bitmapContext = context->cairoContext(); - cairo_surface_t* surface = cairo_get_target(bitmapContext); - - ASSERT(cairo_image_surface_get_format(surface) == CAIRO_FORMAT_ARGB32); // ImageDiff assumes 32 bit RGBA, we must as well. - - size_t pixelsHigh = cairo_image_surface_get_height(surface); - size_t pixelsWide = cairo_image_surface_get_width(surface); - size_t bytesPerRow = cairo_image_surface_get_stride(surface); - - MD5 md5Context; - unsigned char* bitmapData = static_cast(cairo_image_surface_get_data(surface)); - for (unsigned row = 0; row < pixelsHigh; row++) { - md5Context.addBytes(bitmapData, 4 * pixelsWide); - bitmapData += bytesPerRow; - } - Vector hash; - md5Context.checksum(hash); - - snprintf(hashString, 33, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", - hash[0], hash[1], hash[2], hash[3], hash[4], hash[5], hash[6], hash[7], - hash[8], hash[9], hash[10], hash[11], hash[12], hash[13], hash[14], hash[15]); -} - -void dumpBitmap(BitmapContext* context) -{ - cairo_surface_t* surface = cairo_get_target(context->cairoContext()); - printPNG(surface); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/cairo/PixelDumpSupportCairo.h --- a/WebKitTools/DumpRenderTree/cairo/PixelDumpSupportCairo.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,81 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * (C) 2009 Brent Fulgham - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef PixelDumpSupportCairo_h -#define PixelDumpSupportCairo_h - -#include -#include - -#if PLATFORM(WIN) -#include -#include -#elif PLATFORM(GTK) -#include -#endif - -#if PLATFORM(WIN) -typedef HBITMAP PlatformBitmapBuffer; -#else -typedef void* PlatformBitmapBuffer; -#endif - -class BitmapContext : public RefCounted { -public: - static PassRefPtr createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, cairo_t* context) - { - return adoptRef(new BitmapContext(buffer, context)); - } - - ~BitmapContext() - { - if (m_buffer) -#if PLATFORM(WIN) - DeleteObject(m_buffer); -#else - free(m_buffer); -#endif - cairo_destroy(m_context); - } - - cairo_t* cairoContext() const { return m_context; } - -private: - - BitmapContext(PlatformBitmapBuffer buffer, cairo_t* context) - : m_buffer(buffer) - , m_context(context) - { - } - - PlatformBitmapBuffer m_buffer; - cairo_t* m_context; -}; - -#endif // PixelDumpSupportCairo_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/cg/ImageDiffCG.cpp --- a/WebKitTools/DumpRenderTree/cg/ImageDiffCG.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,250 +0,0 @@ -/* - * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. - * Copyright (C) 2005 Ben La Monica . All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#define min min - -#include -#include -#include - -#if PLATFORM(WIN) -#include -#include -#include -#include -#include -#endif - -#include -#include -#include - -#if PLATFORM(MAC) -#include -#endif - -#ifndef CGFLOAT_DEFINED -#ifdef __LP64__ -typedef double CGFloat; -#else -typedef float CGFloat; -#endif -#define CGFLOAT_DEFINED 1 -#endif - -using namespace std; - -#if PLATFORM(WIN) -static inline float strtof(const char *nptr, char **endptr) -{ - return strtod(nptr, endptr); -} -static const CFStringRef kUTTypePNG = CFSTR("public.png"); -#endif - -static RetainPtr createImageFromStdin(int bytesRemaining) -{ - unsigned char buffer[2048]; - RetainPtr data(AdoptCF, CFDataCreateMutable(0, bytesRemaining)); - - while (bytesRemaining > 0) { - size_t bytesToRead = min(bytesRemaining, 2048); - size_t bytesRead = fread(buffer, 1, bytesToRead, stdin); - CFDataAppendBytes(data.get(), buffer, static_cast(bytesRead)); - bytesRemaining -= static_cast(bytesRead); - } - RetainPtr dataProvider(AdoptCF, CGDataProviderCreateWithCFData(data.get())); - return RetainPtr(AdoptCF, CGImageCreateWithPNGDataProvider(dataProvider.get(), 0, false, kCGRenderingIntentDefault)); -} - -static void releaseMallocBuffer(void* info, const void* data, size_t size) -{ - free((void*)data); -} - -static RetainPtr createDifferenceImage(CGImageRef baseImage, CGImageRef testImage, float& difference) -{ - size_t width = CGImageGetWidth(baseImage); - size_t height = CGImageGetHeight(baseImage); - size_t rowBytes = width * 4; - - // Draw base image in bitmap context - void* baseBuffer = calloc(height, rowBytes); - RetainPtr baseContext(AdoptCF, CGBitmapContextCreate(baseBuffer, width, height, 8, rowBytes, CGImageGetColorSpace(baseImage), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host)); - CGContextDrawImage(baseContext.get(), CGRectMake(0, 0, width, height), baseImage); - - // Draw test image in bitmap context - void* buffer = calloc(height, rowBytes); - RetainPtr context(AdoptCF, CGBitmapContextCreate(buffer, width, height, 8, rowBytes, CGImageGetColorSpace(testImage), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host)); - CGContextDrawImage(context.get(), CGRectMake(0, 0, width, height), testImage); - - // Compare the content of the 2 bitmaps - void* diffBuffer = malloc(width * height); - float count = 0.0f; - float sum = 0.0f; - float maxDistance = 0.0f; - unsigned char* basePixel = (unsigned char*)baseBuffer; - unsigned char* pixel = (unsigned char*)buffer; - unsigned char* diff = (unsigned char*)diffBuffer; - for (size_t y = 0; y < height; ++y) { - for (size_t x = 0; x < width; ++x) { - float red = (pixel[0] - basePixel[0]) / max(255 - basePixel[0], basePixel[0]); - float green = (pixel[1] - basePixel[1]) / max(255 - basePixel[1], basePixel[1]); - float blue = (pixel[2] - basePixel[2]) / max(255 - basePixel[2], basePixel[2]); - float alpha = (pixel[3] - basePixel[3]) / max(255 - basePixel[3], basePixel[3]); - float distance = sqrtf(red * red + green * green + blue * blue + alpha * alpha) / 2.0f; - - *diff++ = (unsigned char)(distance * 255.0f); - - if (distance >= 1.0f / 255.0f) { - count += 1.0f; - sum += distance; - if (distance > maxDistance) - maxDistance = distance; - } - - basePixel += 4; - pixel += 4; - } - } - - // Compute the difference as a percentage combining both the number of different pixels and their difference amount i.e. the average distance over the entire image - if (count > 0.0f) - difference = 100.0f * sum / (height * width); - else - difference = 0.0f; - - RetainPtr diffImage; - // Generate a normalized diff image if there is any difference - if (difference > 0.0f) { - if (maxDistance < 1.0f) { - diff = (unsigned char*)diffBuffer; - for(size_t p = 0; p < height * width; ++p) - diff[p] = diff[p] / maxDistance; - } - - static CGColorSpaceRef diffColorspace = CGColorSpaceCreateDeviceGray(); - RetainPtr provider(AdoptCF, CGDataProviderCreateWithData(0, diffBuffer, width * height, releaseMallocBuffer)); - diffImage.adoptCF(CGImageCreate(width, height, 8, 8, width, diffColorspace, 0, provider.get(), 0, false, kCGRenderingIntentDefault)); - } - else - free(diffBuffer); - - // Destroy drawing buffers - if (buffer) - free(buffer); - if (baseBuffer) - free(baseBuffer); - - return diffImage; -} - -static inline bool imageHasAlpha(CGImageRef image) -{ - CGImageAlphaInfo info = CGImageGetAlphaInfo(image); - - return (info >= kCGImageAlphaPremultipliedLast) && (info <= kCGImageAlphaFirst); -} - -int main(int argc, const char* argv[]) -{ -#if PLATFORM(WIN) - _setmode(0, _O_BINARY); - _setmode(1, _O_BINARY); -#endif - - float tolerance = 0.0f; - - for (int i = 1; i < argc; ++i) { - if (!strcmp(argv[i], "-t") || !strcmp(argv[i], "--tolerance")) { - if (i >= argc - 1) - exit(1); - tolerance = strtof(argv[i + 1], 0); - ++i; - continue; - } - } - - char buffer[2048]; - RetainPtr actualImage; - RetainPtr baselineImage; - - while (fgets(buffer, sizeof(buffer), stdin)) { - // remove the CR - char* newLineCharacter = strchr(buffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (!strncmp("Content-Length: ", buffer, 16)) { - strtok(buffer, " "); - int imageSize = strtol(strtok(0, " "), 0, 10); - - if (imageSize > 0 && !actualImage) - actualImage = createImageFromStdin(imageSize); - else if (imageSize > 0 && !baselineImage) - baselineImage = createImageFromStdin(imageSize); - else - fputs("error, image size must be specified.\n", stdout); - } - - if (actualImage && baselineImage) { - RetainPtr diffImage; - float difference = 100.0f; - - if ((CGImageGetWidth(actualImage.get()) == CGImageGetWidth(baselineImage.get())) && (CGImageGetHeight(actualImage.get()) == CGImageGetHeight(baselineImage.get())) && (imageHasAlpha(actualImage.get()) == imageHasAlpha(baselineImage.get()))) { - diffImage = createDifferenceImage(actualImage.get(), baselineImage.get(), difference); // difference is passed by reference - if (difference <= tolerance) - difference = 0.0f; - else { - difference = roundf(difference * 100.0f) / 100.0f; - difference = max(difference, 0.01f); // round to 2 decimal places - } - } else - fputs("error, test and reference image have different properties.\n", stderr); - - if (difference > 0.0f) { - if (diffImage) { - RetainPtr imageData(AdoptCF, CFDataCreateMutable(0, 0)); - RetainPtr imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0)); - CGImageDestinationAddImage(imageDest.get(), diffImage.get(), 0); - CGImageDestinationFinalize(imageDest.get()); - printf("Content-Length: %lu\n", CFDataGetLength(imageData.get())); - fwrite(CFDataGetBytePtr(imageData.get()), 1, CFDataGetLength(imageData.get()), stdout); - } - - fprintf(stdout, "diff: %01.2f%% failed\n", difference); - } else - fprintf(stdout, "diff: %01.2f%% passed\n", difference); - - actualImage = 0; - baselineImage = 0; - } - - fflush(stdout); - } - - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/cg/PixelDumpSupportCG.cpp --- a/WebKitTools/DumpRenderTree/cg/PixelDumpSupportCG.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PixelDumpSupportCG.h" - -#include "DumpRenderTree.h" -#include "PixelDumpSupport.h" -#include -#include -#include -#include -#include -#include -#include - -#if PLATFORM(WIN) -#include "MD5.h" -#elif PLATFORM(MAC) -#include -#define COMMON_DIGEST_FOR_OPENSSL -#include -#endif - -using namespace std; - -#if PLATFORM(WIN) -static const CFStringRef kUTTypePNG = CFSTR("public.png"); -#endif - -static void printPNG(CGImageRef image) -{ - RetainPtr imageData(AdoptCF, CFDataCreateMutable(0, 0)); - RetainPtr imageDest(AdoptCF, CGImageDestinationCreateWithData(imageData.get(), kUTTypePNG, 1, 0)); - CGImageDestinationAddImage(imageDest.get(), image, 0); - CGImageDestinationFinalize(imageDest.get()); - - const UInt8* data = CFDataGetBytePtr(imageData.get()); - CFIndex dataLength = CFDataGetLength(imageData.get()); - - printPNG(static_cast(data), static_cast(dataLength)); -} - -void computeMD5HashStringForBitmapContext(BitmapContext* context, char hashString[33]) -{ - CGContextRef bitmapContext = context->cgContext(); - - ASSERT(CGBitmapContextGetBitsPerPixel(bitmapContext) == 32); // ImageDiff assumes 32 bit RGBA, we must as well. - size_t pixelsHigh = CGBitmapContextGetHeight(bitmapContext); - size_t pixelsWide = CGBitmapContextGetWidth(bitmapContext); - size_t bytesPerRow = CGBitmapContextGetBytesPerRow(bitmapContext); - - // We need to swap the bytes to ensure consistent hashes independently of endianness - MD5_CTX md5Context; - MD5_Init(&md5Context); - unsigned char* bitmapData = static_cast(CGBitmapContextGetData(bitmapContext)); -#if PLATFORM(MAC) - if ((CGBitmapContextGetBitmapInfo(bitmapContext) & kCGBitmapByteOrderMask) == kCGBitmapByteOrder32Big) { - for (unsigned row = 0; row < pixelsHigh; row++) { - uint32_t buffer[pixelsWide]; - for (unsigned column = 0; column < pixelsWide; column++) - buffer[column] = OSReadLittleInt32(bitmapData, 4 * column); - MD5_Update(&md5Context, buffer, 4 * pixelsWide); - bitmapData += bytesPerRow; - } - } else -#endif - { - for (unsigned row = 0; row < pixelsHigh; row++) { - MD5_Update(&md5Context, bitmapData, 4 * pixelsWide); - bitmapData += bytesPerRow; - } - } - unsigned char hash[16]; - MD5_Final(hash, &md5Context); - - hashString[0] = '\0'; - for (int i = 0; i < 16; i++) - snprintf(hashString, 33, "%s%02x", hashString, hash[i]); -} - -void dumpBitmap(BitmapContext* context) -{ - RetainPtr image(AdoptCF, CGBitmapContextCreateImage(context->cgContext())); - printPNG(image.get()); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/cg/PixelDumpSupportCG.h --- a/WebKitTools/DumpRenderTree/cg/PixelDumpSupportCG.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,84 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef PixelDumpSupportCG_h -#define PixelDumpSupportCG_h - -#include -#include -#include - -#if PLATFORM(WIN) -#include -#endif - -typedef struct CGContext* CGContextRef; - -#if PLATFORM(MAC) -typedef void* PlatformBitmapBuffer; -#elif PLATFORM(WIN) -typedef HBITMAP PlatformBitmapBuffer; -#endif - -class BitmapContext : public RefCounted { -public: - static PassRefPtr createByAdoptingBitmapAndContext(PlatformBitmapBuffer buffer, CGContextRef context) - { - return adoptRef(new BitmapContext(buffer, context)); - } - - ~BitmapContext() - { - if (m_buffer) -#if PLATFORM(MAC) - free(m_buffer); -#elif PLATFORM(WIN) - DeleteObject(m_buffer); -#endif - } - - CGContextRef cgContext() const { return m_context.get(); } - -private: - - BitmapContext(PlatformBitmapBuffer buffer, CGContextRef context) - : m_buffer(buffer) - , m_context(AdoptCF, context) - { - } - - PlatformBitmapBuffer m_buffer; - RetainPtr m_context; - -}; - -PassRefPtr createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect); - -#endif // PixelDumpSupportCG_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/AccessibilityController.cpp --- a/WebKitTools/DumpRenderTree/chromium/AccessibilityController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,119 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityController.h" - -#include "TestShell.h" -#include "public/WebAccessibilityCache.h" -#include "public/WebAccessibilityObject.h" -#include "public/WebFrame.h" -#include "public/WebString.h" -#include "public/WebView.h" - -using namespace WebKit; - -AccessibilityController::AccessibilityController(TestShell* shell) - : m_shell(shell) -{ - - bindMethod("logFocusEvents", - &AccessibilityController::logFocusEventsCallback); - bindMethod("logScrollingStartEvents", - &AccessibilityController::logScrollingStartEventsCallback); - - bindProperty("focusedElement", - &AccessibilityController::focusedElementGetterCallback); - bindProperty("rootElement", - &AccessibilityController::rootElementGetterCallback); - - bindFallbackMethod(&AccessibilityController::fallbackCallback); -} - -void AccessibilityController::bindToJavascript(WebFrame* frame, const WebString& classname) -{ - WebAccessibilityCache::enableAccessibility(); - CppBoundClass::bindToJavascript(frame, classname); -} - -void AccessibilityController::reset() -{ - m_rootElement = WebAccessibilityObject(); - m_focusedElement = WebAccessibilityObject(); - m_elements.clear(); -} - -void AccessibilityController::setFocusedElement(const WebAccessibilityObject& focusedElement) -{ - m_focusedElement = focusedElement; -} - -AccessibilityUIElement* AccessibilityController::getFocusedElement() -{ - if (m_focusedElement.isNull()) - m_focusedElement = m_shell->webView()->accessibilityObject(); - return m_elements.create(m_focusedElement); -} - -AccessibilityUIElement* AccessibilityController::getRootElement() -{ - if (m_rootElement.isNull()) - m_rootElement = m_shell->webView()->accessibilityObject(); - return m_elements.createRoot(m_rootElement); -} - -void AccessibilityController::logFocusEventsCallback(const CppArgumentList&, CppVariant* result) -{ - // As of r49031, this is not being used upstream. - result->setNull(); -} - -void AccessibilityController::logScrollingStartEventsCallback(const CppArgumentList&, CppVariant* result) -{ - // As of r49031, this is not being used upstream. - result->setNull(); -} - -void AccessibilityController::focusedElementGetterCallback(CppVariant* result) -{ - result->set(*(getFocusedElement()->getAsCppVariant())); -} - -void AccessibilityController::rootElementGetterCallback(CppVariant* result) -{ - result->set(*(getRootElement()->getAsCppVariant())); -} - -void AccessibilityController::fallbackCallback(const CppArgumentList&, CppVariant* result) -{ - printf("CONSOLE MESSAGE: JavaScript ERROR: unknown method called on " - "AccessibilityController\n"); - result->setNull(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/AccessibilityController.h --- a/WebKitTools/DumpRenderTree/chromium/AccessibilityController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,73 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef AccessibilityController_h -#define AccessibilityController_h - -#include "AccessibilityUIElement.h" -#include "CppBoundClass.h" - -namespace WebKit { -class WebAccessibilityObject; -class WebFrame; -} - -class TestShell; - -class AccessibilityController : public CppBoundClass { -public: - explicit AccessibilityController(TestShell*); - - // Shadow to include accessibility initialization. - void bindToJavascript(WebKit::WebFrame*, const WebKit::WebString& classname); - void reset(); - - void setFocusedElement(const WebKit::WebAccessibilityObject&); - AccessibilityUIElement* getFocusedElement(); - AccessibilityUIElement* getRootElement(); - -private: - // Bound methods and properties - void logFocusEventsCallback(const CppArgumentList&, CppVariant*); - void logScrollingStartEventsCallback(const CppArgumentList&, CppVariant*); - void fallbackCallback(const CppArgumentList&, CppVariant*); - - void focusedElementGetterCallback(CppVariant*); - void rootElementGetterCallback(CppVariant*); - - WebKit::WebAccessibilityObject m_focusedElement; - WebKit::WebAccessibilityObject m_rootElement; - - AccessibilityUIElementList m_elements; - - TestShell* m_shell; -}; - -#endif // AccessibilityController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/AccessibilityUIElement.cpp --- a/WebKitTools/DumpRenderTree/chromium/AccessibilityUIElement.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,585 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityUIElement.h" - -#include "public/WebAccessibilityObject.h" -#include "public/WebCString.h" -#include "public/WebString.h" -#include - -using namespace WebKit; -using namespace std; - -// Map role value to string, matching Safari/Mac platform implementation to -// avoid rebaselining layout tests. -static string roleToString(WebAccessibilityRole role) -{ - string result = "AXRole: AX"; - switch (role) { - case WebAccessibilityRoleButton: - return result.append("Button"); - case WebAccessibilityRoleRadioButton: - return result.append("RadioButton"); - case WebAccessibilityRoleCheckBox: - return result.append("CheckBox"); - case WebAccessibilityRoleSlider: - return result.append("Slider"); - case WebAccessibilityRoleTabGroup: - return result.append("TabGroup"); - case WebAccessibilityRoleTextField: - return result.append("TextField"); - case WebAccessibilityRoleStaticText: - return result.append("StaticText"); - case WebAccessibilityRoleTextArea: - return result.append("TextArea"); - case WebAccessibilityRoleScrollArea: - return result.append("ScrollArea"); - case WebAccessibilityRolePopUpButton: - return result.append("PopUpButton"); - case WebAccessibilityRoleMenuButton: - return result.append("MenuButton"); - case WebAccessibilityRoleTable: - return result.append("Table"); - case WebAccessibilityRoleApplication: - return result.append("Application"); - case WebAccessibilityRoleGroup: - return result.append("Group"); - case WebAccessibilityRoleRadioGroup: - return result.append("RadioGroup"); - case WebAccessibilityRoleList: - return result.append("List"); - case WebAccessibilityRoleScrollBar: - return result.append("ScrollBar"); - case WebAccessibilityRoleValueIndicator: - return result.append("ValueIndicator"); - case WebAccessibilityRoleImage: - return result.append("Image"); - case WebAccessibilityRoleMenuBar: - return result.append("MenuBar"); - case WebAccessibilityRoleMenu: - return result.append("Menu"); - case WebAccessibilityRoleMenuItem: - return result.append("MenuItem"); - case WebAccessibilityRoleColumn: - return result.append("Column"); - case WebAccessibilityRoleRow: - return result.append("Row"); - case WebAccessibilityRoleToolbar: - return result.append("Toolbar"); - case WebAccessibilityRoleBusyIndicator: - return result.append("BusyIndicator"); - case WebAccessibilityRoleProgressIndicator: - return result.append("ProgressIndicator"); - case WebAccessibilityRoleWindow: - return result.append("Window"); - case WebAccessibilityRoleDrawer: - return result.append("Drawer"); - case WebAccessibilityRoleSystemWide: - return result.append("SystemWide"); - case WebAccessibilityRoleOutline: - return result.append("Outline"); - case WebAccessibilityRoleIncrementor: - return result.append("Incrementor"); - case WebAccessibilityRoleBrowser: - return result.append("Browser"); - case WebAccessibilityRoleComboBox: - return result.append("ComboBox"); - case WebAccessibilityRoleSplitGroup: - return result.append("SplitGroup"); - case WebAccessibilityRoleSplitter: - return result.append("Splitter"); - case WebAccessibilityRoleColorWell: - return result.append("ColorWell"); - case WebAccessibilityRoleGrowArea: - return result.append("GrowArea"); - case WebAccessibilityRoleSheet: - return result.append("Sheet"); - case WebAccessibilityRoleHelpTag: - return result.append("HelpTag"); - case WebAccessibilityRoleMatte: - return result.append("Matte"); - case WebAccessibilityRoleRuler: - return result.append("Ruler"); - case WebAccessibilityRoleRulerMarker: - return result.append("RulerMarker"); - case WebAccessibilityRoleLink: - return result.append("Link"); - case WebAccessibilityRoleDisclosureTriangle: - return result.append("DisclosureTriangle"); - case WebAccessibilityRoleGrid: - return result.append("Grid"); - case WebAccessibilityRoleCell: - return result.append("Cell"); - case WebAccessibilityRoleColumnHeader: - return result.append("ColumnHeader"); - case WebAccessibilityRoleRowHeader: - return result.append("RowHeader"); - case WebAccessibilityRoleWebCoreLink: - // Maps to Link role. - return result.append("Link"); - case WebAccessibilityRoleImageMapLink: - return result.append("ImageMapLink"); - case WebAccessibilityRoleImageMap: - return result.append("ImageMap"); - case WebAccessibilityRoleListMarker: - return result.append("ListMarker"); - case WebAccessibilityRoleWebArea: - return result.append("WebArea"); - case WebAccessibilityRoleHeading: - return result.append("Heading"); - case WebAccessibilityRoleListBox: - return result.append("ListBox"); - case WebAccessibilityRoleListBoxOption: - return result.append("ListBoxOption"); - case WebAccessibilityRoleTableHeaderContainer: - return result.append("TableHeaderContainer"); - case WebAccessibilityRoleDefinitionListTerm: - return result.append("DefinitionListTerm"); - case WebAccessibilityRoleDefinitionListDefinition: - return result.append("DefinitionListDefinition"); - case WebAccessibilityRoleAnnotation: - return result.append("Annotation"); - case WebAccessibilityRoleSliderThumb: - return result.append("SliderThumb"); - case WebAccessibilityRoleLandmarkApplication: - return result.append("LandmarkApplication"); - case WebAccessibilityRoleLandmarkBanner: - return result.append("LandmarkBanner"); - case WebAccessibilityRoleLandmarkComplementary: - return result.append("LandmarkComplementary"); - case WebAccessibilityRoleLandmarkContentInfo: - return result.append("LandmarkContentInfo"); - case WebAccessibilityRoleLandmarkMain: - return result.append("LandmarkMain"); - case WebAccessibilityRoleLandmarkNavigation: - return result.append("LandmarkNavigation"); - case WebAccessibilityRoleLandmarkSearch: - return result.append("LandmarkSearch"); - case WebAccessibilityRoleApplicationLog: - return result.append("ApplicationLog"); - case WebAccessibilityRoleApplicationMarquee: - return result.append("ApplicationMarquee"); - case WebAccessibilityRoleApplicationStatus: - return result.append("ApplicationStatus"); - case WebAccessibilityRoleApplicationTimer: - return result.append("ApplicationTimer"); - case WebAccessibilityRoleDocument: - return result.append("Document"); - case WebAccessibilityRoleDocumentArticle: - return result.append("DocumentArticle"); - case WebAccessibilityRoleDocumentNote: - return result.append("DocumentNote"); - case WebAccessibilityRoleDocumentRegion: - return result.append("DocumentRegion"); - case WebAccessibilityRoleUserInterfaceTooltip: - return result.append("UserInterfaceTooltip"); - default: - // Also matches WebAccessibilityRoleUnknown. - return result.append("Unknown"); - } -} - -string getDescription(const WebAccessibilityObject& object) -{ - string description = object.accessibilityDescription().utf8(); - return description.insert(0, "AXDescription: "); -} - -string getRole(const WebAccessibilityObject& object) -{ - return roleToString(object.roleValue()); -} - -string getTitle(const WebAccessibilityObject& object) -{ - string title = object.title().utf8(); - return title.insert(0, "AXTitle: "); -} - -string getAttributes(const WebAccessibilityObject& object) -{ - // FIXME: Concatenate all attributes of the AccessibilityObject. - string attributes(getTitle(object)); - attributes.append("\n"); - attributes.append(getRole(object)); - attributes.append("\n"); - attributes.append(getDescription(object)); - return attributes; -} - - -// Collects attributes into a string, delimited by dashes. Used by all methods -// that output lists of attributes: attributesOfLinkedUIElementsCallback, -// AttributesOfChildrenCallback, etc. -class AttributesCollector { -public: - void collectAttributes(const WebAccessibilityObject& object) - { - m_attributes.append("\n------------\n"); - m_attributes.append(getAttributes(object)); - } - - string attributes() const { return m_attributes; } - -private: - string m_attributes; -}; - -AccessibilityUIElement::AccessibilityUIElement(const WebAccessibilityObject& object, Factory* factory) - : m_accessibilityObject(object) - , m_factory(factory) -{ - - ASSERT(factory); - - bindMethod("allAttributes", &AccessibilityUIElement::allAttributesCallback); - bindMethod("attributesOfLinkedUIElements", - &AccessibilityUIElement::attributesOfLinkedUIElementsCallback); - bindMethod("attributesOfDocumentLinks", - &AccessibilityUIElement::attributesOfDocumentLinksCallback); - bindMethod("attributesOfChildren", - &AccessibilityUIElement::attributesOfChildrenCallback); - bindMethod("parameterizedAttributeNames", - &AccessibilityUIElement::parametrizedAttributeNamesCallback); - bindMethod("lineForIndex", &AccessibilityUIElement::lineForIndexCallback); - bindMethod("boundsForRange", &AccessibilityUIElement::boundsForRangeCallback); - bindMethod("stringForRange", &AccessibilityUIElement::stringForRangeCallback); - bindMethod("childAtIndex", &AccessibilityUIElement::childAtIndexCallback); - bindMethod("elementAtPoint", &AccessibilityUIElement::elementAtPointCallback); - bindMethod("attributesOfColumnHeaders", - &AccessibilityUIElement::attributesOfColumnHeadersCallback); - bindMethod("attributesOfRowHeaders", - &AccessibilityUIElement::attributesOfRowHeadersCallback); - bindMethod("attributesOfColumns", - &AccessibilityUIElement::attributesOfColumnsCallback); - bindMethod("attributesOfRows", - &AccessibilityUIElement::attributesOfRowsCallback); - bindMethod("attributesOfVisibleCells", - &AccessibilityUIElement::attributesOfVisibleCellsCallback); - bindMethod("attributesOfHeader", - &AccessibilityUIElement::attributesOfHeaderCallback); - bindMethod("indexInTable", &AccessibilityUIElement::indexInTableCallback); - bindMethod("rowIndexRange", &AccessibilityUIElement::rowIndexRangeCallback); - bindMethod("columnIndexRange", - &AccessibilityUIElement::columnIndexRangeCallback); - bindMethod("cellForColumnAndRow", - &AccessibilityUIElement::cellForColumnAndRowCallback); - bindMethod("titleUIElement", &AccessibilityUIElement::titleUIElementCallback); - bindMethod("setSelectedTextRange", - &AccessibilityUIElement::setSelectedTextRangeCallback); - bindMethod("attributeValue", &AccessibilityUIElement::attributeValueCallback); - bindMethod("isAttributeSettable", - &AccessibilityUIElement::isAttributeSettableCallback); - bindMethod("isActionSupported", - &AccessibilityUIElement::isActionSupportedCallback); - bindMethod("parentElement", &AccessibilityUIElement::parentElementCallback); - bindMethod("increment", &AccessibilityUIElement::incrementCallback); - bindMethod("decrement", &AccessibilityUIElement::decrementCallback); - - bindProperty("role", &AccessibilityUIElement::roleGetterCallback); - bindProperty("subrole", &m_subrole); - bindProperty("title", &AccessibilityUIElement::titleGetterCallback); - bindProperty("description", - &AccessibilityUIElement::descriptionGetterCallback); - bindProperty("language", &m_language); - bindProperty("x", &m_x); - bindProperty("y", &m_y); - bindProperty("width", &m_width); - bindProperty("height", &m_height); - bindProperty("clickPointX", &m_clickPointX); - bindProperty("clickPointY", &m_clickPointY); - bindProperty("intValue", &m_intValue); - bindProperty("minValue", &m_minValue); - bindProperty("maxValue", &m_maxValue); - bindProperty("childrenCount", - &AccessibilityUIElement::childrenCountGetterCallback); - bindProperty("insertionPointLineNumber", &m_insertionPointLineNumber); - bindProperty("selectedTextRange", &m_selectedTextRange); - bindProperty("isEnabled", &AccessibilityUIElement::isEnabledGetterCallback); - bindProperty("isRequired", &m_isRequired); - bindProperty("isSelected", &AccessibilityUIElement::isSelectedGetterCallback); - bindProperty("valueDescription", &m_valueDescription); - - bindFallbackMethod(&AccessibilityUIElement::fallbackCallback); -} - -AccessibilityUIElement* AccessibilityUIElement::getChildAtIndex(unsigned index) -{ - return m_factory->create(accessibilityObject().childAt(index)); -} - -void AccessibilityUIElement::allAttributesCallback(const CppArgumentList&, CppVariant* result) -{ - result->set(getAttributes(accessibilityObject())); -} - -void AccessibilityUIElement::attributesOfLinkedUIElementsCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfDocumentLinksCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfChildrenCallback(const CppArgumentList& arguments, CppVariant* result) -{ - AttributesCollector collector; - unsigned size = accessibilityObject().childCount(); - for (unsigned i = 0; i < size; ++i) - collector.collectAttributes(accessibilityObject().childAt(i)); - result->set(collector.attributes()); -} - -void AccessibilityUIElement::parametrizedAttributeNamesCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::lineForIndexCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::boundsForRangeCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::stringForRangeCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::childAtIndexCallback(const CppArgumentList& arguments, CppVariant* result) -{ - if (!arguments.size() || !arguments[0].isNumber()) { - result->setNull(); - return; - } - - AccessibilityUIElement* child = getChildAtIndex(arguments[0].toInt32()); - if (!child) { - result->setNull(); - return; - } - - result->set(*(child->getAsCppVariant())); -} - -void AccessibilityUIElement::elementAtPointCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfColumnHeadersCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfRowHeadersCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfColumnsCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfRowsCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfVisibleCellsCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributesOfHeaderCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::indexInTableCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::rowIndexRangeCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::columnIndexRangeCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::cellForColumnAndRowCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::titleUIElementCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::setSelectedTextRangeCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::attributeValueCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::isAttributeSettableCallback(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() < 1 && !arguments[0].isString()) { - result->setNull(); - return; - } - - string attribute = arguments[0].toString(); - bool settable = false; - if (attribute == "AXValue") - settable = accessibilityObject().canSetValueAttribute(); - result->set(settable); -} - -void AccessibilityUIElement::isActionSupportedCallback(const CppArgumentList&, CppVariant* result) -{ - // This one may be really hard to implement. - // Not exposed by AccessibilityObject. - result->setNull(); -} - -void AccessibilityUIElement::parentElementCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::incrementCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::decrementCallback(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::fallbackCallback(const CppArgumentList &, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void AccessibilityUIElement::childrenCountGetterCallback(CppVariant* result) -{ - int count = 1; // Root object always has only one child, the WebView. - if (!isRoot()) - count = accessibilityObject().childCount(); - result->set(count); -} - -void AccessibilityUIElement::descriptionGetterCallback(CppVariant* result) -{ - result->set(getDescription(accessibilityObject())); -} - -void AccessibilityUIElement::isEnabledGetterCallback(CppVariant* result) -{ - result->set(accessibilityObject().isEnabled()); -} - -void AccessibilityUIElement::isSelectedGetterCallback(CppVariant* result) -{ - result->setNull(); -} - -void AccessibilityUIElement::roleGetterCallback(CppVariant* result) -{ - result->set(getRole(accessibilityObject())); -} - -void AccessibilityUIElement::titleGetterCallback(CppVariant* result) -{ - result->set(getTitle(accessibilityObject())); -} - - -RootAccessibilityUIElement::RootAccessibilityUIElement(const WebAccessibilityObject &object, Factory *factory) - : AccessibilityUIElement(object, factory) { } - -AccessibilityUIElement* RootAccessibilityUIElement::getChildAtIndex(unsigned index) -{ - if (index) - return 0; - - return factory()->create(accessibilityObject()); -} - - -AccessibilityUIElementList ::~AccessibilityUIElementList() -{ - clear(); -} - -void AccessibilityUIElementList::clear() -{ - for (ElementList::iterator i = m_elements.begin(); i != m_elements.end(); ++i) - delete (*i); - m_elements.clear(); -} - -AccessibilityUIElement* AccessibilityUIElementList::create(const WebAccessibilityObject& object) -{ - if (object.isNull()) - return 0; - - AccessibilityUIElement* element = new AccessibilityUIElement(object, this); - m_elements.append(element); - return element; -} - -AccessibilityUIElement* AccessibilityUIElementList::createRoot(const WebAccessibilityObject& object) -{ - AccessibilityUIElement* element = new RootAccessibilityUIElement(object, this); - m_elements.append(element); - return element; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/AccessibilityUIElement.h --- a/WebKitTools/DumpRenderTree/chromium/AccessibilityUIElement.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,142 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef AccessibilityUIElement_h -#define AccessibilityUIElement_h - -#include "CppBoundClass.h" -#include "public/WebAccessibilityObject.h" -#include - -class AccessibilityUIElement : public CppBoundClass { -public: - class Factory { - public: - virtual ~Factory() { } - virtual AccessibilityUIElement* create(const WebKit::WebAccessibilityObject&) = 0; - }; - - AccessibilityUIElement(const WebKit::WebAccessibilityObject&, Factory*); - - virtual AccessibilityUIElement* getChildAtIndex(unsigned); - virtual bool isRoot() const { return false; } - -protected: - const WebKit::WebAccessibilityObject& accessibilityObject() const { return m_accessibilityObject; } - Factory* factory() const { return m_factory; } - -private: - // Bound methods and properties. - void allAttributesCallback(const CppArgumentList&, CppVariant*); - void attributesOfLinkedUIElementsCallback(const CppArgumentList&, CppVariant*); - void attributesOfDocumentLinksCallback(const CppArgumentList&, CppVariant*); - void attributesOfChildrenCallback(const CppArgumentList&, CppVariant*); - void parametrizedAttributeNamesCallback(const CppArgumentList&, CppVariant*); - void lineForIndexCallback(const CppArgumentList&, CppVariant*); - void boundsForRangeCallback(const CppArgumentList&, CppVariant*); - void stringForRangeCallback(const CppArgumentList&, CppVariant*); - void childAtIndexCallback(const CppArgumentList&, CppVariant*); - void elementAtPointCallback(const CppArgumentList&, CppVariant*); - void attributesOfColumnHeadersCallback(const CppArgumentList&, CppVariant*); - void attributesOfRowHeadersCallback(const CppArgumentList&, CppVariant*); - void attributesOfColumnsCallback(const CppArgumentList&, CppVariant*); - void attributesOfRowsCallback(const CppArgumentList&, CppVariant*); - void attributesOfVisibleCellsCallback(const CppArgumentList&, CppVariant*); - void attributesOfHeaderCallback(const CppArgumentList&, CppVariant*); - void indexInTableCallback(const CppArgumentList&, CppVariant*); - void rowIndexRangeCallback(const CppArgumentList&, CppVariant*); - void columnIndexRangeCallback(const CppArgumentList&, CppVariant*); - void cellForColumnAndRowCallback(const CppArgumentList&, CppVariant*); - void titleUIElementCallback(const CppArgumentList&, CppVariant*); - void setSelectedTextRangeCallback(const CppArgumentList&, CppVariant*); - void attributeValueCallback(const CppArgumentList&, CppVariant*); - void isAttributeSettableCallback(const CppArgumentList&, CppVariant*); - void isActionSupportedCallback(const CppArgumentList&, CppVariant*); - void parentElementCallback(const CppArgumentList&, CppVariant*); - void incrementCallback(const CppArgumentList&, CppVariant*); - void decrementCallback(const CppArgumentList&, CppVariant*); - void fallbackCallback(const CppArgumentList&, CppVariant*); - - void childrenCountGetterCallback(CppVariant*); - void descriptionGetterCallback(CppVariant*); - void isEnabledGetterCallback(CppVariant*); - void isSelectedGetterCallback(CppVariant*); - void roleGetterCallback(CppVariant*); - void titleGetterCallback(CppVariant*); - - CppVariant m_subrole; - CppVariant m_language; - CppVariant m_x; - CppVariant m_y; - CppVariant m_width; - CppVariant m_height; - CppVariant m_clickPointX; - CppVariant m_clickPointY; - CppVariant m_intValue; - CppVariant m_minValue; - CppVariant m_maxValue; - CppVariant m_childrenCount; - CppVariant m_insertionPointLineNumber; - CppVariant m_selectedTextRange; - CppVariant m_isRequired; - CppVariant m_valueDescription; - - WebKit::WebAccessibilityObject m_accessibilityObject; - Factory* m_factory; -}; - - -class RootAccessibilityUIElement : public AccessibilityUIElement { -public: - RootAccessibilityUIElement(const WebKit::WebAccessibilityObject&, Factory*); - - virtual AccessibilityUIElement* getChildAtIndex(unsigned); - virtual bool isRoot() const { return true; } -}; - - -// Provides simple lifetime management of the AccessibilityUIElement instances: -// all AccessibilityUIElements ever created from the controller are stored in -// a list and cleared explicitly. -class AccessibilityUIElementList : public AccessibilityUIElement::Factory { -public: - AccessibilityUIElementList() { } - virtual ~AccessibilityUIElementList(); - - void clear(); - virtual AccessibilityUIElement* create(const WebKit::WebAccessibilityObject&); - AccessibilityUIElement* createRoot(const WebKit::WebAccessibilityObject&); - -private: - typedef Vector ElementList; - ElementList m_elements; -}; - -#endif // AccessibilityUIElement_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/CppBoundClass.cpp --- a/WebKitTools/DumpRenderTree/chromium/CppBoundClass.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,350 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * Copyright (C) 2009 Pawel Hajdan (phajdan.jr@chromium.org) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// This file contains definitions for CppBoundClass - -// Here's the control flow of a JS method getting forwarded to a class. -// - Something calls our NPObject with a function like "Invoke". -// - CppNPObject's static invoke() function forwards it to its attached -// CppBoundClass's invoke() method. -// - CppBoundClass has then overridden invoke() to look up the function -// name in its internal map of methods, and then calls the appropriate -// method. - -#include "config.h" -#include "CppBoundClass.h" - -#include "public/WebBindings.h" -#include "public/WebFrame.h" -#include "public/WebString.h" -#include -#include - -using namespace WebKit; -using namespace std; - -class CppVariantPropertyCallback : public CppBoundClass::PropertyCallback { -public: - CppVariantPropertyCallback(CppVariant* value) : m_value(value) { } - - virtual bool getValue(CppVariant* value) - { - value->set(*m_value); - return true; - } - - virtual bool setValue(const CppVariant& value) - { - m_value->set(value); - return true; - } - -private: - CppVariant* m_value; -}; - -class GetterPropertyCallback : public CppBoundClass::PropertyCallback { -public: - GetterPropertyCallback(CppBoundClass::GetterCallback* callback) - : m_callback(callback) { } - - virtual bool getValue(CppVariant* value) - { - m_callback->run(value); - return true; - } - - virtual bool setValue(const CppVariant& value) { return false; } - -private: - OwnPtr m_callback; -}; - -// Our special NPObject type. We extend an NPObject with a pointer to a -// CppBoundClass, which is just a C++ interface that we forward all NPObject -// callbacks to. -struct CppNPObject { - NPObject parent; // This must be the first field in the struct. - CppBoundClass* boundClass; - - // - // All following objects and functions are static, and just used to interface - // with NPObject/NPClass. - // - - // An NPClass associates static functions of CppNPObject with the - // function pointers used by the JS runtime. - static NPClass npClass; - - // Allocate a new NPObject with the specified class. - static NPObject* allocate(NPP, NPClass*); - - // Free an object. - static void deallocate(NPObject*); - - // Returns true if the C++ class associated with this NPObject exposes the - // given property. Called by the JS runtime. - static bool hasProperty(NPObject*, NPIdentifier); - - // Returns true if the C++ class associated with this NPObject exposes the - // given method. Called by the JS runtime. - static bool hasMethod(NPObject*, NPIdentifier); - - // If the given method is exposed by the C++ class associated with this - // NPObject, invokes it with the given arguments and returns a result. Otherwise, - // returns "undefined" (in the JavaScript sense). Called by the JS runtime. - static bool invoke(NPObject*, NPIdentifier, - const NPVariant* arguments, uint32_t argumentCount, - NPVariant* result); - - // If the given property is exposed by the C++ class associated with this - // NPObject, returns its value. Otherwise, returns "undefined" (in the - // JavaScript sense). Called by the JS runtime. - static bool getProperty(NPObject*, NPIdentifier, NPVariant* result); - - // If the given property is exposed by the C++ class associated with this - // NPObject, sets its value. Otherwise, does nothing. Called by the JS - // runtime. - static bool setProperty(NPObject*, NPIdentifier, const NPVariant* value); -}; - -// Build CppNPObject's static function pointers into an NPClass, for use -// in constructing NPObjects for the C++ classes. -NPClass CppNPObject::npClass = { - NP_CLASS_STRUCT_VERSION, - CppNPObject::allocate, - CppNPObject::deallocate, - /* NPInvalidateFunctionPtr */ 0, - CppNPObject::hasMethod, - CppNPObject::invoke, - /* NPInvokeDefaultFunctionPtr */ 0, - CppNPObject::hasProperty, - CppNPObject::getProperty, - CppNPObject::setProperty, - /* NPRemovePropertyFunctionPtr */ 0 -}; - -NPObject* CppNPObject::allocate(NPP npp, NPClass* aClass) -{ - CppNPObject* obj = new CppNPObject; - // obj->parent will be initialized by the NPObject code calling this. - obj->boundClass = 0; - return &obj->parent; -} - -void CppNPObject::deallocate(NPObject* npObj) -{ - CppNPObject* obj = reinterpret_cast(npObj); - delete obj; -} - -bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident) -{ - CppNPObject* obj = reinterpret_cast(npObj); - return obj->boundClass->hasMethod(ident); -} - -bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident) -{ - CppNPObject* obj = reinterpret_cast(npObj); - return obj->boundClass->hasProperty(ident); -} - -bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident, - const NPVariant* arguments, uint32_t argumentCount, - NPVariant* result) -{ - CppNPObject* obj = reinterpret_cast(npObj); - return obj->boundClass->invoke(ident, arguments, argumentCount, result); -} - -bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result) -{ - CppNPObject* obj = reinterpret_cast(npObj); - return obj->boundClass->getProperty(ident, result); -} - -bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value) -{ - CppNPObject* obj = reinterpret_cast(npObj); - return obj->boundClass->setProperty(ident, value); -} - -CppBoundClass::~CppBoundClass() -{ - for (MethodList::iterator i = m_methods.begin(); i != m_methods.end(); ++i) - delete i->second; - - for (PropertyList::iterator i = m_properties.begin(); i != m_properties.end(); ++i) - delete i->second; - - // Unregister ourselves if we were bound to a frame. - if (m_boundToFrame) - WebBindings::unregisterObject(NPVARIANT_TO_OBJECT(m_selfVariant)); -} - -bool CppBoundClass::hasMethod(NPIdentifier ident) const -{ - return m_methods.find(ident) != m_methods.end(); -} - -bool CppBoundClass::hasProperty(NPIdentifier ident) const -{ - return m_properties.find(ident) != m_properties.end(); -} - -bool CppBoundClass::invoke(NPIdentifier ident, - const NPVariant* arguments, - size_t argumentCount, - NPVariant* result) { - MethodList::const_iterator end = m_methods.end(); - MethodList::const_iterator method = m_methods.find(ident); - Callback* callback; - if (method == end) { - if (!m_fallbackCallback.get()) { - VOID_TO_NPVARIANT(*result); - return false; - } - callback = m_fallbackCallback.get(); - } else - callback = (*method).second; - - // Build a CppArgumentList argument vector from the NPVariants coming in. - CppArgumentList cppArguments(argumentCount); - for (size_t i = 0; i < argumentCount; i++) - cppArguments[i].set(arguments[i]); - - CppVariant cppResult; - callback->run(cppArguments, &cppResult); - - cppResult.copyToNPVariant(result); - return true; -} - -bool CppBoundClass::getProperty(NPIdentifier ident, NPVariant* result) const -{ - PropertyList::const_iterator callback = m_properties.find(ident); - if (callback == m_properties.end()) { - VOID_TO_NPVARIANT(*result); - return false; - } - - CppVariant cppValue; - if (!callback->second->getValue(&cppValue)) - return false; - cppValue.copyToNPVariant(result); - return true; -} - -bool CppBoundClass::setProperty(NPIdentifier ident, const NPVariant* value) -{ - PropertyList::iterator callback = m_properties.find(ident); - if (callback == m_properties.end()) - return false; - - CppVariant cppValue; - cppValue.set(*value); - return (*callback).second->setValue(cppValue); -} - -void CppBoundClass::bindCallback(const string& name, Callback* callback) -{ - NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); - MethodList::iterator oldCallback = m_methods.find(ident); - if (oldCallback != m_methods.end()) { - delete oldCallback->second; - if (!callback) { - m_methods.remove(oldCallback); - return; - } - } - - m_methods.set(ident, callback); -} - -void CppBoundClass::bindGetterCallback(const string& name, GetterCallback* callback) -{ - PropertyCallback* propertyCallback = callback ? new GetterPropertyCallback(callback) : 0; - bindProperty(name, propertyCallback); -} - -void CppBoundClass::bindProperty(const string& name, CppVariant* prop) -{ - PropertyCallback* propertyCallback = prop ? new CppVariantPropertyCallback(prop) : 0; - bindProperty(name, propertyCallback); -} - -void CppBoundClass::bindProperty(const string& name, PropertyCallback* callback) -{ - NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); - PropertyList::iterator oldCallback = m_properties.find(ident); - if (oldCallback != m_properties.end()) { - delete oldCallback->second; - if (!callback) { - m_properties.remove(oldCallback); - return; - } - } - - m_properties.set(ident, callback); -} - -bool CppBoundClass::isMethodRegistered(const string& name) const -{ - NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); - MethodList::const_iterator callback = m_methods.find(ident); - return callback != m_methods.end(); -} - -CppVariant* CppBoundClass::getAsCppVariant() -{ - if (!m_selfVariant.isObject()) { - // Create an NPObject using our static NPClass. The first argument (a - // plugin's instance handle) is passed through to the allocate function - // directly, and we don't use it, so it's ok to be 0. - NPObject* npObj = WebBindings::createObject(0, &CppNPObject::npClass); - CppNPObject* obj = reinterpret_cast(npObj); - obj->boundClass = this; - m_selfVariant.set(npObj); - WebBindings::releaseObject(npObj); // CppVariant takes the reference. - } - ASSERT(m_selfVariant.isObject()); - return &m_selfVariant; -} - -void CppBoundClass::bindToJavascript(WebFrame* frame, const WebString& classname) -{ - // BindToWindowObject will take its own reference to the NPObject, and clean - // up after itself. It will also (indirectly) register the object with V8, - // so we must remember this so we can unregister it when we're destroyed. - frame->bindToWindowObject(classname, NPVARIANT_TO_OBJECT(*getAsCppVariant())); - m_boundToFrame = true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/CppBoundClass.h --- a/WebKitTools/DumpRenderTree/chromium/CppBoundClass.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,241 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * Copyright (C) 2009 Pawel Hajdan (phajdan.jr@chromium.org) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - CppBoundClass class: - This base class serves as a parent for C++ classes designed to be bound to - JavaScript objects. - - Subclasses should define the constructor to build the property and method - lists needed to bind this class to a JS object. They should also declare - and define member variables and methods to be exposed to JS through - that object. -*/ - -#ifndef CppBoundClass_h -#define CppBoundClass_h - -#include "CppVariant.h" -#include -#include -#include -#include - -namespace WebKit { -class WebFrame; -class WebString; -} - -typedef Vector CppArgumentList; - -// CppBoundClass lets you map Javascript method calls and property accesses -// directly to C++ method calls and CppVariant* variable access. -class CppBoundClass : public Noncopyable { -public: - class PropertyCallback { - public: - virtual ~PropertyCallback() { } - - // Sets |value| to the value of the property. Returns false in case of - // failure. |value| is always non-0. - virtual bool getValue(CppVariant* result) = 0; - - // sets the property value to |value|. Returns false in case of failure. - virtual bool setValue(const CppVariant&) = 0; - }; - - // Callback class for "void function(CppVariant*)" - class GetterCallback { - public: - virtual ~GetterCallback() {} - virtual void run(CppVariant*) = 0; - }; - - // The constructor should call BindMethod, BindProperty, and - // SetFallbackMethod as needed to set up the methods, properties, and - // fallback method. - CppBoundClass() : m_boundToFrame(false) {} - virtual ~CppBoundClass(); - - // Return a CppVariant representing this class, for use with BindProperty(). - // The variant type is guaranteed to be NPVariantType_Object. - CppVariant* getAsCppVariant(); - - // Given a WebFrame, BindToJavascript builds the NPObject that will represent - // the class and binds it to the frame's window under the given name. This - // should generally be called from the WebView delegate's - // WindowObjectCleared(). A class so bound will be accessible to JavaScript - // as window.. The owner of the CppBoundObject is responsible for - // keeping the object around while the frame is alive, and for destroying it - // afterwards. - void bindToJavascript(WebKit::WebFrame*, const WebKit::WebString& classname); - - // Used by a test. Returns true if a method with name |name| exists, - // regardless of whether a fallback is registered. - bool isMethodRegistered(const std::string&) const; - -protected: - // Callback for "void function(const CppArguemntList&, CppVariant*)" - class Callback { - public: - virtual ~Callback() {} - virtual void run(const CppArgumentList&, CppVariant*) = 0; - }; - - // Callback for "void T::method(const CppArguemntList&, CppVariant*)" - template class MemberCallback : public Callback { - public: - typedef void (T::*MethodType)(const CppArgumentList&, CppVariant*); - MemberCallback(T* object, MethodType method) - : m_object(object) - , m_method(method) {} - virtual ~MemberCallback() {} - - virtual void run(const CppArgumentList& arguments, CppVariant* result) - { - (m_object->*m_method)(arguments, result); - } - private: - T* m_object; - MethodType m_method; - }; - - // Callback class for "void T::method(CppVariant*)" - template class MemberGetterCallback : public GetterCallback { - public: - typedef void (T::*MethodType)(CppVariant*); - MemberGetterCallback(T* object, MethodType method) - : m_object(object) - , m_method(method) {} - virtual ~MemberGetterCallback() {} - - virtual void run(CppVariant* result) { (m_object->*m_method)(result); } - private: - T* m_object; - MethodType m_method; - }; - - // Bind the Javascript method called the string parameter to the C++ method. - void bindCallback(const std::string&, Callback*); - - // A wrapper for bindCallback, to simplify the common case of binding a - // method on the current object. Though not verified here, |method| - // must be a method of this CppBoundClass subclass. - template - void bindMethod(const std::string& name, void (T::*method)(const CppArgumentList&, CppVariant*)) - { - Callback* callback = new MemberCallback(static_cast(this), method); - bindCallback(name, callback); - } - - // Bind Javascript property |name| to the C++ getter callback |callback|. - // This can be used to create read-only properties. - void bindGetterCallback(const std::string&, GetterCallback*); - - // A wrapper for BindGetterCallback, to simplify the common case of binding a - // property on the current object. Though not verified here, |method| - // must be a method of this CppBoundClass subclass. - template - void bindProperty(const std::string& name, void (T::*method)(CppVariant*)) - { - GetterCallback* callback = new MemberGetterCallback(static_cast(this), method); - bindGetterCallback(name, callback); - } - - // Bind the Javascript property called |name| to a CppVariant. - void bindProperty(const std::string&, CppVariant*); - - // Bind Javascript property called |name| to a PropertyCallback. - // CppBoundClass assumes control over the life time of the callback. - void bindProperty(const std::string&, PropertyCallback*); - - // Set the fallback callback, which is called when when a callback is - // invoked that isn't bound. - // If it is 0 (its default value), a JavaScript exception is thrown in - // that case (as normally expected). If non 0, the fallback method is - // invoked and the script continues its execution. - // Passing 0 clears out any existing binding. - // It is used for tests and should probably only be used in such cases - // as it may cause unexpected behaviors (a JavaScript object with a - // fallback always returns true when checked for a method's - // existence). - void bindFallbackCallback(Callback* fallbackCallback) - { - m_fallbackCallback.set(fallbackCallback); - } - - // A wrapper for BindFallbackCallback, to simplify the common case of - // binding a method on the current object. Though not verified here, - // |method| must be a method of this CppBoundClass subclass. - // Passing 0 for |method| clears out any existing binding. - template - void bindFallbackMethod(void (T::*method)(const CppArgumentList&, CppVariant*)) - { - if (method) { - Callback* callback = new MemberCallback(static_cast(this), method); - bindFallbackCallback(callback); - } else - bindFallbackCallback(0); - } - - // Some fields are protected because some tests depend on accessing them, - // but otherwise they should be considered private. - - typedef HashMap PropertyList; - typedef HashMap MethodList; - // These maps associate names with property and method pointers to be - // exposed to JavaScript. - PropertyList m_properties; - MethodList m_methods; - - // The callback gets invoked when a call is made to an nonexistent method. - OwnPtr m_fallbackCallback; - -private: - // NPObject callbacks. - friend struct CppNPObject; - bool hasMethod(NPIdentifier) const; - bool invoke(NPIdentifier, const NPVariant* args, size_t argCount, - NPVariant* result); - bool hasProperty(NPIdentifier) const; - bool getProperty(NPIdentifier, NPVariant* result) const; - bool setProperty(NPIdentifier, const NPVariant*); - - // A lazily-initialized CppVariant representing this class. We retain 1 - // reference to this object, and it is released on deletion. - CppVariant m_selfVariant; - - // True if our np_object has been bound to a WebFrame, in which case it must - // be unregistered with V8 when we delete it. - bool m_boundToFrame; -}; - -#endif // CppBoundClass_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/CppVariant.cpp --- a/WebKitTools/DumpRenderTree/chromium/CppVariant.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,310 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "CppVariant.h" - -#include "public/WebBindings.h" -#include -#include -#include - -using namespace WebKit; -using namespace std; - -CppVariant::CppVariant() -{ - type = NPVariantType_Null; -} - -// Note that Set() performs a deep copy, which is necessary to safely -// call FreeData() on the value in the destructor. -CppVariant::CppVariant(const CppVariant& original) -{ - type = NPVariantType_Null; - set(original); -} - -// See comment for copy constructor, above. -CppVariant& CppVariant::operator=(const CppVariant& original) -{ - if (&original != this) - set(original); - return *this; -} - -CppVariant::~CppVariant() -{ - freeData(); -} - -void CppVariant::freeData() -{ - WebBindings::releaseVariantValue(this); -} - -bool CppVariant::isEqual(const CppVariant& other) const -{ - if (type != other.type) - return false; - - switch (type) { - case NPVariantType_Bool: - return (value.boolValue == other.value.boolValue); - case NPVariantType_Int32: - return (value.intValue == other.value.intValue); - case NPVariantType_Double: - return (value.doubleValue == other.value.doubleValue); - case NPVariantType_String: { - const NPString *this_value = &value.stringValue; - const NPString *other_value = &other.value.stringValue; - uint32_t len = this_value->UTF8Length; - return len == other_value->UTF8Length - && !strncmp(this_value->UTF8Characters, - other_value->UTF8Characters, len); - } - case NPVariantType_Null: - case NPVariantType_Void: - return true; - case NPVariantType_Object: { - NPObject* thisValue = value.objectValue; - NPObject* otherValue = other.value.objectValue; - return thisValue->_class == otherValue->_class - && thisValue->referenceCount == otherValue->referenceCount; - } - } - return false; -} - -void CppVariant::copyToNPVariant(NPVariant* result) const -{ - result->type = type; - switch (type) { - case NPVariantType_Bool: - result->value.boolValue = value.boolValue; - break; - case NPVariantType_Int32: - result->value.intValue = value.intValue; - break; - case NPVariantType_Double: - result->value.doubleValue = value.doubleValue; - break; - case NPVariantType_String: - WebBindings::initializeVariantWithStringCopy(result, &value.stringValue); - break; - case NPVariantType_Null: - case NPVariantType_Void: - // Nothing to set. - break; - case NPVariantType_Object: - result->type = NPVariantType_Object; - result->value.objectValue = WebBindings::retainObject(value.objectValue); - break; - } -} - -void CppVariant::set(const NPVariant& newValue) -{ - freeData(); - switch (newValue.type) { - case NPVariantType_Bool: - set(newValue.value.boolValue); - break; - case NPVariantType_Int32: - set(newValue.value.intValue); - break; - case NPVariantType_Double: - set(newValue.value.doubleValue); - break; - case NPVariantType_String: - set(newValue.value.stringValue); - break; - case NPVariantType_Null: - case NPVariantType_Void: - type = newValue.type; - break; - case NPVariantType_Object: - set(newValue.value.objectValue); - break; - } -} - -void CppVariant::setNull() -{ - freeData(); - type = NPVariantType_Null; -} - -void CppVariant::set(bool newValue) -{ - freeData(); - type = NPVariantType_Bool; - value.boolValue = newValue; -} - -void CppVariant::set(int32_t newValue) -{ - freeData(); - type = NPVariantType_Int32; - value.intValue = newValue; -} - -void CppVariant::set(double newValue) -{ - freeData(); - type = NPVariantType_Double; - value.doubleValue = newValue; -} - -// The newValue must be a null-terminated string. -void CppVariant::set(const char* newValue) -{ - freeData(); - type = NPVariantType_String; - NPString newString = {newValue, - static_cast(strlen(newValue))}; - WebBindings::initializeVariantWithStringCopy(this, &newString); -} - -void CppVariant::set(const string& newValue) -{ - freeData(); - type = NPVariantType_String; - NPString newString = {newValue.data(), - static_cast(newValue.size())}; - WebBindings::initializeVariantWithStringCopy(this, &newString); -} - -void CppVariant::set(const NPString& newValue) -{ - freeData(); - type = NPVariantType_String; - WebBindings::initializeVariantWithStringCopy(this, &newValue); -} - -void CppVariant::set(NPObject* newValue) -{ - freeData(); - type = NPVariantType_Object; - value.objectValue = WebBindings::retainObject(newValue); -} - -string CppVariant::toString() const -{ - ASSERT(isString()); - return string(value.stringValue.UTF8Characters, - value.stringValue.UTF8Length); -} - -int32_t CppVariant::toInt32() const -{ - if (isInt32()) - return value.intValue; - if (isDouble()) - return static_cast(value.doubleValue); - ASSERT_NOT_REACHED(); - return 0; -} - -double CppVariant::toDouble() const -{ - if (isInt32()) - return static_cast(value.intValue); - if (isDouble()) - return value.doubleValue; - ASSERT_NOT_REACHED(); - return 0; -} - -bool CppVariant::toBoolean() const -{ - ASSERT(isBool()); - return value.boolValue; -} - -Vector CppVariant::toStringVector() const -{ - - ASSERT(isObject()); - Vector stringVector; - NPObject* npValue = value.objectValue; - NPIdentifier lengthId = WebBindings::getStringIdentifier("length"); - - if (!WebBindings::hasProperty(0, npValue, lengthId)) - return stringVector; - - NPVariant lengthValue; - if (!WebBindings::getProperty(0, npValue, lengthId, &lengthValue)) - return stringVector; - - int length = 0; - // The length is a double in some cases. - if (NPVARIANT_IS_DOUBLE(lengthValue)) - length = static_cast(NPVARIANT_TO_DOUBLE(lengthValue)); - else if (NPVARIANT_IS_INT32(lengthValue)) - length = NPVARIANT_TO_INT32(lengthValue); - WebBindings::releaseVariantValue(&lengthValue); - - // For sanity, only allow 100 items. - length = min(100, length); - for (int i = 0; i < length; ++i) { - // Get each of the items. - char indexInChar[20]; // Enough size to store 32-bit integer - snprintf(indexInChar, 20, "%d", i); - string index(indexInChar); - NPIdentifier indexId = WebBindings::getStringIdentifier(index.c_str()); - if (!WebBindings::hasProperty(0, npValue, indexId)) - continue; - NPVariant indexValue; - if (!WebBindings::getProperty(0, npValue, indexId, &indexValue)) - continue; - if (NPVARIANT_IS_STRING(indexValue)) { - string item(NPVARIANT_TO_STRING(indexValue).UTF8Characters, - NPVARIANT_TO_STRING(indexValue).UTF8Length); - stringVector.append(item); - } - WebBindings::releaseVariantValue(&indexValue); - } - return stringVector; -} - -bool CppVariant::invoke(const string& method, const CppVariant* arguments, - uint32_t argumentCount, CppVariant& result) const -{ - ASSERT(isObject()); - NPIdentifier methodName = WebBindings::getStringIdentifier(method.c_str()); - NPObject* npObject = value.objectValue; - if (!WebBindings::hasMethod(0, npObject, methodName)) - return false; - NPVariant r; - bool status = WebBindings::invoke(0, npObject, methodName, arguments, argumentCount, &r); - result.set(r); - return status; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/CppVariant.h --- a/WebKitTools/DumpRenderTree/chromium/CppVariant.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,133 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - This file contains the declaration for CppVariant, a type used by C++ classes - that are to be bound to JavaScript objects. - - CppVariant exists primarily as an interface between C++ callers and the - corresponding NPVariant type. CppVariant also provides a number of - convenience constructors and accessors, so that the NPVariantType values - don't need to be exposed, and a destructor to free any memory allocated for - string values. -*/ - -#ifndef CppVariant_h -#define CppVariant_h - -#include "base/basictypes.h" -#include "public/WebBindings.h" -#include -#include - -class CppVariant : public NPVariant { -public: - CppVariant(); - ~CppVariant(); - void setNull(); - void set(bool); - void set(int32_t); - void set(double); - - // Note that setting a CppVariant to a string value involves copying the - // string data, which must be freed with a call to freeData() when the - // CppVariant is set to a different value or is no longer needed. Normally - // this is handled by the other set() methods and by the destructor. - void set(const char*); // Must be a null-terminated string. - void set(const std::string&); - void set(const NPString&); - void set(const NPVariant&); - - // Note that setting a CppVariant to an NPObject involves ref-counting - // the actual object. freeData() should only be called if the CppVariant - // is no longer needed. The other set() methods handle this internally. - // Also, the object's NPClass is expected to be a static object: neither - // the NP runtime nor CppVariant will ever free it. - void set(NPObject*_value); - - // These three methods all perform deep copies of any string data. This - // allows local CppVariants to be released by the destructor without - // corrupting their sources. In performance-critical code, or when strings - // are very long, avoid creating new CppVariants. - // In case of NPObject as the data, the copying involves ref-counting - // as opposed to deep-copying. The ref-counting ensures that sources don't - // get corrupted when the copies get destroyed. - void copyToNPVariant(NPVariant* result) const; - CppVariant& operator=(const CppVariant& original); - CppVariant(const CppVariant& original); - - // Calls NPN_ReleaseVariantValue, which frees any string data - // held by the object and sets its type to null. - // In case of NPObject, the NPN_ReleaseVariantValue decrements - // the ref-count (releases when ref-count becomes 0) - void freeData(); - - // Compares this CppVariant's type and value to another's. They must be - // identical in both type and value to be considered equal. For string and - // object types, a deep comparison is performed; that is, the contents of the - // strings, or the classes and refcounts of the objects, must be the same, - // but they need not be the same pointers. - bool isEqual(const CppVariant&) const; - - // The value of a CppVariant may be read directly from its NPVariant (but - // should only be set using one of the set() methods above). Although the - // type of a CppVariant is likewise public, it can be accessed through these - // functions rather than directly if a caller wishes to avoid dependence on - // the NPVariantType values. - bool isBool() const { return (type == NPVariantType_Bool); } - bool isInt32() const { return (type == NPVariantType_Int32); } - bool isDouble() const { return (type == NPVariantType_Double); } - bool isNumber() const { return (isInt32() || isDouble()); } - bool isString() const { return (type == NPVariantType_String); } - bool isVoid() const { return (type == NPVariantType_Void); } - bool isNull() const { return (type == NPVariantType_Null); } - bool isEmpty() const { return (isVoid() || isNull()); } - bool isObject() const { return (type == NPVariantType_Object); } - - // Converters. The CppVariant must be of a type convertible to these values. - // For example, toInt32() works only if isNumber() is true. - std::string toString() const; - int32_t toInt32() const; - double toDouble() const; - bool toBoolean() const; - // Returns a vector of strings for the specified argument. This is useful - // for converting a JavaScript array of strings into a vector of strings. - Vector toStringVector() const; - - // Invoke method of the given name on an object with the supplied arguments. - // The first argument should be the object on which the method is to be - // invoked. Returns whether the method was successfully invoked. If the - // method was invoked successfully, any return value is stored in the - // CppVariant specified by result. - bool invoke(const std::string&, const CppVariant* arguments, - uint32_t argumentCount, CppVariant& result) const; -}; - -#endif // CppVariant_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsAgent.cpp --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsAgent.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,155 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DRTDevToolsAgent.h" - -#include "DRTDevToolsCallArgs.h" -#include "DRTDevToolsClient.h" - -#include "public/WebCString.h" -#include "public/WebDevToolsAgent.h" -#include "public/WebDevToolsMessageData.h" -#include "public/WebString.h" -#include "public/WebView.h" -#include "webkit/support/webkit_support.h" - -using namespace WebKit; - -DRTDevToolsAgent::DRTDevToolsAgent() - : m_callMethodFactory(this) - , m_drtDevToolsClient(0) - , m_webView(0) -{ - static int devToolsAgentCounter = 0; - - m_routingID = ++devToolsAgentCounter; - if (m_routingID == 1) - WebDevToolsAgent::setMessageLoopDispatchHandler(&DRTDevToolsAgent::dispatchMessageLoop); -} - -void DRTDevToolsAgent::setWebView(WebView* webView) -{ - m_webView = webView; -} - -void DRTDevToolsAgent::sendMessageToFrontend(const WebDevToolsMessageData& data) -{ - if (m_drtDevToolsClient) - m_drtDevToolsClient->asyncCall(DRTDevToolsCallArgs(data)); -} - -void DRTDevToolsAgent::forceRepaint() -{ -} - -void DRTDevToolsAgent::runtimeFeatureStateChanged(const WebKit::WebString& feature, bool enabled) -{ - // FIXME: implement this. -} - -WebCString DRTDevToolsAgent::injectedScriptSource() -{ - return webkit_support::GetDevToolsInjectedScriptSource(); -} - -WebCString DRTDevToolsAgent::injectedScriptDispatcherSource() -{ - return webkit_support::GetDevToolsInjectedScriptDispatcherSource(); -} - -WebCString DRTDevToolsAgent::debuggerScriptSource() -{ - return webkit_support::GetDevToolsDebuggerScriptSource(); -} - -void DRTDevToolsAgent::asyncCall(const DRTDevToolsCallArgs &args) -{ - webkit_support::PostTaskFromHere( - m_callMethodFactory.NewRunnableMethod(&DRTDevToolsAgent::call, args)); -} - -void DRTDevToolsAgent::call(const DRTDevToolsCallArgs &args) -{ - WebDevToolsAgent* agent = webDevToolsAgent(); - if (agent) - agent->dispatchMessageFromFrontend(args.m_data); - if (DRTDevToolsCallArgs::callsCount() == 1 && m_drtDevToolsClient) - m_drtDevToolsClient->allMessagesProcessed(); -} - -WebDevToolsAgent* DRTDevToolsAgent::webDevToolsAgent() -{ - if (!m_webView) - return 0; - return m_webView->devToolsAgent(); -} - -void DRTDevToolsAgent::attach(DRTDevToolsClient* client) -{ - ASSERT(!m_drtDevToolsClient); - m_drtDevToolsClient = client; - WebDevToolsAgent* agent = webDevToolsAgent(); - if (agent) - agent->attach(); -} - -void DRTDevToolsAgent::detach(DRTDevToolsClient* client) -{ - ASSERT(m_drtDevToolsClient); - WebDevToolsAgent* agent = webDevToolsAgent(); - if (agent) - agent->detach(); - m_drtDevToolsClient = 0; -} - -bool DRTDevToolsAgent::setTimelineProfilingEnabled(bool enabled) -{ - WebDevToolsAgent* agent = webDevToolsAgent(); - if (!agent) - return false; - agent->setTimelineProfilingEnabled(enabled); - return true; -} - -bool DRTDevToolsAgent::evaluateInWebInspector(long callID, const std::string& script) -{ - WebDevToolsAgent* agent = webDevToolsAgent(); - if (!agent) - return false; - agent->evaluateInWebInspector(callID, WebString::fromUTF8(script)); - return true; -} - -// static method -void DRTDevToolsAgent::dispatchMessageLoop() -{ - webkit_support::DispatchMessageLoop(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsAgent.h --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsAgent.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,87 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DRTDevToolsAgent_h -#define DRTDevToolsAgent_h - -#include "base/task.h" // FIXME: remove this -#include "public/WebDevToolsAgentClient.h" -#include - -namespace WebKit { - -class WebCString; -class WebDevToolsAgent; -class WebView; -struct WebDevToolsMessageData; - -} // namespace WebKit - -class DRTDevToolsCallArgs; -class DRTDevToolsClient; - -class DRTDevToolsAgent : public WebKit::WebDevToolsAgentClient - , public Noncopyable { -public: - DRTDevToolsAgent(); - virtual ~DRTDevToolsAgent() {} - - void setWebView(WebKit::WebView*); - - // WebDevToolsAgentClient implementation. - virtual void sendMessageToFrontend(const WebKit::WebDevToolsMessageData&); - virtual int hostIdentifier() { return m_routingID; } - virtual void forceRepaint(); - virtual void runtimeFeatureStateChanged(const WebKit::WebString& feature, bool enabled); - virtual WebKit::WebCString injectedScriptSource(); - virtual WebKit::WebCString injectedScriptDispatcherSource(); - virtual WebKit::WebCString debuggerScriptSource(); - - void asyncCall(const DRTDevToolsCallArgs&); - - void attach(DRTDevToolsClient*); - void detach(DRTDevToolsClient*); - - bool evaluateInWebInspector(long callID, const std::string& script); - bool setTimelineProfilingEnabled(bool enable); - -private: - void call(const DRTDevToolsCallArgs&); - static void dispatchMessageLoop(); - WebKit::WebDevToolsAgent* webDevToolsAgent(); - - ScopedRunnableMethodFactory m_callMethodFactory; - DRTDevToolsClient* m_drtDevToolsClient; - int m_routingID; - WebKit::WebDevToolsAgent* m_webDevToolsAgent; - WebKit::WebView* m_webView; -}; - -#endif // DRTDevToolsAgent_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsCallArgs.cpp --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsCallArgs.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,36 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DRTDevToolsCallArgs.h" - -// static -int DRTDevToolsCallArgs::m_callsCount = 0; - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsCallArgs.h --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsCallArgs.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DRTDevToolsCallArgs_h -#define DRTDevToolsCallArgs_h - -#include "public/WebDevToolsMessageData.h" -#include "public/WebString.h" -#include - -class DRTDevToolsCallArgs { -public: - DRTDevToolsCallArgs(const WebKit::WebDevToolsMessageData& data) - : m_data(data) - { - ++m_callsCount; - - // The same behaviour as we have in case of IPC. - for (size_t i = 0; i < m_data.arguments.size(); ++i) { - if (m_data.arguments[i].isNull()) - m_data.arguments[i] = WebKit::WebString::fromUTF8(""); - } - } - - DRTDevToolsCallArgs(const DRTDevToolsCallArgs& args) - : m_data(args.m_data) - { - ++m_callsCount; - } - - ~DRTDevToolsCallArgs() - { - --m_callsCount; - ASSERT(m_callsCount >= 0); - } - - static int callsCount() { return m_callsCount; } - - WebKit::WebDevToolsMessageData m_data; - -private: - static int m_callsCount; -}; - -#endif // DRTDevToolsCallArgs_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsClient.cpp --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsClient.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,116 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DRTDevToolsClient.h" - -#include "DRTDevToolsAgent.h" -#include "DRTDevToolsCallArgs.h" - -#include "public/WebDevToolsAgent.h" -#include "public/WebDevToolsFrontend.h" -#include "public/WebFrame.h" -#include "public/WebScriptSource.h" -#include "public/WebString.h" -#include "public/WebView.h" -#include "webkit/support/webkit_support.h" - -using namespace WebKit; - -DRTDevToolsClient::DRTDevToolsClient(DRTDevToolsAgent* agent, WebView* webView) - : m_callMethodFactory(this) - , m_drtDevToolsAgent(agent) - , m_webView(webView) -{ - m_webDevToolsFrontend.set(WebDevToolsFrontend::create(m_webView, - this, - WebString::fromUTF8("en-US"))); - m_drtDevToolsAgent->attach(this); -} - -DRTDevToolsClient::~DRTDevToolsClient() -{ - // There is a chance that the page will be destroyed at detach step of - // m_drtDevToolsAgent and we should clean pending requests a bit earlier. - m_callMethodFactory.RevokeAll(); - if (m_drtDevToolsAgent) - m_drtDevToolsAgent->detach(this); -} - -void DRTDevToolsClient::sendMessageToAgent(const WebDevToolsMessageData& data) -{ - if (m_drtDevToolsAgent) - m_drtDevToolsAgent->asyncCall(DRTDevToolsCallArgs(data)); -} - -void DRTDevToolsClient::sendDebuggerCommandToAgent(const WebString& command) -{ - WebDevToolsAgent::executeDebuggerCommand(command, 1); -} - -void DRTDevToolsClient::activateWindow() -{ - // Not implemented. -} - -void DRTDevToolsClient::closeWindow() -{ - // Not implemented. -} - -void DRTDevToolsClient::dockWindow() -{ - // Not implemented. -} - -void DRTDevToolsClient::undockWindow() -{ - // Not implemented. -} - -void DRTDevToolsClient::asyncCall(const DRTDevToolsCallArgs& args) -{ - webkit_support::PostTaskFromHere( - m_callMethodFactory.NewRunnableMethod(&DRTDevToolsClient::call, args)); -} - -void DRTDevToolsClient::call(const DRTDevToolsCallArgs& args) -{ - m_webDevToolsFrontend->dispatchMessageFromAgent(args.m_data); - if (DRTDevToolsCallArgs::callsCount() == 1) - allMessagesProcessed(); -} - -void DRTDevToolsClient::allMessagesProcessed() -{ - m_webView->mainFrame()->executeScript( - WebKit::WebScriptSource(WebString::fromUTF8( - "if (window.WebInspector && WebInspector.queuesAreEmpty) WebInspector.queuesAreEmpty();"))); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DRTDevToolsClient.h --- a/WebKitTools/DumpRenderTree/chromium/DRTDevToolsClient.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,79 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DRTDevToolsClient_h -#define DRTDevToolsClient_h - -#include "base/task.h" // FIXME: remove this -#include "public/WebDevToolsFrontendClient.h" -#include -#include - -namespace WebKit { - -class WebDevToolsFrontend; -struct WebDevToolsMessageData; -class WebString; -class WebView; - -} // namespace WebKit - -class DRTDevToolsCallArgs; -class DRTDevToolsAgent; - -class DRTDevToolsClient : public WebKit::WebDevToolsFrontendClient - , public Noncopyable { -public: - DRTDevToolsClient(DRTDevToolsAgent*, WebKit::WebView*); - virtual ~DRTDevToolsClient(); - - // WebDevToolsFrontendClient implementation - virtual void sendMessageToAgent(const WebKit::WebDevToolsMessageData&); - virtual void sendDebuggerCommandToAgent(const WebKit::WebString& command); - - virtual void activateWindow(); - virtual void closeWindow(); - virtual void dockWindow(); - virtual void undockWindow(); - - void asyncCall(const DRTDevToolsCallArgs&); - - void allMessagesProcessed(); - - private: - void call(const DRTDevToolsCallArgs&); - - ScopedRunnableMethodFactory m_callMethodFactory; - WebKit::WebView* m_webView; - DRTDevToolsAgent* m_drtDevToolsAgent; - WTF::OwnPtr m_webDevToolsFrontend; -}; - -#endif // DRTDevToolsClient_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/DumpRenderTree.cpp --- a/WebKitTools/DumpRenderTree/chromium/DumpRenderTree.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,153 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" - -#include "TestShell.h" -#include "webkit/support/webkit_support.h" -#include - -using namespace std; - -void platformInit(); - -static const char optionComplexText[] = "--complex-text"; -static const char optionDumpAllPixels[] = "--dump-all-pixels"; -static const char optionNotree[] = "--notree"; -static const char optionPixelTests[] = "--pixel-tests"; -static const char optionThreaded[] = "--threaded"; -static const char optionTree[] = "--tree"; - -static const char optionPixelTestsWithName[] = "--pixel-tests="; -static const char optionTestShell[] = "--test-shell"; -static const char optionAllowExternalPages[] = "--allow-external-pages"; - -static void runTest(TestShell& shell, TestParams& params, const string& testName, bool testShellMode) -{ - int oldTimeoutMsec = shell.layoutTestTimeout(); - params.pixelHash = ""; - string pathOrURL = testName; - if (testShellMode) { - string timeOut; - string::size_type separatorPosition = pathOrURL.find(' '); - if (separatorPosition != string::npos) { - timeOut = pathOrURL.substr(separatorPosition + 1); - pathOrURL.erase(separatorPosition); - separatorPosition = timeOut.find_first_of(' '); - if (separatorPosition != string::npos) { - params.pixelHash = timeOut.substr(separatorPosition + 1); - timeOut.erase(separatorPosition); - } - shell.setLayoutTestTimeout(atoi(timeOut.c_str())); - } - } else { - string::size_type separatorPosition = pathOrURL.find("'"); - if (separatorPosition != string::npos) { - params.pixelHash = pathOrURL.substr(separatorPosition + 1); - pathOrURL.erase(separatorPosition); - } - } - params.testUrl = webkit_support::CreateURLForPathOrURL(pathOrURL); - webkit_support::SetCurrentDirectoryForFileURL(params.testUrl); - shell.resetTestController(); - shell.runFileTest(params); - shell.setLayoutTestTimeout(oldTimeoutMsec); -} - -int main(int argc, char* argv[]) -{ - webkit_support::SetUpTestEnvironment(); - platformInit(); - - TestParams params; - Vector tests; - bool serverMode = false; - bool testShellMode = false; - bool allowExternalPages = false; - for (int i = 1; i < argc; ++i) { - string argument(argv[i]); - if (argument == "-") - serverMode = true; - else if (argument == optionNotree) - params.dumpTree = false; - else if (argument == optionPixelTests) - params.dumpPixels = true; - else if (!argument.find(optionPixelTestsWithName)) { - params.dumpPixels = true; - params.pixelFileName = argument.substr(strlen(optionPixelTestsWithName)); - } else if (argument == optionTestShell) { - testShellMode = true; - serverMode = true; - } else if (argument == optionAllowExternalPages) - allowExternalPages = true; - else if (argument.size() && argument[0] == '-') - fprintf(stderr, "Unknown option: %s\n", argv[i]); - else - tests.append(argument); - } - if (testShellMode && params.dumpPixels && params.pixelFileName.empty()) { - fprintf(stderr, "--pixel-tests with --test-shell requires a file name.\n"); - return EXIT_FAILURE; - } - - { // Explicit scope for the TestShell instance. - TestShell shell(testShellMode); - shell.setAllowExternalPages(allowExternalPages); - if (serverMode && !tests.size()) { - params.printSeparators = true; - char testString[2048]; // 2048 is the same as the sizes of other platforms. - while (fgets(testString, sizeof(testString), stdin)) { - char* newLinePosition = strchr(testString, '\n'); - if (newLinePosition) - *newLinePosition = '\0'; - if (testString[0] == '\0') - continue; - runTest(shell, params, testString, testShellMode); - } - } else if (!tests.size()) - printf("#EOF\n"); - else { - params.printSeparators = tests.size() > 1; - for (unsigned i = 0; i < tests.size(); i++) - runTest(shell, params, tests[i], testShellMode); - } - - shell.callJSGC(); - shell.callJSGC(); - - // When we finish the last test, cleanup the LayoutTestController. - // It may have references to not-yet-cleaned up windows. By - // cleaning up here we help purify reports. - shell.resetTestController(); - } - - webkit_support::TearDownTestEnvironment(); - return EXIT_SUCCESS; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/EventSender.cpp --- a/WebKitTools/DumpRenderTree/chromium/EventSender.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,931 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// This file contains the definition for EventSender. -// -// Some notes about drag and drop handling: -// Windows drag and drop goes through a system call to doDragDrop. At that -// point, program control is given to Windows which then periodically makes -// callbacks into the webview. This won't work for layout tests, so instead, -// we queue up all the mouse move and mouse up events. When the test tries to -// start a drag (by calling EvenSendingController::doDragDrop), we take the -// events in the queue and replay them. -// The behavior of queuing events and replaying them can be disabled by a -// layout test by setting eventSender.dragMode to false. - -#include "config.h" -#include "EventSender.h" - -#include "TestShell.h" -#include "base/keyboard_codes.h" -#include "base/time.h" -#include "public/WebDragData.h" -#include "public/WebDragOperation.h" -#include "public/WebPoint.h" -#include "public/WebString.h" -#include "public/WebTouchPoint.h" -#include "public/WebView.h" -#include "webkit/support/webkit_support.h" -#include -#include - -#if OS(WINDOWS) -#include "public/win/WebInputEventFactory.h" -#endif - -// FIXME: layout before each event? - -using namespace base; -using namespace std; -using namespace WebKit; - -WebPoint EventSender::lastMousePos; -WebMouseEvent::Button EventSender::pressedButton = WebMouseEvent::ButtonNone; -WebMouseEvent::Button EventSender::lastButtonType = WebMouseEvent::ButtonNone; - -struct SavedEvent { - enum SavedEventType { - Unspecified, - MouseUp, - MouseMove, - LeapForward - }; - - SavedEventType type; - WebMouseEvent::Button buttonType; // For MouseUp. - WebPoint pos; // For MouseMove. - int milliseconds; // For LeapForward. - - SavedEvent() - : type(Unspecified) - , buttonType(WebMouseEvent::ButtonNone) - , milliseconds(0) {} -}; - -static WebDragData currentDragData; -static WebDragOperation currentDragEffect; -static WebDragOperationsMask currentDragEffectsAllowed; -static bool replayingSavedEvents = false; -static Deque mouseEventQueue; -static int touchModifiers; -static Vector touchPoints; - -// Time and place of the last mouse up event. -static double lastClickTimeSec = 0; -static WebPoint lastClickPos; -static int clickCount = 0; - -// maximum distance (in space and time) for a mouse click -// to register as a double or triple click -static const double multipleClickTimeSec = 1; -static const int multipleClickRadiusPixels = 5; - -// How much we should scroll per event - the value here is chosen to -// match the WebKit impl and layout test results. -static const float scrollbarPixelsPerTick = 40.0f; - -inline bool outsideMultiClickRadius(const WebPoint& a, const WebPoint& b) -{ - return ((a.x - b.x) * (a.x - b.x) + (a.y - b.y) * (a.y - b.y)) > - multipleClickRadiusPixels * multipleClickRadiusPixels; -} - -// Used to offset the time the event hander things an event happened. This is -// done so tests can run without a delay, but bypass checks that are time -// dependent (e.g., dragging has a timeout vs selection). -static uint32 timeOffsetMs = 0; - -static double getCurrentEventTimeSec() -{ - return (TimeTicks::Now().ToInternalValue() / Time::kMicrosecondsPerMillisecond + timeOffsetMs) / 1000.0; -} - -static void advanceEventTime(int32_t deltaMs) -{ - timeOffsetMs += deltaMs; -} - -static void initMouseEvent(WebInputEvent::Type t, WebMouseEvent::Button b, - const gfx::Point& pos, WebMouseEvent* e) -{ - e->type = t; - e->button = b; - e->modifiers = 0; - e->x = pos.x(); - e->y = pos.y(); - e->globalX = pos.x(); - e->globalY = pos.y(); - e->timeStampSeconds = getCurrentEventTimeSec(); - e->clickCount = clickCount; -} - -// Returns true if the specified key is the system key. -static bool applyKeyModifier(const string& modifierName, WebInputEvent* event) -{ - bool isSystemKey = false; - const char* characters = modifierName.c_str(); - if (!strcmp(characters, "ctrlKey") -#if !OS(MAC_OS_X) - || !strcmp(characters, "addSelectionKey") -#endif - ) { - event->modifiers |= WebInputEvent::ControlKey; - } else if (!strcmp(characters, "shiftKey") || !strcmp(characters, "rangeSelectionKey")) - event->modifiers |= WebInputEvent::ShiftKey; - else if (!strcmp(characters, "altKey")) { - event->modifiers |= WebInputEvent::AltKey; -#if !OS(MAC_OS_X) - // On Windows all keys with Alt modifier will be marked as system key. - // We keep the same behavior on Linux and everywhere non-Mac, see: - // WebKit/chromium/src/gtk/WebInputEventFactory.cpp - // If we want to change this behavior on Linux, this piece of code must be - // kept in sync with the related code in above file. - isSystemKey = true; -#endif -#if OS(MAC_OS_X) - } else if (!strcmp(characters, "metaKey") || !strcmp(characters, "addSelectionKey")) { - event->modifiers |= WebInputEvent::MetaKey; - // On Mac only command key presses are marked as system key. - // See the related code in: WebKit/chromium/src/mac/WebInputEventFactory.cpp - // It must be kept in sync with the related code in above file. - isSystemKey = true; -#else - } else if (!strcmp(characters, "metaKey")) { - event->modifiers |= WebInputEvent::MetaKey; -#endif - } - return isSystemKey; -} - -static bool applyKeyModifiers(const CppVariant* argument, WebInputEvent* event) -{ - bool isSystemKey = false; - if (argument->isObject()) { - Vector modifiers = argument->toStringVector(); - for (Vector::const_iterator i = modifiers.begin(); i != modifiers.end(); ++i) - isSystemKey |= applyKeyModifier(*i, event); - } else if (argument->isString()) - isSystemKey = applyKeyModifier(argument->toString(), event); - return isSystemKey; -} - -// Get the edit command corresponding to a keyboard event. -// Returns true if the specified event corresponds to an edit command, the name -// of the edit command will be stored in |*name|. -bool getEditCommand(const WebKeyboardEvent& event, string* name) -{ -#if OS(MAC_OS_X) - // We only cares about Left,Right,Up,Down keys with Command or Command+Shift - // modifiers. These key events correspond to some special movement and - // selection editor commands, and was supposed to be handled in - // WebKit/chromium/src/EditorClientImpl.cpp. But these keys will be marked - // as system key, which prevents them from being handled. Thus they must be - // handled specially. - if ((event.modifiers & ~WebKeyboardEvent::ShiftKey) != WebKeyboardEvent::MetaKey) - return false; - - switch (event.windowsKeyCode) { - case base::VKEY_LEFT: - *name = "MoveToBeginningOfLine"; - break; - case base::VKEY_RIGHT: - *name = "MoveToEndOfLine"; - break; - case base::VKEY_UP: - *name = "MoveToBeginningOfDocument"; - break; - case base::VKEY_DOWN: - *name = "MoveToEndOfDocument"; - break; - default: - return false; - } - - if (event.modifiers & WebKeyboardEvent::ShiftKey) - name->append("AndModifySelection"); - - return true; -#else - return false; -#endif -} - -// Key event location code introduced in DOM Level 3. -// See also: http://www.w3.org/TR/DOM-Level-3-Events/#events-keyboardevents -enum KeyLocationCode { - DOMKeyLocationStandard = 0x00, - DOMKeyLocationLeft = 0x01, - DOMKeyLocationRight = 0x02, - DOMKeyLocationNumpad = 0x03 -}; - -EventSender::EventSender(TestShell* shell) - : m_methodFactory(this) - , m_shell(shell) -{ - // Initialize the map that associates methods of this class with the names - // they will use when called by JavaScript. The actual binding of those - // names to their methods will be done by calling bindToJavaScript() (defined - // by CppBoundClass, the parent to EventSender). - bindMethod("mouseDown", &EventSender::mouseDown); - bindMethod("mouseUp", &EventSender::mouseUp); - bindMethod("contextClick", &EventSender::contextClick); - bindMethod("mouseMoveTo", &EventSender::mouseMoveTo); - bindMethod("mouseWheelTo", &EventSender::mouseWheelTo); - bindMethod("leapForward", &EventSender::leapForward); - bindMethod("keyDown", &EventSender::keyDown); - bindMethod("dispatchMessage", &EventSender::dispatchMessage); - bindMethod("enableDOMUIEventLogging", &EventSender::enableDOMUIEventLogging); - bindMethod("fireKeyboardEventsToElement", &EventSender::fireKeyboardEventsToElement); - bindMethod("clearKillRing", &EventSender::clearKillRing); - bindMethod("textZoomIn", &EventSender::textZoomIn); - bindMethod("textZoomOut", &EventSender::textZoomOut); - bindMethod("zoomPageIn", &EventSender::zoomPageIn); - bindMethod("zoomPageOut", &EventSender::zoomPageOut); - bindMethod("scheduleAsynchronousClick", &EventSender::scheduleAsynchronousClick); - bindMethod("beginDragWithFiles", &EventSender::beginDragWithFiles); - bindMethod("addTouchPoint", &EventSender::addTouchPoint); - bindMethod("cancelTouchPoint", &EventSender::cancelTouchPoint); - bindMethod("clearTouchPoints", &EventSender::clearTouchPoints); - bindMethod("releaseTouchPoint", &EventSender::releaseTouchPoint); - bindMethod("updateTouchPoint", &EventSender::updateTouchPoint); - bindMethod("setTouchModifier", &EventSender::setTouchModifier); - bindMethod("touchCancel", &EventSender::touchCancel); - bindMethod("touchEnd", &EventSender::touchEnd); - bindMethod("touchMove", &EventSender::touchMove); - bindMethod("touchStart", &EventSender::touchStart); - - // When set to true (the default value), we batch mouse move and mouse up - // events so we can simulate drag & drop. - bindProperty("dragMode", &dragMode); -#if OS(WINDOWS) - bindProperty("WM_KEYDOWN", &wmKeyDown); - bindProperty("WM_KEYUP", &wmKeyUp); - bindProperty("WM_CHAR", &wmChar); - bindProperty("WM_DEADCHAR", &wmDeadChar); - bindProperty("WM_SYSKEYDOWN", &wmSysKeyDown); - bindProperty("WM_SYSKEYUP", &wmSysKeyUp); - bindProperty("WM_SYSCHAR", &wmSysChar); - bindProperty("WM_SYSDEADCHAR", &wmSysDeadChar); -#endif -} - -void EventSender::reset() -{ - // The test should have finished a drag and the mouse button state. - ASSERT(currentDragData.isNull()); - currentDragData.reset(); - currentDragEffect = WebKit::WebDragOperationNone; - currentDragEffectsAllowed = WebKit::WebDragOperationNone; - pressedButton = WebMouseEvent::ButtonNone; - dragMode.set(true); -#if OS(WINDOWS) - wmKeyDown.set(WM_KEYDOWN); - wmKeyUp.set(WM_KEYUP); - wmChar.set(WM_CHAR); - wmDeadChar.set(WM_DEADCHAR); - wmSysKeyDown.set(WM_SYSKEYDOWN); - wmSysKeyUp.set(WM_SYSKEYUP); - wmSysChar.set(WM_SYSCHAR); - wmSysDeadChar.set(WM_SYSDEADCHAR); -#endif - lastMousePos = WebPoint(0, 0); - lastClickTimeSec = 0; - lastClickPos = WebPoint(0, 0); - clickCount = 0; - lastButtonType = WebMouseEvent::ButtonNone; - timeOffsetMs = 0; - touchModifiers = 0; - touchPoints.clear(); -} - -WebView* EventSender::webview() -{ - return m_shell->webView(); -} - -void EventSender::doDragDrop(const WebDragData& dragData, WebDragOperationsMask mask) -{ - WebMouseEvent event; - initMouseEvent(WebInputEvent::MouseDown, pressedButton, lastMousePos, &event); - WebPoint clientPoint(event.x, event.y); - WebPoint screenPoint(event.globalX, event.globalY); - currentDragData = dragData; - currentDragEffectsAllowed = mask; - currentDragEffect = webview()->dragTargetDragEnter(dragData, 0, clientPoint, screenPoint, currentDragEffectsAllowed); - - // Finish processing events. - replaySavedEvents(); -} - -WebMouseEvent::Button EventSender::getButtonTypeFromButtonNumber(int buttonCode) -{ - if (!buttonCode) - return WebMouseEvent::ButtonLeft; - if (buttonCode == 2) - return WebMouseEvent::ButtonRight; - return WebMouseEvent::ButtonMiddle; -} - -int EventSender::getButtonNumberFromSingleArg(const CppArgumentList& arguments) -{ - int buttonCode = 0; - if (arguments.size() > 0 && arguments[0].isNumber()) - buttonCode = arguments[0].toInt32(); - return buttonCode; -} - -void EventSender::updateClickCountForButton(WebMouseEvent::Button buttonType) -{ - if ((getCurrentEventTimeSec() - lastClickTimeSec < multipleClickTimeSec) - && (!outsideMultiClickRadius(lastMousePos, lastClickPos)) - && (buttonType == lastButtonType)) - ++clickCount; - else { - clickCount = 1; - lastButtonType = buttonType; - } -} - -// -// Implemented javascript methods. -// - -void EventSender::mouseDown(const CppArgumentList& arguments, CppVariant* result) -{ - if (result) // Could be 0 if invoked asynchronously. - result->setNull(); - - webview()->layout(); - - int buttonNumber = getButtonNumberFromSingleArg(arguments); - ASSERT(buttonNumber != -1); - - WebMouseEvent::Button buttonType = getButtonTypeFromButtonNumber(buttonNumber); - - updateClickCountForButton(buttonType); - - WebMouseEvent event; - pressedButton = buttonType; - initMouseEvent(WebInputEvent::MouseDown, buttonType, lastMousePos, &event); - if (arguments.size() >= 2 && (arguments[1].isObject() || arguments[1].isString())) - applyKeyModifiers(&(arguments[1]), &event); - webview()->handleInputEvent(event); -} - -void EventSender::mouseUp(const CppArgumentList& arguments, CppVariant* result) -{ - if (result) // Could be 0 if invoked asynchronously. - result->setNull(); - - webview()->layout(); - - int buttonNumber = getButtonNumberFromSingleArg(arguments); - ASSERT(buttonNumber != -1); - - WebMouseEvent::Button buttonType = getButtonTypeFromButtonNumber(buttonNumber); - - if (isDragMode() && !replayingSavedEvents) { - SavedEvent savedEvent; - savedEvent.type = SavedEvent::MouseUp; - savedEvent.buttonType = buttonType; - mouseEventQueue.append(savedEvent); - replaySavedEvents(); - } else { - WebMouseEvent event; - initMouseEvent(WebInputEvent::MouseUp, buttonType, lastMousePos, &event); - if (arguments.size() >= 2 && (arguments[1].isObject() || arguments[1].isString())) - applyKeyModifiers(&(arguments[1]), &event); - doMouseUp(event); - } -} - -void EventSender::doMouseUp(const WebMouseEvent& e) -{ - webview()->handleInputEvent(e); - - pressedButton = WebMouseEvent::ButtonNone; - lastClickTimeSec = e.timeStampSeconds; - lastClickPos = lastMousePos; - - // If we're in a drag operation, complete it. - if (currentDragData.isNull()) - return; - WebPoint clientPoint(e.x, e.y); - WebPoint screenPoint(e.globalX, e.globalY); - - currentDragEffect = webview()->dragTargetDragOver(clientPoint, screenPoint, currentDragEffectsAllowed); - if (currentDragEffect) - webview()->dragTargetDrop(clientPoint, screenPoint); - else - webview()->dragTargetDragLeave(); - webview()->dragSourceEndedAt(clientPoint, screenPoint, currentDragEffect); - webview()->dragSourceSystemDragEnded(); - - currentDragData.reset(); -} - -void EventSender::mouseMoveTo(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() < 2 || !arguments[0].isNumber() || !arguments[1].isNumber()) - return; - webview()->layout(); - - WebPoint mousePos(arguments[0].toInt32(), arguments[1].toInt32()); - - if (isDragMode() && pressedButton == WebMouseEvent::ButtonLeft && !replayingSavedEvents) { - SavedEvent savedEvent; - savedEvent.type = SavedEvent::MouseMove; - savedEvent.pos = mousePos; - mouseEventQueue.append(savedEvent); - } else { - WebMouseEvent event; - initMouseEvent(WebInputEvent::MouseMove, pressedButton, mousePos, &event); - doMouseMove(event); - } -} - -void EventSender::mouseWheelTo(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() < 2 || !arguments[0].isNumber() || !arguments[1].isNumber()) - return; - - // Force a layout here just to make sure every position has been - // determined before we send events (as well as all the other methods - // that send an event do). The layout test calling this - // (scrollbars/overflow-scrollbar-horizontal-wheel-scroll.html, only one - // for now) does not rely on this though. - webview()->layout(); - - int horizontal = arguments[0].toInt32(); - int vertical = arguments[1].toInt32(); - - WebMouseWheelEvent event; - initMouseEvent(WebInputEvent::MouseWheel, pressedButton, lastMousePos, &event); - event.wheelTicksX = static_cast(horizontal); - event.wheelTicksY = static_cast(vertical); - event.deltaX = -horizontal * scrollbarPixelsPerTick; - event.deltaY = -vertical * scrollbarPixelsPerTick; - webview()->handleInputEvent(event); -} - -void EventSender::doMouseMove(const WebMouseEvent& e) -{ - lastMousePos = WebPoint(e.x, e.y); - - webview()->handleInputEvent(e); - - if (pressedButton == WebMouseEvent::ButtonNone || currentDragData.isNull()) - return; - WebPoint clientPoint(e.x, e.y); - WebPoint screenPoint(e.globalX, e.globalY); - currentDragEffect = webview()->dragTargetDragOver(clientPoint, screenPoint, currentDragEffectsAllowed); -} - -void EventSender::keyDown(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 1 || !arguments[0].isString()) - return; - bool generateChar = false; - - // FIXME: I'm not exactly sure how we should convert the string to a key - // event. This seems to work in the cases I tested. - // FIXME: Should we also generate a KEY_UP? - string codeStr = arguments[0].toString(); - - // Convert \n -> VK_RETURN. Some layout tests use \n to mean "Enter", when - // Windows uses \r for "Enter". - int code = 0; - int text = 0; - bool needsShiftKeyModifier = false; - if ("\n" == codeStr) { - generateChar = true; - text = code = base::VKEY_RETURN; - } else if ("rightArrow" == codeStr) - code = base::VKEY_RIGHT; - else if ("downArrow" == codeStr) - code = base::VKEY_DOWN; - else if ("leftArrow" == codeStr) - code = base::VKEY_LEFT; - else if ("upArrow" == codeStr) - code = base::VKEY_UP; - else if ("delete" == codeStr) - code = base::VKEY_DELETE; - else if ("pageUp" == codeStr) - code = base::VKEY_PRIOR; - else if ("pageDown" == codeStr) - code = base::VKEY_NEXT; - else if ("home" == codeStr) - code = base::VKEY_HOME; - else if ("end" == codeStr) - code = base::VKEY_END; - else { - // Compare the input string with the function-key names defined by the - // DOM spec (i.e. "F1",...,"F24"). If the input string is a function-key - // name, set its key code. - for (int i = 1; i <= 24; ++i) { - char functionChars[10]; - snprintf(functionChars, 10, "F%d", i); - string functionKeyName(functionChars); - if (functionKeyName == codeStr) { - code = base::VKEY_F1 + (i - 1); - break; - } - } - if (!code) { - WebString webCodeStr = WebString::fromUTF8(codeStr.data(), codeStr.size()); - ASSERT(webCodeStr.length() == 1); - text = code = webCodeStr.data()[0]; - needsShiftKeyModifier = needsShiftModifier(code); - if ((code & 0xFF) >= 'a' && (code & 0xFF) <= 'z') - code -= 'a' - 'A'; - generateChar = true; - } - } - - // For one generated keyboard event, we need to generate a keyDown/keyUp - // pair; refer to EventSender.cpp in WebKit/WebKitTools/DumpRenderTree/win. - // On Windows, we might also need to generate a char event to mimic the - // Windows event flow; on other platforms we create a merged event and test - // the event flow that that platform provides. - WebKeyboardEvent eventDown, eventChar, eventUp; - eventDown.type = WebInputEvent::RawKeyDown; - eventDown.modifiers = 0; - eventDown.windowsKeyCode = code; - if (generateChar) { - eventDown.text[0] = text; - eventDown.unmodifiedText[0] = text; - } - eventDown.setKeyIdentifierFromWindowsKeyCode(); - - if (arguments.size() >= 2 && (arguments[1].isObject() || arguments[1].isString())) - eventDown.isSystemKey = applyKeyModifiers(&(arguments[1]), &eventDown); - - if (needsShiftKeyModifier) - eventDown.modifiers |= WebInputEvent::ShiftKey; - - // See if KeyLocation argument is given. - if (arguments.size() >= 3 && arguments[2].isNumber()) { - int location = arguments[2].toInt32(); - if (location == DOMKeyLocationNumpad) - eventDown.modifiers |= WebInputEvent::IsKeyPad; - } - - eventChar = eventUp = eventDown; - eventUp.type = WebInputEvent::KeyUp; - // EventSender.m forces a layout here, with at least one - // test (fast/forms/focus-control-to-page.html) relying on this. - webview()->layout(); - - // In the browser, if a keyboard event corresponds to an editor command, - // the command will be dispatched to the renderer just before dispatching - // the keyboard event, and then it will be executed in the - // RenderView::handleCurrentKeyboardEvent() method, which is called from - // third_party/WebKit/WebKit/chromium/src/EditorClientImpl.cpp. - // We just simulate the same behavior here. - string editCommand; - if (getEditCommand(eventDown, &editCommand)) - m_shell->webViewHost()->setEditCommand(editCommand, ""); - - webview()->handleInputEvent(eventDown); - - m_shell->webViewHost()->clearEditCommand(); - - if (generateChar) { - eventChar.type = WebInputEvent::Char; - eventChar.keyIdentifier[0] = '\0'; - webview()->handleInputEvent(eventChar); - } - - webview()->handleInputEvent(eventUp); -} - -void EventSender::dispatchMessage(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - -#if OS(WINDOWS) - if (arguments.size() == 3) { - // Grab the message id to see if we need to dispatch it. - int msg = arguments[0].toInt32(); - - // WebKit's version of this function stuffs a MSG struct and uses - // TranslateMessage and DispatchMessage. We use a WebKeyboardEvent, which - // doesn't need to receive the DeadChar and SysDeadChar messages. - if (msg == WM_DEADCHAR || msg == WM_SYSDEADCHAR) - return; - - webview()->layout(); - - unsigned long lparam = static_cast(arguments[2].toDouble()); - webview()->handleInputEvent(WebInputEventFactory::keyboardEvent(0, msg, arguments[1].toInt32(), lparam)); - } else - ASSERT_NOT_REACHED(); -#endif -} - -bool EventSender::needsShiftModifier(int keyCode) -{ - // If code is an uppercase letter, assign a SHIFT key to - // eventDown.modifier, this logic comes from - // WebKit/WebKitTools/DumpRenderTree/Win/EventSender.cpp - return (keyCode & 0xFF) >= 'A' && (keyCode & 0xFF) <= 'Z'; -} - -void EventSender::leapForward(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() < 1 || !arguments[0].isNumber()) - return; - - int milliseconds = arguments[0].toInt32(); - if (isDragMode() && pressedButton == WebMouseEvent::ButtonLeft && !replayingSavedEvents) { - SavedEvent savedEvent; - savedEvent.type = SavedEvent::LeapForward; - savedEvent.milliseconds = milliseconds; - mouseEventQueue.append(savedEvent); - } else - doLeapForward(milliseconds); -} - -void EventSender::doLeapForward(int milliseconds) -{ - advanceEventTime(milliseconds); -} - -// Apple's port of WebKit zooms by a factor of 1.2 (see -// WebKit/WebView/WebView.mm) -void EventSender::textZoomIn(const CppArgumentList&, CppVariant* result) -{ - webview()->setZoomLevel(true, webview()->zoomLevel() + 1); - result->setNull(); -} - -void EventSender::textZoomOut(const CppArgumentList&, CppVariant* result) -{ - webview()->setZoomLevel(true, webview()->zoomLevel() - 1); - result->setNull(); -} - -void EventSender::zoomPageIn(const CppArgumentList&, CppVariant* result) -{ - webview()->setZoomLevel(false, webview()->zoomLevel() + 1); - result->setNull(); -} - -void EventSender::zoomPageOut(const CppArgumentList&, CppVariant* result) -{ - webview()->setZoomLevel(false, webview()->zoomLevel() - 1); - result->setNull(); -} - -void EventSender::replaySavedEvents() -{ - replayingSavedEvents = true; - while (!mouseEventQueue.isEmpty()) { - SavedEvent e = mouseEventQueue.takeFirst(); - - switch (e.type) { - case SavedEvent::MouseMove: { - WebMouseEvent event; - initMouseEvent(WebInputEvent::MouseMove, pressedButton, e.pos, &event); - doMouseMove(event); - break; - } - case SavedEvent::LeapForward: - doLeapForward(e.milliseconds); - break; - case SavedEvent::MouseUp: { - WebMouseEvent event; - initMouseEvent(WebInputEvent::MouseUp, e.buttonType, lastMousePos, &event); - doMouseUp(event); - break; - } - default: - ASSERT_NOT_REACHED(); - } - } - - replayingSavedEvents = false; -} - -void EventSender::contextClick(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - webview()->layout(); - - updateClickCountForButton(WebMouseEvent::ButtonRight); - - // Generate right mouse down and up. - - WebMouseEvent event; - pressedButton = WebMouseEvent::ButtonRight; - initMouseEvent(WebInputEvent::MouseDown, WebMouseEvent::ButtonRight, lastMousePos, &event); - webview()->handleInputEvent(event); - - initMouseEvent(WebInputEvent::MouseUp, WebMouseEvent::ButtonRight, lastMousePos, &event); - webview()->handleInputEvent(event); - - pressedButton = WebMouseEvent::ButtonNone; -} - -void EventSender::scheduleAsynchronousClick(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - webkit_support::PostTaskFromHere(m_methodFactory.NewRunnableMethod( - &EventSender::mouseDown, arguments, static_cast(0))); - webkit_support::PostTaskFromHere(m_methodFactory.NewRunnableMethod( - &EventSender::mouseUp, arguments, static_cast(0))); -} - -void EventSender::beginDragWithFiles(const CppArgumentList& arguments, CppVariant* result) -{ - currentDragData.initialize(); - Vector files = arguments[0].toStringVector(); - for (size_t i = 0; i < files.size(); ++i) - currentDragData.appendToFileNames(webkit_support::GetAbsoluteWebStringFromUTF8Path(files[i])); - currentDragEffectsAllowed = WebKit::WebDragOperationCopy; - - // Provide a drag source. - webview()->dragTargetDragEnter(currentDragData, 0, lastMousePos, lastMousePos, currentDragEffectsAllowed); - - // dragMode saves events and then replays them later. We don't need/want that. - dragMode.set(false); - - // Make the rest of eventSender think a drag is in progress. - pressedButton = WebMouseEvent::ButtonLeft; - - result->setNull(); -} - -void EventSender::addTouchPoint(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - WebTouchPoint touchPoint; - touchPoint.state = WebTouchPoint::StatePressed; - touchPoint.position = WebPoint(arguments[0].toInt32(), arguments[1].toInt32()); - touchPoint.id = touchPoints.size(); - touchPoints.append(touchPoint); -} - -void EventSender::clearTouchPoints(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - touchPoints.clear(); -} - -void EventSender::releaseTouchPoint(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - const unsigned index = arguments[0].toInt32(); - ASSERT(index < touchPoints.size()); - - WebTouchPoint* touchPoint = &touchPoints[index]; - touchPoint->state = WebTouchPoint::StateReleased; -} - -void EventSender::setTouchModifier(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - int mask = 0; - const string keyName = arguments[0].toString(); - if (keyName == "shift") - mask = WebInputEvent::ShiftKey; - else if (keyName == "alt") - mask = WebInputEvent::AltKey; - else if (keyName == "ctrl") - mask = WebInputEvent::ControlKey; - else if (keyName == "meta") - mask = WebInputEvent::MetaKey; - - if (arguments[1].toBoolean()) - touchModifiers |= mask; - else - touchModifiers &= ~mask; -} - -void EventSender::updateTouchPoint(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - const unsigned index = arguments[0].toInt32(); - ASSERT(index < touchPoints.size()); - - WebPoint position(arguments[1].toInt32(), arguments[2].toInt32()); - WebTouchPoint* touchPoint = &touchPoints[index]; - touchPoint->state = WebTouchPoint::StateMoved; - touchPoint->position = position; -} - -void EventSender::cancelTouchPoint(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - const unsigned index = arguments[0].toInt32(); - ASSERT(index < touchPoints.size()); - - WebTouchPoint* touchPoint = &touchPoints[index]; - touchPoint->state = WebTouchPoint::StateCancelled; -} - -void EventSender::sendCurrentTouchEvent(const WebInputEvent::Type type) -{ - ASSERT(static_cast(WebTouchEvent::touchPointsLengthCap) > touchPoints.size()); - WebTouchEvent touchEvent; - touchEvent.type = type; - touchEvent.modifiers = touchModifiers; - touchEvent.touchPointsLength = touchPoints.size(); - for (unsigned i = 0; i < touchPoints.size(); ++i) - touchEvent.touchPoints[i] = touchPoints[i]; - webview()->handleInputEvent(touchEvent); - - for (unsigned i = 0; i < touchPoints.size(); ++i) { - WebTouchPoint* touchPoint = &touchPoints[i]; - if (touchPoint->state == WebTouchPoint::StateReleased) { - touchPoints.remove(i); - --i; - } else - touchPoint->state = WebTouchPoint::StateStationary; - } -} - -void EventSender::touchEnd(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - sendCurrentTouchEvent(WebInputEvent::TouchEnd); -} - -void EventSender::touchMove(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - sendCurrentTouchEvent(WebInputEvent::TouchMove); -} - -void EventSender::touchStart(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - sendCurrentTouchEvent(WebInputEvent::TouchStart); -} - -void EventSender::touchCancel(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - sendCurrentTouchEvent(WebInputEvent::TouchCancel); -} - -// -// Unimplemented stubs -// - -void EventSender::enableDOMUIEventLogging(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void EventSender::fireKeyboardEventsToElement(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} - -void EventSender::clearKillRing(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/EventSender.h --- a/WebKitTools/DumpRenderTree/chromium/EventSender.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,157 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - EventSender class: - Bound to a JavaScript window.eventSender object using - CppBoundClass::bindToJavascript(), this allows layout tests to fire DOM events. -*/ - -#ifndef EventSender_h -#define EventSender_h - -#include "CppBoundClass.h" -#include "base/task.h" -#include "public/WebDragOperation.h" -#include "public/WebInputEvent.h" -#include "public/WebPoint.h" - -class TestShell; - -namespace WebKit { -class WebDragData; -class WebView; -} - -class EventSender : public CppBoundClass { -public: - // Builds the property and method lists needed to bind this class to a JS - // object. - EventSender(TestShell*); - - // Resets some static variable state. - void reset(); - - // Simulate drag&drop system call. - void doDragDrop(const WebKit::WebDragData&, WebKit::WebDragOperationsMask); - - // JS callback methods. - void mouseDown(const CppArgumentList&, CppVariant*); - void mouseUp(const CppArgumentList&, CppVariant*); - void mouseMoveTo(const CppArgumentList&, CppVariant*); - void mouseWheelTo(const CppArgumentList&, CppVariant*); - void leapForward(const CppArgumentList&, CppVariant*); - void keyDown(const CppArgumentList&, CppVariant*); - void dispatchMessage(const CppArgumentList&, CppVariant*); - void textZoomIn(const CppArgumentList&, CppVariant*); - void textZoomOut(const CppArgumentList&, CppVariant*); - void zoomPageIn(const CppArgumentList&, CppVariant*); - void zoomPageOut(const CppArgumentList&, CppVariant*); - void scheduleAsynchronousClick(const CppArgumentList&, CppVariant*); - void beginDragWithFiles(const CppArgumentList&, CppVariant*); - CppVariant dragMode; - - void addTouchPoint(const CppArgumentList&, CppVariant*); - void cancelTouchPoint(const CppArgumentList&, CppVariant*); - void clearTouchPoints(const CppArgumentList&, CppVariant*); - void releaseTouchPoint(const CppArgumentList&, CppVariant*); - void setTouchModifier(const CppArgumentList&, CppVariant*); - void touchCancel(const CppArgumentList&, CppVariant*); - void touchEnd(const CppArgumentList&, CppVariant*); - void touchMove(const CppArgumentList&, CppVariant*); - void touchStart(const CppArgumentList&, CppVariant*); - void updateTouchPoint(const CppArgumentList&, CppVariant*); - - // Unimplemented stubs - void contextClick(const CppArgumentList&, CppVariant*); - void enableDOMUIEventLogging(const CppArgumentList&, CppVariant*); - void fireKeyboardEventsToElement(const CppArgumentList&, CppVariant*); - void clearKillRing(const CppArgumentList&, CppVariant*); - - // Properties used in layout tests. -#if defined(OS_WIN) - CppVariant wmKeyDown; - CppVariant wmKeyUp; - CppVariant wmChar; - CppVariant wmDeadChar; - CppVariant wmSysKeyDown; - CppVariant wmSysKeyUp; - CppVariant wmSysChar; - CppVariant wmSysDeadChar; -#endif - -private: - // Returns the test shell's webview. - WebKit::WebView* webview(); - - // Returns true if dragMode is true. - bool isDragMode() { return dragMode.isBool() && dragMode.toBoolean(); } - - // Sometimes we queue up mouse move and mouse up events for drag drop - // handling purposes. These methods dispatch the event. - void doMouseMove(const WebKit::WebMouseEvent&); - void doMouseUp(const WebKit::WebMouseEvent&); - static void doLeapForward(int milliseconds); - void replaySavedEvents(); - - // Helper to return the button type given a button code - static WebKit::WebMouseEvent::Button getButtonTypeFromButtonNumber(int); - - // Helper to extract the button number from the optional argument in - // mouseDown and mouseUp - static int getButtonNumberFromSingleArg(const CppArgumentList&); - - // Returns true if the specified key code passed in needs a shift key - // modifier to be passed into the generated event. - bool needsShiftModifier(int); - - void updateClickCountForButton(WebKit::WebMouseEvent::Button); - - // Compose a touch event from the current touch points and send it. - void sendCurrentTouchEvent(const WebKit::WebInputEvent::Type); - - ScopedRunnableMethodFactory m_methodFactory; - - // Non-owning pointer. The EventSender is owned by the TestShell. - TestShell* m_shell; - - // Location of last mouseMoveTo event. - static WebKit::WebPoint lastMousePos; - - // Currently pressed mouse button (Left/Right/Middle or None) - static WebKit::WebMouseEvent::Button pressedButton; - - // The last button number passed to mouseDown and mouseUp. - // Used to determine whether the click count continues to - // increment or not. - static WebKit::WebMouseEvent::Button lastButtonType; -}; - -#endif // EventSender_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/ImageDiff.cpp --- a/WebKitTools/DumpRenderTree/chromium/ImageDiff.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,411 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// This file input format is based loosely on -// WebKitTools/DumpRenderTree/ImageDiff.m - -// The exact format of this tool's output to stdout is important, to match -// what the run-webkit-tests script expects. - -#include "config.h" - -#include "gfx/codec/png_codec.h" -#include -#include -#include -#include -#include -#include - -#if OS(WINDOWS) -#include -#define PATH_MAX MAX_PATH -#endif - -using namespace gfx; -using namespace std; - -// Causes the app to remain open, waiting for pairs of filenames on stdin. -// The caller is then responsible for terminating this app. -static const char optionPollStdin[] = "--use-stdin"; -static const char optionGenerateDiff[] = "--diff"; - -// Return codes used by this utility. -static const int statusSame = 0; -static const int statusDifferent = 1; -static const int statusError = 2; - -// Color codes. -static const uint32_t rgbaRed = 0x000000ff; -static const uint32_t rgbaAlpha = 0xff000000; - -class Image { -public: - Image() - : m_width(0) - , m_height(0) {} - - Image(const Image& image) - : m_width(image.m_width) - , m_height(image.m_height) - , m_data(image.m_data) {} - - bool hasImage() const { return m_width > 0 && m_height > 0; } - int width() const { return m_width; } - int height() const { return m_height; } - const unsigned char* data() const { return &m_data.front(); } - - // Creates the image from stdin with the given data length. On success, it - // will return true. On failure, no other methods should be accessed. - bool craeteFromStdin(size_t byteLength) - { - if (!byteLength) - return false; - - OwnArrayPtr source(new unsigned char[byteLength]); - if (fread(source.get(), 1, byteLength, stdin) != byteLength) - return false; - - if (!PNGCodec::Decode(source.get(), byteLength, PNGCodec::FORMAT_RGBA, - &m_data, &m_width, &m_height)) { - clear(); - return false; - } - return true; - } - - // Creates the image from the given filename on disk, and returns true on - // success. - bool createFromFilename(const char* filename) - { - FILE* f = fopen(filename, "rb"); - if (!f) - return false; - - vector compressed; - const int bufSize = 1024; - unsigned char buf[bufSize]; - size_t numRead = 0; - while ((numRead = fread(buf, 1, bufSize, f)) > 0) - std::copy(buf, &buf[numRead], std::back_inserter(compressed)); - - fclose(f); - - if (!PNGCodec::Decode(&compressed[0], compressed.size(), - PNGCodec::FORMAT_RGBA, &m_data, &m_width, &m_height)) { - clear(); - return false; - } - return true; - } - - void clear() - { - m_width = m_height = 0; - m_data.clear(); - } - - // Returns the RGBA value of the pixel at the given location - const uint32_t pixelAt(int x, int y) const - { - ASSERT(x >= 0 && x < m_width); - ASSERT(y >= 0 && y < m_height); - return *reinterpret_cast(&(m_data[(y * m_width + x) * 4])); - } - - void setPixelAt(int x, int y, uint32_t color) const - { - ASSERT(x >= 0 && x < m_width); - ASSERT(y >= 0 && y < m_height); - void* addr = &const_cast(&m_data.front())[(y * m_width + x) * 4]; - *reinterpret_cast(addr) = color; - } - -private: - // pixel dimensions of the image - int m_width, m_height; - - vector m_data; -}; - -float percentageDifferent(const Image& baseline, const Image& actual) -{ - int w = min(baseline.width(), actual.width()); - int h = min(baseline.height(), actual.height()); - - // Compute pixels different in the overlap - int pixelsDifferent = 0; - for (int y = 0; y < h; y++) { - for (int x = 0; x < w; x++) { - if (baseline.pixelAt(x, y) != actual.pixelAt(x, y)) - pixelsDifferent++; - } - } - - // Count pixels that are a difference in size as also being different - int maxWidth = max(baseline.width(), actual.width()); - int maxHeight = max(baseline.height(), actual.height()); - - // ...pixels off the right side, but not including the lower right corner - pixelsDifferent += (maxWidth - w) * h; - - // ...pixels along the bottom, including the lower right corner - pixelsDifferent += (maxHeight - h) * maxWidth; - - // Like the WebKit ImageDiff tool, we define percentage different in terms - // of the size of the 'actual' bitmap. - float totalPixels = static_cast(actual.width()) * static_cast(actual.height()); - if (!totalPixels) - return 100.0f; // When the bitmap is empty, they are 100% different. - return static_cast(pixelsDifferent) / totalPixels * 100; -} - -void printHelp() -{ - fprintf(stderr, - "Usage:\n" - " ImageDiff \n" - " Compares two files on disk, returning 0 when they are the same\n" - " ImageDiff --use-stdin\n" - " Stays open reading pairs of filenames from stdin, comparing them,\n" - " and sending 0 to stdout when they are the same\n" - " ImageDiff --diff \n" - " Compares two files on disk, outputs an image that visualizes the" - " difference to \n"); - /* For unfinished webkit-like-mode (see below) - "\n" - " ImageDiff -s\n" - " Reads stream input from stdin, should be EXACTLY of the format\n" - " \"Content-length: Content-length: ...\n" - " it will take as many file pairs as given, and will compare them as\n" - " (cmp_file, reference_file) pairs\n"); - */ -} - -int compareImages(const char* file1, const char* file2) -{ - Image actualImage; - Image baselineImage; - - if (!actualImage.createFromFilename(file1)) { - fprintf(stderr, "ImageDiff: Unable to open file \"%s\"\n", file1); - return statusError; - } - if (!baselineImage.createFromFilename(file2)) { - fprintf(stderr, "ImageDiff: Unable to open file \"%s\"\n", file2); - return statusError; - } - - float percent = percentageDifferent(actualImage, baselineImage); - if (percent > 0.0) { - // failure: The WebKit version also writes the difference image to - // stdout, which seems excessive for our needs. - printf("diff: %01.2f%% failed\n", percent); - return statusDifferent; - } - - // success - printf("diff: %01.2f%% passed\n", percent); - return statusSame; - -} - -// Untested mode that acts like WebKit's image comparator. I wrote this but -// decided it's too complicated. We may use it in the future if it looks useful. -int untestedCompareImages() -{ - Image actualImage; - Image baselineImage; - char buffer[2048]; - while (fgets(buffer, sizeof(buffer), stdin)) { - if (!strncmp("Content-length: ", buffer, 16)) { - char* context; -#if OS(WINDOWS) - strtok_s(buffer, " ", &context); - int imageSize = strtol(strtok_s(0, " ", &context), 0, 10); -#else - strtok_r(buffer, " ", &context); - int imageSize = strtol(strtok_r(0, " ", &context), 0, 10); -#endif - - bool success = false; - if (imageSize > 0 && !actualImage.hasImage()) { - if (!actualImage.craeteFromStdin(imageSize)) { - fputs("Error, input image can't be decoded.\n", stderr); - return 1; - } - } else if (imageSize > 0 && !baselineImage.hasImage()) { - if (!baselineImage.craeteFromStdin(imageSize)) { - fputs("Error, baseline image can't be decoded.\n", stderr); - return 1; - } - } else { - fputs("Error, image size must be specified.\n", stderr); - return 1; - } - } - - if (actualImage.hasImage() && baselineImage.hasImage()) { - float percent = percentageDifferent(actualImage, baselineImage); - if (percent > 0.0) { - // failure: The WebKit version also writes the difference image to - // stdout, which seems excessive for our needs. - printf("diff: %01.2f%% failed\n", percent); - } else { - // success - printf("diff: %01.2f%% passed\n", percent); - } - actualImage.clear(); - baselineImage.clear(); - } - fflush(stdout); - } - return 0; -} - -bool createImageDiff(const Image& image1, const Image& image2, Image* out) -{ - int w = min(image1.width(), image2.width()); - int h = min(image1.height(), image2.height()); - *out = Image(image1); - bool same = (image1.width() == image2.width()) && (image1.height() == image2.height()); - - // FIXME: do something with the extra pixels if the image sizes are different. - for (int y = 0; y < h; y++) { - for (int x = 0; x < w; x++) { - uint32_t basePixel = image1.pixelAt(x, y); - if (basePixel != image2.pixelAt(x, y)) { - // Set differing pixels red. - out->setPixelAt(x, y, rgbaRed | rgbaAlpha); - same = false; - } else { - // Set same pixels as faded. - uint32_t alpha = basePixel & rgbaAlpha; - uint32_t newPixel = basePixel - ((alpha / 2) & rgbaAlpha); - out->setPixelAt(x, y, newPixel); - } - } - } - - return same; -} - -static bool writeFile(const char* outFile, const unsigned char* data, size_t dataSize) -{ - FILE* file = fopen(outFile, "wb"); - if (!file) { - fprintf(stderr, "ImageDiff: Unable to create file \"%s\"\n", file); - return false; - } - if (dataSize != fwrite(data, 1, dataSize, file)) { - fclose(file); - fprintf(stderr, "ImageDiff: Unable to write data to file \"%s\"\n", file); - return false; - } - fclose(file); - return true; -} - -int diffImages(const char* file1, const char* file2, const char* outFile) -{ - Image actualImage; - Image baselineImage; - - if (!actualImage.createFromFilename(file1)) { - fprintf(stderr, "ImageDiff: Unable to open file \"%s\"\n", file1); - return statusError; - } - if (!baselineImage.createFromFilename(file2)) { - fprintf(stderr, "ImageDiff: Unable to open file \"%s\"\n", file2); - return statusError; - } - - Image diffImage; - bool same = createImageDiff(baselineImage, actualImage, &diffImage); - if (same) - return statusSame; - - vector pngData; - PNGCodec::Encode(diffImage.data(), PNGCodec::FORMAT_RGBA, diffImage.width(), - diffImage.height(), diffImage.width() * 4, false, &pngData); - if (!writeFile(outFile, &pngData.front(), pngData.size())) - return statusError; - return statusDifferent; -} - -int main(int argc, const char* argv[]) -{ - Vector values; - bool pollStdin = false; - bool generateDiff = false; - for (int i = 1; i < argc; ++i) { - if (!strcmp(argv[i], optionPollStdin)) - pollStdin = true; - else if (!strcmp(argv[i], optionGenerateDiff)) - generateDiff = true; - else - values.append(argv[i]); - } - - if (pollStdin) { - // Watch stdin for filenames. - const size_t bufferSize = PATH_MAX; - char stdinBuffer[bufferSize]; - char firstName[bufferSize]; - bool haveFirstName = false; - while (fgets(stdinBuffer, bufferSize, stdin)) { - if (!stdinBuffer[0]) - continue; - - if (haveFirstName) { - // compareImages writes results to stdout unless an error occurred. - if (compareImages(firstName, stdinBuffer) == statusError) - printf("error\n"); - fflush(stdout); - haveFirstName = false; - } else { - // Save the first filename in another buffer and wait for the second - // filename to arrive via stdin. - strcpy(firstName, stdinBuffer); - haveFirstName = true; - } - } - return 0; - } - - if (generateDiff) { - if (values.size() == 3) - return diffImages(values[0], values[1], values[2]); - } else if (values.size() == 2) - return compareImages(argv[1], argv[2]); - - printHelp(); - return statusError; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/LayoutTestController.cpp --- a/WebKitTools/DumpRenderTree/chromium/LayoutTestController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1340 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "LayoutTestController.h" - -#include "DRTDevToolsAgent.h" -#include "TestShell.h" -#include "WebViewHost.h" -#include "base/string_util.h" -#include "public/WebAnimationController.h" -#include "public/WebConsoleMessage.h" -#include "public/WebDocument.h" -#include "public/WebFrame.h" -#include "public/WebGeolocationServiceMock.h" -#include "public/WebInputElement.h" -#include "public/WebKit.h" -#include "public/WebNotificationPresenter.h" -#include "public/WebScriptSource.h" -#include "public/WebSecurityPolicy.h" -#include "public/WebSettings.h" -#include "public/WebSize.h" -#include "public/WebURL.h" -#include "public/WebView.h" -#include "webkit/support/webkit_support.h" -#include - -#if OS(WINDOWS) -#include -#endif - -using namespace WebCore; -using namespace WebKit; -using namespace std; - -LayoutTestController::LayoutTestController(TestShell* shell) - : m_timeoutFactory(this) - , m_shell(shell) - , m_workQueue(this) -{ - - // Initialize the map that associates methods of this class with the names - // they will use when called by JavaScript. The actual binding of those - // names to their methods will be done by calling bindToJavaScript() (defined - // by CppBoundClass, the parent to LayoutTestController). - bindMethod("dumpAsText", &LayoutTestController::dumpAsText); - bindMethod("dumpChildFrameScrollPositions", &LayoutTestController::dumpChildFrameScrollPositions); - bindMethod("dumpChildFramesAsText", &LayoutTestController::dumpChildFramesAsText); - bindMethod("dumpDatabaseCallbacks", &LayoutTestController::dumpDatabaseCallbacks); - bindMethod("dumpEditingCallbacks", &LayoutTestController::dumpEditingCallbacks); - bindMethod("dumpBackForwardList", &LayoutTestController::dumpBackForwardList); - bindMethod("dumpFrameLoadCallbacks", &LayoutTestController::dumpFrameLoadCallbacks); - bindMethod("dumpResourceLoadCallbacks", &LayoutTestController::dumpResourceLoadCallbacks); - bindMethod("dumpStatusCallbacks", &LayoutTestController::dumpWindowStatusChanges); - bindMethod("dumpTitleChanges", &LayoutTestController::dumpTitleChanges); - bindMethod("setAcceptsEditing", &LayoutTestController::setAcceptsEditing); - bindMethod("waitUntilDone", &LayoutTestController::waitUntilDone); - bindMethod("notifyDone", &LayoutTestController::notifyDone); - bindMethod("queueReload", &LayoutTestController::queueReload); - bindMethod("queueLoadingScript", &LayoutTestController::queueLoadingScript); - bindMethod("queueNonLoadingScript", &LayoutTestController::queueNonLoadingScript); - bindMethod("queueLoad", &LayoutTestController::queueLoad); - bindMethod("queueBackNavigation", &LayoutTestController::queueBackNavigation); - bindMethod("queueForwardNavigation", &LayoutTestController::queueForwardNavigation); - bindMethod("windowCount", &LayoutTestController::windowCount); - bindMethod("setCanOpenWindows", &LayoutTestController::setCanOpenWindows); - bindMethod("setCloseRemainingWindowsWhenComplete", &LayoutTestController::setCloseRemainingWindowsWhenComplete); - bindMethod("objCIdentityIsEqual", &LayoutTestController::objCIdentityIsEqual); - bindMethod("setAlwaysAcceptCookies", &LayoutTestController::setAlwaysAcceptCookies); - bindMethod("showWebInspector", &LayoutTestController::showWebInspector); - bindMethod("closeWebInspector", &LayoutTestController::closeWebInspector); - bindMethod("setWindowIsKey", &LayoutTestController::setWindowIsKey); - bindMethod("setTabKeyCyclesThroughElements", &LayoutTestController::setTabKeyCyclesThroughElements); - bindMethod("setUserStyleSheetLocation", &LayoutTestController::setUserStyleSheetLocation); - bindMethod("setUserStyleSheetEnabled", &LayoutTestController::setUserStyleSheetEnabled); - bindMethod("setAuthorAndUserStylesEnabled", &LayoutTestController::setAuthorAndUserStylesEnabled); - bindMethod("pathToLocalResource", &LayoutTestController::pathToLocalResource); - bindMethod("addFileToPasteboardOnDrag", &LayoutTestController::addFileToPasteboardOnDrag); - bindMethod("execCommand", &LayoutTestController::execCommand); - bindMethod("isCommandEnabled", &LayoutTestController::isCommandEnabled); - bindMethod("setPopupBlockingEnabled", &LayoutTestController::setPopupBlockingEnabled); - bindMethod("setStopProvisionalFrameLoads", &LayoutTestController::setStopProvisionalFrameLoads); - bindMethod("setSmartInsertDeleteEnabled", &LayoutTestController::setSmartInsertDeleteEnabled); - bindMethod("setSelectTrailingWhitespaceEnabled", &LayoutTestController::setSelectTrailingWhitespaceEnabled); - bindMethod("pauseAnimationAtTimeOnElementWithId", &LayoutTestController::pauseAnimationAtTimeOnElementWithId); - bindMethod("pauseTransitionAtTimeOnElementWithId", &LayoutTestController::pauseTransitionAtTimeOnElementWithId); - bindMethod("elementDoesAutoCompleteForElementWithId", &LayoutTestController::elementDoesAutoCompleteForElementWithId); - bindMethod("numberOfActiveAnimations", &LayoutTestController::numberOfActiveAnimations); - bindMethod("disableImageLoading", &LayoutTestController::disableImageLoading); - bindMethod("setIconDatabaseEnabled", &LayoutTestController::setIconDatabaseEnabled); - bindMethod("setCustomPolicyDelegate", &LayoutTestController::setCustomPolicyDelegate); - bindMethod("setScrollbarPolicy", &LayoutTestController::setScrollbarPolicy); - bindMethod("waitForPolicyDelegate", &LayoutTestController::waitForPolicyDelegate); - bindMethod("setWillSendRequestClearHeader", &LayoutTestController::setWillSendRequestClearHeader); - bindMethod("setWillSendRequestReturnsNullOnRedirect", &LayoutTestController::setWillSendRequestReturnsNullOnRedirect); - bindMethod("setWillSendRequestReturnsNull", &LayoutTestController::setWillSendRequestReturnsNull); - bindMethod("addOriginAccessWhitelistEntry", &LayoutTestController::addOriginAccessWhitelistEntry); - bindMethod("removeOriginAccessWhitelistEntry", &LayoutTestController::removeOriginAccessWhitelistEntry); - bindMethod("clearAllDatabases", &LayoutTestController::clearAllDatabases); - bindMethod("setDatabaseQuota", &LayoutTestController::setDatabaseQuota); - bindMethod("setPOSIXLocale", &LayoutTestController::setPOSIXLocale); - bindMethod("counterValueForElementById", &LayoutTestController::counterValueForElementById); - bindMethod("addUserScript", &LayoutTestController::addUserScript); - bindMethod("addUserStyleSheet", &LayoutTestController::addUserStyleSheet); - bindMethod("pageNumberForElementById", &LayoutTestController::pageNumberForElementById); - bindMethod("numberOfPages", &LayoutTestController::numberOfPages); - bindMethod("dumpSelectionRect", &LayoutTestController::dumpSelectionRect); - bindMethod("grantDesktopNotificationPermission", &LayoutTestController::grantDesktopNotificationPermission); - - // The following are stubs. - bindMethod("dumpAsWebArchive", &LayoutTestController::dumpAsWebArchive); - bindMethod("setMainFrameIsFirstResponder", &LayoutTestController::setMainFrameIsFirstResponder); - bindMethod("dumpSelectionRect", &LayoutTestController::dumpSelectionRect); - bindMethod("display", &LayoutTestController::display); - bindMethod("testRepaint", &LayoutTestController::testRepaint); - bindMethod("repaintSweepHorizontally", &LayoutTestController::repaintSweepHorizontally); - bindMethod("clearBackForwardList", &LayoutTestController::clearBackForwardList); - bindMethod("keepWebHistory", &LayoutTestController::keepWebHistory); - bindMethod("storeWebScriptObject", &LayoutTestController::storeWebScriptObject); - bindMethod("accessStoredWebScriptObject", &LayoutTestController::accessStoredWebScriptObject); - bindMethod("objCClassNameOf", &LayoutTestController::objCClassNameOf); - bindMethod("addDisallowedURL", &LayoutTestController::addDisallowedURL); - bindMethod("callShouldCloseOnWebView", &LayoutTestController::callShouldCloseOnWebView); - bindMethod("setCallCloseOnWebViews", &LayoutTestController::setCallCloseOnWebViews); - bindMethod("setPrivateBrowsingEnabled", &LayoutTestController::setPrivateBrowsingEnabled); - bindMethod("setUseDashboardCompatibilityMode", &LayoutTestController::setUseDashboardCompatibilityMode); - - bindMethod("setJavaScriptCanAccessClipboard", &LayoutTestController::setJavaScriptCanAccessClipboard); - bindMethod("setXSSAuditorEnabled", &LayoutTestController::setXSSAuditorEnabled); - bindMethod("evaluateScriptInIsolatedWorld", &LayoutTestController::evaluateScriptInIsolatedWorld); - bindMethod("overridePreference", &LayoutTestController::overridePreference); - bindMethod("setAllowUniversalAccessFromFileURLs", &LayoutTestController::setAllowUniversalAccessFromFileURLs); - bindMethod("setAllowFileAccessFromFileURLs", &LayoutTestController::setAllowFileAccessFromFileURLs); - bindMethod("setTimelineProfilingEnabled", &LayoutTestController::setTimelineProfilingEnabled); - bindMethod("evaluateInWebInspector", &LayoutTestController::evaluateInWebInspector); - bindMethod("forceRedSelectionColors", &LayoutTestController::forceRedSelectionColors); - bindMethod("setEditingBehavior", &LayoutTestController::setEditingBehavior); - - bindMethod("setGeolocationPermission", &LayoutTestController::setGeolocationPermission); - bindMethod("setMockGeolocationPosition", &LayoutTestController::setMockGeolocationPosition); - bindMethod("setMockGeolocationError", &LayoutTestController::setMockGeolocationError); - bindMethod("abortModal", &LayoutTestController::abortModal); - - // The fallback method is called when an unknown method is invoked. - bindFallbackMethod(&LayoutTestController::fallbackMethod); - - // Shared properties. - // globalFlag is used by a number of layout tests in - // LayoutTests\http\tests\security\dataURL. - bindProperty("globalFlag", &m_globalFlag); - // webHistoryItemCount is used by tests in LayoutTests\http\tests\history - bindProperty("webHistoryItemCount", &m_webHistoryItemCount); -} - -LayoutTestController::WorkQueue::~WorkQueue() -{ - reset(); -} - -void LayoutTestController::WorkQueue::processWorkSoon() -{ - if (m_controller->m_shell->webViewHost()->topLoadingFrame()) - return; - - if (!m_queue.isEmpty()) { - // We delay processing queued work to avoid recursion problems. - m_timer.Start(base::TimeDelta(), this, &WorkQueue::processWork); - } else if (!m_controller->m_waitUntilDone) { - m_controller->m_shell->testFinished(); - } -} - -void LayoutTestController::WorkQueue::processWork() -{ - TestShell* shell = m_controller->m_shell; - // Quit doing work once a load is in progress. - while (!m_queue.isEmpty()) { - bool startedLoad = m_queue.first()->run(shell); - delete m_queue.takeFirst(); - if (startedLoad) - return; - } - - if (!m_controller->m_waitUntilDone && !shell->webViewHost()->topLoadingFrame()) - shell->testFinished(); -} - -void LayoutTestController::WorkQueue::reset() -{ - m_frozen = false; - while (!m_queue.isEmpty()) { - delete m_queue.takeFirst(); - } -} - -void LayoutTestController::WorkQueue::addWork(WorkItem* work) -{ - if (m_frozen) { - delete work; - return; - } - m_queue.append(work); -} - -void LayoutTestController::dumpAsText(const CppArgumentList& arguments, CppVariant* result) -{ - m_dumpAsText = true; - m_generatePixelResults = false; - - // Optional paramater, describing whether it's allowed to dump pixel results in dumpAsText mode. - if (arguments.size() > 0 && arguments[0].isBool()) - m_generatePixelResults = arguments[0].value.boolValue; - - result->setNull(); -} - -void LayoutTestController::dumpDatabaseCallbacks(const CppArgumentList&, CppVariant* result) -{ - // Do nothing; we don't use this flag anywhere for now - result->setNull(); -} - -void LayoutTestController::dumpEditingCallbacks(const CppArgumentList&, CppVariant* result) -{ - m_dumpEditingCallbacks = true; - result->setNull(); -} - -void LayoutTestController::dumpBackForwardList(const CppArgumentList&, CppVariant* result) -{ - m_dumpBackForwardList = true; - result->setNull(); -} - -void LayoutTestController::dumpFrameLoadCallbacks(const CppArgumentList&, CppVariant* result) -{ - m_dumpFrameLoadCallbacks = true; - result->setNull(); -} - -void LayoutTestController::dumpResourceLoadCallbacks(const CppArgumentList&, CppVariant* result) -{ - m_dumpResourceLoadCallbacks = true; - result->setNull(); -} - -void LayoutTestController::dumpChildFrameScrollPositions(const CppArgumentList&, CppVariant* result) -{ - m_dumpChildFrameScrollPositions = true; - result->setNull(); -} - -void LayoutTestController::dumpChildFramesAsText(const CppArgumentList&, CppVariant* result) -{ - m_dumpChildFramesAsText = true; - result->setNull(); -} - -void LayoutTestController::dumpWindowStatusChanges(const CppArgumentList&, CppVariant* result) -{ - m_dumpWindowStatusChanges = true; - result->setNull(); -} - -void LayoutTestController::dumpTitleChanges(const CppArgumentList&, CppVariant* result) -{ - m_dumpTitleChanges = true; - result->setNull(); -} - -void LayoutTestController::setAcceptsEditing(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_acceptsEditing = arguments[0].value.boolValue; - result->setNull(); -} - -void LayoutTestController::waitUntilDone(const CppArgumentList&, CppVariant* result) -{ - if (!webkit_support::BeingDebugged()) { - webkit_support::PostDelayedTaskFromHere( - m_timeoutFactory.NewRunnableMethod(&LayoutTestController::notifyDoneTimedOut), - m_shell->layoutTestTimeout()); - } - m_waitUntilDone = true; - result->setNull(); -} - -void LayoutTestController::notifyDone(const CppArgumentList&, CppVariant* result) -{ - // Test didn't timeout. Kill the timeout timer. - m_timeoutFactory.RevokeAll(); - - completeNotifyDone(false); - result->setNull(); -} - -void LayoutTestController::notifyDoneTimedOut() -{ - completeNotifyDone(true); -} - -void LayoutTestController::completeNotifyDone(bool isTimeout) -{ - if (m_waitUntilDone && !m_shell->webViewHost()->topLoadingFrame() && m_workQueue.isEmpty()) { - if (isTimeout) - m_shell->testTimedOut(); - else - m_shell->testFinished(); - } - m_waitUntilDone = false; -} - -class WorkItemBackForward : public LayoutTestController::WorkItem { -public: - WorkItemBackForward(int distance) : m_distance(distance) {} - bool run(TestShell* shell) - { - shell->goToOffset(m_distance); - return true; // FIXME: Did it really start a navigation? - } -private: - int m_distance; -}; - -void LayoutTestController::queueBackNavigation(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isNumber()) - m_workQueue.addWork(new WorkItemBackForward(-arguments[0].toInt32())); - result->setNull(); -} - -void LayoutTestController::queueForwardNavigation(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isNumber()) - m_workQueue.addWork(new WorkItemBackForward(arguments[0].toInt32())); - result->setNull(); -} - -class WorkItemReload : public LayoutTestController::WorkItem { -public: - bool run(TestShell* shell) - { - shell->reload(); - return true; - } -}; - -void LayoutTestController::queueReload(const CppArgumentList&, CppVariant* result) -{ - m_workQueue.addWork(new WorkItemReload); - result->setNull(); -} - -class WorkItemLoadingScript : public LayoutTestController::WorkItem { -public: - WorkItemLoadingScript(const string& script) : m_script(script) {} - bool run(TestShell* shell) - { - shell->webView()->mainFrame()->executeScript(WebScriptSource(WebString::fromUTF8(m_script))); - return true; // FIXME: Did it really start a navigation? - } -private: - string m_script; -}; - -class WorkItemNonLoadingScript : public LayoutTestController::WorkItem { -public: - WorkItemNonLoadingScript(const string& script) : m_script(script) {} - bool run(TestShell* shell) - { - shell->webView()->mainFrame()->executeScript(WebScriptSource(WebString::fromUTF8(m_script))); - return false; - } -private: - string m_script; -}; - -void LayoutTestController::queueLoadingScript(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isString()) - m_workQueue.addWork(new WorkItemLoadingScript(arguments[0].toString())); - result->setNull(); -} - -void LayoutTestController::queueNonLoadingScript(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isString()) - m_workQueue.addWork(new WorkItemNonLoadingScript(arguments[0].toString())); - result->setNull(); -} - -class WorkItemLoad : public LayoutTestController::WorkItem { -public: - WorkItemLoad(const WebURL& url, const WebString& target) - : m_url(url) - , m_target(target) {} - bool run(TestShell* shell) - { - shell->webViewHost()->loadURLForFrame(m_url, m_target); - return true; // FIXME: Did it really start a navigation? - } -private: - WebURL m_url; - WebString m_target; -}; - -void LayoutTestController::queueLoad(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isString()) { - // FIXME: Implement WebURL::resolve() and avoid GURL. - GURL currentURL = m_shell->webView()->mainFrame()->url(); - GURL fullURL = currentURL.Resolve(arguments[0].toString()); - - string target = ""; - if (arguments.size() > 1 && arguments[1].isString()) - target = arguments[1].toString(); - - m_workQueue.addWork(new WorkItemLoad(fullURL, WebString::fromUTF8(target))); - } - result->setNull(); -} - -void LayoutTestController::objCIdentityIsEqual(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() < 2) { - // This is the best we can do to return an error. - result->setNull(); - return; - } - result->set(arguments[0].isEqual(arguments[1])); -} - -void LayoutTestController::reset() -{ - if (m_shell) { - m_shell->webView()->setZoomLevel(false, 0); - m_shell->webView()->setTabKeyCyclesThroughElements(true); -#if !OS(DARWIN) && !OS(WINDOWS) // Actually, TOOLKIT_GTK - // (Constants copied because we can't depend on the header that defined - // them from this file.) - m_shell->webView()->setSelectionColors(0xff1e90ff, 0xff000000, 0xffc8c8c8, 0xff323232); -#endif - m_shell->webView()->removeAllUserContent(); - } - m_dumpAsText = false; - m_dumpEditingCallbacks = false; - m_dumpFrameLoadCallbacks = false; - m_dumpResourceLoadCallbacks = false; - m_dumpBackForwardList = false; - m_dumpChildFrameScrollPositions = false; - m_dumpChildFramesAsText = false; - m_dumpWindowStatusChanges = false; - m_dumpSelectionRect = false; - m_dumpTitleChanges = false; - m_generatePixelResults = true; - m_acceptsEditing = true; - m_waitUntilDone = false; - m_canOpenWindows = false; - m_testRepaint = false; - m_sweepHorizontally = false; - m_shouldAddFileToPasteboard = false; - m_stopProvisionalFrameLoads = false; - m_globalFlag.set(false); - m_webHistoryItemCount.set(0); - m_userStyleSheetLocation = WebURL(); - - webkit_support::SetAcceptAllCookies(false); - WebSecurityPolicy::resetOriginAccessWhitelists(); - - // Reset the default quota for each origin to 5MB - webkit_support::SetDatabaseQuota(5 * 1024 * 1024); - - setlocale(LC_ALL, ""); - - if (m_closeRemainingWindows) - m_shell->closeRemainingWindows(); - else - m_closeRemainingWindows = true; - m_workQueue.reset(); -} - -void LayoutTestController::locationChangeDone() -{ - m_webHistoryItemCount.set(m_shell->navigationEntryCount()); - - // No more new work after the first complete load. - m_workQueue.setFrozen(true); - - if (!m_waitUntilDone) - m_workQueue.processWorkSoon(); -} - -void LayoutTestController::policyDelegateDone() -{ - ASSERT(m_waitUntilDone); - m_shell->testFinished(); - m_waitUntilDone = false; -} - -void LayoutTestController::setCanOpenWindows(const CppArgumentList&, CppVariant* result) -{ - m_canOpenWindows = true; - result->setNull(); -} - -void LayoutTestController::setTabKeyCyclesThroughElements(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->setTabKeyCyclesThroughElements(arguments[0].toBoolean()); - result->setNull(); -} - -void LayoutTestController::windowCount(const CppArgumentList&, CppVariant* result) -{ - result->set(static_cast(m_shell->windowCount())); -} - -void LayoutTestController::setCloseRemainingWindowsWhenComplete(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_closeRemainingWindows = arguments[0].value.boolValue; - result->setNull(); -} - -void LayoutTestController::setAlwaysAcceptCookies(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0) - webkit_support::SetAcceptAllCookies(cppVariantToBool(arguments[0])); - result->setNull(); -} - -void LayoutTestController::showWebInspector(const CppArgumentList&, CppVariant* result) -{ - m_shell->showDevTools(); - result->setNull(); -} - -void LayoutTestController::closeWebInspector(const CppArgumentList& args, CppVariant* result) -{ - m_shell->closeDevTools(); - result->setNull(); -} - -void LayoutTestController::setWindowIsKey(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->setFocus(m_shell->webView(), arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::setUserStyleSheetEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setUserStyleSheetLocation(arguments[0].value.boolValue ? m_userStyleSheetLocation : WebURL()); - result->setNull(); -} - -void LayoutTestController::setUserStyleSheetLocation(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isString()) { - m_userStyleSheetLocation = webkit_support::RewriteLayoutTestsURL(arguments[0].toString()); - m_shell->webView()->settings()->setUserStyleSheetLocation(m_userStyleSheetLocation); - } - result->setNull(); -} - -void LayoutTestController::setAuthorAndUserStylesEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setAuthorAndUserStylesEnabled(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::execCommand(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() <= 0 || !arguments[0].isString()) - return; - - std::string command = arguments[0].toString(); - std::string value(""); - // Ignore the second parameter (which is userInterface) - // since this command emulates a manual action. - if (arguments.size() >= 3 && arguments[2].isString()) - value = arguments[2].toString(); - - // Note: webkit's version does not return the boolean, so neither do we. - m_shell->webView()->focusedFrame()->executeCommand(WebString::fromUTF8(command), WebString::fromUTF8(value)); -} - -void LayoutTestController::isCommandEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() <= 0 || !arguments[0].isString()) { - result->setNull(); - return; - } - - std::string command = arguments[0].toString(); - bool rv = m_shell->webView()->focusedFrame()->isCommandEnabled(WebString::fromUTF8(command)); - result->set(rv); -} - -void LayoutTestController::setPopupBlockingEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) { - bool blockPopups = arguments[0].toBoolean(); - m_shell->webView()->settings()->setJavaScriptCanOpenWindowsAutomatically(!blockPopups); - } - result->setNull(); -} - -void LayoutTestController::setUseDashboardCompatibilityMode(const CppArgumentList&, CppVariant* result) -{ - // We have no need to support Dashboard Compatibility Mode (mac-only) - result->setNull(); -} - -void LayoutTestController::setScrollbarPolicy(const CppArgumentList&, CppVariant* result) -{ - // FIXME: implement. - // Currently only has a non-null implementation on QT. - result->setNull(); -} - -void LayoutTestController::setCustomPolicyDelegate(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) { - bool enable = arguments[0].value.boolValue; - bool permissive = false; - if (arguments.size() > 1 && arguments[1].isBool()) - permissive = arguments[1].value.boolValue; - m_shell->webViewHost()->setCustomPolicyDelegate(enable, permissive); - } - result->setNull(); -} - -void LayoutTestController::waitForPolicyDelegate(const CppArgumentList&, CppVariant* result) -{ - m_shell->webViewHost()->waitForPolicyDelegate(); - m_waitUntilDone = true; - result->setNull(); -} - -void LayoutTestController::setWillSendRequestClearHeader(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isString()) { - string header = arguments[0].toString(); - if (!header.empty()) - m_shell->webViewHost()->addClearHeader(String::fromUTF8(header.c_str())); - } - result->setNull(); -} - -void LayoutTestController::setWillSendRequestReturnsNullOnRedirect(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webViewHost()->setBlockRedirects(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::setWillSendRequestReturnsNull(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webViewHost()->setRequestReturnNull(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::pathToLocalResource(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() <= 0 || !arguments[0].isString()) - return; - - string url = arguments[0].toString(); -#if OS(WINDOWS) - if (StartsWithASCII(url, "/tmp/", true)) { - // We want a temp file. - const unsigned tempPrefixLength = 5; - size_t bufferSize = MAX_PATH; - OwnArrayPtr tempPath(new WCHAR[bufferSize]); - DWORD tempLength = ::GetTempPathW(bufferSize, tempPath.get()); - if (tempLength + url.length() - tempPrefixLength + 1 > bufferSize) { - bufferSize = tempLength + url.length() - tempPrefixLength + 1; - tempPath.set(new WCHAR[bufferSize]); - tempLength = GetTempPathW(bufferSize, tempPath.get()); - ASSERT(tempLength < bufferSize); - } - std::string resultPath(WebString(tempPath.get(), tempLength).utf8()); - resultPath.append(url.substr(tempPrefixLength)); - result->set(resultPath); - return; - } -#endif - - // Some layout tests use file://// which we resolve as a UNC path. Normalize - // them to just file:///. - while (StartsWithASCII(url, "file:////", false)) - url = url.substr(0, 8) + url.substr(9); - result->set(webkit_support::RewriteLayoutTestsURL(url).spec()); -} - -void LayoutTestController::addFileToPasteboardOnDrag(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - m_shouldAddFileToPasteboard = true; -} - -void LayoutTestController::setStopProvisionalFrameLoads(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - m_stopProvisionalFrameLoads = true; -} - -void LayoutTestController::setSmartInsertDeleteEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webViewHost()->setSmartInsertDeleteEnabled(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webViewHost()->setSelectTrailingWhitespaceEnabled(arguments[0].value.boolValue); - result->setNull(); -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const WebString& animationName, double time, const WebString& elementId) -{ - WebFrame* webFrame = m_shell->webView()->mainFrame(); - if (!webFrame) - return false; - - WebAnimationController* controller = webFrame->animationController(); - if (!controller) - return false; - - WebElement element = webFrame->document().getElementById(elementId); - if (element.isNull()) - return false; - return controller->pauseAnimationAtTime(element, animationName, time); -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(const WebString& propertyName, double time, const WebString& elementId) -{ - WebFrame* webFrame = m_shell->webView()->mainFrame(); - if (!webFrame) - return false; - - WebAnimationController* controller = webFrame->animationController(); - if (!controller) - return false; - - WebElement element = webFrame->document().getElementById(elementId); - if (element.isNull()) - return false; - return controller->pauseTransitionAtTime(element, propertyName, time); -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const WebString& elementId) -{ - WebFrame* webFrame = m_shell->webView()->mainFrame(); - if (!webFrame) - return false; - - WebElement element = webFrame->document().getElementById(elementId); - if (element.isNull() || !element.hasTagName("input")) - return false; - - WebInputElement inputElement = element.to(); - return inputElement.autoComplete(); -} - -int LayoutTestController::numberOfActiveAnimations() -{ - WebFrame* webFrame = m_shell->webView()->mainFrame(); - if (!webFrame) - return -1; - - WebAnimationController* controller = webFrame->animationController(); - if (!controller) - return -1; - - return controller->numberOfActiveAnimations(); -} - -void LayoutTestController::pauseAnimationAtTimeOnElementWithId(const CppArgumentList& arguments, CppVariant* result) -{ - result->set(false); - if (arguments.size() > 2 && arguments[0].isString() && arguments[1].isNumber() && arguments[2].isString()) { - WebString animationName = cppVariantToWebString(arguments[0]); - double time = arguments[1].toDouble(); - WebString elementId = cppVariantToWebString(arguments[2]); - result->set(pauseAnimationAtTimeOnElementWithId(animationName, time, elementId)); - } -} - -void LayoutTestController::pauseTransitionAtTimeOnElementWithId(const CppArgumentList& arguments, CppVariant* result) -{ - result->set(false); - if (arguments.size() > 2 && arguments[0].isString() && arguments[1].isNumber() && arguments[2].isString()) { - WebString propertyName = cppVariantToWebString(arguments[0]); - double time = arguments[1].toDouble(); - WebString elementId = cppVariantToWebString(arguments[2]); - result->set(pauseTransitionAtTimeOnElementWithId(propertyName, time, elementId)); - } -} - -void LayoutTestController::elementDoesAutoCompleteForElementWithId(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() != 1 || !arguments[0].isString()) { - result->set(false); - return; - } - WebString elementId = cppVariantToWebString(arguments[0]); - result->set(elementDoesAutoCompleteForElementWithId(elementId)); -} - -void LayoutTestController::numberOfActiveAnimations(const CppArgumentList&, CppVariant* result) -{ - result->set(numberOfActiveAnimations()); -} - -void LayoutTestController::disableImageLoading(const CppArgumentList&, CppVariant* result) -{ - m_shell->webView()->settings()->setLoadsImagesAutomatically(false); - result->setNull(); -} - -void LayoutTestController::setIconDatabaseEnabled(const CppArgumentList&, CppVariant* result) -{ - // We don't use the WebKit icon database. - result->setNull(); -} - -void LayoutTestController::callShouldCloseOnWebView(const CppArgumentList&, CppVariant* result) -{ - result->set(m_shell->webView()->dispatchBeforeUnloadEvent()); -} - -void LayoutTestController::grantDesktopNotificationPermission(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() != 1 || !arguments[0].isString()) { - result->set(false); - return; - } - m_shell->notificationPresenter()->grantPermission(cppVariantToWebString(arguments[0])); - result->set(true); -} - -// -// Unimplemented stubs -// - -void LayoutTestController::dumpAsWebArchive(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::setMainFrameIsFirstResponder(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::dumpSelectionRect(const CppArgumentList& arguments, CppVariant* result) -{ - m_dumpSelectionRect = true; - result->setNull(); -} - -void LayoutTestController::display(const CppArgumentList& arguments, CppVariant* result) -{ - WebViewHost* host = m_shell->webViewHost(); - const WebKit::WebSize& size = m_shell->webView()->size(); - WebRect rect(0, 0, size.width, size.height); - host->updatePaintRect(rect); - host->paintInvalidatedRegion(); - host->displayRepaintMask(); - result->setNull(); -} - -void LayoutTestController::testRepaint(const CppArgumentList&, CppVariant* result) -{ - m_testRepaint = true; - result->setNull(); -} - -void LayoutTestController::repaintSweepHorizontally(const CppArgumentList&, CppVariant* result) -{ - m_sweepHorizontally = true; - result->setNull(); -} - -void LayoutTestController::clearBackForwardList(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::keepWebHistory(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::storeWebScriptObject(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::accessStoredWebScriptObject(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::objCClassNameOf(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::addDisallowedURL(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} -void LayoutTestController::setCallCloseOnWebViews(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::setPrivateBrowsingEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setJavaScriptCanAccessClipboard(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::setXSSAuditorEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setXSSAuditorEnabled(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() >= 2 && arguments[0].isNumber() && arguments[1].isString()) { - WebScriptSource source(cppVariantToWebString(arguments[1])); - // This relies on the iframe focusing itself when it loads. This is a bit - // sketchy, but it seems to be what other tests do. - m_shell->webView()->focusedFrame()->executeScriptInIsolatedWorld(arguments[0].toInt32(), &source, 1, 1); - } - result->setNull(); -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setAllowUniversalAccessFromFileURLs(arguments[0].value.boolValue); - result->setNull(); -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(const CppArgumentList& arguments, CppVariant* result) -{ - if (arguments.size() > 0 && arguments[0].isBool()) - m_shell->webView()->settings()->setAllowFileAccessFromFileURLs(arguments[0].value.boolValue); - result->setNull(); -} - -// Need these conversions because the format of the value for booleans -// may vary - for example, on mac "1" and "0" are used for boolean. -bool LayoutTestController::cppVariantToBool(const CppVariant& value) -{ - if (value.isBool()) - return value.toBoolean(); - if (value.isInt32()) - return value.toInt32(); - if (value.isString()) { - string valueString = value.toString(); - if (valueString == "true" || valueString == "1") - return true; - if (valueString == "false" || valueString == "0") - return false; - } - logErrorToConsole("Invalid value. Expected boolean value."); - return false; -} - -int32_t LayoutTestController::cppVariantToInt32(const CppVariant& value) -{ - if (value.isInt32()) - return value.toInt32(); - if (value.isString()) { - int number; - if (StringToInt(value.toString(), &number)) - return number; - } - logErrorToConsole("Invalid value for preference. Expected integer value."); - return 0; -} - -WebString LayoutTestController::cppVariantToWebString(const CppVariant& value) -{ - if (!value.isString()) { - logErrorToConsole("Invalid value for preference. Expected string value."); - return WebString(); - } - return WebString::fromUTF8(value.toString()); -} - -void LayoutTestController::overridePreference(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() != 2 || !arguments[0].isString()) - return; - - string key = arguments[0].toString(); - CppVariant value = arguments[1]; - WebSettings* settings = m_shell->webView()->settings(); - if (key == "WebKitStandardFont") - settings->setStandardFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitFixedFont") - settings->setFixedFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitSerifFont") - settings->setSerifFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitSansSerifFont") - settings->setSansSerifFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitCursiveFont") - settings->setCursiveFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitFantasyFont") - settings->setFantasyFontFamily(cppVariantToWebString(value)); - else if (key == "WebKitDefaultFontSize") - settings->setDefaultFontSize(cppVariantToInt32(value)); - else if (key == "WebKitDefaultFixedFontSize") - settings->setDefaultFixedFontSize(cppVariantToInt32(value)); - else if (key == "WebKitMinimumFontSize") - settings->setMinimumFontSize(cppVariantToInt32(value)); - else if (key == "WebKitMinimumLogicalFontSize") - settings->setMinimumLogicalFontSize(cppVariantToInt32(value)); - else if (key == "WebKitDefaultTextEncodingName") - settings->setDefaultTextEncodingName(cppVariantToWebString(value)); - else if (key == "WebKitJavaScriptEnabled") - settings->setJavaScriptEnabled(cppVariantToBool(value)); - else if (key == "WebKitWebSecurityEnabled") - settings->setWebSecurityEnabled(cppVariantToBool(value)); - else if (key == "WebKitJavaScriptCanOpenWindowsAutomatically") - settings->setJavaScriptCanOpenWindowsAutomatically(cppVariantToBool(value)); - else if (key == "WebKitDisplayImagesKey") - settings->setLoadsImagesAutomatically(cppVariantToBool(value)); - else if (key == "WebKitPluginsEnabled") - settings->setPluginsEnabled(cppVariantToBool(value)); - else if (key == "WebKitDOMPasteAllowedPreferenceKey") - settings->setDOMPasteAllowed(cppVariantToBool(value)); - else if (key == "WebKitDeveloperExtrasEnabledPreferenceKey") - settings->setDeveloperExtrasEnabled(cppVariantToBool(value)); - else if (key == "WebKitShrinksStandaloneImagesToFit") - settings->setShrinksStandaloneImagesToFit(cppVariantToBool(value)); - else if (key == "WebKitTextAreasAreResizable") - settings->setTextAreasAreResizable(cppVariantToBool(value)); - else if (key == "WebKitJavaEnabled") - settings->setJavaEnabled(cppVariantToBool(value)); - else if (key == "WebKitUsesPageCachePreferenceKey") - settings->setUsesPageCache(cppVariantToBool(value)); - else if (key == "WebKitJavaScriptCanAccessClipboard") - settings->setJavaScriptCanAccessClipboard(cppVariantToBool(value)); - else if (key == "WebKitXSSAuditorEnabled") - settings->setXSSAuditorEnabled(cppVariantToBool(value)); - else if (key == "WebKitLocalStorageEnabledPreferenceKey") - settings->setLocalStorageEnabled(cppVariantToBool(value)); - else if (key == "WebKitOfflineWebApplicationCacheEnabled") - settings->setOfflineWebApplicationCacheEnabled(cppVariantToBool(value)); - else if (key == "WebKitTabToLinksPreferenceKey") - m_shell->webView()->setTabsToLinks(cppVariantToBool(value)); - else if (key == "WebKitWebGLEnabled") - settings->setExperimentalWebGLEnabled(cppVariantToBool(value)); - else { - string message("Invalid name for preference: "); - message.append(key); - logErrorToConsole(message); - } -} - -void LayoutTestController::fallbackMethod(const CppArgumentList&, CppVariant* result) -{ - printf("CONSOLE MESSAGE: JavaScript ERROR: unknown method called on LayoutTestController\n"); - result->setNull(); -} - -void LayoutTestController::addOriginAccessWhitelistEntry(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() != 4 || !arguments[0].isString() || !arguments[1].isString() - || !arguments[2].isString() || !arguments[3].isBool()) - return; - - WebKit::WebURL url(GURL(arguments[0].toString())); - if (!url.isValid()) - return; - - WebSecurityPolicy::addOriginAccessWhitelistEntry( - url, - cppVariantToWebString(arguments[1]), - cppVariantToWebString(arguments[2]), - arguments[3].toBoolean()); -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() != 4 || !arguments[0].isString() || !arguments[1].isString() - || !arguments[2].isString() || !arguments[3].isBool()) - return; - - WebKit::WebURL url(GURL(arguments[0].toString())); - if (!url.isValid()) - return; - - WebSecurityPolicy::removeOriginAccessWhitelistEntry( - url, - cppVariantToWebString(arguments[1]), - cppVariantToWebString(arguments[2]), - arguments[3].toBoolean()); -} - -void LayoutTestController::clearAllDatabases(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - webkit_support::ClearAllDatabases(); -} - -void LayoutTestController::setDatabaseQuota(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if ((arguments.size() >= 1) && arguments[0].isInt32()) - webkit_support::SetDatabaseQuota(arguments[0].toInt32()); -} - -void LayoutTestController::setPOSIXLocale(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() == 1 && arguments[0].isString()) - setlocale(LC_ALL, arguments[0].toString().c_str()); -} - -void LayoutTestController::counterValueForElementById(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 1 || !arguments[0].isString()) - return; - WebFrame* frame = m_shell->webView()->mainFrame(); - if (!frame) - return; - WebString counterValue = frame->counterValueForElementById(cppVariantToWebString(arguments[0])); - if (counterValue.isNull()) - return; - result->set(counterValue.utf8()); -} - -static bool parsePageSizeParameters(const CppArgumentList& arguments, - int argOffset, - float* pageWidthInPixels, - float* pageHeightInPixels) -{ - // WebKit is using the window width/height of DumpRenderTree as the - // default value of the page size. - // FIXME: share these values with other ports. - *pageWidthInPixels = 800; - *pageHeightInPixels = 600; - switch (arguments.size() - argOffset) { - case 2: - if (!arguments[argOffset].isNumber() || !arguments[1 + argOffset].isNumber()) - return false; - *pageWidthInPixels = static_cast(arguments[argOffset].toInt32()); - *pageHeightInPixels = static_cast(arguments[1 + argOffset].toInt32()); - // fall through. - case 0: - break; - default: - return false; - } - return true; -} - -void LayoutTestController::pageNumberForElementById(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - float pageWidthInPixels = 0; - float pageHeightInPixels = 0; - if (!parsePageSizeParameters(arguments, 1, - &pageWidthInPixels, &pageHeightInPixels)) - return; - if (!arguments[0].isString()) - return; - WebFrame* frame = m_shell->webView()->mainFrame(); - if (!frame) - return; - result->set(frame->pageNumberForElementById(cppVariantToWebString(arguments[0]), - pageWidthInPixels, pageHeightInPixels)); -} - -void LayoutTestController::numberOfPages(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - float pageWidthInPixels = 0; - float pageHeightInPixels = 0; - if (!parsePageSizeParameters(arguments, 0, &pageWidthInPixels, &pageHeightInPixels)) - return; - - WebFrame* frame = m_shell->webView()->mainFrame(); - if (!frame) - return; - WebSize size(pageWidthInPixels, pageHeightInPixels); - int numberOfPages = frame->printBegin(size); - frame->printEnd(); - result->set(numberOfPages); -} - -void LayoutTestController::logErrorToConsole(const std::string& text) -{ - m_shell->webViewHost()->didAddMessageToConsole( - WebConsoleMessage(WebConsoleMessage::LevelError, WebString::fromUTF8(text)), - WebString(), 0); -} - -void LayoutTestController::setTimelineProfilingEnabled(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 1 || !arguments[0].isBool()) - return; - m_shell->drtDevToolsAgent()->setTimelineProfilingEnabled(arguments[0].toBoolean()); -} - -void LayoutTestController::evaluateInWebInspector(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 2 || !arguments[0].isInt32() || !arguments[1].isString()) - return; - m_shell->drtDevToolsAgent()->evaluateInWebInspector(arguments[0].toInt32(), arguments[1].toString()); -} - -void LayoutTestController::forceRedSelectionColors(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - m_shell->webView()->setSelectionColors(0xffee0000, 0xff00ee00, 0xff000000, 0xffc0c0c0); -} - -void LayoutTestController::addUserScript(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 3 || !arguments[0].isString() || !arguments[1].isBool() || !arguments[2].isBool()) - return; - WebView::addUserScript( - cppVariantToWebString(arguments[0]), WebVector(), - arguments[1].toBoolean() ? WebView::UserScriptInjectAtDocumentStart : WebView::UserScriptInjectAtDocumentEnd, - arguments[2].toBoolean() ? WebView::UserContentInjectInAllFrames : WebView::UserContentInjectInTopFrameOnly); -} - -void LayoutTestController::addUserStyleSheet(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 2 || !arguments[0].isString() || !arguments[1].isBool()) - return; - WebView::addUserStyleSheet( - cppVariantToWebString(arguments[0]), WebVector(), - arguments[2].toBoolean() ? WebView::UserContentInjectInAllFrames : WebView::UserContentInjectInTopFrameOnly); -} - -void LayoutTestController::setEditingBehavior(const CppArgumentList& arguments, CppVariant* results) -{ - WebSettings* settings = m_shell->webView()->settings(); - string key = arguments[0].toString(); - if (key == "mac") - settings->setEditingBehavior(WebSettings::EditingBehaviorMac); - else if (key == "win") - settings->setEditingBehavior(WebSettings::EditingBehaviorWin); - else - logErrorToConsole("Passed invalid editing behavior. Should be 'mac' or 'win'."); -} - -void LayoutTestController::setGeolocationPermission(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 1 || !arguments[0].isBool()) - return; - WebGeolocationServiceMock::setMockGeolocationPermission(arguments[0].toBoolean()); -} - -void LayoutTestController::setMockGeolocationPosition(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 3 || !arguments[0].isNumber() || !arguments[1].isNumber() || !arguments[2].isNumber()) - return; - WebGeolocationServiceMock::setMockGeolocationPosition(arguments[0].toDouble(), arguments[1].toDouble(), arguments[2].toDouble()); -} - -void LayoutTestController::setMockGeolocationError(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - if (arguments.size() < 2 || !arguments[0].isInt32() || !arguments[1].isString()) - return; - WebGeolocationServiceMock::setMockGeolocationError(arguments[0].toInt32(), cppVariantToWebString(arguments[1])); -} - -void LayoutTestController::abortModal(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/LayoutTestController.h --- a/WebKitTools/DumpRenderTree/chromium/LayoutTestController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,469 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -/* - LayoutTestController class: - Bound to a JavaScript window.layoutTestController object using the - CppBoundClass::bindToJavascript(), this allows layout tests that are run in - the test_shell (or, in principle, any web page loaded into a client app built - with this class) to control various aspects of how the tests are run and what - sort of output they produce. -*/ - -#ifndef LayoutTestController_h -#define LayoutTestController_h - -#include "CppBoundClass.h" -#include "base/timer.h" // FIXME: Remove this. -#include "public/WebString.h" -#include "public/WebURL.h" -#include - -class TestShell; - -class LayoutTestController : public CppBoundClass { -public: - // Builds the property and method lists needed to bind this class to a JS - // object. - LayoutTestController(TestShell*); - - // This function sets a flag that tells the test_shell to dump pages as - // plain text, rather than as a text representation of the renderer's state. - // It takes an optional argument, whether to dump pixels results or not. - void dumpAsText(const CppArgumentList&, CppVariant*); - - // This function should set a flag that tells the test_shell to print a line - // of descriptive text for each database command. It should take no - // arguments, and ignore any that may be present. However, at the moment, we - // don't have any DB function that prints messages, so for now this function - // doesn't do anything. - void dumpDatabaseCallbacks(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to print a line of - // descriptive text for each editing command. It takes no arguments, and - // ignores any that may be present. - void dumpEditingCallbacks(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to print a line of - // descriptive text for each frame load callback. It takes no arguments, and - // ignores any that may be present. - void dumpFrameLoadCallbacks(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to print out a text - // representation of the back/forward list. It ignores all arguments. - void dumpBackForwardList(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to print out the - // scroll offsets of the child frames. It ignores all. - void dumpChildFrameScrollPositions(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to recursively - // dump all frames as plain text if the dumpAsText flag is set. - // It takes no arguments, and ignores any that may be present. - void dumpChildFramesAsText(const CppArgumentList&, CppVariant*); - - // This function sets a flag that tells the test_shell to dump all calls - // to window.status(). - // It takes no arguments, and ignores any that may be present. - void dumpWindowStatusChanges(const CppArgumentList&, CppVariant*); - - // When called with a boolean argument, this sets a flag that controls - // whether content-editable elements accept editing focus when an editing - // attempt is made. It ignores any additional arguments. - void setAcceptsEditing(const CppArgumentList&, CppVariant*); - - // Functions for dealing with windows. By default we block all new windows. - void windowCount(const CppArgumentList&, CppVariant*); - void setCanOpenWindows(const CppArgumentList&, CppVariant*); - void setCloseRemainingWindowsWhenComplete(const CppArgumentList&, CppVariant*); - - // By default, tests end when page load is complete. These methods are used - // to delay the completion of the test until notifyDone is called. - void waitUntilDone(const CppArgumentList&, CppVariant*); - void notifyDone(const CppArgumentList&, CppVariant*); - void notifyDoneTimedOut(); - - // Methods for adding actions to the work queue. Used in conjunction with - // waitUntilDone/notifyDone above. - void queueBackNavigation(const CppArgumentList&, CppVariant*); - void queueForwardNavigation(const CppArgumentList&, CppVariant*); - void queueReload(const CppArgumentList&, CppVariant*); - void queueLoadingScript(const CppArgumentList&, CppVariant*); - void queueNonLoadingScript(const CppArgumentList&, CppVariant*); - void queueLoad(const CppArgumentList&, CppVariant*); - - // Although this is named "objC" to match the Mac version, it actually tests - // the identity of its two arguments in C++. - void objCIdentityIsEqual(const CppArgumentList&, CppVariant*); - - // Changes the cookie policy from the default to allow all cookies. - void setAlwaysAcceptCookies(const CppArgumentList&, CppVariant*); - - // Shows DevTools window. - void showWebInspector(const CppArgumentList&, CppVariant*); - void closeWebInspector(const CppArgumentList&, CppVariant*); - - // Gives focus to the window. - void setWindowIsKey(const CppArgumentList&, CppVariant*); - - // Method that controls whether pressing Tab key cycles through page elements - // or inserts a '\t' char in text area - void setTabKeyCyclesThroughElements(const CppArgumentList&, CppVariant*); - - // Passes through to WebPreferences which allows the user to have a custom - // style sheet. - void setUserStyleSheetEnabled(const CppArgumentList&, CppVariant*); - void setUserStyleSheetLocation(const CppArgumentList&, CppVariant*); - - // Passes this preference through to WebSettings. - void setAuthorAndUserStylesEnabled(const CppArgumentList&, CppVariant*); - - // Puts Webkit in "dashboard compatibility mode", which is used in obscure - // Mac-only circumstances. It's not really necessary, and will most likely - // never be used by Chrome, but some layout tests depend on its presence. - void setUseDashboardCompatibilityMode(const CppArgumentList&, CppVariant*); - - void setScrollbarPolicy(const CppArgumentList&, CppVariant*); - - // Causes navigation actions just printout the intended navigation instead - // of taking you to the page. This is used for cases like mailto, where you - // don't actually want to open the mail program. - void setCustomPolicyDelegate(const CppArgumentList&, CppVariant*); - - // Delays completion of the test until the policy delegate runs. - void waitForPolicyDelegate(const CppArgumentList&, CppVariant*); - - // Causes WillSendRequest to clear certain headers. - void setWillSendRequestClearHeader(const CppArgumentList&, CppVariant*); - - // Causes WillSendRequest to block redirects. - void setWillSendRequestReturnsNullOnRedirect(const CppArgumentList&, CppVariant*); - - // Causes WillSendRequest to return an empty request. - void setWillSendRequestReturnsNull(const CppArgumentList&, CppVariant*); - - // Converts a URL starting with file:///tmp/ to the local mapping. - void pathToLocalResource(const CppArgumentList&, CppVariant*); - - // Sets a bool such that when a drag is started, we fill the drag clipboard - // with a fake file object. - void addFileToPasteboardOnDrag(const CppArgumentList&, CppVariant*); - - // Executes an internal command (superset of document.execCommand() commands). - void execCommand(const CppArgumentList&, CppVariant*); - - // Checks if an internal command is currently available. - void isCommandEnabled(const CppArgumentList&, CppVariant*); - - // Set the WebPreference that controls webkit's popup blocking. - void setPopupBlockingEnabled(const CppArgumentList&, CppVariant*); - - // If true, causes provisional frame loads to be stopped for the remainder of - // the test. - void setStopProvisionalFrameLoads(const CppArgumentList&, CppVariant*); - - // Enable or disable smart insert/delete. This is enabled by default. - void setSmartInsertDeleteEnabled(const CppArgumentList&, CppVariant*); - - // Enable or disable trailing whitespace selection on double click. - void setSelectTrailingWhitespaceEnabled(const CppArgumentList&, CppVariant*); - - void pauseAnimationAtTimeOnElementWithId(const CppArgumentList&, CppVariant*); - void pauseTransitionAtTimeOnElementWithId(const CppArgumentList&, CppVariant*); - void elementDoesAutoCompleteForElementWithId(const CppArgumentList&, CppVariant*); - void numberOfActiveAnimations(const CppArgumentList&, CppVariant*); - - void disableImageLoading(const CppArgumentList&, CppVariant*); - - void setIconDatabaseEnabled(const CppArgumentList&, CppVariant*); - - void dumpSelectionRect(const CppArgumentList&, CppVariant*); - - // Grants permission for desktop notifications to an origin - void grantDesktopNotificationPermission(const CppArgumentList&, CppVariant*); - - void setEditingBehavior(const CppArgumentList&, CppVariant*); - - // The following are only stubs. TODO(pamg): Implement any of these that - // are needed to pass the layout tests. - void dumpAsWebArchive(const CppArgumentList&, CppVariant*); - void dumpTitleChanges(const CppArgumentList&, CppVariant*); - void dumpResourceLoadCallbacks(const CppArgumentList&, CppVariant*); - void setMainFrameIsFirstResponder(const CppArgumentList&, CppVariant*); - void display(const CppArgumentList&, CppVariant*); - void testRepaint(const CppArgumentList&, CppVariant*); - void repaintSweepHorizontally(const CppArgumentList&, CppVariant*); - void clearBackForwardList(const CppArgumentList&, CppVariant*); - void keepWebHistory(const CppArgumentList&, CppVariant*); - void storeWebScriptObject(const CppArgumentList&, CppVariant*); - void accessStoredWebScriptObject(const CppArgumentList&, CppVariant*); - void objCClassNameOf(const CppArgumentList&, CppVariant*); - void addDisallowedURL(const CppArgumentList&, CppVariant*); - void callShouldCloseOnWebView(const CppArgumentList&, CppVariant*); - void setCallCloseOnWebViews(const CppArgumentList&, CppVariant*); - void setPrivateBrowsingEnabled(const CppArgumentList&, CppVariant*); - - void setJavaScriptCanAccessClipboard(const CppArgumentList&, CppVariant*); - void setXSSAuditorEnabled(const CppArgumentList&, CppVariant*); - void evaluateScriptInIsolatedWorld(const CppArgumentList&, CppVariant*); - void overridePreference(const CppArgumentList&, CppVariant*); - void setAllowUniversalAccessFromFileURLs(const CppArgumentList&, CppVariant*); - void setAllowFileAccessFromFileURLs(const CppArgumentList&, CppVariant*); - - - // The fallback method is called when a nonexistent method is called on - // the layout test controller object. - // It is usefull to catch typos in the JavaScript code (a few layout tests - // do have typos in them) and it allows the script to continue running in - // that case (as the Mac does). - void fallbackMethod(const CppArgumentList&, CppVariant*); - - // Allows layout tests to manage origins' whitelisting. - void addOriginAccessWhitelistEntry(const CppArgumentList&, CppVariant*); - void removeOriginAccessWhitelistEntry(const CppArgumentList&, CppVariant*); - - // Clears all databases. - void clearAllDatabases(const CppArgumentList&, CppVariant*); - // Sets the default quota for all origins - void setDatabaseQuota(const CppArgumentList&, CppVariant*); - - // Calls setlocale(LC_ALL, ...) for a specified locale. - // Resets between tests. - void setPOSIXLocale(const CppArgumentList&, CppVariant*); - - // Gets the value of the counter in the element specified by its ID. - void counterValueForElementById(const CppArgumentList&, CppVariant*); - - // Gets the number of page where the specified element will be put. - void pageNumberForElementById(const CppArgumentList&, CppVariant*); - - // Gets the number of pages to be printed. - void numberOfPages(const CppArgumentList&, CppVariant*); - - - // Allows layout tests to start Timeline profiling. - void setTimelineProfilingEnabled(const CppArgumentList&, CppVariant*); - - // Allows layout tests to exec scripts at WebInspector side. - void evaluateInWebInspector(const CppArgumentList&, CppVariant*); - - // Forces the selection colors for testing under Linux. - void forceRedSelectionColors(const CppArgumentList&, CppVariant*); - - // Adds a user script or user style sheet to be injected into new documents. - void addUserScript(const CppArgumentList&, CppVariant*); - void addUserStyleSheet(const CppArgumentList&, CppVariant*); - - // Geolocation related functions. - void setGeolocationPermission(const CppArgumentList&, CppVariant*); - void setMockGeolocationPosition(const CppArgumentList&, CppVariant*); - void setMockGeolocationError(const CppArgumentList&, CppVariant*); - - // Empty stub method to keep parity with object model exposed by global LayoutTestController. - void abortModal(const CppArgumentList&, CppVariant*); - -public: - // The following methods are not exposed to JavaScript. - void setWorkQueueFrozen(bool frozen) { m_workQueue.setFrozen(frozen); } - - bool shouldDumpAsText() { return m_dumpAsText; } - bool shouldDumpEditingCallbacks() { return m_dumpEditingCallbacks; } - bool shouldDumpFrameLoadCallbacks() { return m_dumpFrameLoadCallbacks; } - void setShouldDumpFrameLoadCallbacks(bool value) { m_dumpFrameLoadCallbacks = value; } - bool shouldDumpResourceLoadCallbacks() {return m_dumpResourceLoadCallbacks; } - bool shouldDumpStatusCallbacks() { return m_dumpWindowStatusChanges; } - bool shouldDumpSelectionRect() { return m_dumpSelectionRect; } - bool shouldDumpBackForwardList() { return m_dumpBackForwardList; } - bool shouldDumpTitleChanges() { return m_dumpTitleChanges; } - bool shouldDumpChildFrameScrollPositions() { return m_dumpChildFrameScrollPositions; } - bool shouldDumpChildFramesAsText() { return m_dumpChildFramesAsText; } - bool shouldGeneratePixelResults() { return m_generatePixelResults; } - bool acceptsEditing() { return m_acceptsEditing; } - bool canOpenWindows() { return m_canOpenWindows; } - bool shouldAddFileToPasteboard() { return m_shouldAddFileToPasteboard; } - bool stopProvisionalFrameLoads() { return m_stopProvisionalFrameLoads; } - - bool testRepaint() const { return m_testRepaint; } - bool sweepHorizontally() const { return m_sweepHorizontally; } - - // Called by the webview delegate when the toplevel frame load is done. - void locationChangeDone(); - - // Called by the webview delegate when the policy delegate runs if the - // waitForPolicyDelegate was called. - void policyDelegateDone(); - - // Reinitializes all static values. The reset() method should be called - // before the start of each test (currently from - // TestShell::runFileTest). - void reset(); - - // A single item in the work queue. - class WorkItem { - public: - virtual ~WorkItem() {} - - // Returns true if this started a load. - virtual bool run(TestShell* shell) = 0; - }; - -private: - friend class WorkItem; - friend class WorkQueue; - - // Helper class for managing events queued by methods like queueLoad or - // queueScript. - class WorkQueue { - public: - WorkQueue(LayoutTestController* controller) : m_frozen(false), m_controller(controller) {} - virtual ~WorkQueue(); - void processWorkSoon(); - - // Reset the state of the class between tests. - void reset(); - - void addWork(WorkItem* work); - - void setFrozen(bool frozen) { m_frozen = frozen; } - bool isEmpty() { return m_queue.isEmpty(); } - - private: - void processWork(); - - base::OneShotTimer m_timer; - Deque m_queue; - bool m_frozen; - LayoutTestController* m_controller; - }; - - // Support for overridePreference. - bool cppVariantToBool(const CppVariant&); - int32_t cppVariantToInt32(const CppVariant&); - WebKit::WebString cppVariantToWebString(const CppVariant&); - - void logErrorToConsole(const std::string&); - void completeNotifyDone(bool isTimeout); - - bool pauseAnimationAtTimeOnElementWithId(const WebKit::WebString& animationName, double time, const WebKit::WebString& elementId); - bool pauseTransitionAtTimeOnElementWithId(const WebKit::WebString& propertyName, double time, const WebKit::WebString& elementId); - bool elementDoesAutoCompleteForElementWithId(const WebKit::WebString&); - int numberOfActiveAnimations(); - - // Used for test timeouts. - ScopedRunnableMethodFactory m_timeoutFactory; - - // Non-owning pointer. The LayoutTestController is owned by the host. - TestShell* m_shell; - - // If true, the test_shell will produce a plain text dump rather than a - // text representation of the renderer. - bool m_dumpAsText; - - // If true, the test_shell will write a descriptive line for each editing - // command. - bool m_dumpEditingCallbacks; - - // If true, the test_shell will draw the bounds of the current selection rect - // taking possible transforms of the selection rect into account. - bool m_dumpSelectionRect; - - // If true, the test_shell will output a descriptive line for each frame - // load callback. - bool m_dumpFrameLoadCallbacks; - - // If true, the test_shell will output a descriptive line for each resource - // load callback. - bool m_dumpResourceLoadCallbacks; - - // If true, the test_shell will produce a dump of the back forward list as - // well. - bool m_dumpBackForwardList; - - // If true, the test_shell will print out the child frame scroll offsets as - // well. - bool m_dumpChildFrameScrollPositions; - - // If true and if dump_as_text_ is true, the test_shell will recursively - // dump all frames as plain text. - bool m_dumpChildFramesAsText; - - // If true, the test_shell will dump all changes to window.status. - bool m_dumpWindowStatusChanges; - - // If true, output a message when the page title is changed. - bool m_dumpTitleChanges; - - // If true, the test_shell will generate pixel results in dumpAsText mode - bool m_generatePixelResults; - - // If true, the element will be treated as editable. This value is returned - // from various editing callbacks that are called just before edit operations - // are allowed. - bool m_acceptsEditing; - - // If true, new windows can be opened via javascript or by plugins. By - // default, set to false and can be toggled to true using - // setCanOpenWindows(). - bool m_canOpenWindows; - - // When reset is called, go through and close all but the main test shell - // window. By default, set to true but toggled to false using - // setCloseRemainingWindowsWhenComplete(). - bool m_closeRemainingWindows; - - // If true, pixel dump will be produced as a series of 1px-tall, view-wide - // individual paints over the height of the view. - bool m_testRepaint; - // If true and test_repaint_ is true as well, pixel dump will be produced as - // a series of 1px-wide, view-tall paints across the width of the view. - bool m_sweepHorizontally; - - // If true and a drag starts, adds a file to the drag&drop clipboard. - bool m_shouldAddFileToPasteboard; - - // If true, stops provisional frame loads during the - // DidStartProvisionalLoadForFrame callback. - bool m_stopProvisionalFrameLoads; - - // If true, don't dump output until notifyDone is called. - bool m_waitUntilDone; - - WorkQueue m_workQueue; - - CppVariant m_globalFlag; - - // Bound variable counting the number of top URLs visited. - CppVariant m_webHistoryItemCount; - - WebKit::WebURL m_userStyleSheetLocation; -}; - -#endif // LayoutTestController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/LayoutTestHelper.mm --- a/WebKitTools/DumpRenderTree/chromium/LayoutTestHelper.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,118 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import -#include -#include -#include - -// This is a simple helper app that changes the color sync profile to the -// generic profile and back when done. This program is managed by the layout -// test script, so it can do the job for multiple DumpRenderTree while they are -// running layout tests. - -static CMProfileRef userColorProfile = 0; - -static void saveCurrentColorProfile() -{ - CGDirectDisplayID displayID = CGMainDisplayID(); - CMProfileRef previousProfile; - CMError error = CMGetProfileByAVID((UInt32)displayID, &previousProfile); - if (error) { - NSLog(@"failed to get the current color profile, pixmaps won't match. " - @"Error: %d", (int)error); - } else { - userColorProfile = previousProfile; - } -} - -static void installLayoutTestColorProfile() -{ - // To make sure we get consistent colors (not dependent on the Main display), - // we force the generic rgb color profile. This cases a change the user can - // see. - - CGDirectDisplayID displayID = CGMainDisplayID(); - NSColorSpace* genericSpace = [NSColorSpace genericRGBColorSpace]; - CMProfileRef genericProfile = (CMProfileRef)[genericSpace colorSyncProfile]; - CMError error = CMSetProfileByAVID((UInt32)displayID, genericProfile); - if (error) { - NSLog(@"failed install the generic color profile, pixmaps won't match. " - @"Error: %d", (int)error); - } -} - -static void restoreUserColorProfile(void) -{ - if (!userColorProfile) - return; - CGDirectDisplayID displayID = CGMainDisplayID(); - CMError error = CMSetProfileByAVID((UInt32)displayID, userColorProfile); - CMCloseProfile(userColorProfile); - if (error) { - NSLog(@"Failed to restore color profile, use System Preferences -> " - @"Displays -> Color to reset. Error: %d", (int)error); - } - userColorProfile = 0; -} - -static void simpleSignalHandler(int sig) -{ - // Try to restore the color profile and try to go down cleanly - restoreUserColorProfile(); - exit(128 + sig); -} - -int main(int argc, char* argv[]) -{ - NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; - - // Hooks the ways we might get told to clean up... - signal(SIGINT, simpleSignalHandler); - signal(SIGHUP, simpleSignalHandler); - signal(SIGTERM, simpleSignalHandler); - - // Save off the current profile, and then install the layout test profile. - saveCurrentColorProfile(); - installLayoutTestColorProfile(); - - // Let the script know we're ready - printf("ready\n"); - fflush(stdout); - - // Wait for any key (or signal) - getchar(); - - // Restore the profile - restoreUserColorProfile(); - - [pool release]; - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/LayoutTestHelperWin.cpp --- a/WebKitTools/DumpRenderTree/chromium/LayoutTestHelperWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,84 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include - -static BOOL fontSmoothingEnabled = FALSE; - -static void saveInitialSettings(void) -{ - ::SystemParametersInfo(SPI_GETFONTSMOOTHING, 0, &fontSmoothingEnabled, 0); -} - -// Technically, all we need to do is disable ClearType. However, -// for some reason, the call to SPI_SETFONTSMOOTHINGTYPE doesn't -// seem to work, so we just disable font smoothing all together -// (which works reliably) -static void installLayoutTestSettings(void) -{ - ::SystemParametersInfo(SPI_SETFONTSMOOTHING, FALSE, 0, 0); -} - -static void restoreInitialSettings(void) -{ - ::SystemParametersInfo(SPI_SETFONTSMOOTHING, static_cast(fontSmoothingEnabled), 0, 0); -} - -static void simpleSignalHandler(int signalNumber) -{ - // Try to restore the settings and then go down cleanly - restoreInitialSettings(); - exit(128 + signalNumber); -} - -int main(int, char*[]) -{ - // Hooks the ways we might get told to clean up... - signal(SIGINT, simpleSignalHandler); - signal(SIGTERM, simpleSignalHandler); - - saveInitialSettings(); - - installLayoutTestSettings(); - - // Let the script know we're ready - printf("ready\n"); - fflush(stdout); - - // Wait for any key (or signal) - getchar(); - - restoreInitialSettings(); - - return EXIT_SUCCESS; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/MockSpellCheck.cpp --- a/WebKitTools/DumpRenderTree/chromium/MockSpellCheck.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,149 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "MockSpellCheck.h" - -#include "public/WebString.h" -#include -#include - -using namespace WebCore; -using namespace WebKit; - -MockSpellCheck::MockSpellCheck() - : m_initialized(false) {} - -MockSpellCheck::~MockSpellCheck() {} - -static bool isNotASCIIAlpha(UChar ch) { return !isASCIIAlpha(ch); } - -bool MockSpellCheck::spellCheckWord(const WebString& text, int* misspelledOffset, int* misspelledLength) -{ - ASSERT(misspelledOffset); - ASSERT(misspelledLength); - - // Initialize this spellchecker. - initializeIfNeeded(); - - // Reset the result values as our spellchecker does. - *misspelledOffset = 0; - *misspelledLength = 0; - - // Convert to a String because we store String instances in - // m_misspelledWords and WebString has no find(). - const String stringText(text.data(), text.length()); - - // Extract the first possible English word from the given string. - // The given string may include non-ASCII characters or numbers. So, we - // should filter out such characters before start looking up our - // misspelled-word table. - // (This is a simple version of our SpellCheckWordIterator class.) - // If the given string doesn't include any ASCII characters, we can treat the - // string as valid one. - // Unfortunately, This implementation splits a contraction, i.e. "isn't" is - // split into two pieces "isn" and "t". This is OK because webkit tests - // don't have misspelled contractions. - int wordOffset = stringText.find(isASCIIAlpha); - if (wordOffset == -1) - return true; - int wordEnd = stringText.find(isNotASCIIAlpha, wordOffset); - int wordLength = wordEnd == -1 ? stringText.length() - wordOffset : wordEnd - wordOffset; - - // Look up our misspelled-word table to check if the extracted word is a - // known misspelled word, and return the offset and the length of the - // extracted word if this word is a known misspelled word. - // (See the comment in MockSpellCheck::initializeIfNeeded() why we use a - // misspelled-word table.) - String word = stringText.substring(wordOffset, wordLength); - if (!m_misspelledWords.contains(word)) - return true; - - *misspelledOffset = wordOffset; - *misspelledLength = wordLength; - return false; -} - -bool MockSpellCheck::initializeIfNeeded() -{ - // Exit if we have already initialized this object. - if (m_initialized) - return false; - - // Create a table that consists of misspelled words used in WebKit layout - // tests. - // Since WebKit layout tests don't have so many misspelled words as - // well-spelled words, it is easier to compare the given word with misspelled - // ones than to compare with well-spelled ones. - static const char* misspelledWords[] = { - // These words are known misspelled words in webkit tests. - // If there are other misspelled words in webkit tests, please add them in - // this array. - "foo", - "Foo", - "baz", - "fo", - "LibertyF", - "chello", - "xxxtestxxx", - "XXxxx", - "Textx", - "blockquoted", - "asd", - "Lorem", - "Nunc", - "Curabitur", - "eu", - "adlj", - "adaasj", - "sdklj", - "jlkds", - "jsaada", - "jlda", - "zz", - "contentEditable", - // The following words are used by unit tests. - "ifmmp", - "qwertyuiopasd", - "qwertyuiopasdf", - }; - - m_misspelledWords.clear(); - for (size_t i = 0; i < arraysize(misspelledWords); ++i) - m_misspelledWords.add(String::fromUTF8(misspelledWords[i]), false); - - // Mark as initialized to prevent this object from being initialized twice - // or more. - m_initialized = true; - - // Since this MockSpellCheck class doesn't download dictionaries, this - // function always returns false. - return false; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/MockSpellCheck.h --- a/WebKitTools/DumpRenderTree/chromium/MockSpellCheck.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,82 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef MockSpellCheck_h -#define MockSpellCheck_h - -#include -#include -#include - -namespace WebKit { -class WebString; -} - -// A mock implementation of a spell-checker used for WebKit tests. -// This class only implements the minimal functionarities required by WebKit -// tests, i.e. this class just compares the given string with known misspelled -// words in webkit tests and mark them as missspelled. -// Even though this is sufficent for webkit tests, this class is not suitable -// for any other usages. -class MockSpellCheck { -public: - MockSpellCheck(); - ~MockSpellCheck(); - - // Checks the spellings of the specified text. - // This function returns true if the text consists of valid words, and - // returns false if it includes invalid words. - // When the given text includes invalid words, this function sets the - // position of the first invalid word to misspelledOffset, and the length of - // the first invalid word to misspelledLength, respectively. - // For example, when the given text is " zz zz", this function sets 3 to - // misspelledOffset and 2 to misspelledLength, respectively. - bool spellCheckWord(const WebKit::WebString& text, - int* misspelledOffset, - int* misspelledLength); - -private: - // Initialize the internal resources if we need to initialize it. - // Initializing this object may take long time. To prevent from hurting - // the performance of test_shell, we initialize this object when - // SpellCheckWord() is called for the first time. - // To be compliant with SpellCheck:InitializeIfNeeded(), this function - // returns true if this object is downloading a dictionary, otherwise - // it returns false. - bool initializeIfNeeded(); - - // A table that consists of misspelled words. - HashMap m_misspelledWords; - - // A flag representing whether or not this object is initialized. - bool m_initialized; -}; - -#endif // MockSpellCheck_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/NotificationPresenter.cpp --- a/WebKitTools/DumpRenderTree/chromium/NotificationPresenter.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,119 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "NotificationPresenter.h" - -#include "googleurl/src/gurl.h" -#include "public/WebNotification.h" -#include "public/WebNotificationPermissionCallback.h" -#include "public/WebSecurityOrigin.h" -#include "public/WebString.h" -#include "public/WebURL.h" -#include - -using namespace WebCore; -using namespace WebKit; - -void NotificationPresenter::grantPermission(const WebString& origin) -{ - // Make sure it's in the form of an origin. - GURL url(origin); - m_allowedOrigins.add(String(url.GetOrigin().spec().c_str())); -} - -// The output from all these methods matches what DumpRenderTree produces. -bool NotificationPresenter::show(const WebNotification& notification) -{ - if (!notification.replaceId().isEmpty()) { - String replaceId(notification.replaceId().data(), notification.replaceId().length()); - if (m_replacements.find(replaceId) != m_replacements.end()) - printf("REPLACING NOTIFICATION %s\n", - m_replacements.find(replaceId)->second.utf8().data()); - - WebString identifier = notification.isHTML() ? - notification.url().spec().utf16() : notification.title(); - m_replacements.set(replaceId, String(identifier.data(), identifier.length())); - } - - if (notification.isHTML()) { - printf("DESKTOP NOTIFICATION: contents at %s\n", - notification.url().spec().data()); - } else { - printf("DESKTOP NOTIFICATION:%s icon %s, title %s, text %s\n", - notification.dir() == "rtl" ? "(RTL)" : "", - notification.iconURL().isEmpty() ? "" : - notification.iconURL().spec().data(), - notification.title().isEmpty() ? "" : - notification.title().utf8().data(), - notification.body().isEmpty() ? "" : - notification.body().utf8().data()); - } - - WebNotification eventTarget(notification); - eventTarget.dispatchDisplayEvent(); - return true; -} - -void NotificationPresenter::cancel(const WebNotification& notification) -{ - WebString identifier; - if (notification.isHTML()) - identifier = notification.url().spec().utf16(); - else - identifier = notification.title(); - - printf("DESKTOP NOTIFICATION CLOSED: %s\n", identifier.utf8().data()); - WebNotification eventTarget(notification); - eventTarget.dispatchCloseEvent(false); -} - -void NotificationPresenter::objectDestroyed(const WebKit::WebNotification& notification) -{ - // Nothing to do. Not storing the objects. -} - -WebNotificationPresenter::Permission NotificationPresenter::checkPermission(const WebURL& url) -{ - // Check with the layout test controller - String origin = String(static_cast(url).GetOrigin().spec().c_str()); - bool allowed = m_allowedOrigins.find(origin) != m_allowedOrigins.end(); - return allowed ? WebNotificationPresenter::PermissionAllowed - : WebNotificationPresenter::PermissionDenied; -} - -void NotificationPresenter::requestPermission( - const WebSecurityOrigin& origin, - WebNotificationPermissionCallback* callback) -{ - printf("DESKTOP NOTIFICATION PERMISSION REQUESTED: %s\n", - origin.toString().utf8().data()); - callback->permissionRequestComplete(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/NotificationPresenter.h --- a/WebKitTools/DumpRenderTree/chromium/NotificationPresenter.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef NotificationPresenter_h -#define NotificationPresenter_h - -#include "public/WebNotificationPresenter.h" -#include -#include -#include -#include - -class TestShell; - -// A class that implements WebNotificationPresenter for DRT. -class NotificationPresenter : public WebKit::WebNotificationPresenter { -public: - explicit NotificationPresenter(TestShell* shell) : m_shell(shell) {} - - // Called by the LayoutTestController to simulate a user granting permission. - void grantPermission(const WebKit::WebString& origin); - - // WebKit::WebNotificationPresenter interface - virtual bool show(const WebKit::WebNotification&); - virtual void cancel(const WebKit::WebNotification&); - virtual void objectDestroyed(const WebKit::WebNotification&); - virtual Permission checkPermission(const WebKit::WebURL&); - virtual void requestPermission(const WebKit::WebSecurityOrigin&, WebKit::WebNotificationPermissionCallback*); - - void reset() { m_allowedOrigins.clear(); } - -private: - // Non-owned pointer. The NotificationPresenter is owned by the test shell. - TestShell* m_shell; - - // Set of allowed origins. - HashSet m_allowedOrigins; - - // Map of active replacement IDs to the titles of those notifications - HashMap m_replacements; -}; - -#endif // NotificationPresenter_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/PlainTextController.cpp --- a/WebKitTools/DumpRenderTree/chromium/PlainTextController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,79 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * Copyright (C) 2009 Pawel Hajdan (phajdan.jr@chromium.org) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PlainTextController.h" - -#include "TestShell.h" -#include "public/WebBindings.h" -#include "public/WebRange.h" -#include "public/WebString.h" - -using namespace WebKit; - -PlainTextController::PlainTextController() -{ - // Initialize the map that associates methods of this class with the names - // they will use when called by JavaScript. The actual binding of those - // names to their methods will be done by calling bindToJavaScript() (defined - // by CppBoundClass, the parent to PlainTextController). - bindMethod("plainText", &PlainTextController::plainText); - - // The fallback method is called when an unknown method is invoked. - bindFallbackMethod(&PlainTextController::fallbackMethod); -} - -void PlainTextController::plainText(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - if (arguments.size() < 1 || !arguments[0].isObject()) - return; - - // Check that passed-in object is, in fact, a range. - NPObject* npobject = NPVARIANT_TO_OBJECT(arguments[0]); - if (!npobject) - return; - WebRange range; - if (!WebBindings::getRange(npobject, &range)) - return; - - // Extract the text using the Range's text() method - WebString text = range.toPlainText(); - result->set(text.utf8()); -} - -void PlainTextController::fallbackMethod(const CppArgumentList&, CppVariant* result) -{ - printf("CONSOLE MESSAGE: JavaScript ERROR: unknown method called on PlainTextController\n"); - result->setNull(); -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/PlainTextController.h --- a/WebKitTools/DumpRenderTree/chromium/PlainTextController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,52 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef PlainTextController_h -#define PlainTextController_h - -#include "CppBoundClass.h" - -class TestShell; - -class PlainTextController : public CppBoundClass { -public: - // Builds the property and method lists needed to bind this class to a JS - // object. - explicit PlainTextController(); - - // JS callback methods. - void plainText(const CppArgumentList&, CppVariant*); - - // Fall-back method: called if an unknown method is invoked. - void fallbackMethod(const CppArgumentList&, CppVariant*); -}; - -#endif // PlainTextController_h - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestEventPrinter.cpp --- a/WebKitTools/DumpRenderTree/chromium/TestEventPrinter.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,167 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TestEventPrinter.h" - -#include -#include -#include - -class DRTPrinter : public TestEventPrinter { -public: - DRTPrinter() {} - void handleTestHeader(const char* url) const; - void handleTimedOut() const; - void handleTextHeader() const; - void handleTextFooter() const; - void handleImage(const char* actualHash, const char* expectedHash, const unsigned char* imageData, size_t imageSize, const char* fileName) const; - void handleImageFooter() const; - void handleTestFooter(bool dumpedAnything) const; -}; - -class TestShellPrinter : public TestEventPrinter { -public: - TestShellPrinter() {} - void handleTestHeader(const char* url) const; - void handleTimedOut() const; - void handleTextHeader() const; - void handleTextFooter() const; - void handleImage(const char* actualHash, const char* expectedHash, const unsigned char* imageData, size_t imageSize, const char* fileName) const; - void handleImageFooter() const; - void handleTestFooter(bool dumpedAnything) const; -}; - -TestEventPrinter* TestEventPrinter::createDRTPrinter() -{ - return new DRTPrinter; -} - -TestEventPrinter* TestEventPrinter::createTestShellPrinter() -{ - return new TestShellPrinter; -} - -// ---------------------------------------------------------------- - -void DRTPrinter::handleTestHeader(const char*) const -{ -} - -void DRTPrinter::handleTimedOut() const -{ - fprintf(stderr, "FAIL: Timed out waiting for notifyDone to be called\n"); - fprintf(stdout, "FAIL: Timed out waiting for notifyDone to be called\n"); -} - -void DRTPrinter::handleTextHeader() const -{ - printf("Content-Type: text/plain\n"); -} - -void DRTPrinter::handleTextFooter() const -{ - printf("#EOF\n"); -} - -void DRTPrinter::handleImage(const char* actualHash, const char* expectedHash, const unsigned char* imageData, size_t imageSize, const char*) const -{ - ASSERT(actualHash); - printf("\nActualHash: %s\n", actualHash); - if (expectedHash && expectedHash[0]) - printf("\nExpectedHash: %s\n", expectedHash); - if (imageData && imageSize) { - printf("Content-Type: image/png\n"); - printf("Content-Length: %lu\n", imageSize); - if (fwrite(imageData, 1, imageSize, stdout) != imageSize) { - fprintf(stderr, "Short write to stdout.\n"); - exit(1); - } - } -} - -void DRTPrinter::handleImageFooter() const -{ - printf("#EOF\n"); -} - -void DRTPrinter::handleTestFooter(bool) const -{ -} - -// ---------------------------------------------------------------- - -void TestShellPrinter::handleTestHeader(const char* url) const -{ - printf("#URL:%s\n", url); -} - -void TestShellPrinter::handleTimedOut() const -{ - puts("#TEST_TIMED_OUT\n"); -} - -void TestShellPrinter::handleTextHeader() const -{ -} - -void TestShellPrinter::handleTextFooter() const -{ -} - -void TestShellPrinter::handleImage(const char* actualHash, const char*, const unsigned char* imageData, size_t imageSize, const char* fileName) const -{ - ASSERT(actualHash); - if (imageData && imageSize) { - ASSERT(fileName); - FILE* fp = fopen(fileName, "wb"); - if (!fp) { - perror(fileName); - exit(EXIT_FAILURE); - } - if (fwrite(imageData, 1, imageSize, fp) != imageSize) { - perror(fileName); - fclose(fp); - exit(EXIT_FAILURE); - } - fclose(fp); - } - printf("#MD5:%s\n", actualHash); -} - -void TestShellPrinter::handleImageFooter() const -{ -} - -void TestShellPrinter::handleTestFooter(bool dumpedAnything) const -{ - if (dumpedAnything) - printf("#EOF\n"); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestEventPrinter.h --- a/WebKitTools/DumpRenderTree/chromium/TestEventPrinter.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -class TestEventPrinter { -public: - static TestEventPrinter* createDRTPrinter(); - static TestEventPrinter* createTestShellPrinter(); - - virtual void handleTestHeader(const char* url) const = 0; - virtual void handleTimedOut() const = 0; - virtual void handleTextHeader() const = 0; - virtual void handleTextFooter() const = 0; - virtual void handleImage(const char* actualHash, const char* expectedHash, const unsigned char* imageData, size_t imageSize, const char* fileName) const = 0; - virtual void handleImageFooter() const = 0; - virtual void handleTestFooter(bool dumpedAnything) const = 0; -}; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestNavigationController.cpp --- a/WebKitTools/DumpRenderTree/chromium/TestNavigationController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,269 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TestNavigationController.h" - -#include "TestShell.h" -#include - -using namespace WebKit; -using namespace std; - -// ---------------------------------------------------------------------------- -// TestNavigationEntry - -TestNavigationEntry::TestNavigationEntry() - : m_pageID(-1) {} - -TestNavigationEntry::TestNavigationEntry( - int pageID, const WebURL& url, const WebString& title, const WebString& targetFrame) - : m_pageID(pageID) - , m_url(url) - , m_title(title) - , m_targetFrame(targetFrame) {} - -TestNavigationEntry::~TestNavigationEntry() {} - -void TestNavigationEntry::setContentState(const WebHistoryItem& state) -{ - m_state = state; -} - -// ---------------------------------------------------------------------------- -// TestNavigationController - -TestNavigationController::TestNavigationController(NavigationHost* host) - : m_pendingEntry(0) - , m_lastCommittedEntryIndex(-1) - , m_pendingEntryIndex(-1) - , m_host(host) - , m_maxPageID(-1) {} - -TestNavigationController::~TestNavigationController() -{ - discardPendingEntry(); -} - -void TestNavigationController::reset() -{ - m_entries.clear(); - discardPendingEntry(); - - m_lastCommittedEntryIndex = -1; -} - -void TestNavigationController::reload() -{ - // Base the navigation on where we are now... - int currentIndex = currentEntryIndex(); - - // If we are no where, then we can't reload. TODO(darin): We should add a - // CanReload method. - if (currentIndex == -1) - return; - - discardPendingEntry(); - - m_pendingEntryIndex = currentIndex; - navigateToPendingEntry(true); -} - -void TestNavigationController::goToOffset(int offset) -{ - int index = m_lastCommittedEntryIndex + offset; - if (index < 0 || index >= entryCount()) - return; - - goToIndex(index); -} - -void TestNavigationController::goToIndex(int index) -{ - ASSERT(index >= 0); - ASSERT(index < static_cast(m_entries.size())); - - discardPendingEntry(); - - m_pendingEntryIndex = index; - navigateToPendingEntry(false); -} - -void TestNavigationController::loadEntry(TestNavigationEntry* entry) -{ - // When navigating to a new page, we don't know for sure if we will actually - // end up leaving the current page. The new page load could for example - // result in a download or a 'no content' response (e.g., a mailto: URL). - discardPendingEntry(); - m_pendingEntry = entry; - navigateToPendingEntry(false); -} - - -TestNavigationEntry* TestNavigationController::lastCommittedEntry() const -{ - if (m_lastCommittedEntryIndex == -1) - return 0; - return m_entries[m_lastCommittedEntryIndex].get(); -} - -TestNavigationEntry* TestNavigationController::activeEntry() const -{ - TestNavigationEntry* entry = m_pendingEntry; - if (!entry) - entry = lastCommittedEntry(); - return entry; -} - -int TestNavigationController::currentEntryIndex() const -{ - if (m_pendingEntryIndex != -1) - return m_pendingEntryIndex; - return m_lastCommittedEntryIndex; -} - - -TestNavigationEntry* TestNavigationController::entryAtIndex(int index) const -{ - if (index < 0 || index >= entryCount()) - return 0; - return m_entries[index].get(); -} - -TestNavigationEntry* TestNavigationController::entryWithPageID(int32_t pageID) const -{ - int index = entryIndexWithPageID(pageID); - return (index != -1) ? m_entries[index].get() : 0; -} - -void TestNavigationController::didNavigateToEntry(TestNavigationEntry* entry) -{ - // If the entry is that of a page with PageID larger than any this Tab has - // seen before, then consider it a new navigation. - if (entry->pageID() > maxPageID()) { - insertEntry(entry); - return; - } - - // Otherwise, we just need to update an existing entry with matching PageID. - // If the existing entry corresponds to the entry which is pending, then we - // must update the current entry index accordingly. When navigating to the - // same URL, a new PageID is not created. - - int existingEntryIndex = entryIndexWithPageID(entry->pageID()); - TestNavigationEntry* existingEntry = (existingEntryIndex != -1) ? - m_entries[existingEntryIndex].get() : 0; - if (!existingEntry) { - // No existing entry, then simply ignore this navigation! - } else if (existingEntry == m_pendingEntry) { - // The given entry might provide a new URL... e.g., navigating back to a - // page in session history could have resulted in a new client redirect. - existingEntry->setURL(entry->URL()); - existingEntry->setContentState(entry->contentState()); - m_lastCommittedEntryIndex = m_pendingEntryIndex; - m_pendingEntryIndex = -1; - m_pendingEntry = 0; - } else if (m_pendingEntry && m_pendingEntry->pageID() == -1 - && GURL(m_pendingEntry->URL()) == GURL(existingEntry->URL().spec())) { - // Not a new navigation - discardPendingEntry(); - } else { - // The given entry might provide a new URL... e.g., navigating to a page - // might result in a client redirect, which should override the URL of the - // existing entry. - existingEntry->setURL(entry->URL()); - existingEntry->setContentState(entry->contentState()); - - // The navigation could have been issued by the renderer, so be sure that - // we update our current index. - m_lastCommittedEntryIndex = existingEntryIndex; - } - - delete entry; - updateMaxPageID(); -} - -void TestNavigationController::discardPendingEntry() -{ - if (m_pendingEntryIndex == -1) - delete m_pendingEntry; - m_pendingEntry = 0; - m_pendingEntryIndex = -1; -} - -void TestNavigationController::insertEntry(TestNavigationEntry* entry) -{ - discardPendingEntry(); - - // Prune any entry which are in front of the current entry - int currentSize = static_cast(m_entries.size()); - if (currentSize > 0) { - while (m_lastCommittedEntryIndex < (currentSize - 1)) { - m_entries.removeLast(); - currentSize--; - } - } - - m_entries.append(linked_ptr(entry)); - m_lastCommittedEntryIndex = static_cast(m_entries.size()) - 1; - updateMaxPageID(); -} - -int TestNavigationController::entryIndexWithPageID(int32 pageID) const -{ - for (int i = static_cast(m_entries.size()) - 1; i >= 0; --i) { - if (m_entries[i]->pageID() == pageID) - return i; - } - return -1; -} - -void TestNavigationController::navigateToPendingEntry(bool reload) -{ - // For session history navigations only the pending_entry_index_ is set. - if (!m_pendingEntry) { - ASSERT(m_pendingEntryIndex != -1); - m_pendingEntry = m_entries[m_pendingEntryIndex].get(); - } - - if (m_host->navigate(*m_pendingEntry, reload)) { - // Note: this is redundant if navigation completed synchronously because - // DidNavigateToEntry call this as well. - updateMaxPageID(); - } else - discardPendingEntry(); -} - -void TestNavigationController::updateMaxPageID() -{ - TestNavigationEntry* entry = activeEntry(); - if (entry) - m_maxPageID = max(m_maxPageID, entry->pageID()); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestNavigationController.h --- a/WebKitTools/DumpRenderTree/chromium/TestNavigationController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,204 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef TestNavigationController_h -#define TestNavigationController_h - -#include "base/basictypes.h" -#include "base/linked_ptr.h" -#include "public/WebDataSource.h" -#include "public/WebHistoryItem.h" -#include "public/WebString.h" -#include "public/WebURL.h" -#include -#include - -// Associated with browser-initated navigations to hold tracking data. -class TestShellExtraData : public WebKit::WebDataSource::ExtraData { -public: - TestShellExtraData(int32_t pendingPageID) - : pendingPageID(pendingPageID) - , requestCommitted(false) {} - - // Contains the page_id for this navigation or -1 if there is none yet. - int32_t pendingPageID; - - // True if we have already processed the "DidCommitLoad" event for this - // request. Used by session history. - bool requestCommitted; -}; - -// Stores one back/forward navigation state for the test shell. -class TestNavigationEntry: public Noncopyable { -public: - TestNavigationEntry(); - TestNavigationEntry(int pageID, - const WebKit::WebURL&, - const WebKit::WebString& title, - const WebKit::WebString& targetFrame); - - // Virtual to allow test_shell to extend the class. - ~TestNavigationEntry(); - - // Set / Get the URI - void setURL(const WebKit::WebURL& url) { m_url = url; } - const WebKit::WebURL& URL() const { return m_url; } - - // Set / Get the title - void setTitle(const WebKit::WebString& title) { m_title = title; } - const WebKit::WebString& title() const { return m_title; } - - // Set / Get a state. - void setContentState(const WebKit::WebHistoryItem&); - const WebKit::WebHistoryItem& contentState() const { return m_state; } - - // Get the page id corresponding to the tab's state. - void setPageID(int pageID) { m_pageID = pageID; } - int32_t pageID() const { return m_pageID; } - - const WebKit::WebString& targetFrame() const { return m_targetFrame; } - -private: - // Describes the current page that the tab represents. This is not relevant - // for all tab contents types. - int32_t m_pageID; - - WebKit::WebURL m_url; - WebKit::WebString m_title; - WebKit::WebHistoryItem m_state; - WebKit::WebString m_targetFrame; -}; - -class NavigationHost { -public: - virtual bool navigate(const TestNavigationEntry&, bool reload) = 0; -}; - -// Test shell's NavigationController. The goal is to be as close to the Chrome -// version as possible. -class TestNavigationController: public Noncopyable { -public: - TestNavigationController(NavigationHost*); - ~TestNavigationController(); - - void reset(); - - // Causes the controller to reload the current (or pending) entry. - void reload(); - - // Causes the controller to go to the specified offset from current. Does - // nothing if out of bounds. - void goToOffset(int); - - // Causes the controller to go to the specified index. - void goToIndex(int); - - // Causes the controller to load the specified entry. The controller - // assumes ownership of the entry. - // NOTE: Do not pass an entry that the controller already owns! - void loadEntry(TestNavigationEntry*); - - // Returns the last committed entry, which may be null if there are no - // committed entries. - TestNavigationEntry* lastCommittedEntry() const; - - // Returns the number of entries in the NavigationControllerBase, excluding - // the pending entry if there is one. - int entryCount() const { return static_cast(m_entries.size()); } - - // Returns the active entry, which is the pending entry if a navigation is in - // progress or the last committed entry otherwise. NOTE: This can be 0!! - // - // If you are trying to get the current state of the NavigationControllerBase, - // this is the method you will typically want to call. - TestNavigationEntry* activeEntry() const; - - // Returns the index from which we would go back/forward or reload. This is - // the m_lastCommittedEntryIndex if m_pendingEntryIndex is -1. Otherwise, - // it is the m_pendingEntryIndex. - int currentEntryIndex() const; - - // Returns the entry at the specified index. Returns 0 if out of - // bounds. - TestNavigationEntry* entryAtIndex(int) const; - - // Return the entry with the corresponding type and page ID, or 0 if - // not found. - TestNavigationEntry* entryWithPageID(int32_t) const; - - // Returns the index of the last committed entry. - int lastCommittedEntryIndex() const { return m_lastCommittedEntryIndex; } - - // Used to inform us of a navigation being committed for a tab. We will take - // ownership of the entry. Any entry located forward to the current entry will - // be deleted. The new entry becomes the current entry. - void didNavigateToEntry(TestNavigationEntry*); - - // Used to inform us to discard its pending entry. - void discardPendingEntry(); - -private: - // Inserts an entry after the current position, removing all entries after it. - // The new entry will become the active one. - void insertEntry(TestNavigationEntry*); - - int maxPageID() const { return m_maxPageID; } - void navigateToPendingEntry(bool reload); - - // Return the index of the entry with the corresponding type and page ID, - // or -1 if not found. - int entryIndexWithPageID(int32_t) const; - - // Updates the max page ID with that of the given entry, if is larger. - void updateMaxPageID(); - - // List of NavigationEntry for this tab - typedef Vector > NavigationEntryList; - typedef NavigationEntryList::iterator NavigationEntryListIterator; - NavigationEntryList m_entries; - - // An entry we haven't gotten a response for yet. This will be discarded - // when we navigate again. It's used only so we know what the currently - // displayed tab is. - TestNavigationEntry* m_pendingEntry; - - // currently visible entry - int m_lastCommittedEntryIndex; - - // index of pending entry if it is in entries_, or -1 if pending_entry_ is a - // new entry (created by LoadURL). - int m_pendingEntryIndex; - - NavigationHost* m_host; - int m_maxPageID; -}; - -#endif // TestNavigationController_h - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestShell.cpp --- a/WebKitTools/DumpRenderTree/chromium/TestShell.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,670 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TestShell.h" - -#include "DRTDevToolsAgent.h" -#include "DRTDevToolsClient.h" -#include "LayoutTestController.h" -#include "WebViewHost.h" -#include "base/md5.h" // FIXME: Wrap by webkit_support. -#include "base/string16.h" -#include "gfx/codec/png_codec.h" // FIXME: Remove dependecy. WebCore/platform/image-encoder is better? -#include "net/base/escape.h" // FIXME: Remove dependency. -#include "public/WebDataSource.h" -#include "public/WebDocument.h" -#include "public/WebElement.h" -#include "public/WebFrame.h" -#include "public/WebHistoryItem.h" -#include "public/WebRuntimeFeatures.h" -#include "public/WebScriptController.h" -#include "public/WebSettings.h" -#include "public/WebSize.h" -#include "public/WebString.h" -#include "public/WebURLRequest.h" -#include "public/WebURLResponse.h" -#include "public/WebView.h" -#include "skia/ext/bitmap_platform_device.h" -#include "skia/ext/platform_canvas.h" -#include "webkit/support/webkit_support.h" -#include -#include -#include - -using namespace WebKit; -using namespace std; - -// Content area size for newly created windows. -static const int testWindowWidth = 800; -static const int testWindowHeight = 600; - -// The W3C SVG layout tests use a different size than the other layout tests. -static const int SVGTestWindowWidth = 480; -static const int SVGTestWindowHeight = 360; - -static const char layoutTestsPattern[] = "/LayoutTests/"; -static const string::size_type layoutTestsPatternSize = sizeof(layoutTestsPattern) - 1; -static const char fileUrlPattern[] = "file:/"; -static const char fileTestPrefix[] = "(file test):"; -static const char dataUrlPattern[] = "data:"; -static const string::size_type dataUrlPatternSize = sizeof(dataUrlPattern) - 1; - -TestShell::TestShell(bool testShellMode) - : m_testIsPending(false) - , m_testIsPreparing(false) - , m_focusedWidget(0) - , m_testShellMode(testShellMode) - , m_allowExternalPages(false) - , m_devTools(0) -{ - WebRuntimeFeatures::enableGeolocation(true); - m_accessibilityController.set(new AccessibilityController(this)); - m_layoutTestController.set(new LayoutTestController(this)); - m_eventSender.set(new EventSender(this)); - m_plainTextController.set(new PlainTextController()); - m_textInputController.set(new TextInputController(this)); - m_notificationPresenter.set(new NotificationPresenter(this)); - m_printer.set(m_testShellMode ? TestEventPrinter::createTestShellPrinter() : TestEventPrinter::createDRTPrinter()); - - // 30 second is the same as the value in Mac DRT. - // If we use a value smaller than the timeout value of - // (new-)run-webkit-tests, (new-)run-webkit-tests misunderstands that a - // timed-out DRT process was crashed. - m_timeout = 30 * 1000; - - m_drtDevToolsAgent.set(new DRTDevToolsAgent); - m_webViewHost = createWebView(); - m_webView = m_webViewHost->webView(); - m_drtDevToolsAgent->setWebView(m_webView); -} - -TestShell::~TestShell() -{ - // Note: DevTools are closed together with all the other windows in the - // windows list. - - loadURL(GURL("about:blank")); - // Call GC twice to clean up garbage. - callJSGC(); - callJSGC(); - - // Destroy the WebView before its WebViewHost. - m_webView->close(); -} - -void TestShell::createDRTDevToolsClient(DRTDevToolsAgent* agent) -{ - m_drtDevToolsClient.set(new DRTDevToolsClient(agent, m_devTools->webView())); -} - -void TestShell::showDevTools() -{ - if (!m_devTools) { - WebURL url = webkit_support::GetDevToolsPathAsURL(); - if (!url.isValid()) { - ASSERT(false); - return; - } - m_devTools = createNewWindow(url); - ASSERT(m_devTools); - createDRTDevToolsClient(m_drtDevToolsAgent.get()); - } - m_devTools->show(WebKit::WebNavigationPolicyNewWindow); -} - -void TestShell::closeDevTools() -{ - if (m_devTools) { - closeWindow(m_devTools); - m_devTools = 0; - } -} - -void TestShell::resetWebSettings(WebView& webView) -{ - // Match the settings used by Mac DumpRenderTree, with the exception of - // fonts. - WebSettings* settings = webView.settings(); -#if OS(MAC_OS_X) - WebString serif = WebString::fromUTF8("Times"); - settings->setCursiveFontFamily(WebString::fromUTF8("Apple Chancery")); - settings->setFantasyFontFamily(WebString::fromUTF8("Papyrus")); -#else - // NOTE: case matters here, this must be 'times new roman', else - // some layout tests fail. - WebString serif = WebString::fromUTF8("times new roman"); - - // These two fonts are picked from the intersection of - // Win XP font list and Vista font list : - // http://www.microsoft.com/typography/fonts/winxp.htm - // http://blogs.msdn.com/michkap/archive/2006/04/04/567881.aspx - // Some of them are installed only with CJK and complex script - // support enabled on Windows XP and are out of consideration here. - // (although we enabled both on our buildbots.) - // They (especially Impact for fantasy) are not typical cursive - // and fantasy fonts, but it should not matter for layout tests - // as long as they're available. - settings->setCursiveFontFamily(WebString::fromUTF8("Comic Sans MS")); - settings->setFantasyFontFamily(WebString::fromUTF8("Impact")); -#endif - settings->setSerifFontFamily(serif); - settings->setStandardFontFamily(serif); - settings->setFixedFontFamily(WebString::fromUTF8("Courier")); - settings->setSansSerifFontFamily(WebString::fromUTF8("Helvetica")); - - settings->setDefaultTextEncodingName(WebString::fromUTF8("ISO-8859-1")); - settings->setDefaultFontSize(16); - settings->setDefaultFixedFontSize(13); - settings->setMinimumFontSize(1); - settings->setMinimumLogicalFontSize(9); - settings->setJavaScriptCanOpenWindowsAutomatically(true); - settings->setJavaScriptCanAccessClipboard(true); - settings->setDOMPasteAllowed(true); - settings->setDeveloperExtrasEnabled(false); - settings->setNeedsSiteSpecificQuirks(true); - settings->setShrinksStandaloneImagesToFit(false); - settings->setUsesEncodingDetector(false); - settings->setTextAreasAreResizable(false); - settings->setJavaEnabled(false); - settings->setAllowScriptsToCloseWindows(false); - settings->setXSSAuditorEnabled(false); - settings->setDownloadableBinaryFontsEnabled(true); - settings->setLocalStorageEnabled(true); - settings->setOfflineWebApplicationCacheEnabled(true); - settings->setAllowFileAccessFromFileURLs(true); - - // LayoutTests were written with Safari Mac in mind which does not allow - // tabbing to links by default. - webView.setTabsToLinks(false); - - // Allow those layout tests running as local files, i.e. under - // LayoutTests/http/tests/local, to access http server. - settings->setAllowUniversalAccessFromFileURLs(true); - - settings->setJavaScriptEnabled(true); - settings->setPluginsEnabled(true); - settings->setWebSecurityEnabled(true); - settings->setEditableLinkBehaviorNeverLive(); - settings->setFontRenderingModeNormal(); - settings->setShouldPaintCustomScrollbars(true); - settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded(); - - settings->setLoadsImagesAutomatically(true); - settings->setImagesEnabled(true); - -#if OS(DARWIN) - settings->setEditingBehavior(WebSettings::EditingBehaviorMac); -#else - settings->setEditingBehavior(WebSettings::EditingBehaviorWin); -#endif -} - -void TestShell::runFileTest(const TestParams& params) -{ - ASSERT(params.testUrl.isValid()); - m_testIsPreparing = true; - m_params = params; - string testUrl = m_params.testUrl.spec(); - - bool inspectorTestMode = testUrl.find("/inspector/") != string::npos - || testUrl.find("\\inspector\\") != string::npos; - m_webView->settings()->setDeveloperExtrasEnabled(inspectorTestMode); - - if (testUrl.find("loading/") != string::npos - || testUrl.find("loading\\") != string::npos) - m_layoutTestController->setShouldDumpFrameLoadCallbacks(true); - - if (inspectorTestMode) - showDevTools(); - - m_printer->handleTestHeader(testUrl.c_str()); - loadURL(m_params.testUrl); - - m_testIsPreparing = false; - waitTestFinished(); -} - -static inline bool isSVGTestURL(const WebURL& url) -{ - return url.isValid() && string(url.spec()).find("W3C-SVG-1.1") != string::npos; -} - -void TestShell::resizeWindowForTest(WebViewHost* window, const WebURL& url) -{ - int width, height; - if (isSVGTestURL(url)) { - width = SVGTestWindowWidth; - height = SVGTestWindowHeight; - } else { - width = testWindowWidth; - height = testWindowHeight; - } - window->setWindowRect(WebRect(0, 0, width + virtualWindowBorder * 2, height + virtualWindowBorder * 2)); -} - -void TestShell::resetTestController() -{ - resetWebSettings(*webView()); - m_accessibilityController->reset(); - m_layoutTestController->reset(); - m_eventSender->reset(); - m_webViewHost->reset(); - m_notificationPresenter->reset(); -} - -void TestShell::loadURL(const WebURL& url) -{ - m_webViewHost->loadURLForFrame(url, WebString()); -} - -void TestShell::reload() -{ - m_webViewHost->navigationController()->reload(); -} - -void TestShell::goToOffset(int offset) -{ - m_webViewHost->navigationController()->goToOffset(offset); -} - -int TestShell::navigationEntryCount() const -{ - return m_webViewHost->navigationController()->entryCount(); -} - -void TestShell::callJSGC() -{ - m_webView->mainFrame()->collectGarbage(); -} - -void TestShell::setFocus(WebWidget* widget, bool enable) -{ - // Simulate the effects of InteractiveSetFocus(), which includes calling - // both setFocus() and setIsActive(). - if (enable) { - if (m_focusedWidget != widget) { - if (m_focusedWidget) - m_focusedWidget->setFocus(false); - webView()->setIsActive(enable); - widget->setFocus(enable); - m_focusedWidget = widget; - } - } else { - if (m_focusedWidget == widget) { - widget->setFocus(enable); - webView()->setIsActive(enable); - m_focusedWidget = 0; - } - } -} - -void TestShell::testFinished() -{ - if (!m_testIsPending) - return; - m_testIsPending = false; - dump(); - webkit_support::QuitMessageLoop(); -} - -void TestShell::testTimedOut() -{ - m_printer->handleTimedOut(); - testFinished(); -} - -static string dumpDocumentText(WebFrame* frame) -{ - // We use the document element's text instead of the body text here because - // not all documents have a body, such as XML documents. - WebElement documentElement = frame->document().documentElement(); - if (documentElement.isNull()) - return string(); - return documentElement.innerText().utf8(); -} - -static string dumpFramesAsText(WebFrame* frame, bool recursive) -{ - string result; - - // Add header for all but the main frame. Skip empty frames. - if (frame->parent() && !frame->document().documentElement().isNull()) { - result.append("\n--------\nFrame: '"); - result.append(frame->name().utf8().data()); - result.append("'\n--------\n"); - } - - result.append(dumpDocumentText(frame)); - result.append("\n"); - - if (recursive) { - for (WebFrame* child = frame->firstChild(); child; child = child->nextSibling()) - result.append(dumpFramesAsText(child, recursive)); - } - - return result; -} - -static void dumpFrameScrollPosition(WebFrame* frame, bool recursive) -{ - WebSize offset = frame->scrollOffset(); - if (offset.width > 0 || offset.height > 0) { - if (frame->parent()) - printf("frame '%s' ", frame->name().utf8().data()); - printf("scrolled to %d,%d\n", offset.width, offset.height); - } - - if (!recursive) - return; - for (WebFrame* child = frame->firstChild(); child; child = child->nextSibling()) - dumpFrameScrollPosition(child, recursive); -} - -struct ToLower { - char16 operator()(char16 c) { return tolower(c); } -}; - -// FIXME: Eliminate std::transform(), std::vector, and std::sort(). - -// Returns True if item1 < item2. -static bool HistoryItemCompareLess(const WebHistoryItem& item1, const WebHistoryItem& item2) -{ - string16 target1 = item1.target(); - string16 target2 = item2.target(); - std::transform(target1.begin(), target1.end(), target1.begin(), ToLower()); - std::transform(target2.begin(), target2.end(), target2.begin(), ToLower()); - return target1 < target2; -} - -static string dumpHistoryItem(const WebHistoryItem& item, int indent, bool isCurrent) -{ - string result; - - if (isCurrent) { - result.append("curr->"); - result.append(indent - 6, ' '); // 6 == "curr->".length() - } else { - result.append(indent, ' '); - } - - string url = item.urlString().utf8(); - size_t pos; - if (!url.find(fileUrlPattern) && ((pos = url.find(layoutTestsPattern)) != string::npos)) { - // adjust file URLs to match upstream results. - url.replace(0, pos + layoutTestsPatternSize, fileTestPrefix); - } else if (!url.find(dataUrlPattern)) { - // URL-escape data URLs to match results upstream. - string path = EscapePath(url.substr(dataUrlPatternSize)); - url.replace(dataUrlPatternSize, url.length(), path); - } - - result.append(url); - if (!item.target().isEmpty()) { - result.append(" (in frame \""); - result.append(item.target().utf8()); - result.append("\")"); - } - if (item.isTargetItem()) - result.append(" **nav target**"); - result.append("\n"); - - const WebVector& children = item.children(); - if (!children.isEmpty()) { - // Must sort to eliminate arbitrary result ordering which defeats - // reproducible testing. - // FIXME: WebVector should probably just be a std::vector!! - std::vector sortedChildren; - for (size_t i = 0; i < children.size(); ++i) - sortedChildren.push_back(children[i]); - std::sort(sortedChildren.begin(), sortedChildren.end(), HistoryItemCompareLess); - for (size_t i = 0; i < sortedChildren.size(); ++i) - result += dumpHistoryItem(sortedChildren[i], indent + 4, false); - } - - return result; -} - -static void dumpBackForwardList(const TestNavigationController& navigationController, string& result) -{ - result.append("\n============== Back Forward List ==============\n"); - for (int index = 0; index < navigationController.entryCount(); ++index) { - int currentIndex = navigationController.lastCommittedEntryIndex(); - WebHistoryItem historyItem = navigationController.entryAtIndex(index)->contentState(); - if (historyItem.isNull()) { - historyItem.initialize(); - historyItem.setURLString(navigationController.entryAtIndex(index)->URL().spec().utf16()); - } - result.append(dumpHistoryItem(historyItem, 8, index == currentIndex)); - } - result.append("===============================================\n"); -} - -string TestShell::dumpAllBackForwardLists() -{ - string result; - for (unsigned i = 0; i < m_windowList.size(); ++i) - dumpBackForwardList(*m_windowList[i]->navigationController(), result); - return result; -} - -void TestShell::dump() -{ - WebScriptController::flushConsoleMessages(); - - // Dump the requested representation. - WebFrame* frame = m_webView->mainFrame(); - if (!frame) - return; - bool shouldDumpAsText = m_layoutTestController->shouldDumpAsText(); - bool dumpedAnything = false; - if (m_params.dumpTree) { - dumpedAnything = true; - m_printer->handleTextHeader(); - // Text output: the test page can request different types of output - // which we handle here. - if (!shouldDumpAsText) { - // Plain text pages should be dumped as text - string mimeType = frame->dataSource()->response().mimeType().utf8(); - shouldDumpAsText = mimeType == "text/plain"; - } - if (shouldDumpAsText) { - bool recursive = m_layoutTestController->shouldDumpChildFramesAsText(); - string dataUtf8 = dumpFramesAsText(frame, recursive); - if (fwrite(dataUtf8.c_str(), 1, dataUtf8.size(), stdout) != dataUtf8.size()) - FATAL("Short write to stdout, disk full?\n"); - } else { - printf("%s", frame->renderTreeAsText().utf8().data()); - bool recursive = m_layoutTestController->shouldDumpChildFrameScrollPositions(); - dumpFrameScrollPosition(frame, recursive); - } - if (m_layoutTestController->shouldDumpBackForwardList()) - printf("%s", dumpAllBackForwardLists().c_str()); - } - if (dumpedAnything && m_params.printSeparators) - m_printer->handleTextFooter(); - - if (m_params.dumpPixels && m_layoutTestController->shouldGeneratePixelResults()) { - // Image output: we write the image data to the file given on the - // command line (for the dump pixels argument), and the MD5 sum to - // stdout. - dumpedAnything = true; - m_webView->layout(); - if (m_layoutTestController->testRepaint()) { - WebSize viewSize = m_webView->size(); - int width = viewSize.width; - int height = viewSize.height; - if (m_layoutTestController->sweepHorizontally()) { - for (WebRect column(0, 0, 1, height); column.x < width; column.x++) - m_webViewHost->paintRect(column); - } else { - for (WebRect line(0, 0, width, 1); line.y < height; line.y++) - m_webViewHost->paintRect(line); - } - } else - m_webViewHost->paintInvalidatedRegion(); - - // See if we need to draw the selection bounds rect. Selection bounds - // rect is the rect enclosing the (possibly transformed) selection. - // The rect should be drawn after everything is laid out and painted. - if (m_layoutTestController->shouldDumpSelectionRect()) { - // If there is a selection rect - draw a red 1px border enclosing rect - WebRect wr = frame->selectionBoundsRect(); - if (!wr.isEmpty()) { - // Render a red rectangle bounding selection rect - SkPaint paint; - paint.setColor(0xFFFF0000); // Fully opaque red - paint.setStyle(SkPaint::kStroke_Style); - paint.setFlags(SkPaint::kAntiAlias_Flag); - paint.setStrokeWidth(1.0f); - SkIRect rect; // Bounding rect - rect.set(wr.x, wr.y, wr.x + wr.width, wr.y + wr.height); - m_webViewHost->canvas()->drawIRect(rect, paint); - } - } - - dumpImage(m_webViewHost->canvas()); - } - m_printer->handleImageFooter(); - m_printer->handleTestFooter(dumpedAnything); - fflush(stdout); - fflush(stderr); -} - -void TestShell::dumpImage(skia::PlatformCanvas* canvas) const -{ - skia::BitmapPlatformDevice& device = - static_cast(canvas->getTopPlatformDevice()); - const SkBitmap& sourceBitmap = device.accessBitmap(false); - - SkAutoLockPixels sourceBitmapLock(sourceBitmap); - - // Fix the alpha. The expected PNGs on Mac have an alpha channel, so we want - // to keep it. On Windows, the alpha channel is wrong since text/form control - // drawing may have erased it in a few places. So on Windows we force it to - // opaque and also don't write the alpha channel for the reference. Linux - // doesn't have the wrong alpha like Windows, but we ignore it anyway. -#if OS(WINDOWS) - bool discardTransparency = true; - device.makeOpaque(0, 0, sourceBitmap.width(), sourceBitmap.height()); -#elif OS(MAC_OS_X) - bool discardTransparency = false; -#elif OS(UNIX) - bool discardTransparency = true; -#endif - - // Compute MD5 sum. We should have done this before calling - // device.makeOpaque on Windows. Because we do it after the call, there are - // some images that are the pixel identical on windows and other platforms - // but have different MD5 sums. At this point, rebaselining all the windows - // tests is too much of a pain, so we just check in different baselines. - MD5Context ctx; - MD5Init(&ctx); - MD5Update(&ctx, sourceBitmap.getPixels(), sourceBitmap.getSize()); - - MD5Digest digest; - MD5Final(&digest, &ctx); - string md5hash = MD5DigestToBase16(digest); - - // Only encode and dump the png if the hashes don't match. Encoding the image - // is really expensive. - if (md5hash.compare(m_params.pixelHash)) { - std::vector png; - gfx::PNGCodec::ColorFormat colorFormat = gfx::PNGCodec::FORMAT_BGRA; - gfx::PNGCodec::Encode( - reinterpret_cast(sourceBitmap.getPixels()), - colorFormat, sourceBitmap.width(), sourceBitmap.height(), - static_cast(sourceBitmap.rowBytes()), discardTransparency, &png); - - m_printer->handleImage(md5hash.c_str(), m_params.pixelHash.c_str(), &png[0], png.size(), m_params.pixelFileName.c_str()); - } else - m_printer->handleImage(md5hash.c_str(), m_params.pixelHash.c_str(), 0, 0, m_params.pixelFileName.c_str()); -} - -void TestShell::bindJSObjectsToWindow(WebFrame* frame) -{ - m_accessibilityController->bindToJavascript(frame, WebString::fromUTF8("accessibilityController")); - m_layoutTestController->bindToJavascript(frame, WebString::fromUTF8("layoutTestController")); - m_eventSender->bindToJavascript(frame, WebString::fromUTF8("eventSender")); - m_plainTextController->bindToJavascript(frame, WebString::fromUTF8("plainText")); - m_textInputController->bindToJavascript(frame, WebString::fromUTF8("textInputController")); -} - -WebViewHost* TestShell::createWebView() -{ - return createNewWindow(WebURL()); -} - -WebViewHost* TestShell::createNewWindow(const WebURL& url) -{ - WebViewHost* host = new WebViewHost(this); - WebView* view = WebView::create(host, m_drtDevToolsAgent.get()); - host->setWebWidget(view); - resetWebSettings(*view); - view->initializeMainFrame(host); - m_windowList.append(host); - host->loadURLForFrame(url, WebString()); - return host; -} - -void TestShell::closeWindow(WebViewHost* window) -{ - size_t i = m_windowList.find(window); - if (i == notFound) { - ASSERT_NOT_REACHED(); - return; - } - m_windowList.remove(i); - if (window->webWidget() == m_focusedWidget) - m_focusedWidget = 0; - window->webWidget()->close(); - delete window; -} - -void TestShell::closeRemainingWindows() -{ - // Iterate through the window list and close everything except the main - // ihwindow. We don't want to delete elements as we're iterating, so we copy - // to a temp vector first. - Vector windowsToDelete; - for (unsigned i = 0; i < m_windowList.size(); ++i) { - if (m_windowList[i] != webViewHost()) - windowsToDelete.append(m_windowList[i]); - } - ASSERT(windowsToDelete.size() + 1 == m_windowList.size()); - for (unsigned i = 0; i < windowsToDelete.size(); ++i) - closeWindow(windowsToDelete[i]); - ASSERT(m_windowList.size() == 1); -} - -int TestShell::windowCount() -{ - return m_windowList.size(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestShell.h --- a/WebKitTools/DumpRenderTree/chromium/TestShell.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,189 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef TestShell_h -#define TestShell_h - -#include "AccessibilityController.h" -#include "EventSender.h" -#include "LayoutTestController.h" -#include "NotificationPresenter.h" -#include "PlainTextController.h" -#include "TestEventPrinter.h" -#include "TextInputController.h" -#include "WebViewHost.h" -#include -#include -#include - -// TestShell is a container of global variables and has bridge functions between -// various objects. Only one instance is created in one DRT process. - -namespace WebKit { -class WebDevToolsAgentClient; -class WebFrame; -class WebNotificationPresenter; -class WebPreferences; -class WebView; -class WebURL; -} -namespace skia { -class PlatformCanvas; -} - -class DRTDevToolsAgent; -class DRTDevToolsCallArgs; -class DRTDevToolsClient; - -struct TestParams { - bool dumpTree; - bool dumpPixels; - bool printSeparators; - WebKit::WebURL testUrl; - // Resultant image file name. Reqruired only if the test_shell mode. - std::string pixelFileName; - std::string pixelHash; - - TestParams() - : dumpTree(true) - , dumpPixels(false) - , printSeparators(false) {} -}; - -class TestShell { -public: - TestShell(bool testShellMode); - ~TestShell(); - - // The main WebView. - WebKit::WebView* webView() const { return m_webView; } - // Returns the host for the main WebView. - WebViewHost* webViewHost() const { return m_webViewHost; } - LayoutTestController* layoutTestController() const { return m_layoutTestController.get(); } - EventSender* eventSender() const { return m_eventSender.get(); } - AccessibilityController* accessibilityController() const { return m_accessibilityController.get(); } - NotificationPresenter* notificationPresenter() const { return m_notificationPresenter.get(); } - TestEventPrinter* printer() const { return m_printer.get(); } - - void bindJSObjectsToWindow(WebKit::WebFrame*); - void runFileTest(const TestParams&); - void callJSGC(); - void resetTestController(); - void waitTestFinished(); - - // Operations to the main window. - void loadURL(const WebKit::WebURL& url); - void reload(); - void goToOffset(int offset); - int navigationEntryCount() const; - - void setFocus(WebKit::WebWidget*, bool enable); - bool shouldDumpFrameLoadCallbacks() const { return (m_testIsPreparing || m_testIsPending) && layoutTestController()->shouldDumpFrameLoadCallbacks(); } - bool shouldDumpResourceLoadCallbacks() const { return (m_testIsPreparing || m_testIsPending) && layoutTestController()->shouldDumpResourceLoadCallbacks(); } - void setIsLoading(bool flag) { m_isLoading = flag; } - - // Called by the LayoutTestController to signal test completion. - void testFinished(); - // Called by LayoutTestController when a test hits the timeout, but does not - // cause a hang. We can avoid killing TestShell in this case and still dump - // the test results. - void testTimedOut(); - - bool allowExternalPages() const { return m_allowExternalPages; } - void setAllowExternalPages(bool allowExternalPages) { m_allowExternalPages = allowExternalPages; } - -#if defined(OS_WIN) - // Access to the finished event. Used by the static WatchDog thread. - HANDLE finishedEvent() { return m_finishedEvent; } -#endif - - // Get the timeout for running a test in milliseconds. - int layoutTestTimeout() { return m_timeout; } - int layoutTestTimeoutForWatchDog() { return layoutTestTimeout() + 1000; } - void setLayoutTestTimeout(int timeout) { m_timeout = timeout; } - - WebViewHost* createWebView(); - WebViewHost* createNewWindow(const WebKit::WebURL&); - void closeWindow(WebViewHost*); - void closeRemainingWindows(); - int windowCount(); - static void resizeWindowForTest(WebViewHost*, const WebKit::WebURL&); - - void showDevTools(); - void closeDevTools(); - - DRTDevToolsAgent* drtDevToolsAgent() { return m_drtDevToolsAgent.get(); } - DRTDevToolsClient* drtDevToolsClient() { return m_drtDevToolsClient.get(); } - - static const int virtualWindowBorder = 3; - -private: - void createDRTDevToolsClient(DRTDevToolsAgent*); - - static void resetWebSettings(WebKit::WebView&); - void dump(); - std::string dumpAllBackForwardLists(); - void dumpImage(skia::PlatformCanvas*) const; - - bool m_testIsPending; - bool m_testIsPreparing; - bool m_isLoading; - WebKit::WebView* m_webView; - WebKit::WebWidget* m_focusedWidget; - bool m_testShellMode; - WebViewHost* m_webViewHost; - WebViewHost* m_devTools; - OwnPtr m_drtDevToolsAgent; - OwnPtr m_drtDevToolsClient; - OwnPtr m_accessibilityController; - OwnPtr m_eventSender; - OwnPtr m_layoutTestController; - OwnPtr m_plainTextController; - OwnPtr m_textInputController; - OwnPtr m_notificationPresenter; - OwnPtr m_printer; - TestParams m_params; - int m_timeout; // timeout value in millisecond - bool m_allowExternalPages; - - // List of all windows in this process. - // The main window should be put into windowList[0]. - typedef Vector WindowList; - WindowList m_windowList; - -#if defined(OS_WIN) - // Used by the watchdog to know when it's finished. - HANDLE m_finishedEvent; -#endif -}; - -void platformInit(); - -#endif // TestShell_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestShellGtk.cpp --- a/WebKitTools/DumpRenderTree/chromium/TestShellGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,191 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TestShell.h" - -#include "webkit/support/webkit_support.h" -#include -#include - -static void AlarmHandler(int signatl) -{ - // If the alarm alarmed, kill the process since we have a really bad hang. - puts("\n#TEST_TIMED_OUT\n"); - puts("#EOF\n"); - fflush(stdout); - exit(0); -} - -static void setupFontconfig() -{ - // We wish to make the layout tests reproducable with respect to fonts. Skia - // uses fontconfig to resolve font family names from WebKit into actual font - // files found on the current system. This means that fonts vary based on the - // system and also on the fontconfig configuration. - // - // To avoid this we initialise fontconfig here and install a configuration - // which only knows about a few, select, fonts. - - // We have fontconfig parse a config file from our resources file. This - // sets a number of aliases ("sans"->"Arial" etc), but doesn't include any - // font directories. - FcInit(); - - char drtPath[PATH_MAX + 1]; - int drtPathSize = readlink("/proc/self/exe", drtPath, PATH_MAX); - if (drtPathSize < 0 || drtPathSize > PATH_MAX) { - fputs("Unable to resolve /proc/self/exe.", stderr); - exit(1); - } - drtPath[drtPathSize] = 0; - std::string drtDirPath(drtPath); - size_t lastPathPos = drtDirPath.rfind("/"); - ASSERT(lastPathPos != std::string::npos); - drtDirPath.erase(lastPathPos + 1); - - FcConfig* fontcfg = FcConfigCreate(); - std::string fontconfigPath = drtDirPath + "fonts.conf"; - if (!FcConfigParseAndLoad(fontcfg, reinterpret_cast(fontconfigPath.c_str()), true)) { - fputs("Failed to parse fontconfig config file\n", stderr); - exit(1); - } - - // This is the list of fonts that fontconfig will know about. It - // will try its best to match based only on the fonts here in. The - // paths are where these fonts are found on our Ubuntu boxes. - static const char *const fonts[] = { - "/usr/share/fonts/truetype/kochi/kochi-gothic.ttf", - "/usr/share/fonts/truetype/kochi/kochi-mincho.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Arial.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Georgia.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Georgia_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Georgia_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Georgia_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Impact.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Verdana.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf", - "/usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf", - // The DejaVuSans font is used by the css2.1 tests. - "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf", - "/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_ta.ttf", - "/usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrow.ttf", - }; - for (size_t i = 0; i < arraysize(fonts); ++i) { - if (access(fonts[i], R_OK)) { - fprintf(stderr, "You are missing %s. Try installing msttcorefonts. Also see " - "http://code.google.com/p/chromium/wiki/LinuxBuildInstructions", - fonts[i]); - exit(1); - } - if (!FcConfigAppFontAddFile(fontcfg, (FcChar8 *) fonts[i])) { - fprintf(stderr, "Failed to load font %s\n", fonts[i]); - exit(1); - } - } - - // We special case these fonts because they're only needed in a - // few layout tests. - static const char* const optionalFonts[] = { - "/usr/share/fonts/truetype/ttf-lucida/LucidaSansRegular.ttf", - - // This font changed paths across Ubuntu releases. - "/usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_pa.ttf", - "/usr/share/fonts/truetype/ttf-punjabi-fonts/lohit_pa.ttf", - }; - for (size_t i = 0; i < arraysize(optionalFonts); ++i) { - const char* font = optionalFonts[i]; - if (access(font, R_OK) < 0) { - fprintf(stderr, "You are missing %s. Without this, some layout tests may fail. " - "See http://code.google.com/p/chromium/wiki/LinuxBuildInstructionsPrerequisites " - "for more.\n", font); - } else { - if (!FcConfigAppFontAddFile(fontcfg, (FcChar8 *) font)) { - fprintf(stderr, "Failed to load font %s\n", font); - exit(1); - } - } - } - - // Also load the layout-test-specific "Ahem" font. - std::string ahemPath = drtDirPath + "AHEM____.TTF"; - if (!FcConfigAppFontAddFile(fontcfg, reinterpret_cast(ahemPath.c_str()))) { - fprintf(stderr, "Failed to load font %s\n", ahemPath.c_str()); - exit(1); - } - - if (!FcConfigSetCurrent(fontcfg)) { - fputs("Failed to set the default font configuration\n", stderr); - exit(1); - } -} - -void TestShell::waitTestFinished() -{ - ASSERT(!m_testIsPending); - - m_testIsPending = true; - - // Install an alarm signal handler that will kill us if we time out. - signal(SIGALRM, AlarmHandler); - alarm(layoutTestTimeoutForWatchDog() / 1000); - - // TestFinished() will post a quit message to break this loop when the page - // finishes loading. - while (m_testIsPending) - webkit_support::RunMessageLoop(); - - // Remove the alarm. - alarm(0); - signal(SIGALRM, SIG_DFL); -} - -void platformInit() -{ - setupFontconfig(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestShellMac.mm --- a/WebKitTools/DumpRenderTree/chromium/TestShellMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" - -#include "TestShell.h" -#include "webkit/support/webkit_support.h" -#import - -// A class to be the target/selector of the "watchdog" thread that ensures -// pages timeout if they take too long and tells the test harness via stdout. -@interface WatchDogTarget : NSObject { -@private - NSTimeInterval _timeout; -} -// |timeout| is in seconds -- (id)initWithTimeout:(NSTimeInterval)timeout; -// serves as the "run" method of a NSThread. -- (void)run:(id)sender; -@end - -@implementation WatchDogTarget - -- (id)initWithTimeout:(NSTimeInterval)timeout -{ - if ((self = [super init])) - _timeout = timeout; - return self; -} - -- (void)run:(id)ignore -{ - NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init]; - - // check for debugger, just bail if so. We don't want the timeouts hitting - // when we're trying to track down an issue. - if (webkit_support::BeingDebugged()) - return; - - NSThread* currentThread = [NSThread currentThread]; - - // Wait to be cancelled. If we are that means the test finished. If it hasn't, - // then we need to tell the layout script we timed out and start again. - NSDate* limitDate = [NSDate dateWithTimeIntervalSinceNow:_timeout]; - while ([(NSDate*)[NSDate date] compare:limitDate] == NSOrderedAscending && - ![currentThread isCancelled]) { - // sleep for a small increment then check again - NSDate* incrementDate = [NSDate dateWithTimeIntervalSinceNow:1.0]; - [NSThread sleepUntilDate:incrementDate]; - } - if (![currentThread isCancelled]) { - // Print a warning to be caught by the layout-test script. - // Note: the layout test driver may or may not recognize - // this as a timeout. - puts("#TEST_TIMED_OUT\n"); - puts("#EOF\n"); - fflush(stdout); - exit(0); - } - - [pool release]; -} - -@end - -void TestShell::waitTestFinished() -{ - ASSERT(!m_testIsPending); - - m_testIsPending = true; - - // Create a watchdog thread which just sets a timer and - // kills the process if it times out. This catches really - // bad hangs where the shell isn't coming back to the - // message loop. If the watchdog is what catches a - // timeout, it can't do anything except terminate the test - // shell, which is unfortunate. - // Windows multiplies by 2.5, but that causes us to run for far, far too - // long. We use the passed value and let the scripts flag override - // the value as needed. - NSTimeInterval timeoutSeconds = layoutTestTimeoutForWatchDog() / 1000; - WatchDogTarget* watchdog = [[[WatchDogTarget alloc] - initWithTimeout:timeoutSeconds] autorelease]; - NSThread* thread = [[NSThread alloc] initWithTarget:watchdog - selector:@selector(run:) - object:nil]; - [thread start]; - - // TestFinished() will post a quit message to break this loop when the page - // finishes loading. - while (m_testIsPending) - webkit_support::RunMessageLoop(); - - // Tell the watchdog that we're finished. No point waiting to re-join, it'll - // die on its own. - [thread cancel]; - [thread release]; -} - -void platformInit() -{ -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestShellWin.cpp --- a/WebKitTools/DumpRenderTree/chromium/TestShellWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,151 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TestShell.h" - -#include "WebThemeEngineDRT.h" -#include "webkit/support/webkit_support.h" -#include -#include -#include -#include -#include - -// Theme engine -static WebThemeEngineDRT themeEngine; - -// Thread main to run for the thread which just tests for timeout. -unsigned int __stdcall watchDogThread(void* arg) -{ - // If we're debugging a layout test, don't timeout. - if (::IsDebuggerPresent()) - return 0; - - TestShell* shell = static_cast(arg); - // FIXME: Do we need user-specified time settings as with the original - // Chromium implementation? - DWORD timeout = static_cast(shell->layoutTestTimeoutForWatchDog()); - DWORD rv = WaitForSingleObject(shell->finishedEvent(), timeout); - if (rv == WAIT_TIMEOUT) { - // Print a warning to be caught by the layout-test script. - // Note: the layout test driver may or may not recognize - // this as a timeout. - puts("\n#TEST_TIMED_OUT\n"); - puts("#EOF\n"); - fflush(stdout); - TerminateProcess(GetCurrentProcess(), 0); - } - // Finished normally. - return 0; -} - -void TestShell::waitTestFinished() -{ - DCHECK(!m_testIsPending) << "cannot be used recursively"; - - m_testIsPending = true; - - // Create a watchdog thread which just sets a timer and - // kills the process if it times out. This catches really - // bad hangs where the shell isn't coming back to the - // message loop. If the watchdog is what catches a - // timeout, it can't do anything except terminate the test - // shell, which is unfortunate. - m_finishedEvent = CreateEvent(0, TRUE, FALSE, 0); - DCHECK(m_finishedEvent); - - HANDLE threadHandle = reinterpret_cast(_beginthreadex( - 0, - 0, - &watchDogThread, - this, - 0, - 0)); - DCHECK(threadHandle); - - // TestFinished() will post a quit message to break this loop when the page - // finishes loading. - while (m_testIsPending) - webkit_support::RunMessageLoop(); - - // Tell the watchdog that we are finished. - SetEvent(m_finishedEvent); - - // Wait to join the watchdog thread. (up to 1s, then quit) - WaitForSingleObject(threadHandle, 1000); -} - -void platformInit() -{ - // Set stdout/stderr binary mode. - _setmode(_fileno(stdout), _O_BINARY); - _setmode(_fileno(stderr), _O_BINARY); - - // Set theme engine. - webkit_support::SetThemeEngine(&themeEngine); - - // Load Ahem font. - // AHEM____.TTF is copied to the directory of DumpRenderTree.exe by WebKit.gyp. - WCHAR path[_MAX_PATH]; - if (!::GetModuleFileName(0, path, _MAX_PATH)) { - fprintf(stderr, "Can't get the module path.\n"); - exit(1); - } - ::PathRemoveFileSpec(path); - wcscat_s(path, _MAX_PATH, L"/AHEM____.TTF"); - struct _stat ahemStat; - if (_wstat(path, &ahemStat) == -1) { - fprintf(stderr, "Can't access: '%S'\n", path); - exit(1); - } - - FILE* fp = _wfopen(path, L"rb"); - if (!fp) { - _wperror(path); - exit(1); - } - size_t size = ahemStat.st_size; - char* fontBuffer = new char[size]; - if (fread(fontBuffer, 1, size, fp) != size) { - fprintf(stderr, "Can't read the font: '%S'\n", path); - fclose(fp); - exit(1); - } - fclose(fp); - DWORD numFonts = 1; - HANDLE fontHandle = ::AddFontMemResourceEx(fontBuffer, size, 0, &numFonts); - delete[] fontBuffer; // OS owns a copy of the buffer. - if (!fontHandle) { - fprintf(stderr, "Failed to register Ahem font: '%S'\n", path); - exit(1); - } - // We don't need to release the font explicitly. -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TestWebWorker.h --- a/WebKitTools/DumpRenderTree/chromium/TestWebWorker.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,90 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef TestWebWorker_h -#define TestWebWorker_h - -#include "public/WebMessagePortChannel.h" -#include "public/WebWorker.h" -#include "public/WebWorkerClient.h" -#include - -namespace WebKit { -class WebNotificationPresenter; -class WebString; -class WebURL; -} - -class TestWebWorker : public WebKit::WebWorker, - public WebKit::WebWorkerClient, - public WTF::RefCounted { -public: - TestWebWorker() - { - ref(); - // The initial counter value should be 2. One for a worker object, - // another for a worker context object. We need to call ref() just once - // because the default counter value of RefCounted is 1. - } - - // WebWorker methods: - virtual void startWorkerContext(const WebKit::WebURL&, const WebKit::WebString&, const WebKit::WebString&) {} - virtual void terminateWorkerContext() {} - virtual void postMessageToWorkerContext(const WebKit::WebString&, const WebKit::WebMessagePortChannelArray&) {} - virtual void workerObjectDestroyed() - { - // Releases the reference held for worker object. - deref(); - } - virtual void clientDestroyed() {} - - // WebWorkerClient methods: - virtual void postMessageToWorkerObject(const WebKit::WebString&, const WebKit::WebMessagePortChannelArray&) {} - virtual void postExceptionToWorkerObject(const WebKit::WebString&, int, const WebKit::WebString&) {} - virtual void postConsoleMessageToWorkerObject(int, int, int, int, const WebKit::WebString&, int, const WebKit::WebString&) {} - virtual void confirmMessageFromWorkerObject(bool) {} - virtual void reportPendingActivity(bool) {} - virtual void workerContextClosed() {} - virtual void workerContextDestroyed() - { - // Releases the reference held for worker context object. - deref(); - } - virtual WebKit::WebWorker* createWorker(WebKit::WebWorkerClient*) { return 0; } - virtual WebKit::WebNotificationPresenter* notificationPresenter() { return 0; } - virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(WebKit::WebApplicationCacheHostClient*) { return 0; } - virtual bool allowDatabase(WebKit::WebFrame*, const WebKit::WebString&, const WebKit::WebString&, unsigned long) { return true; } - -private: - ~TestWebWorker() {} - friend class WTF::RefCounted; -}; - -#endif // TestWebWorker_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TextInputController.cpp --- a/WebKitTools/DumpRenderTree/chromium/TextInputController.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,216 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "TextInputController.h" - -#include "TestShell.h" -#include "public/WebFrame.h" -#include "public/WebRange.h" -#include "public/WebString.h" -#include "public/WebView.h" -#include -#include - -using namespace WebKit; -using namespace std; - -TestShell* TextInputController::testShell = 0; - -TextInputController::TextInputController(TestShell* shell) -{ - // Set static testShell variable. Be careful not to assign testShell to new - // windows which are temporary. - if (!testShell) - testShell = shell; - - bindMethod("insertText", &TextInputController::insertText); - bindMethod("doCommand", &TextInputController::doCommand); - bindMethod("setMarkedText", &TextInputController::setMarkedText); - bindMethod("unmarkText", &TextInputController::unmarkText); - bindMethod("hasMarkedText", &TextInputController::hasMarkedText); - bindMethod("conversationIdentifier", &TextInputController::conversationIdentifier); - bindMethod("substringFromRange", &TextInputController::substringFromRange); - bindMethod("attributedSubstringFromRange", &TextInputController::attributedSubstringFromRange); - bindMethod("markedRange", &TextInputController::markedRange); - bindMethod("selectedRange", &TextInputController::selectedRange); - bindMethod("firstRectForCharacterRange", &TextInputController::firstRectForCharacterRange); - bindMethod("characterIndexForPoint", &TextInputController::characterIndexForPoint); - bindMethod("validAttributesForMarkedText", &TextInputController::validAttributesForMarkedText); - bindMethod("makeAttributedString", &TextInputController::makeAttributedString); -} - -WebFrame* TextInputController::getMainFrame() -{ - return testShell->webView()->mainFrame(); -} - -void TextInputController::insertText(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - if (arguments.size() < 1 || !arguments[0].isString()) - return; - - if (mainFrame->hasMarkedText()) { - mainFrame->unmarkText(); - mainFrame->replaceSelection(WebString()); - } - mainFrame->insertText(WebString::fromUTF8(arguments[0].toString())); -} - -void TextInputController::doCommand(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - if (arguments.size() >= 1 && arguments[0].isString()) - mainFrame->executeCommand(WebString::fromUTF8(arguments[0].toString())); -} - -void TextInputController::setMarkedText(const CppArgumentList& arguments, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - if (arguments.size() >= 3 && arguments[0].isString() - && arguments[1].isNumber() && arguments[2].isNumber()) { - mainFrame->setMarkedText(WebString::fromUTF8(arguments[0].toString()), - arguments[1].toInt32(), - arguments[2].toInt32()); - } -} - -void TextInputController::unmarkText(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - mainFrame->unmarkText(); -} - -void TextInputController::hasMarkedText(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - result->set(mainFrame->hasMarkedText()); -} - -void TextInputController::conversationIdentifier(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void TextInputController::substringFromRange(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void TextInputController::attributedSubstringFromRange(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void TextInputController::markedRange(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - WebRange range = mainFrame->markedRange(); - char buffer[30]; - snprintf(buffer, 30, "%d,%d", range.startOffset(), range.endOffset()); - result->set(string(buffer)); -} - -void TextInputController::selectedRange(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - WebRange range = mainFrame->selectionRange(); - char buffer[30]; - snprintf(buffer, 30, "%d,%d", range.startOffset(), range.endOffset()); - result->set(string(buffer)); -} - -void TextInputController::firstRectForCharacterRange(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void TextInputController::characterIndexForPoint(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} - -void TextInputController::validAttributesForMarkedText(const CppArgumentList&, CppVariant* result) -{ - result->setNull(); - - WebFrame* mainFrame = getMainFrame(); - if (!mainFrame) - return; - - result->set("NSUnderline,NSUnderlineColor,NSMarkedClauseSegment," - "NSTextInputReplacementRangeAttributeName"); -} - -void TextInputController::makeAttributedString(const CppArgumentList&, CppVariant* result) -{ - // FIXME: Implement this. - result->setNull(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/TextInputController.h --- a/WebKitTools/DumpRenderTree/chromium/TextInputController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,73 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// TextInputController is bound to window.textInputController in Javascript -// when DRT is running. Layout tests use it to exercise various corners of -// text input. - -#ifndef TextInputController_h -#define TextInputController_h - -#include "CppBoundClass.h" - -class TestShell; - -namespace WebKit { -class WebFrame; -} - -class TextInputController : public CppBoundClass { -public: - TextInputController(TestShell*); - - void insertText(const CppArgumentList&, CppVariant*); - void doCommand(const CppArgumentList&, CppVariant*); - void setMarkedText(const CppArgumentList&, CppVariant*); - void unmarkText(const CppArgumentList&, CppVariant*); - void hasMarkedText(const CppArgumentList&, CppVariant*); - void conversationIdentifier(const CppArgumentList&, CppVariant*); - void substringFromRange(const CppArgumentList&, CppVariant*); - void attributedSubstringFromRange(const CppArgumentList&, CppVariant*); - void markedRange(const CppArgumentList&, CppVariant*); - void selectedRange(const CppArgumentList&, CppVariant*); - void firstRectForCharacterRange(const CppArgumentList&, CppVariant*); - void characterIndexForPoint(const CppArgumentList&, CppVariant*); - void validAttributesForMarkedText(const CppArgumentList&, CppVariant*); - void makeAttributedString(const CppArgumentList&, CppVariant*); - -private: - // Returns the test shell's main WebFrame. - static WebKit::WebFrame* getMainFrame(); - - // Non-owning pointer. The TextInputController is owned by the TestShell. - static TestShell* testShell; -}; - -#endif // TextInputController_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebThemeControlDRT.cpp --- a/WebKitTools/DumpRenderTree/chromium/WebThemeControlDRT.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,523 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// This file implements a simple generic version of the WebThemeEngine, -// which is used to draw all the native controls on a web page. We use this -// file when running in layout test mode in order to remove any -// platform-specific rendering differences due to themes, colors, etc. -// - -#include "config.h" -#include "WebThemeControlDRT.h" - -#include "skia/ext/platform_canvas.h" -#include "skia/ext/skia_utils_win.h" -#include "third_party/skia/include/core/SkPaint.h" -#include "third_party/skia/include/core/SkPath.h" -#include "third_party/skia/include/core/SkRect.h" - -#include - -using namespace std; -using namespace skia; - -static const SkColor edgeColor = SK_ColorBLACK; -static const SkColor readOnlyColor = SkColorSetRGB(0xe9, 0xc2, 0xa6); -static const SkColor fgColor = SK_ColorBLACK; -static const SkColor bgColors[] = { - SK_ColorBLACK, // Unknown - SkColorSetRGB(0xc9, 0xc9, 0xc9), // Disabled - SkColorSetRGB(0xf3, 0xe0, 0xd0), // Readonly - SkColorSetRGB(0x89, 0xc4, 0xff), // Normal - SkColorSetRGB(0x43, 0xf9, 0xff), // Hot - SkColorSetRGB(0x20, 0xf6, 0xcc), // Focused - SkColorSetRGB(0x00, 0xf3, 0xac), // Hover - SkColorSetRGB(0xa9, 0xff, 0x12), // Pressed - SkColorSetRGB(0xcc, 0xcc, 0xcc) // Indeterminate -}; - -static SkIRect validate(const SkIRect& rect, WebThemeControlDRT::Type ctype) -{ - switch (ctype) { - case WebThemeControlDRT::UncheckedBoxType: - case WebThemeControlDRT::CheckedBoxType: - case WebThemeControlDRT::UncheckedRadioType: - case WebThemeControlDRT::CheckedRadioType: { - SkIRect retval = rect; - - // The maximum width and height is 13. - // Center the square in the passed rectangle. - const int maxControlSize = 13; - int controlSize = min(rect.width(), rect.height()); - controlSize = min(controlSize, maxControlSize); - - retval.fLeft = rect.fLeft + (rect.width() / 2) - (controlSize / 2); - retval.fRight = retval.fLeft + controlSize - 1; - retval.fTop = rect.fTop + (rect.height() / 2) - (controlSize / 2); - retval.fBottom = retval.fTop + controlSize - 1; - - return retval; - } - - default: - return rect; - } -} - -// WebThemeControlDRT - -WebThemeControlDRT::WebThemeControlDRT(PlatformCanvas* canvas, - const SkIRect& irect, - Type ctype, - State cstate) - : m_canvas(canvas) - , m_irect(validate(irect, ctype)) - , m_type(ctype) - , m_state(cstate) - , m_left(m_irect.fLeft) - , m_right(m_irect.fRight) - , m_top(m_irect.fTop) - , m_bottom(m_irect.fBottom) - , m_height(m_irect.height()) - , m_width(m_irect.width()) - , m_edgeColor(edgeColor) - , m_bgColor(bgColors[cstate]) - , m_fgColor(fgColor) -{ -} - -WebThemeControlDRT::~WebThemeControlDRT() -{ -} - -void WebThemeControlDRT::box(const SkIRect& rect, SkColor fillColor) -{ - SkPaint paint; - - paint.setStyle(SkPaint::kFill_Style); - paint.setColor(fillColor); - m_canvas->drawIRect(rect, paint); - - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawIRect(rect, paint); -} - -void WebThemeControlDRT::line(int x0, int y0, int x1, int y1, SkColor color) -{ - SkPaint paint; - paint.setColor(color); - m_canvas->drawLine(SkIntToScalar(x0), SkIntToScalar(y0), - SkIntToScalar(x1), SkIntToScalar(y1), - paint); -} - -void WebThemeControlDRT::triangle(int x0, int y0, - int x1, int y1, - int x2, int y2, - SkColor color) -{ - SkPath path; - SkPaint paint; - - paint.setColor(color); - paint.setStyle(SkPaint::kFill_Style); - path.incReserve(4); - path.moveTo(SkIntToScalar(x0), SkIntToScalar(y0)); - path.lineTo(SkIntToScalar(x1), SkIntToScalar(y1)); - path.lineTo(SkIntToScalar(x2), SkIntToScalar(y2)); - path.close(); - m_canvas->drawPath(path, paint); - - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawPath(path, paint); -} - -void WebThemeControlDRT::roundRect(SkColor color) -{ - SkRect rect; - SkScalar radius = SkIntToScalar(5); - SkPaint paint; - - rect.set(m_irect); - paint.setColor(color); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawRoundRect(rect, radius, radius, paint); - - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawRoundRect(rect, radius, radius, paint); -} - -void WebThemeControlDRT::oval(SkColor color) -{ - SkRect rect; - SkPaint paint; - - rect.set(m_irect); - paint.setColor(color); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawOval(rect, paint); - - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawOval(rect, paint); -} - -void WebThemeControlDRT::circle(SkScalar radius, SkColor color) -{ - SkScalar cy = SkIntToScalar(m_top + m_height / 2); - SkScalar cx = SkIntToScalar(m_left + m_width / 2); - SkPaint paint; - - paint.setColor(color); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawCircle(cx, cy, radius, paint); - - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawCircle(cx, cy, radius, paint); -} - -void WebThemeControlDRT::nestedBoxes(int indentLeft, - int indentTop, - int indentRight, - int indentBottom, - SkColor outerColor, - SkColor innerColor) -{ - SkIRect lirect; - box(m_irect, outerColor); - lirect.set(m_irect.fLeft + indentLeft, - m_irect.fTop + indentTop, - m_irect.fRight - indentRight, - m_irect.fBottom - indentBottom); - box(lirect, innerColor); -} - -void WebThemeControlDRT::markState() -{ - // The horizontal lines in a read only control are spaced by this amount. - const int readOnlyLineOffset = 5; - - // The length of a triangle side for the corner marks. - const int triangleSize = 5; - - switch (m_state) { - case UnknownState: - case DisabledState: - case NormalState: - // Don't visually mark these states (color is enough). - break; - case ReadOnlyState: - // Drawing lines across the control. - for (int i = m_top + readOnlyLineOffset; i < m_bottom; i += readOnlyLineOffset) - line(m_left + 1, i, m_right - 1, i, readOnlyColor); - break; - - case HotState: - // Draw a triangle in the upper left corner of the control. - triangle(m_left, m_top, - m_left + triangleSize, m_top, - m_left, m_top + triangleSize, m_edgeColor); - break; - - case HoverState: - // Draw a triangle in the upper right corner of the control. - triangle(m_right, m_top, - m_right, m_top + triangleSize, - m_right - triangleSize, m_top, m_edgeColor); - break; - - case FocusedState: - // Draw a triangle in the bottom right corner of the control. - triangle(m_right, m_bottom, - m_right - triangleSize, m_bottom, - m_right, m_bottom - triangleSize, m_edgeColor); - break; - - case PressedState: - // Draw a triangle in the bottom left corner of the control. - triangle(m_left, m_bottom, - m_left, m_bottom - triangleSize, - m_left + triangleSize, m_bottom, m_edgeColor); - break; - - default: - ASSERT_NOT_REACHED(); - CRASH(); - break; - } -} - -void WebThemeControlDRT::draw() -{ - int halfWidth = m_width / 2; - int halfHeight = m_height / 2; - int quarterWidth = m_width / 4; - int quarterHeight = m_height / 4; - - // Indent amounts for the check in a checkbox or radio button. - const int checkIndent = 3; - - // Indent amounts for short and long sides of the scrollbar notches. - const int notchLongOffset = 1; - const int notchShortOffset = 4; - const int noOffset = 0; - - // Indent amounts for the short and long sides of a scroll thumb box. - const int thumbLongIndent = 0; - const int thumbShortIndent = 2; - - // Indents for the crosshatch on a scroll grip. - const int gripLongIndent = 3; - const int gripShortIndent = 5; - - // Indents for the the slider track. - const int sliderIndent = 2; - - m_canvas->beginPlatformPaint(); - - switch (m_type) { - case UnknownType: - ASSERT_NOT_REACHED(); - CRASH(); - break; - - case TextFieldType: - // We render this by hand outside of this function. - ASSERT_NOT_REACHED(); - CRASH(); - break; - - case PushButtonType: - // push buttons render as a rounded rectangle - roundRect(m_bgColor); - break; - - case UncheckedBoxType: - // Unchecked boxes are simply plain boxes. - box(m_irect, m_bgColor); - break; - - case CheckedBoxType: - nestedBoxes(checkIndent, checkIndent, checkIndent, checkIndent, m_bgColor, m_fgColor); - break; - - case IndeterminateCheckboxType: - // Indeterminate checkbox is a box containing '-'. - nestedBoxes(checkIndent, halfHeight, checkIndent, halfHeight, m_bgColor, m_fgColor); - break; - - case UncheckedRadioType: - circle(SkIntToScalar(halfHeight), m_bgColor); - break; - - case CheckedRadioType: - circle(SkIntToScalar(halfHeight), m_bgColor); - circle(SkIntToScalar(halfHeight - checkIndent), m_fgColor); - break; - - case HorizontalScrollTrackBackType: { - // Draw a box with a notch at the left. - int longOffset = halfHeight - notchLongOffset; - int shortOffset = m_width - notchShortOffset; - nestedBoxes(noOffset, longOffset, shortOffset, longOffset, m_bgColor, m_edgeColor); - break; - } - - case HorizontalScrollTrackForwardType: { - // Draw a box with a notch at the right. - int longOffset = halfHeight - notchLongOffset; - int shortOffset = m_width - notchShortOffset; - nestedBoxes(shortOffset, longOffset, noOffset, longOffset, m_bgColor, m_fgColor); - break; - } - - case VerticalScrollTrackBackType: { - // Draw a box with a notch at the top. - int longOffset = halfWidth - notchLongOffset; - int shortOffset = m_height - notchShortOffset; - nestedBoxes(longOffset, noOffset, longOffset, shortOffset, m_bgColor, m_fgColor); - break; - } - - case VerticalScrollTrackForwardType: { - // Draw a box with a notch at the bottom. - int longOffset = halfWidth - notchLongOffset; - int shortOffset = m_height - notchShortOffset; - nestedBoxes(longOffset, shortOffset, longOffset, noOffset, m_bgColor, m_fgColor); - break; - } - - case HorizontalScrollThumbType: - // Draw a narrower box on top of the outside box. - nestedBoxes(thumbLongIndent, thumbShortIndent, thumbLongIndent, thumbShortIndent, m_bgColor, m_bgColor); - break; - - case VerticalScrollThumbType: - // Draw a shorter box on top of the outside box. - nestedBoxes(thumbShortIndent, thumbLongIndent, thumbShortIndent, thumbLongIndent, m_bgColor, m_bgColor); - break; - - case HorizontalSliderThumbType: - // Slider thumbs are ovals. - oval(m_bgColor); - break; - - case HorizontalScrollGripType: { - // Draw a horizontal crosshatch for the grip. - int longOffset = halfWidth - gripLongIndent; - line(m_left + gripLongIndent, m_top + halfHeight, - m_right - gripLongIndent, m_top + halfHeight, m_fgColor); - line(m_left + longOffset, m_top + gripShortIndent, - m_left + longOffset, m_bottom - gripShortIndent, m_fgColor); - line(m_right - longOffset, m_top + gripShortIndent, - m_right - longOffset, m_bottom - gripShortIndent, m_fgColor); - break; - } - - case VerticalScrollGripType: { - // Draw a vertical crosshatch for the grip. - int longOffset = halfHeight - gripLongIndent; - line(m_left + halfWidth, m_top + gripLongIndent, - m_left + halfWidth, m_bottom - gripLongIndent, m_fgColor); - line(m_left + gripShortIndent, m_top + longOffset, - m_right - gripShortIndent, m_top + longOffset, m_fgColor); - line(m_left + gripShortIndent, m_bottom - longOffset, - m_right - gripShortIndent, m_bottom - longOffset, m_fgColor); - break; - } - - case LeftArrowType: - // Draw a left arrow inside a box. - box(m_irect, m_bgColor); - triangle(m_right - quarterWidth, m_top + quarterHeight, - m_right - quarterWidth, m_bottom - quarterHeight, - m_left + quarterWidth, m_top + halfHeight, m_fgColor); - break; - - case RightArrowType: - // Draw a left arrow inside a box. - box(m_irect, m_bgColor); - triangle(m_left + quarterWidth, m_top + quarterHeight, - m_right - quarterWidth, m_top + halfHeight, - m_left + quarterWidth, m_bottom - quarterHeight, m_fgColor); - break; - - case UpArrowType: - // Draw an up arrow inside a box. - box(m_irect, m_bgColor); - triangle(m_left + quarterWidth, m_bottom - quarterHeight, - m_left + halfWidth, m_top + quarterHeight, - m_right - quarterWidth, m_bottom - quarterHeight, m_fgColor); - break; - - case DownArrowType: - // Draw a down arrow inside a box. - box(m_irect, m_bgColor); - triangle(m_left + quarterWidth, m_top + quarterHeight, - m_right - quarterWidth, m_top + quarterHeight, - m_left + halfWidth, m_bottom - quarterHeight, m_fgColor); - break; - - case HorizontalSliderTrackType: { - // Draw a narrow rect for the track plus box hatches on the ends. - SkIRect lirect; - lirect = m_irect; - lirect.inset(noOffset, halfHeight - sliderIndent); - box(lirect, m_bgColor); - line(m_left, m_top, m_left, m_bottom, m_edgeColor); - line(m_right, m_top, m_right, m_bottom, m_edgeColor); - break; - } - - case DropDownButtonType: - // Draw a box with a big down arrow on top. - box(m_irect, m_bgColor); - triangle(m_left + quarterWidth, m_top, - m_right - quarterWidth, m_top, - m_left + halfWidth, m_bottom, m_fgColor); - break; - - default: - ASSERT_NOT_REACHED(); - CRASH(); - break; - } - - markState(); - m_canvas->endPlatformPaint(); -} - -// Because rendering a text field is dependent on input -// parameters the other controls don't have, we render it directly -// rather than trying to overcomplicate draw() further. -void WebThemeControlDRT::drawTextField(bool drawEdges, bool fillContentArea, SkColor color) -{ - SkPaint paint; - - m_canvas->beginPlatformPaint(); - if (fillContentArea) { - paint.setColor(color); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawIRect(m_irect, paint); - } - if (drawEdges) { - paint.setColor(m_edgeColor); - paint.setStyle(SkPaint::kStroke_Style); - m_canvas->drawIRect(m_irect, paint); - } - - markState(); - m_canvas->endPlatformPaint(); -} - -void WebThemeControlDRT::drawProgressBar(const SkIRect& fillRect) -{ - SkPaint paint; - - m_canvas->beginPlatformPaint(); - paint.setColor(m_bgColor); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawIRect(m_irect, paint); - - // Emulate clipping - SkIRect tofill; - tofill.intersect(m_irect, fillRect); - paint.setColor(m_fgColor); - paint.setStyle(SkPaint::kFill_Style); - m_canvas->drawIRect(tofill, paint); - - markState(); - m_canvas->endPlatformPaint(); -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebThemeControlDRT.h --- a/WebKitTools/DumpRenderTree/chromium/WebThemeControlDRT.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,203 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// WebThemeControlDRT implements the generic rendering of controls -// needed by WebThemeEngineDRT. See the comments in that class -// header file for why this class is needed and used. -// -// This class implements a generic set of widgets using Skia. The widgets -// are optimized for testability, not a pleasing appearance. -// - -#ifndef WebThemeControlDRT_h -#define WebThemeControlDRT_h - -#include "skia/ext/platform_canvas.h" -#include "third_party/skia/include/core/SkColor.h" -#include - -// Skia forward declarations -struct SkIRect; - -class WebThemeControlDRT : public Noncopyable { -public: - // This list of states mostly mirrors the list in WebCore/platform/ThemeTypes.h - // but is maintained separately since that isn't public and also to minimize - // dependencies. - // Note that the WebKit ThemeTypes seem to imply that a control can be - // in multiple states simultaneously but WebThemeEngine only allows for - // a single state at a time. - // - // Some definitions for the various states: - // Disabled - indicates that a control can't be modified or selected - // (corresponds to HTML 'disabled' attribute) - // ReadOnly - indicates that a control can't be modified but can be - // selected - // Normal - the normal state of control on the page when it isn't - // focused or otherwise active - // Hot - when the mouse is hovering over a part of the control, - // all the other parts are considered "hot" - // Hover - when the mouse is directly over a control (the CSS - // :hover pseudo-class) - // Focused - when the control has the keyboard focus - // Pressed - when the control is being triggered (by a mousedown or - // a key event). - // Indeterminate - when set to indeterminate (only for progress bar) - enum State { - UnknownState = 0, - DisabledState, - ReadOnlyState, - NormalState, - HotState, - HoverState, - FocusedState, - PressedState, - IndeterminateState - }; - - // This list of types mostly mirrors the list in - // WebCore/platform/ThemeTypes.h but is maintained - // separately since that isn't public and also to minimize dependencies. - // - // Note that what the user might think of as a single control can be - // made up of multiple parts. For example, a single scroll bar contains - // six clickable parts - two arrows, the "thumb" indicating the current - // position on the bar, the other two parts of the bar (before and after - // the thumb) and the "gripper" on the thumb itself. - // - enum Type { - UnknownType = 0, - TextFieldType, - PushButtonType, - UncheckedBoxType, - CheckedBoxType, - IndeterminateCheckboxType, - UncheckedRadioType, - CheckedRadioType, - HorizontalScrollTrackBackType, - HorizontalScrollTrackForwardType, - HorizontalScrollThumbType, - HorizontalScrollGripType, - VerticalScrollTrackBackType, - VerticalScrollTrackForwardType, - VerticalScrollThumbType, - VerticalScrollGripType, - LeftArrowType, - RightArrowType, - UpArrowType, - DownArrowType, - HorizontalSliderTrackType, - HorizontalSliderThumbType, - DropDownButtonType, - ProgressBarType - }; - - // canvas is the canvas to draw onto, and rect gives the size of the - // control. ctype and cstate specify the type and state of the control. - WebThemeControlDRT(skia::PlatformCanvas* canvas, - const SkIRect& rect, - Type ctype, - State cstate); - ~WebThemeControlDRT(); - - // Draws the control. - void draw(); - - // Use this for TextField controls instead, because the logic - // for drawing them is dependent on what WebKit tells us to do. - // If drawEdges is true, draw an edge around the control. If - // fillContentArea is true, fill the content area with the given color. - void drawTextField(bool drawEdges, bool fillContentArea, SkColor color); - - // Use this for drawing ProgressBar controls instead, since we - // need to know the rect to fill inside the bar. - void drawProgressBar(const SkIRect& fillRect); - -private: - // Draws a box of size specified by irect, filled with the given color. - // The box will have a border drawn in the default edge color. - void box(const SkIRect& irect, SkColor color); - - - // Draws a triangle of size specified by the three pairs of coordinates, - // filled with the given color. The box will have an edge drawn in the - // default edge color. - void triangle(int x0, int y0, int x1, int y1, int x2, int y2, SkColor color); - - // Draws a rectangle the size of the control with rounded corners, filled - // with the specified color (and with a border in the default edge color). - void roundRect(SkColor color); - - // Draws an oval the size of the control, filled with the specified color - // and with a border in the default edge color. - void oval(SkColor color); - - // Draws a circle centered in the control with the specified radius, - // filled with the specified color, and with a border draw in the - // default edge color. - void circle(SkScalar radius, SkColor color); - - // Draws a box the size of the control, filled with the outerColor and - // with a border in the default edge color, and then draws another box - // indented on all four sides by the specified amounts, filled with the - // inner color and with a border in the default edge color. - void nestedBoxes(int indentLeft, - int indentTop, - int indentRight, - int indentBottom, - SkColor outerColor, - SkColor innerColor); - - // Draws a line between the two points in the given color. - void line(int x0, int y0, int x1, int y1, SkColor color); - - // Draws a distinctive mark on the control for each state, so that the - // state of the control can be determined without needing to know which - // color is which. - void markState(); - - skia::PlatformCanvas* m_canvas; - const SkIRect m_irect; - const Type m_type; - const State m_state; - const SkColor m_edgeColor; - const SkColor m_bgColor; - const SkColor m_fgColor; - - // The following are convenience accessors for m_irect. - const int m_left; - const int m_right; - const int m_top; - const int m_bottom; - const int m_width; - const int m_height; -}; - -#endif // WebThemeControlDRT_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebThemeEngineDRT.cpp --- a/WebKitTools/DumpRenderTree/chromium/WebThemeEngineDRT.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,758 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "WebThemeEngineDRT.h" - -#include "WebThemeControlDRT.h" -#include "public/WebRect.h" -#include "third_party/skia/include/core/SkRect.h" - -// Although all this code is generic, we include these headers -// to pull in the Windows #defines for the parts and states of -// the controls. -#include -#include - -#include - -using namespace WebKit; - -// We define this for clarity, although there really should be a DFCS_NORMAL in winuser.h. -static const int dfcsNormal = 0x0000; - -static SkIRect webRectToSkIRect(const WebRect& webRect) -{ - SkIRect irect; - irect.set(webRect.x, webRect.y, webRect.x + webRect.width, webRect.y + webRect.height); - return irect; -} - -static void drawControl(WebCanvas* canvas, - const WebRect& rect, - WebThemeControlDRT::Type ctype, - WebThemeControlDRT::State cstate) -{ - WebThemeControlDRT control(canvas, webRectToSkIRect(rect), ctype, cstate); - control.draw(); -} - -static void drawTextField(WebCanvas* canvas, - const WebRect& rect, - WebThemeControlDRT::Type ctype, - WebThemeControlDRT::State cstate, - bool drawEdges, - bool fillContentArea, - WebColor color) -{ - WebThemeControlDRT control(canvas, webRectToSkIRect(rect), ctype, cstate); - control.drawTextField(drawEdges, fillContentArea, color); -} - -static void drawProgressBar(WebCanvas* canvas, - WebThemeControlDRT::Type ctype, - WebThemeControlDRT::State cstate, - const WebRect& barRect, - const WebRect& fillRect) -{ - WebThemeControlDRT control(canvas, webRectToSkIRect(barRect), ctype, cstate); - control.drawProgressBar(webRectToSkIRect(fillRect)); -} - -// WebThemeEngineDRT - -void WebThemeEngineDRT::paintButton(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - if (part == BP_CHECKBOX) { - switch (state) { - case CBS_UNCHECKEDNORMAL: - ASSERT(classicState == dfcsNormal); - ctype = WebThemeControlDRT::UncheckedBoxType; - cstate = WebThemeControlDRT::NormalState; - break; - - case CBS_UNCHECKEDHOT: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_HOT)); - ctype = WebThemeControlDRT::UncheckedBoxType; - cstate = WebThemeControlDRT::HotState; - break; - - case CBS_UNCHECKEDPRESSED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_PUSHED)); - ctype = WebThemeControlDRT::UncheckedBoxType; - cstate = WebThemeControlDRT::PressedState; - break; - - case CBS_UNCHECKEDDISABLED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::UncheckedBoxType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case CBS_CHECKEDNORMAL: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_CHECKED)); - ctype = WebThemeControlDRT::CheckedBoxType; - cstate = WebThemeControlDRT::NormalState; - break; - - case CBS_CHECKEDHOT: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_CHECKED | DFCS_HOT)); - ctype = WebThemeControlDRT::CheckedBoxType; - cstate = WebThemeControlDRT::HotState; - break; - - case CBS_CHECKEDPRESSED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_CHECKED | DFCS_PUSHED)); - ctype = WebThemeControlDRT::CheckedBoxType; - cstate = WebThemeControlDRT::PressedState; - break; - - case CBS_CHECKEDDISABLED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_CHECKED | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::CheckedBoxType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case CBS_MIXEDNORMAL: - // Classic theme can't represent mixed state checkbox. We assume - // it's equivalent to unchecked. - ASSERT(classicState == DFCS_BUTTONCHECK); - ctype = WebThemeControlDRT::IndeterminateCheckboxType; - cstate = WebThemeControlDRT::NormalState; - break; - - case CBS_MIXEDHOT: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_HOT)); - ctype = WebThemeControlDRT::IndeterminateCheckboxType; - cstate = WebThemeControlDRT::HotState; - break; - - case CBS_MIXEDPRESSED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_PUSHED)); - ctype = WebThemeControlDRT::IndeterminateCheckboxType; - cstate = WebThemeControlDRT::PressedState; - break; - - case CBS_MIXEDDISABLED: - ASSERT(classicState == (DFCS_BUTTONCHECK | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::IndeterminateCheckboxType; - cstate = WebThemeControlDRT::DisabledState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - } else if (BP_RADIOBUTTON == part) { - switch (state) { - case RBS_UNCHECKEDNORMAL: - ASSERT(classicState == DFCS_BUTTONRADIO); - ctype = WebThemeControlDRT::UncheckedRadioType; - cstate = WebThemeControlDRT::NormalState; - break; - - case RBS_UNCHECKEDHOT: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_HOT)); - ctype = WebThemeControlDRT::UncheckedRadioType; - cstate = WebThemeControlDRT::HotState; - break; - - case RBS_UNCHECKEDPRESSED: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_PUSHED)); - ctype = WebThemeControlDRT::UncheckedRadioType; - cstate = WebThemeControlDRT::PressedState; - break; - - case RBS_UNCHECKEDDISABLED: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::UncheckedRadioType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case RBS_CHECKEDNORMAL: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_CHECKED)); - ctype = WebThemeControlDRT::CheckedRadioType; - cstate = WebThemeControlDRT::NormalState; - break; - - case RBS_CHECKEDHOT: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_CHECKED | DFCS_HOT)); - ctype = WebThemeControlDRT::CheckedRadioType; - cstate = WebThemeControlDRT::HotState; - break; - - case RBS_CHECKEDPRESSED: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_CHECKED | DFCS_PUSHED)); - ctype = WebThemeControlDRT::CheckedRadioType; - cstate = WebThemeControlDRT::PressedState; - break; - - case RBS_CHECKEDDISABLED: - ASSERT(classicState == (DFCS_BUTTONRADIO | DFCS_CHECKED | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::CheckedRadioType; - cstate = WebThemeControlDRT::DisabledState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - } else if (BP_PUSHBUTTON == part) { - switch (state) { - case PBS_NORMAL: - ASSERT(classicState == DFCS_BUTTONPUSH); - ctype = WebThemeControlDRT::PushButtonType; - cstate = WebThemeControlDRT::NormalState; - break; - - case PBS_HOT: - ASSERT(classicState == (DFCS_BUTTONPUSH | DFCS_HOT)); - ctype = WebThemeControlDRT::PushButtonType; - cstate = WebThemeControlDRT::HotState; - break; - - case PBS_PRESSED: - ASSERT(classicState == (DFCS_BUTTONPUSH | DFCS_PUSHED)); - ctype = WebThemeControlDRT::PushButtonType; - cstate = WebThemeControlDRT::PressedState; - break; - - case PBS_DISABLED: - ASSERT(classicState == (DFCS_BUTTONPUSH | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::PushButtonType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case PBS_DEFAULTED: - ASSERT(classicState == DFCS_BUTTONPUSH); - ctype = WebThemeControlDRT::PushButtonType; - cstate = WebThemeControlDRT::FocusedState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - } else { - ASSERT_NOT_REACHED(); - } - - drawControl(canvas, rect, ctype, cstate); -} - - -void WebThemeEngineDRT::paintMenuList(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - if (CP_DROPDOWNBUTTON == part) { - ctype = WebThemeControlDRT::DropDownButtonType; - switch (state) { - case CBXS_NORMAL: - ASSERT(classicState == DFCS_MENUARROW); - cstate = WebThemeControlDRT::NormalState; - break; - - case CBXS_HOT: - ASSERT(classicState == (DFCS_MENUARROW | DFCS_HOT)); - cstate = WebThemeControlDRT::HoverState; - break; - - case CBXS_PRESSED: - ASSERT(classicState == (DFCS_MENUARROW | DFCS_PUSHED)); - cstate = WebThemeControlDRT::PressedState; - break; - - case CBXS_DISABLED: - ASSERT(classicState == (DFCS_MENUARROW | DFCS_INACTIVE)); - cstate = WebThemeControlDRT::DisabledState; - break; - - default: - CRASH(); - break; - } - } else { - CRASH(); - } - - drawControl(canvas, rect, ctype, cstate); -} - -void WebThemeEngineDRT::paintScrollbarArrow(WebCanvas* canvas, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - switch (state) { - case ABS_UPNORMAL: - ASSERT(classicState == DFCS_SCROLLUP); - ctype = WebThemeControlDRT::UpArrowType; - cstate = WebThemeControlDRT::NormalState; - break; - - case ABS_DOWNNORMAL: - ASSERT(classicState == DFCS_SCROLLDOWN); - ctype = WebThemeControlDRT::DownArrowType; - cstate = WebThemeControlDRT::NormalState; - break; - - case ABS_LEFTNORMAL: - ASSERT(classicState == DFCS_SCROLLLEFT); - ctype = WebThemeControlDRT::LeftArrowType; - cstate = WebThemeControlDRT::NormalState; - break; - - case ABS_RIGHTNORMAL: - ASSERT(classicState == DFCS_SCROLLRIGHT); - ctype = WebThemeControlDRT::RightArrowType; - cstate = WebThemeControlDRT::NormalState; - break; - - case ABS_UPHOT: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_HOT)); - ctype = WebThemeControlDRT::UpArrowType; - cstate = WebThemeControlDRT::HotState; - break; - - case ABS_DOWNHOT: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_HOT)); - ctype = WebThemeControlDRT::DownArrowType; - cstate = WebThemeControlDRT::HotState; - break; - - case ABS_LEFTHOT: - ASSERT(classicState == (DFCS_SCROLLLEFT | DFCS_HOT)); - ctype = WebThemeControlDRT::LeftArrowType; - cstate = WebThemeControlDRT::HotState; - break; - - case ABS_RIGHTHOT: - ASSERT(classicState == (DFCS_SCROLLRIGHT | DFCS_HOT)); - ctype = WebThemeControlDRT::RightArrowType; - cstate = WebThemeControlDRT::HotState; - break; - - case ABS_UPHOVER: - ASSERT(classicState == DFCS_SCROLLUP); - ctype = WebThemeControlDRT::UpArrowType; - cstate = WebThemeControlDRT::HoverState; - break; - - case ABS_DOWNHOVER: - ASSERT(classicState == DFCS_SCROLLDOWN); - ctype = WebThemeControlDRT::DownArrowType; - cstate = WebThemeControlDRT::HoverState; - break; - - case ABS_LEFTHOVER: - ASSERT(classicState == DFCS_SCROLLLEFT); - ctype = WebThemeControlDRT::LeftArrowType; - cstate = WebThemeControlDRT::HoverState; - break; - - case ABS_RIGHTHOVER: - ASSERT(classicState == DFCS_SCROLLRIGHT); - ctype = WebThemeControlDRT::RightArrowType; - cstate = WebThemeControlDRT::HoverState; - break; - - case ABS_UPPRESSED: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_PUSHED | DFCS_FLAT)); - ctype = WebThemeControlDRT::UpArrowType; - cstate = WebThemeControlDRT::PressedState; - break; - - case ABS_DOWNPRESSED: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_PUSHED | DFCS_FLAT)); - ctype = WebThemeControlDRT::DownArrowType; - cstate = WebThemeControlDRT::PressedState; - break; - - case ABS_LEFTPRESSED: - ASSERT(classicState == (DFCS_SCROLLLEFT | DFCS_PUSHED | DFCS_FLAT)); - ctype = WebThemeControlDRT::LeftArrowType; - cstate = WebThemeControlDRT::PressedState; - break; - - case ABS_RIGHTPRESSED: - ASSERT(classicState == (DFCS_SCROLLRIGHT | DFCS_PUSHED | DFCS_FLAT)); - ctype = WebThemeControlDRT::RightArrowType; - cstate = WebThemeControlDRT::PressedState; - break; - - case ABS_UPDISABLED: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::UpArrowType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case ABS_DOWNDISABLED: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::DownArrowType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case ABS_LEFTDISABLED: - ASSERT(classicState == (DFCS_SCROLLLEFT | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::LeftArrowType; - cstate = WebThemeControlDRT::DisabledState; - break; - - case ABS_RIGHTDISABLED: - ASSERT(classicState == (DFCS_SCROLLRIGHT | DFCS_INACTIVE)); - ctype = WebThemeControlDRT::RightArrowType; - cstate = WebThemeControlDRT::DisabledState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - - drawControl(canvas, rect, ctype, cstate); -} - -void WebThemeEngineDRT::paintScrollbarThumb(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - switch (part) { - case SBP_THUMBBTNHORZ: - ctype = WebThemeControlDRT::HorizontalScrollThumbType; - break; - - case SBP_THUMBBTNVERT: - ctype = WebThemeControlDRT::VerticalScrollThumbType; - break; - - case SBP_GRIPPERHORZ: - ctype = WebThemeControlDRT::HorizontalScrollGripType; - break; - - case SBP_GRIPPERVERT: - ctype = WebThemeControlDRT::VerticalScrollGripType; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - - switch (state) { - case SCRBS_NORMAL: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::NormalState; - break; - - case SCRBS_HOT: - ASSERT(classicState == DFCS_HOT); - cstate = WebThemeControlDRT::HotState; - break; - - case SCRBS_HOVER: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::HoverState; - break; - - case SCRBS_PRESSED: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::PressedState; - break; - - case SCRBS_DISABLED: - ASSERT_NOT_REACHED(); // This should never happen in practice. - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - - drawControl(canvas, rect, ctype, cstate); -} - -void WebThemeEngineDRT::paintScrollbarTrack(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect, - const WebRect& alignRect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - switch (part) { - case SBP_UPPERTRACKHORZ: - ctype = WebThemeControlDRT::HorizontalScrollTrackBackType; - break; - - case SBP_LOWERTRACKHORZ: - ctype = WebThemeControlDRT::HorizontalScrollTrackForwardType; - break; - - case SBP_UPPERTRACKVERT: - ctype = WebThemeControlDRT::VerticalScrollTrackBackType; - break; - - case SBP_LOWERTRACKVERT: - ctype = WebThemeControlDRT::VerticalScrollTrackForwardType; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - - switch (state) { - case SCRBS_NORMAL: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::NormalState; - break; - - case SCRBS_HOT: - ASSERT_NOT_REACHED(); // This should never happen in practice. - break; - - case SCRBS_HOVER: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::HoverState; - break; - - case SCRBS_PRESSED: - ASSERT_NOT_REACHED(); // This should never happen in practice. - break; - - case SCRBS_DISABLED: - ASSERT(classicState == DFCS_INACTIVE); - cstate = WebThemeControlDRT::DisabledState; - break; - - default: - CRASH(); - break; - } - - drawControl(canvas, rect, ctype, cstate); -} - -void WebThemeEngineDRT::paintSpinButton(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - if (part == SPNP_UP) { - ctype = WebThemeControlDRT::UpArrowType; - switch (state) { - case UPS_NORMAL: - ASSERT(classicState == DFCS_SCROLLUP); - cstate = WebThemeControlDRT::NormalState; - break; - case UPS_DISABLED: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_INACTIVE)); - cstate = WebThemeControlDRT::DisabledState; - break; - case UPS_PRESSED: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_PUSHED)); - cstate = WebThemeControlDRT::PressedState; - break; - case UPS_HOT: - ASSERT(classicState == (DFCS_SCROLLUP | DFCS_HOT)); - cstate = WebThemeControlDRT::HoverState; - break; - default: - ASSERT_NOT_REACHED(); - } - } else if (part == SPNP_DOWN) { - ctype = WebThemeControlDRT::DownArrowType; - switch (state) { - case DNS_NORMAL: - ASSERT(classicState == DFCS_SCROLLDOWN); - cstate = WebThemeControlDRT::NormalState; - break; - case DNS_DISABLED: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_INACTIVE)); - cstate = WebThemeControlDRT::DisabledState; - break; - case DNS_PRESSED: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_PUSHED)); - cstate = WebThemeControlDRT::PressedState; - break; - case DNS_HOT: - ASSERT(classicState == (DFCS_SCROLLDOWN | DFCS_HOT)); - cstate = WebThemeControlDRT::HoverState; - break; - default: - ASSERT_NOT_REACHED(); - } - } else - ASSERT_NOT_REACHED(); - drawControl(canvas, rect, ctype, cstate); -} - -void WebThemeEngineDRT::paintTextField(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect, - WebColor color, - bool fillContentArea, - bool drawEdges) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - ASSERT(EP_EDITTEXT == part); - ctype = WebThemeControlDRT::TextFieldType; - - switch (state) { - case ETS_NORMAL: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::NormalState; - break; - - case ETS_HOT: - ASSERT(classicState == DFCS_HOT); - cstate = WebThemeControlDRT::HotState; - break; - - case ETS_DISABLED: - ASSERT(classicState == DFCS_INACTIVE); - cstate = WebThemeControlDRT::DisabledState; - break; - - case ETS_SELECTED: - ASSERT(classicState == DFCS_PUSHED); - cstate = WebThemeControlDRT::PressedState; - break; - - case ETS_FOCUSED: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::FocusedState; - break; - - case ETS_READONLY: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::ReadOnlyState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - - drawTextField(canvas, rect, ctype, cstate, drawEdges, fillContentArea, color); -} - -void WebThemeEngineDRT::paintTrackbar(WebCanvas* canvas, - int part, - int state, - int classicState, - const WebRect& rect) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::UnknownType; - WebThemeControlDRT::State cstate = WebThemeControlDRT::UnknownState; - - if (TKP_THUMBBOTTOM == part) { - ctype = WebThemeControlDRT::HorizontalSliderThumbType; - switch (state) { - case TUS_NORMAL: - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::NormalState; - break; - - case TUS_HOT: - ASSERT(classicState == DFCS_HOT); - cstate = WebThemeControlDRT::HotState; - break; - - case TUS_DISABLED: - ASSERT(classicState == DFCS_INACTIVE); - cstate = WebThemeControlDRT::DisabledState; - break; - - case TUS_PRESSED: - ASSERT(classicState == DFCS_PUSHED); - cstate = WebThemeControlDRT::PressedState; - break; - - default: - ASSERT_NOT_REACHED(); - break; - } - } else if (TKP_TRACK == part) { - ctype = WebThemeControlDRT::HorizontalSliderTrackType; - ASSERT(part == TUS_NORMAL); - ASSERT(classicState == dfcsNormal); - cstate = WebThemeControlDRT::NormalState; - } else { - ASSERT_NOT_REACHED(); - } - - drawControl(canvas, rect, ctype, cstate); -} - - -void WebThemeEngineDRT::paintProgressBar(WebKit::WebCanvas* canvas, - const WebKit::WebRect& barRect, - const WebKit::WebRect& valueRect, - bool determinate, - double) -{ - WebThemeControlDRT::Type ctype = WebThemeControlDRT::ProgressBarType; - WebThemeControlDRT::State cstate = determinate ? WebThemeControlDRT::NormalState - : WebThemeControlDRT::IndeterminateState; - drawProgressBar(canvas, ctype, cstate, barRect, valueRect); -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebThemeEngineDRT.h --- a/WebKitTools/DumpRenderTree/chromium/WebThemeEngineDRT.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,97 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -// This implements the WebThemeEngine API used by the Windows version of -// Chromium to render native form controls like checkboxes, radio buttons, -// and scroll bars. -// The normal implementation (native_theme) renders the controls using either -// the UXTheme theming engine present in XP, Vista, and Win 7, or the "classic" -// theme used if that theme is selected in the Desktop settings. -// Unfortunately, both of these themes render controls differently on the -// different versions of Windows. -// -// In order to ensure maximum consistency of baselines across the different -// Windows versions, we provide a simple implementation for DRT here -// instead. These controls are actually platform-independent (they're rendered -// using Skia) and could be used on Linux and the Mac as well, should we -// choose to do so at some point. -// - -#ifndef WebThemeEngineDRT_h -#define WebThemeEngineDRT_h - -#include "public/WebThemeEngine.h" -#include - -class WebThemeEngineDRT : public WebKit::WebThemeEngine, public Noncopyable { -public: - WebThemeEngineDRT() {} - - // WebThemeEngine methods: - virtual void paintButton( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintMenuList( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintScrollbarArrow( - WebKit::WebCanvas*, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintScrollbarThumb( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintScrollbarTrack( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&, const WebKit::WebRect& alignRect); - - virtual void paintSpinButton( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintTextField( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&, WebKit::WebColor, bool fillContentArea, - bool drawEdges); - - virtual void paintTrackbar( - WebKit::WebCanvas*, int part, int state, int classicState, - const WebKit::WebRect&); - - virtual void paintProgressBar( - WebKit::WebCanvas*, const WebKit::WebRect& barRect, - const WebKit::WebRect& valueRect, - bool determinate, double time); -}; - -#endif // WebThemeEngineDRT_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp --- a/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1348 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "WebViewHost.h" - -#include "LayoutTestController.h" -#include "TestNavigationController.h" -#include "TestShell.h" -#include "TestWebWorker.h" -#include "net/base/net_errors.h" // FIXME: can we remove this? -#include "public/WebCString.h" -#include "public/WebConsoleMessage.h" -#include "public/WebContextMenuData.h" -#include "public/WebDataSource.h" -#include "public/WebDragData.h" -#include "public/WebFrame.h" -#include "public/WebGeolocationServiceMock.h" -#include "public/WebHistoryItem.h" -#include "public/WebNode.h" -#include "public/WebRange.h" -#include "public/WebRect.h" -#include "public/WebScreenInfo.h" -#include "public/WebSize.h" -#include "public/WebStorageNamespace.h" -#include "public/WebURLRequest.h" -#include "public/WebURLResponse.h" -#include "public/WebView.h" -#include "public/WebWindowFeatures.h" -#include "skia/ext/platform_canvas.h" -#include "webkit/support/webkit_support.h" -#include -#include - -using namespace WebCore; -using namespace WebKit; -using namespace skia; -using namespace std; - -static const int screenWidth = 1920; -static const int screenHeight = 1080; -static const int screenUnavailableBorder = 8; - -// WebNavigationType debugging strings taken from PolicyDelegate.mm. -static const char* linkClickedString = "link clicked"; -static const char* formSubmittedString = "form submitted"; -static const char* backForwardString = "back/forward"; -static const char* reloadString = "reload"; -static const char* formResubmittedString = "form resubmitted"; -static const char* otherString = "other"; -static const char* illegalString = "illegal value"; - -static int nextPageID = 1; - -// Used to write a platform neutral file:/// URL by only taking the filename -// (e.g., converts "file:///tmp/foo.txt" to just "foo.txt"). -static string urlSuitableForTestResult(const string& url) -{ - if (url.empty() || string::npos == url.find("file://")) - return url; - - size_t pos = url.rfind('/'); - if (pos == string::npos) { -#if OS(WINDOWS) - pos = url.rfind('\\'); - if (pos == string::npos) - pos = 0; -#else - pos = 0; -#endif - } - string filename = url.substr(pos + 1); - if (filename.empty()) - return "file:"; // A WebKit test has this in its expected output. - return filename; -} - -// Used to write a platform neutral file:/// URL by taking the -// filename and its directory. (e.g., converts -// "file:///tmp/foo/bar.txt" to just "bar.txt"). -static string descriptionSuitableForTestResult(const string& url) -{ - if (url.empty() || string::npos == url.find("file://")) - return url; - - size_t pos = url.rfind('/'); - if (pos == string::npos || !pos) - return "ERROR:" + url; - pos = url.rfind('/', pos - 1); - if (pos == string::npos) - return "ERROR:" + url; - - return url.substr(pos + 1); -} - -// Adds a file called "DRTFakeFile" to |data_object| (CF_HDROP). Use to fake -// dragging a file. -static void addDRTFakeFileToDataObject(WebDragData* dragData) -{ - dragData->appendToFileNames(WebString::fromUTF8("DRTFakeFile")); -} - -// Get a debugging string from a WebNavigationType. -static const char* webNavigationTypeToString(WebNavigationType type) -{ - switch (type) { - case WebKit::WebNavigationTypeLinkClicked: - return linkClickedString; - case WebKit::WebNavigationTypeFormSubmitted: - return formSubmittedString; - case WebKit::WebNavigationTypeBackForward: - return backForwardString; - case WebKit::WebNavigationTypeReload: - return reloadString; - case WebKit::WebNavigationTypeFormResubmitted: - return formResubmittedString; - case WebKit::WebNavigationTypeOther: - return otherString; - } - return illegalString; -} - -static string URLDescription(const GURL& url) -{ - if (url.SchemeIs("file")) - return url.ExtractFileName(); - return url.possibly_invalid_spec(); -} - -static void printResponseDescription(const WebURLResponse& response) -{ - if (response.isNull()) { - fputs("(null)", stdout); - return; - } - string url = response.url().spec(); - printf("", - descriptionSuitableForTestResult(url).c_str(), - response.httpStatusCode()); -} - -static void printErrorDescription(const WebURLError& error) -{ - string domain = error.domain.utf8(); - int code = error.reason; - - if (domain == net::kErrorDomain) { - domain = "NSURLErrorDomain"; - switch (error.reason) { - case net::ERR_ABORTED: - code = -999; - break; - case net::ERR_UNSAFE_PORT: - // Our unsafe port checking happens at the network stack level, but we - // make this translation here to match the behavior of stock WebKit. - domain = "WebKitErrorDomain"; - code = 103; - break; - case net::ERR_ADDRESS_INVALID: - case net::ERR_ADDRESS_UNREACHABLE: - code = -1004; - break; - } - } else - LOG_ERROR("Unknown error domain"); - - printf("", - domain.c_str(), code, error.unreachableURL.spec().data()); -} - -static void printNodeDescription(const WebNode& node, int exception) -{ - if (exception) { - fputs("ERROR", stdout); - return; - } - if (node.isNull()) { - fputs("(null)", stdout); - return; - } - fputs(node.nodeName().utf8().data(), stdout); - const WebNode& parent = node.parentNode(); - if (!parent.isNull()) { - fputs(" > ", stdout); - printNodeDescription(parent, 0); - } -} - -static void printRangeDescription(const WebRange& range) -{ - if (range.isNull()) { - fputs("(null)", stdout); - return; - } - printf("range from %d of ", range.startOffset()); - int exception = 0; - WebNode startNode = range.startContainer(exception); - printNodeDescription(startNode, exception); - printf(" to %d of ", range.endOffset()); - WebNode endNode = range.endContainer(exception); - printNodeDescription(endNode, exception); -} - -static string editingActionDescription(WebEditingAction action) -{ - switch (action) { - case WebKit::WebEditingActionTyped: - return "WebViewInsertActionTyped"; - case WebKit::WebEditingActionPasted: - return "WebViewInsertActionPasted"; - case WebKit::WebEditingActionDropped: - return "WebViewInsertActionDropped"; - } - return "(UNKNOWN ACTION)"; -} - -static string textAffinityDescription(WebTextAffinity affinity) -{ - switch (affinity) { - case WebKit::WebTextAffinityUpstream: - return "NSSelectionAffinityUpstream"; - case WebKit::WebTextAffinityDownstream: - return "NSSelectionAffinityDownstream"; - } - return "(UNKNOWN AFFINITY)"; -} - -// WebViewClient ------------------------------------------------------------- - -WebView* WebViewHost::createView(WebFrame*, const WebWindowFeatures&, const WebString&) -{ - if (!layoutTestController()->canOpenWindows()) - return 0; - return m_shell->createWebView()->webView(); -} - -WebWidget* WebViewHost::createPopupMenu(WebPopupType) -{ - return 0; -} - -WebWidget* WebViewHost::createPopupMenu(const WebPopupMenuInfo&) -{ - return 0; -} - -WebStorageNamespace* WebViewHost::createSessionStorageNamespace(unsigned quota) -{ - return WebKit::WebStorageNamespace::createSessionStorageNamespace(quota); -} - -void WebViewHost::didAddMessageToConsole(const WebConsoleMessage& message, const WebString& sourceName, unsigned sourceLine) -{ - // This matches win DumpRenderTree's UIDelegate.cpp. - string newMessage; - if (!message.text.isEmpty()) { - newMessage = message.text.utf8(); - size_t fileProtocol = newMessage.find("file://"); - if (fileProtocol != string::npos) { - newMessage = newMessage.substr(0, fileProtocol) - + urlSuitableForTestResult(newMessage.substr(fileProtocol)); - } - } - printf("CONSOLE MESSAGE: line %d: %s\n", sourceLine, newMessage.data()); -} - -void WebViewHost::didStartLoading() -{ - m_shell->setIsLoading(true); -} - -void WebViewHost::didStopLoading() -{ - m_shell->setIsLoading(false); -} - -// The output from these methods in layout test mode should match that -// expected by the layout tests. See EditingDelegate.m in DumpRenderTree. - -bool WebViewHost::shouldBeginEditing(const WebRange& range) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - fputs("EDITING DELEGATE: shouldBeginEditingInDOMRange:", stdout); - printRangeDescription(range); - fputs("\n", stdout); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldEndEditing(const WebRange& range) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - fputs("EDITING DELEGATE: shouldEndEditingInDOMRange:", stdout); - printRangeDescription(range); - fputs("\n", stdout); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldInsertNode(const WebNode& node, const WebRange& range, WebEditingAction action) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - fputs("EDITING DELEGATE: shouldInsertNode:", stdout); - printNodeDescription(node, 0); - fputs(" replacingDOMRange:", stdout); - printRangeDescription(range); - printf(" givenAction:%s\n", editingActionDescription(action).c_str()); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldInsertText(const WebString& text, const WebRange& range, WebEditingAction action) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:", text.utf8().data()); - printRangeDescription(range); - printf(" givenAction:%s\n", editingActionDescription(action).c_str()); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldChangeSelectedRange( - const WebRange& fromRange, const WebRange& toRange, WebTextAffinity affinity, bool stillSelecting) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - fputs("EDITING DELEGATE: shouldChangeSelectedDOMRange:", stdout); - printRangeDescription(fromRange); - fputs(" toDOMRange:", stdout); - printRangeDescription(toRange); - printf(" affinity:%s stillSelecting:%s\n", - textAffinityDescription(affinity).c_str(), - (stillSelecting ? "TRUE" : "FALSE")); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldDeleteRange(const WebRange& range) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - fputs("EDITING DELEGATE: shouldDeleteDOMRange:", stdout); - printRangeDescription(range); - fputs("\n", stdout); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::shouldApplyStyle(const WebString& style, const WebRange& range) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) { - printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:", style.utf8().data()); - printRangeDescription(range); - fputs("\n", stdout); - } - return layoutTestController()->acceptsEditing(); -} - -bool WebViewHost::isSmartInsertDeleteEnabled() -{ - return m_smartInsertDeleteEnabled; -} - -bool WebViewHost::isSelectTrailingWhitespaceEnabled() -{ - return m_selectTrailingWhitespaceEnabled; -} - -void WebViewHost::didBeginEditing() -{ - if (!layoutTestController()->shouldDumpEditingCallbacks()) - return; - fputs("EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification\n", stdout); -} - -void WebViewHost::didChangeSelection(bool isEmptySelection) -{ - if (layoutTestController()->shouldDumpEditingCallbacks()) - fputs("EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n", stdout); - // No need to update clipboard with the selected text in DRT. -} - -void WebViewHost::didChangeContents() -{ - if (!layoutTestController()->shouldDumpEditingCallbacks()) - return; - fputs("EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n", stdout); -} - -void WebViewHost::didEndEditing() -{ - if (!layoutTestController()->shouldDumpEditingCallbacks()) - return; - fputs("EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification\n", stdout); -} - -bool WebViewHost::handleCurrentKeyboardEvent() -{ - if (m_editCommandName.empty()) - return false; - WebFrame* frame = webView()->focusedFrame(); - if (!frame) - return false; - - return frame->executeCommand(WebString::fromUTF8(m_editCommandName), WebString::fromUTF8(m_editCommandValue)); -} - -void WebViewHost::spellCheck(const WebString& text, int& misspelledOffset, int& misspelledLength) -{ - // Check the spelling of the given text. -#if OS(MAC_OS_X) - // FIXME: rebaseline layout-test results of Windows and Linux so we - // can enable this mock spellchecker on them. - m_spellcheck.spellCheckWord(text, &misspelledOffset, &misspelledLength); -#endif -} - -WebString WebViewHost::autoCorrectWord(const WebString&) -{ - // Returns an empty string as Mac WebKit ('WebKitSupport/WebEditorClient.mm') - // does. (If this function returns a non-empty string, WebKit replaces the - // given misspelled string with the result one. This process executes some - // editor commands and causes layout-test failures.) - return WebString(); -} - -void WebViewHost::runModalAlertDialog(WebFrame*, const WebString& message) -{ - printf("ALERT: %s\n", message.utf8().data()); -} - -bool WebViewHost::runModalConfirmDialog(WebFrame*, const WebString& message) -{ - printf("CONFIRM: %s\n", message.utf8().data()); - return true; -} - -bool WebViewHost::runModalPromptDialog(WebFrame* frame, const WebString& message, - const WebString& defaultValue, WebString*) -{ - printf("PROMPT: %s, default text: %s\n", message.utf8().data(), defaultValue.utf8().data()); - return true; -} - -bool WebViewHost::runModalBeforeUnloadDialog(WebFrame*, const WebString&) -{ - return true; // Allow window closure. -} - -void WebViewHost::showContextMenu(WebFrame*, const WebContextMenuData&) -{ -} - - -void WebViewHost::setStatusText(const WebString& text) -{ - if (!layoutTestController()->shouldDumpStatusCallbacks()) - return; - // When running tests, write to stdout. - printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", text.utf8().data()); -} - -void WebViewHost::startDragging(const WebDragData& data, WebDragOperationsMask mask, const WebImage&, const WebPoint&) -{ - WebDragData mutableDragData = data; - if (layoutTestController()->shouldAddFileToPasteboard()) { - // Add a file called DRTFakeFile to the drag&drop clipboard. - addDRTFakeFileToDataObject(&mutableDragData); - } - - // When running a test, we need to fake a drag drop operation otherwise - // Windows waits for real mouse events to know when the drag is over. - m_shell->eventSender()->doDragDrop(mutableDragData, mask); -} - -void WebViewHost::navigateBackForwardSoon(int offset) -{ - navigationController()->goToOffset(offset); -} - -int WebViewHost::historyBackListCount() -{ - return navigationController()->lastCommittedEntryIndex(); -} - -int WebViewHost::historyForwardListCount() -{ - int currentIndex =navigationController()->lastCommittedEntryIndex(); - return navigationController()->entryCount() - currentIndex - 1; -} - -void WebViewHost::focusAccessibilityObject(const WebAccessibilityObject& object) -{ - m_shell->accessibilityController()->setFocusedElement(object); -} - -WebNotificationPresenter* WebViewHost::notificationPresenter() -{ - return m_shell->notificationPresenter(); -} - -WebKit::WebGeolocationService* WebViewHost::geolocationService() -{ - if (!m_geolocationServiceMock.get()) - m_geolocationServiceMock.set(WebGeolocationServiceMock::createWebGeolocationServiceMock()); - return m_geolocationServiceMock.get(); -} - -// WebWidgetClient ----------------------------------------------------------- - -void WebViewHost::didInvalidateRect(const WebRect& rect) -{ - if (m_isPainting) - LOG_ERROR("unexpected invalidation while painting"); - updatePaintRect(rect); -} - -void WebViewHost::didScrollRect(int, int, const WebRect& clipRect) -{ - // This is used for optimizing painting when the renderer is scrolled. We're - // currently not doing any optimizations so just invalidate the region. - didInvalidateRect(clipRect); -} - -void WebViewHost::didFocus() -{ - m_shell->setFocus(webWidget(), true); -} - -void WebViewHost::didBlur() -{ - m_shell->setFocus(webWidget(), false); -} - -WebScreenInfo WebViewHost::screenInfo() -{ - // We don't need to set actual values. - WebScreenInfo info; - info.depth = 24; - info.depthPerComponent = 8; - info.isMonochrome = false; - info.rect = WebRect(0, 0, screenWidth, screenHeight); - // Use values different from info.rect for testing. - info.availableRect = WebRect(screenUnavailableBorder, screenUnavailableBorder, - screenWidth - screenUnavailableBorder * 2, - screenHeight - screenUnavailableBorder * 2); - return info; -} - -void WebViewHost::show(WebNavigationPolicy) -{ - m_hasWindow = true; - WebSize size = webWidget()->size(); - updatePaintRect(WebRect(0, 0, size.width, size.height)); -} - -void WebViewHost::closeWidgetSoon() -{ - m_hasWindow = false; - m_shell->closeWindow(this); -} - -void WebViewHost::didChangeCursor(const WebCursorInfo& cursorInfo) -{ - if (!hasWindow()) - return; - m_currentCursor = cursorInfo; -} - -WebRect WebViewHost::windowRect() -{ - return m_windowRect; -} - -void WebViewHost::setWindowRect(const WebRect& rect) -{ - m_windowRect = rect; - const int border2 = TestShell::virtualWindowBorder * 2; - if (m_windowRect.width <= border2) - m_windowRect.width = 1 + border2; - if (m_windowRect.height <= border2) - m_windowRect.height = 1 + border2; - int width = m_windowRect.width - border2; - int height = m_windowRect.height - border2; - discardBackingStore(); - webWidget()->resize(WebSize(width, height)); - updatePaintRect(WebRect(0, 0, width, height)); -} - -WebRect WebViewHost::rootWindowRect() -{ - return windowRect(); -} - -WebRect WebViewHost::windowResizerRect() -{ - // Not necessary. - return WebRect(); -} - -void WebViewHost::runModal() -{ - // FIXME: Should we implement this in DRT? -} - -// WebFrameClient ------------------------------------------------------------ - -WebPlugin* WebViewHost::createPlugin(WebFrame* frame, const WebPluginParams& params) -{ - return webkit_support::CreateWebPlugin(frame, params); -} - -WebWorker* WebViewHost::createWorker(WebFrame*, WebWorkerClient*) -{ - return new TestWebWorker(); -} - -WebMediaPlayer* WebViewHost::createMediaPlayer(WebFrame* frame, WebMediaPlayerClient* client) -{ - return webkit_support::CreateMediaPlayer(frame, client); -} - -WebApplicationCacheHost* WebViewHost::createApplicationCacheHost(WebFrame* frame, WebApplicationCacheHostClient* client) -{ - return webkit_support::CreateApplicationCacheHost(frame, client); -} - -bool WebViewHost::allowPlugins(WebFrame* frame, bool enabledPerSettings) -{ - return enabledPerSettings; -} - -bool WebViewHost::allowImages(WebFrame* frame, bool enabledPerSettings) -{ - return enabledPerSettings; -} - -void WebViewHost::loadURLExternally(WebFrame*, const WebURLRequest& request, WebNavigationPolicy policy) -{ - ASSERT(policy != WebKit::WebNavigationPolicyCurrentTab); - WebViewHost* another = m_shell->createNewWindow(request.url()); - if (another) - another->show(policy); -} - -WebNavigationPolicy WebViewHost::decidePolicyForNavigation( - WebFrame*, const WebURLRequest& request, - WebNavigationType type, const WebNode& originatingNode, - WebNavigationPolicy defaultPolicy, bool isRedirect) -{ - WebNavigationPolicy result; - if (!m_policyDelegateEnabled) - return defaultPolicy; - - printf("Policy delegate: attempt to load %s with navigation type '%s'", - URLDescription(request.url()).c_str(), webNavigationTypeToString(type)); - if (!originatingNode.isNull()) { - fputs(" originating from ", stdout); - printNodeDescription(originatingNode, 0); - } - fputs("\n", stdout); - if (m_policyDelegateIsPermissive) - result = WebKit::WebNavigationPolicyCurrentTab; - else - result = WebKit::WebNavigationPolicyIgnore; - - if (m_policyDelegateShouldNotifyDone) - layoutTestController()->policyDelegateDone(); - return result; -} - -bool WebViewHost::canHandleRequest(WebFrame*, const WebURLRequest& request) -{ - GURL url = request.url(); - // Just reject the scheme used in - // LayoutTests/http/tests/misc/redirect-to-external-url.html - return !url.SchemeIs("spaceballs"); -} - -WebURLError WebViewHost::cannotHandleRequestError(WebFrame*, const WebURLRequest& request) -{ - WebURLError error; - // A WebKit layout test expects the following values. - // unableToImplementPolicyWithError() below prints them. - error.domain = WebString::fromUTF8("WebKitErrorDomain"); - error.reason = 101; - error.unreachableURL = request.url(); - return error; -} - -WebURLError WebViewHost::cancelledError(WebFrame*, const WebURLRequest& request) -{ - WebURLError error; - error.domain = WebString::fromUTF8(net::kErrorDomain); - error.reason = net::ERR_ABORTED; - error.unreachableURL = request.url(); - return error; -} - -void WebViewHost::unableToImplementPolicyWithError(WebFrame* frame, const WebURLError& error) -{ - printf("Policy delegate: unable to implement policy with error domain '%s', " - "error code %d, in frame '%s'\n", - error.domain.utf8().data(), error.reason, frame->name().utf8().data()); -} - -void WebViewHost::willPerformClientRedirect(WebFrame* frame, const WebURL& from, const WebURL& to, - double interval, double fire_time) -{ - if (!m_shell->shouldDumpFrameLoadCallbacks()) - return; - printFrameDescription(frame); - printf(" - willPerformClientRedirectToURL: %s \n", to.spec().data()); -} - -void WebViewHost::didCancelClientRedirect(WebFrame* frame) -{ - if (!m_shell->shouldDumpFrameLoadCallbacks()) - return; - printFrameDescription(frame); - fputs(" - didCancelClientRedirectForFrame\n", stdout); -} - -void WebViewHost::didCreateDataSource(WebFrame*, WebDataSource* ds) -{ - ds->setExtraData(m_pendingExtraData.leakPtr()); -} - -void WebViewHost::didStartProvisionalLoad(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didStartProvisionalLoadForFrame\n", stdout); - } - - if (!m_topLoadingFrame) - m_topLoadingFrame = frame; - - if (layoutTestController()->stopProvisionalFrameLoads()) { - printFrameDescription(frame); - fputs(" - stopping load in didStartProvisionalLoadForFrame callback\n", stdout); - frame->stopLoading(); - } - updateAddressBar(frame->view()); -} - -void WebViewHost::didReceiveServerRedirectForProvisionalLoad(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didReceiveServerRedirectForProvisionalLoadForFrame\n", stdout); - } - updateAddressBar(frame->view()); -} - -void WebViewHost::didFailProvisionalLoad(WebFrame* frame, const WebURLError& error) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didFailProvisionalLoadWithError\n", stdout); - } - - locationChangeDone(frame); - - // Don't display an error page if we're running layout tests, because - // DumpRenderTree doesn't. -} - -void WebViewHost::didCommitProvisionalLoad(WebFrame* frame, bool isNewNavigation) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didCommitLoadForFrame\n", stdout); - } - updateForCommittedLoad(frame, isNewNavigation); -} - -void WebViewHost::didClearWindowObject(WebFrame* frame) -{ - m_shell->bindJSObjectsToWindow(frame); -} - -void WebViewHost::didReceiveTitle(WebFrame* frame, const WebString& title) -{ - WebCString title8 = title.utf8(); - - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - printf(" - didReceiveTitle: %s\n", title8.data()); - } - - if (layoutTestController()->shouldDumpTitleChanges()) - printf("TITLE CHANGED: %s\n", title8.data()); - - setPageTitle(title); -} - -void WebViewHost::didFinishDocumentLoad(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didFinishDocumentLoadForFrame\n", stdout); - } else { - unsigned pendingUnloadEvents = frame->unloadListenerCount(); - if (pendingUnloadEvents) { - printFrameDescription(frame); - printf(" - has %u onunload handler(s)\n", pendingUnloadEvents); - } - } -} - -void WebViewHost::didHandleOnloadEvents(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didHandleOnloadEventsForFrame\n", stdout); - } -} - -void WebViewHost::didFailLoad(WebFrame* frame, const WebURLError& error) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didFailLoadWithError\n", stdout); - } - locationChangeDone(frame); -} - -void WebViewHost::didFinishLoad(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didFinishLoadForFrame\n", stdout); - } - updateAddressBar(frame->view()); - locationChangeDone(frame); -} - -void WebViewHost::didNavigateWithinPage(WebFrame* frame, bool isNewNavigation) -{ - frame->dataSource()->setExtraData(m_pendingExtraData.leakPtr()); - - updateForCommittedLoad(frame, isNewNavigation); -} - -void WebViewHost::didChangeLocationWithinPage(WebFrame* frame) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) { - printFrameDescription(frame); - fputs(" - didChangeLocationWithinPageForFrame\n", stdout); - } -} - -void WebViewHost::assignIdentifierToRequest(WebFrame*, unsigned identifier, const WebURLRequest& request) -{ - if (!m_shell->shouldDumpResourceLoadCallbacks()) - return; - m_resourceIdentifierMap.set(identifier, descriptionSuitableForTestResult(request.url().spec())); -} - -void WebViewHost::willSendRequest(WebFrame*, unsigned identifier, WebURLRequest& request, const WebURLResponse& redirectResponse) -{ - // Need to use GURL for host() and SchemeIs() - GURL url = request.url(); - string requestURL = url.possibly_invalid_spec(); - - if (layoutTestController()->shouldDumpResourceLoadCallbacks()) { - GURL mainDocumentURL = request.firstPartyForCookies(); - printResourceDescription(identifier); - printf(" - willSendRequest redirectResponse ", - descriptionSuitableForTestResult(requestURL).c_str(), - URLDescription(mainDocumentURL).c_str(), - request.httpMethod().utf8().data()); - printResponseDescription(redirectResponse); - fputs("\n", stdout); - } - - if (!redirectResponse.isNull() && m_blocksRedirects) { - fputs("Returning null for this redirect\n", stdout); - // To block the request, we set its URL to an empty one. - request.setURL(WebURL()); - return; - } - - if (m_requestReturnNull) { - // To block the request, we set its URL to an empty one. - request.setURL(WebURL()); - return; - } - - string host = url.host(); - // 255.255.255.255 is used in some tests that expect to get back an error. - if (!host.empty() && (url.SchemeIs("http") || url.SchemeIs("https")) - && host != "127.0.0.1" - && host != "255.255.255.255" - && host != "localhost" - && !m_shell->allowExternalPages()) { - printf("Blocked access to external URL %s\n", requestURL.c_str()); - - // To block the request, we set its URL to an empty one. - request.setURL(WebURL()); - return; - } - - HashSet::const_iterator end = m_clearHeaders.end(); - for (HashSet::const_iterator header = m_clearHeaders.begin(); header != end; ++header) - request.clearHTTPHeaderField(WebString(header->characters(), header->length())); - - // Set the new substituted URL. - request.setURL(webkit_support::RewriteLayoutTestsURL(request.url().spec())); -} - -void WebViewHost::didReceiveResponse(WebFrame*, unsigned identifier, const WebURLResponse& response) -{ - if (!m_shell->shouldDumpResourceLoadCallbacks()) - return; - printResourceDescription(identifier); - fputs(" - didReceiveResponse ", stdout); - printResponseDescription(response); - fputs("\n", stdout); -} - -void WebViewHost::didFinishResourceLoad(WebFrame*, unsigned identifier) -{ - if (m_shell->shouldDumpResourceLoadCallbacks()) { - printResourceDescription(identifier); - fputs(" - didFinishLoading\n", stdout); - } - m_resourceIdentifierMap.remove(identifier); -} - -void WebViewHost::didFailResourceLoad(WebFrame*, unsigned identifier, const WebURLError& error) -{ - if (m_shell->shouldDumpResourceLoadCallbacks()) { - printResourceDescription(identifier); - fputs(" - didFailLoadingWithError: ", stdout); - printErrorDescription(error); - fputs("\n", stdout); - } - m_resourceIdentifierMap.remove(identifier); -} - -void WebViewHost::didDisplayInsecureContent(WebFrame*) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) - fputs("didDisplayInsecureContent\n", stdout); -} - -void WebViewHost::didRunInsecureContent(WebFrame*, const WebSecurityOrigin& origin) -{ - if (m_shell->shouldDumpFrameLoadCallbacks()) - fputs("didRunInsecureContent\n", stdout); -} - -bool WebViewHost::allowScript(WebFrame*, bool enabledPerSettings) -{ - return enabledPerSettings; -} - -// Public functions ----------------------------------------------------------- - -WebViewHost::WebViewHost(TestShell* shell) - : m_policyDelegateEnabled(false) - , m_policyDelegateIsPermissive(false) - , m_policyDelegateShouldNotifyDone(false) - , m_shell(shell) - , m_topLoadingFrame(0) - , m_hasWindow(false) - , m_pageId(-1) - , m_lastPageIdUpdated(-1) - , m_smartInsertDeleteEnabled(true) -#if OS(WINDOWS) - , m_selectTrailingWhitespaceEnabled(true) -#else - , m_selectTrailingWhitespaceEnabled(false) -#endif - , m_blocksRedirects(false) - , m_requestReturnNull(false) - , m_isPainting(false) - , m_webWidget(0) -{ - m_navigationController.set(new TestNavigationController(this)); -} - -WebViewHost::~WebViewHost() -{ -} - -WebView* WebViewHost::webView() const -{ - ASSERT(m_webWidget); - // DRT does not support popup widgets. So m_webWidget is always a WebView. - return static_cast(m_webWidget); -} - -WebWidget* WebViewHost::webWidget() const -{ - ASSERT(m_webWidget); - return m_webWidget; -} - -void WebViewHost::reset() -{ - // Do a little placement new dance... - TestShell* shell = m_shell; - WebWidget* widget = m_webWidget; - this->~WebViewHost(); - new (this) WebViewHost(shell); - setWebWidget(widget); - webView()->mainFrame()->setName(WebString()); -} - -void WebViewHost::setSelectTrailingWhitespaceEnabled(bool enabled) -{ - m_selectTrailingWhitespaceEnabled = enabled; - // In upstream WebKit, smart insert/delete is mutually exclusive with select - // trailing whitespace, however, we allow both because Chromium on Windows - // allows both. -} - -void WebViewHost::setSmartInsertDeleteEnabled(bool enabled) -{ - m_smartInsertDeleteEnabled = enabled; - // In upstream WebKit, smart insert/delete is mutually exclusive with select - // trailing whitespace, however, we allow both because Chromium on Windows - // allows both. -} - -void WebViewHost::setCustomPolicyDelegate(bool isCustom, bool isPermissive) -{ - m_policyDelegateEnabled = isCustom; - m_policyDelegateIsPermissive = isPermissive; -} - -void WebViewHost::waitForPolicyDelegate() -{ - m_policyDelegateEnabled = true; - m_policyDelegateShouldNotifyDone = true; -} - -void WebViewHost::setEditCommand(const string& name, const string& value) -{ - m_editCommandName = name; - m_editCommandValue = value; -} - -void WebViewHost::clearEditCommand() -{ - m_editCommandName.clear(); - m_editCommandValue.clear(); -} - -void WebViewHost::loadURLForFrame(const WebURL& url, const WebString& frameName) -{ - if (!url.isValid()) - return; - TestShell::resizeWindowForTest(this, url); - navigationController()->loadEntry(new TestNavigationEntry(-1, url, WebString(), frameName)); -} - -bool WebViewHost::navigate(const TestNavigationEntry& entry, bool reload) -{ - // Get the right target frame for the entry. - WebFrame* frame = webView()->mainFrame(); - if (!entry.targetFrame().isEmpty()) - frame = webView()->findFrameByName(entry.targetFrame()); - - // TODO(mpcomplete): should we clear the target frame, or should - // back/forward navigations maintain the target frame? - - // A navigation resulting from loading a javascript URL should not be - // treated as a browser initiated event. Instead, we want it to look as if - // the page initiated any load resulting from JS execution. - if (!GURL(entry.URL()).SchemeIs("javascript")) - setPendingExtraData(new TestShellExtraData(entry.pageID())); - - // If we are reloading, then WebKit will use the state of the current page. - // Otherwise, we give it the state to navigate to. - if (reload) { - frame->reload(false); - } else if (!entry.contentState().isNull()) { - ASSERT(entry.pageID() != -1); - frame->loadHistoryItem(entry.contentState()); - } else { - ASSERT(entry.pageID() == -1); - frame->loadRequest(WebURLRequest(entry.URL())); - } - - // In case LoadRequest failed before DidCreateDataSource was called. - setPendingExtraData(0); - - // Restore focus to the main frame prior to loading new request. - // This makes sure that we don't have a focused iframe. Otherwise, that - // iframe would keep focus when the SetFocus called immediately after - // LoadRequest, thus making some tests fail (see http://b/issue?id=845337 - // for more details). - webView()->setFocusedFrame(frame); - m_shell->setFocus(webView(), true); - - return true; -} - -// Private functions ---------------------------------------------------------- - -LayoutTestController* WebViewHost::layoutTestController() const -{ - return m_shell->layoutTestController(); -} - -void WebViewHost::updateAddressBar(WebView* webView) -{ - WebFrame* mainFrame = webView->mainFrame(); - WebDataSource* dataSource = mainFrame->dataSource(); - if (!dataSource) - dataSource = mainFrame->provisionalDataSource(); - if (!dataSource) - return; - - setAddressBarURL(dataSource->request().url()); -} - -void WebViewHost::locationChangeDone(WebFrame* frame) -{ - if (frame != m_topLoadingFrame) - return; - m_topLoadingFrame = 0; - layoutTestController()->locationChangeDone(); -} - -void WebViewHost::updateForCommittedLoad(WebFrame* frame, bool isNewNavigation) -{ - // Code duplicated from RenderView::DidCommitLoadForFrame. - TestShellExtraData* extraData = static_cast(frame->dataSource()->extraData()); - - if (isNewNavigation) { - // New navigation. - updateSessionHistory(frame); - m_pageId = nextPageID++; - } else if (extraData && extraData->pendingPageID != -1 && !extraData->requestCommitted) { - // This is a successful session history navigation! - updateSessionHistory(frame); - m_pageId = extraData->pendingPageID; - } - - // Don't update session history multiple times. - if (extraData) - extraData->requestCommitted = true; - - updateURL(frame); -} - -void WebViewHost::updateURL(WebFrame* frame) -{ - WebDataSource* ds = frame->dataSource(); - ASSERT(ds); - const WebURLRequest& request = ds->request(); - OwnPtr entry(new TestNavigationEntry); - - // The referrer will be empty on https->http transitions. It - // would be nice if we could get the real referrer from somewhere. - entry->setPageID(m_pageId); - if (ds->hasUnreachableURL()) - entry->setURL(ds->unreachableURL()); - else - entry->setURL(request.url()); - - const WebHistoryItem& historyItem = frame->currentHistoryItem(); - if (!historyItem.isNull()) - entry->setContentState(historyItem); - - navigationController()->didNavigateToEntry(entry.leakPtr()); - updateAddressBar(frame->view()); - m_lastPageIdUpdated = max(m_lastPageIdUpdated, m_pageId); -} - -void WebViewHost::updateSessionHistory(WebFrame* frame) -{ - // If we have a valid page ID at this point, then it corresponds to the page - // we are navigating away from. Otherwise, this is the first navigation, so - // there is no past session history to record. - if (m_pageId == -1) - return; - - TestNavigationEntry* entry = static_cast(navigationController()->entryWithPageID(m_pageId)); - if (!entry) - return; - - const WebHistoryItem& historyItem = webView()->mainFrame()->previousHistoryItem(); - if (historyItem.isNull()) - return; - - entry->setContentState(historyItem); -} - -void WebViewHost::printFrameDescription(WebFrame* webframe) -{ - string name8 = webframe->name().utf8(); - if (webframe == webView()->mainFrame()) { - if (!name8.length()) { - fputs("main frame", stdout); - return; - } - printf("main frame \"%s\"", name8.c_str()); - return; - } - if (!name8.length()) { - fputs("frame (anonymous)", stdout); - return; - } - printf("frame \"%s\"", name8.c_str()); -} - -void WebViewHost::printResourceDescription(unsigned identifier) -{ - ResourceMap::iterator it = m_resourceIdentifierMap.find(identifier); - printf("%s", it != m_resourceIdentifierMap.end() ? it->second.c_str() : ""); -} - -void WebViewHost::setPendingExtraData(TestShellExtraData* extraData) -{ - m_pendingExtraData.set(extraData); -} - -void WebViewHost::setPageTitle(const WebString&) -{ - // Nothing to do in layout test. -} - -void WebViewHost::setAddressBarURL(const WebURL&) -{ - // Nothing to do in layout test. -} - -// Painting functions --------------------------------------------------------- - -void WebViewHost::updatePaintRect(const WebRect& rect) -{ - // m_paintRect = m_paintRect U rect - if (rect.isEmpty()) - return; - if (m_paintRect.isEmpty()) { - m_paintRect = rect; - return; - } - int left = min(m_paintRect.x, rect.x); - int top = min(m_paintRect.y, rect.y); - int right = max(m_paintRect.x + m_paintRect.width, rect.x + rect.width); - int bottom = max(m_paintRect.y + m_paintRect.height, rect.y + rect.height); - m_paintRect = WebRect(left, top, right - left, bottom - top); -} - -void WebViewHost::paintRect(const WebRect& rect) -{ - ASSERT(!m_isPainting); - ASSERT(canvas()); - m_isPainting = true; -#if PLATFORM(CG) - webWidget()->paint(canvas()->getTopPlatformDevice().GetBitmapContext(), rect); -#else - webWidget()->paint(canvas(), rect); -#endif - m_isPainting = false; -} - -void WebViewHost::paintInvalidatedRegion() -{ - webWidget()->layout(); - WebSize widgetSize = webWidget()->size(); - WebRect clientRect(0, 0, widgetSize.width, widgetSize.height); - - // Paint the canvas if necessary. Allow painting to generate extra rects - // for the first two calls. This is necessary because some WebCore rendering - // objects update their layout only when painted. - // Store the total area painted in total_paint. Then tell the gdk window - // to update that area after we're done painting it. - for (int i = 0; i < 3; ++i) { - // m_paintRect = intersect(m_paintRect , clientRect) - int left = max(m_paintRect.x, clientRect.x); - int top = max(m_paintRect.y, clientRect.y); - int right = min(m_paintRect.x + m_paintRect.width, clientRect.x + clientRect.width); - int bottom = min(m_paintRect.y + m_paintRect.height, clientRect.y + clientRect.height); - if (left >= right || top >= bottom) - m_paintRect = WebRect(); - else - m_paintRect = WebRect(left, top, right - left, bottom - top); - - if (m_paintRect.isEmpty()) - continue; - WebRect rect(m_paintRect); - m_paintRect = WebRect(); - paintRect(rect); - if (i >= 1) - LOG_ERROR("painting caused additional invalidations"); - } - ASSERT(m_paintRect.isEmpty()); -} - -PlatformCanvas* WebViewHost::canvas() -{ - if (m_canvas) - return m_canvas.get(); - WebSize widgetSize = webWidget()->size(); - resetScrollRect(); - m_canvas.set(new PlatformCanvas(widgetSize.width, widgetSize.height, true)); - return m_canvas.get(); -} - -void WebViewHost::resetScrollRect() -{ -} - -void WebViewHost::discardBackingStore() -{ - m_canvas.clear(); -} - -// Paints the entire canvas a semi-transparent black (grayish). This is used -// by the layout tests in fast/repaint. The alpha value matches upstream. -void WebViewHost::displayRepaintMask() -{ - canvas()->drawARGB(167, 0, 0, 0); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/WebViewHost.h --- a/WebKitTools/DumpRenderTree/chromium/WebViewHost.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,288 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef WebViewHost_h -#define WebViewHost_h - -#include "MockSpellCheck.h" -#include "TestNavigationController.h" -#include "public/WebCursorInfo.h" -#include "public/WebFrameClient.h" -#include "public/WebViewClient.h" -#include -#include -#include -#include - -class LayoutTestController; -class TestShell; -namespace WebKit { -class WebFrame; -class WebGeolocationServiceMock; -class WebURL; -struct WebRect; -struct WebURLError; -struct WebWindowFeatures; -} -namespace skia { -class PlatformCanvas; -} - -class WebViewHost : public WebKit::WebViewClient, public WebKit::WebFrameClient, public NavigationHost { - public: - WebViewHost(TestShell* shell); - ~WebViewHost(); - void setWebWidget(WebKit::WebWidget* widget) { m_webWidget = widget; } - WebKit::WebView* webView() const; - WebKit::WebWidget* webWidget() const; - void reset(); - void setSelectTrailingWhitespaceEnabled(bool); - void setSmartInsertDeleteEnabled(bool); - void waitForPolicyDelegate(); - void setCustomPolicyDelegate(bool, bool); - WebKit::WebFrame* topLoadingFrame() { return m_topLoadingFrame; } - void setBlockRedirects(bool block) { m_blocksRedirects = block; } - void setRequestReturnNull(bool returnNull) { m_requestReturnNull = returnNull; } - void setEditCommand(const std::string& name, const std::string& value); - void clearEditCommand(); - void setPendingExtraData(TestShellExtraData*); - - void paintRect(const WebKit::WebRect&); - void updatePaintRect(const WebKit::WebRect&); - void paintInvalidatedRegion(); - skia::PlatformCanvas* canvas(); - void displayRepaintMask(); - - void loadURLForFrame(const WebKit::WebURL&, const WebKit::WebString& frameName); - TestNavigationController* navigationController() { return m_navigationController.get(); } - - void addClearHeader(const WebCore::String& header) { m_clearHeaders.add(header); } - const HashSet& clearHeaders() const { return m_clearHeaders; } - - // NavigationHost - virtual bool navigate(const TestNavigationEntry&, bool reload); - - // WebKit::WebViewClient - virtual WebKit::WebView* createView(WebKit::WebFrame*, const WebKit::WebWindowFeatures&, const WebKit::WebString&); - virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType); - virtual WebKit::WebWidget* createPopupMenu(const WebKit::WebPopupMenuInfo&); - virtual WebKit::WebStorageNamespace* createSessionStorageNamespace(unsigned quota); - virtual void didAddMessageToConsole(const WebKit::WebConsoleMessage&, const WebKit::WebString& sourceName, unsigned sourceLine); - virtual void didStartLoading(); - virtual void didStopLoading(); - virtual bool shouldBeginEditing(const WebKit::WebRange&); - virtual bool shouldEndEditing(const WebKit::WebRange&); - virtual bool shouldInsertNode(const WebKit::WebNode&, const WebKit::WebRange&, WebKit::WebEditingAction); - virtual bool shouldInsertText(const WebKit::WebString&, const WebKit::WebRange&, WebKit::WebEditingAction); - virtual bool shouldChangeSelectedRange(const WebKit::WebRange& from, const WebKit::WebRange& to, WebKit::WebTextAffinity, bool stillSelecting); - virtual bool shouldDeleteRange(const WebKit::WebRange&); - virtual bool shouldApplyStyle(const WebKit::WebString& style, const WebKit::WebRange&); - virtual bool isSmartInsertDeleteEnabled(); - virtual bool isSelectTrailingWhitespaceEnabled(); - virtual void didBeginEditing(); - virtual void didChangeSelection(bool isSelectionEmpty); - virtual void didChangeContents(); - virtual void didEndEditing(); - virtual bool handleCurrentKeyboardEvent(); - virtual void spellCheck(const WebKit::WebString&, int& offset, int& length); - virtual WebKit::WebString autoCorrectWord(const WebKit::WebString&); - virtual void runModalAlertDialog(WebKit::WebFrame*, const WebKit::WebString&); - virtual bool runModalConfirmDialog(WebKit::WebFrame*, const WebKit::WebString&); - virtual bool runModalPromptDialog(WebKit::WebFrame*, const WebKit::WebString& message, const WebKit::WebString& defaultValue, WebKit::WebString* actualValue); - virtual bool runModalBeforeUnloadDialog(WebKit::WebFrame*, const WebKit::WebString&); - virtual void showContextMenu(WebKit::WebFrame*, const WebKit::WebContextMenuData&); - virtual void setStatusText(const WebKit::WebString&); - virtual void startDragging(const WebKit::WebDragData&, WebKit::WebDragOperationsMask, const WebKit::WebImage&, const WebKit::WebPoint&); - virtual void navigateBackForwardSoon(int offset); - virtual int historyBackListCount(); - virtual int historyForwardListCount(); - virtual void focusAccessibilityObject(const WebKit::WebAccessibilityObject&); - virtual WebKit::WebNotificationPresenter* notificationPresenter(); - virtual WebKit::WebGeolocationService* geolocationService(); - - // WebKit::WebWidgetClient - virtual void didInvalidateRect(const WebKit::WebRect&); - virtual void didScrollRect(int dx, int dy, const WebKit::WebRect&); - virtual void didFocus(); - virtual void didBlur(); - virtual void didChangeCursor(const WebKit::WebCursorInfo&); - virtual void closeWidgetSoon(); - virtual void show(WebKit::WebNavigationPolicy); - virtual void runModal(); - virtual WebKit::WebRect windowRect(); - virtual void setWindowRect(const WebKit::WebRect&); - virtual WebKit::WebRect rootWindowRect(); - virtual WebKit::WebRect windowResizerRect(); - virtual WebKit::WebScreenInfo screenInfo(); - - // WebKit::WebFrameClient - virtual WebKit::WebPlugin* createPlugin(WebKit::WebFrame*, const WebKit::WebPluginParams&); - virtual WebKit::WebWorker* createWorker(WebKit::WebFrame*, WebKit::WebWorkerClient*); - virtual WebKit::WebMediaPlayer* createMediaPlayer(WebKit::WebFrame*, WebKit::WebMediaPlayerClient*); - virtual WebKit::WebApplicationCacheHost* createApplicationCacheHost(WebKit::WebFrame*, WebKit::WebApplicationCacheHostClient*); - virtual bool allowPlugins(WebKit::WebFrame*, bool enabledPerSettings); - virtual bool allowImages(WebKit::WebFrame*, bool enabledPerSettings); - virtual void loadURLExternally(WebKit::WebFrame*, const WebKit::WebURLRequest&, WebKit::WebNavigationPolicy); - virtual WebKit::WebNavigationPolicy decidePolicyForNavigation( - WebKit::WebFrame*, const WebKit::WebURLRequest&, - WebKit::WebNavigationType, const WebKit::WebNode&, - WebKit::WebNavigationPolicy, bool isRedirect); - virtual bool canHandleRequest(WebKit::WebFrame*, const WebKit::WebURLRequest&); - virtual WebKit::WebURLError cannotHandleRequestError(WebKit::WebFrame*, const WebKit::WebURLRequest&); - virtual WebKit::WebURLError cancelledError(WebKit::WebFrame*, const WebKit::WebURLRequest&); - virtual void unableToImplementPolicyWithError(WebKit::WebFrame*, const WebKit::WebURLError&); - virtual void willPerformClientRedirect( - WebKit::WebFrame*, const WebKit::WebURL& from, const WebKit::WebURL& to, - double interval, double fireTime); - virtual void didCancelClientRedirect(WebKit::WebFrame*); - virtual void didCreateDataSource(WebKit::WebFrame*, WebKit::WebDataSource*); - virtual void didStartProvisionalLoad(WebKit::WebFrame*); - virtual void didReceiveServerRedirectForProvisionalLoad(WebKit::WebFrame*); - virtual void didFailProvisionalLoad(WebKit::WebFrame*, const WebKit::WebURLError&); - virtual void didCommitProvisionalLoad(WebKit::WebFrame*, bool isNewNavigation); - virtual void didClearWindowObject(WebKit::WebFrame*); - virtual void didReceiveTitle(WebKit::WebFrame*, const WebKit::WebString&); - virtual void didFinishDocumentLoad(WebKit::WebFrame*); - virtual void didHandleOnloadEvents(WebKit::WebFrame*); - virtual void didFailLoad(WebKit::WebFrame*, const WebKit::WebURLError&); - virtual void didFinishLoad(WebKit::WebFrame*); - virtual void didNavigateWithinPage(WebKit::WebFrame*, bool isNewNavigation); - virtual void didChangeLocationWithinPage(WebKit::WebFrame*); - virtual void assignIdentifierToRequest(WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLRequest&); - virtual void willSendRequest(WebKit::WebFrame*, unsigned identifier, WebKit::WebURLRequest&, const WebKit::WebURLResponse&); - virtual void didReceiveResponse(WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLResponse&); - virtual void didFinishResourceLoad(WebKit::WebFrame*, unsigned identifier); - virtual void didFailResourceLoad(WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLError&); - virtual void didDisplayInsecureContent(WebKit::WebFrame*); - virtual void didRunInsecureContent(WebKit::WebFrame*, const WebKit::WebSecurityOrigin&); - virtual bool allowScript(WebKit::WebFrame*, bool enabledPerSettings); - -private: - LayoutTestController* layoutTestController() const; - - // Called the title of the page changes. - // Can be used to update the title of the window. - void setPageTitle(const WebKit::WebString&); - - // Called when the URL of the page changes. - // Extracts the URL and forwards on to SetAddressBarURL(). - void updateAddressBar(WebKit::WebView*); - - // Called when the URL of the page changes. - // Should be used to update the text of the URL bar. - void setAddressBarURL(const WebKit::WebURL&); - - // In the Mac code, this is called to trigger the end of a test after the - // page has finished loading. From here, we can generate the dump for the - // test. - void locationChangeDone(WebKit::WebFrame*); - - void updateForCommittedLoad(WebKit::WebFrame*, bool isNewNavigation); - void updateURL(WebKit::WebFrame*); - void updateSessionHistory(WebKit::WebFrame*); - - // Dumping a frame to the console. - void printFrameDescription(WebKit::WebFrame*); - - bool hasWindow() const { return m_hasWindow; } - void resetScrollRect(); - void discardBackingStore(); - - // Causes navigation actions just printout the intended navigation instead - // of taking you to the page. This is used for cases like mailto, where you - // don't actually want to open the mail program. - bool m_policyDelegateEnabled; - - // Toggles the behavior of the policy delegate. If true, then navigations - // will be allowed. Otherwise, they will be ignored (dropped). - bool m_policyDelegateIsPermissive; - - // If true, the policy delegate will signal layout test completion. - bool m_policyDelegateShouldNotifyDone; - - // Non-owning pointer. The WebViewHost instance is owned by this TestShell instance. - TestShell* m_shell; - - // This delegate works for the following widget. - WebKit::WebWidget* m_webWidget; - - // This is non-0 IFF a load is in progress. - WebKit::WebFrame* m_topLoadingFrame; - - // For tracking session history. See RenderView. - int m_pageId; - int m_lastPageIdUpdated; - - OwnPtr m_pendingExtraData; - - // Maps resource identifiers to a descriptive string. - typedef HashMap ResourceMap; - ResourceMap m_resourceIdentifierMap; - void printResourceDescription(unsigned identifier); - - WebKit::WebCursorInfo m_currentCursor; - - bool m_hasWindow; - WebKit::WebRect m_windowRect; - - // true if we want to enable smart insert/delete. - bool m_smartInsertDeleteEnabled; - - // true if we want to enable selection of trailing whitespaces - bool m_selectTrailingWhitespaceEnabled; - - // Set of headers to clear in willSendRequest. - HashSet m_clearHeaders; - - // true if we should block any redirects - bool m_blocksRedirects; - - // true if we should block (set an empty request for) any requests - bool m_requestReturnNull; - - // Edit command associated to the current keyboard event. - std::string m_editCommandName; - std::string m_editCommandValue; - - // The mock spellchecker used in spellCheck(). - MockSpellCheck m_spellcheck; - - // Painting. - OwnPtr m_canvas; - WebKit::WebRect m_paintRect; - bool m_isPainting; - - // Geolocation - OwnPtr m_geolocationServiceMock; - - OwnPtr m_navigationController; -}; - -#endif // WebViewHost_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/config.h --- a/WebKitTools/DumpRenderTree/chromium/config.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -/* - * Copyright (C) 2010 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef config_h -#define config_h - -// To avoid confict of LOG in wtf/Assertions.h and LOG in base/logging.h, -// skip base/loggin.h by defining BASE_LOGGING_H_ and define some macros -// provided by base/logging.h. -// FIXME: Remove this hack! -#include -#define BASE_LOGGING_H_ -#define CHECK(condition) while (false && (condition)) std::cerr -#define DCHECK(condition) while (false && (condition)) std::cerr -#define DCHECK_EQ(a, b) while (false && (a) == (b)) std::cerr -#define DCHECK_NE(a, b) while (false && (a) != (b)) std::cerr - -#include - -#if OS(WINDOWS) && !COMPILER(GCC) -// Allow 'this' to be used in base member initializer list. -#pragma warning(disable : 4355) -// JS_EXPORTDATA is needed to inlucde wtf/WTFString.h. -#define JS_EXPORTDATA __declspec(dllimport) -#else -#define JS_EXPORTDATA -#endif - -#endif // config_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/chromium/fonts.conf --- a/WebKitTools/DumpRenderTree/chromium/fonts.conf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,155 +0,0 @@ - - - - - - - Times - - - Times New Roman - - - - - - sans - - - Arial - - - - - - sans serif - - - Arial - - - - - - - Helvetica - - - Arial - - - - - - sans-serif - - - Arial - - - - - - serif - - - Times New Roman - - - - - - mono - - - Courier New - - - - - - monospace - - - Courier New - - - - - - Courier - - - Courier New - - - - - - cursive - - - Comic Sans MS - - - - - - fantasy - - - Impact - - - - - - Monaco - - - Times New Roman - - - - - - NonAntiAliasedSans - - - Arial - - - false - - - - - - SlightHintedGeorgia - - - Georgia - - - hintslight - - - - - - NonHintedSans - - - Verdana - - - - hintfull - - - false - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/config.h --- a/WebKitTools/DumpRenderTree/config.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,68 +0,0 @@ -/* - * Copyright (C) 2008 Nuanti Ltd. - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - * - */ - -#define Config_H - -#if defined(HAVE_CONFIG_H) && HAVE_CONFIG_H -#include "autotoolsconfig.h" -#endif - -#include - -#ifdef __cplusplus -#undef new -#undef delete -#include -#endif - -#if OS(WINDOWS) && !COMPILER(GCC) -#define JS_EXPORTDATA __declspec(dllimport) -#define WEBKIT_EXPORTDATA __declspec(dllimport) -#else -#define JS_EXPORTDATA -#define WEBKIT_EXPORTDATA -#endif - -#if PLATFORM(WIN) -#define WTF_PLATFORM_CF 1 -#if defined(WIN_CAIRO) -#define WTF_PLATFORM_CAIRO 1 -#define WTF_USE_CURL 1 -#else -#define WTF_PLATFORM_CG 1 -#define WTF_USE_CFNETWORK 1 -#endif - -#undef _WIN32_WINNT -#define _WIN32_WINNT 0x0500 - -#undef WINVER -#define WINVER 0x0500 - -// If we don't define these, they get defined in windef.h. -// We want to use std::min and std::max -#undef max -#define max max -#undef min -#define min min - -#undef _WINSOCKAPI_ -#define _WINSOCKAPI_ // Prevent inclusion of winsock.h in windows.h -#endif // PLATFORM(WIN) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/ColorBits-A.png Binary file WebKitTools/DumpRenderTree/fonts/ColorBits-A.png has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/ColorBits.ttf Binary file WebKitTools/DumpRenderTree/fonts/ColorBits.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher100.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher100.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher200.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher200.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher300.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher300.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher400.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher400.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher500.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher500.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher600.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher600.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher700.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher700.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher800.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher800.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher900.ttf Binary file WebKitTools/DumpRenderTree/fonts/WebKitWeightWatcher900.ttf has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/AccessibilityControllerGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,93 +0,0 @@ -/* - * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. - * Copyright (C) 2009 Jan Michael Alonzo - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityController.h" - -#include "AccessibilityUIElement.h" -#include "DumpRenderTree.h" - -#include -#include -#include - -extern "C" { -extern AtkObject* webkit_web_frame_get_focused_accessible_element(WebKitWebFrame*); -} - -AccessibilityController::AccessibilityController() -{ -} - -AccessibilityController::~AccessibilityController() -{ -} - -AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y) -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityController::focusedElement() -{ - AtkObject* accessible = webkit_web_frame_get_focused_accessible_element(mainFrame); - if (!accessible) - return 0; - - return AccessibilityUIElement(accessible); -} - -AccessibilityUIElement AccessibilityController::rootElement() -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - - // The presumed, desired rootElement is the parent of the web view. - GtkWidget* webViewParent = gtk_widget_get_parent(GTK_WIDGET(view)); - AtkObject* axObject = gtk_widget_get_accessible(webViewParent); - - return AccessibilityUIElement(axObject); -} - -void AccessibilityController::setLogFocusEvents(bool) -{ -} - -void AccessibilityController::setLogScrollingStartEvents(bool) -{ -} - -void AccessibilityController::setLogValueChangeEvents(bool) -{ -} - -void AccessibilityController::addNotificationListener(PlatformUIElement, JSObjectRef) -{ -} - -void AccessibilityController::notificationReceived(PlatformUIElement, const std::string&) -{ -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/AccessibilityUIElementGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,682 +0,0 @@ -/* - * Copyright (C) 2008 Apple Inc. All Rights Reserved. - * Copyright (C) 2009 Jan Michael Alonzo - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityUIElement.h" -#include "GOwnPtr.h" -#include "GRefPtr.h" - -#include -#include - -#include -#include - - -AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element) - : m_element(element) -{ -} - -AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other) - : m_element(other.m_element) -{ -} - -AccessibilityUIElement::~AccessibilityUIElement() -{ -} - -void AccessibilityUIElement::getLinkedUIElements(Vector& elements) -{ - // FIXME: implement -} - -void AccessibilityUIElement::getDocumentLinks(Vector&) -{ - // FIXME: implement -} - -void AccessibilityUIElement::getChildren(Vector& children) -{ - int count = childrenCount(); - for (int i = 0; i < count; i++) { - AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i); - children.append(AccessibilityUIElement(child)); - } -} - -void AccessibilityUIElement::getChildrenWithRange(Vector& elementVector, unsigned start, unsigned end) -{ - for (unsigned i = start; i < end; i++) { - AtkObject* child = atk_object_ref_accessible_child(ATK_OBJECT(m_element), i); - elementVector.append(AccessibilityUIElement(child)); - } -} - -int AccessibilityUIElement::rowCount() -{ - if (!m_element) - return 0; - - ASSERT(ATK_IS_TABLE(m_element)); - - return atk_table_get_n_rows(ATK_TABLE(m_element)); -} - -int AccessibilityUIElement::columnCount() -{ - if (!m_element) - return 0; - - ASSERT(ATK_IS_TABLE(m_element)); - - return atk_table_get_n_columns(ATK_TABLE(m_element)); -} - -int AccessibilityUIElement::childrenCount() -{ - if (!m_element) - return 0; - - ASSERT(ATK_IS_OBJECT(m_element)); - - return atk_object_get_n_accessible_children(ATK_OBJECT(m_element)); -} - -AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y) -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index) -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index) -{ - Vector children; - getChildrenWithRange(children, index, index + 1); - - if (children.size() == 1) - return children.at(0); - - return 0; -} - -unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element) -{ - // FIXME: implement - return 0; -} - -gchar* attributeSetToString(AtkAttributeSet* attributeSet) -{ - GString* str = g_string_new(0); - for (GSList* attributes = attributeSet; attributes; attributes = attributes->next) { - AtkAttribute* attribute = static_cast(attributes->data); - g_string_append(str, g_strconcat(attribute->name, ":", attribute->value, NULL)); - if (attributes->next) - g_string_append(str, ", "); - } - - return g_string_free(str, FALSE); -} - -JSStringRef AccessibilityUIElement::allAttributes() -{ - return JSStringCreateWithUTF8CString(attributeSetToString(atk_object_get_attributes(ATK_OBJECT(m_element)))); -} - -JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfDocumentLinks() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -AccessibilityUIElement AccessibilityUIElement::titleUIElement() -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::parentElement() -{ - ASSERT(m_element); - AtkObject* parent = atk_object_get_parent(ATK_OBJECT(m_element)); - - return parent ? AccessibilityUIElement(parent) : 0; -} - -JSStringRef AccessibilityUIElement::attributesOfChildren() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::parameterizedAttributeNames() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::role() -{ - AtkRole role = atk_object_get_role(ATK_OBJECT(m_element)); - - if (!role) - return JSStringCreateWithCharacters(0, 0); - - const gchar* roleName = atk_role_get_name(role); - GOwnPtr axRole(g_strdup_printf("AXRole: %s", roleName)); - - return JSStringCreateWithUTF8CString(axRole.get()); -} - -JSStringRef AccessibilityUIElement::subrole() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::roleDescription() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::title() -{ - const gchar* name = atk_object_get_name(ATK_OBJECT(m_element)); - - if (!name) - return JSStringCreateWithCharacters(0, 0); - - GOwnPtr axTitle(g_strdup_printf("AXTitle: %s", name)); - - return JSStringCreateWithUTF8CString(axTitle.get()); -} - -JSStringRef AccessibilityUIElement::description() -{ - const gchar* description = atk_object_get_description(ATK_OBJECT(m_element)); - - if (!description) - return JSStringCreateWithCharacters(0, 0); - - GOwnPtr axDesc(g_strdup_printf("AXDescription: %s", description)); - - return JSStringCreateWithUTF8CString(axDesc.get()); -} - -JSStringRef AccessibilityUIElement::stringValue() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::language() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::helpText() const -{ - return 0; -} - -double AccessibilityUIElement::x() -{ - int x, y; - - atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN); - - return x; -} - -double AccessibilityUIElement::y() -{ - int x, y; - - atk_component_get_position(ATK_COMPONENT(m_element), &x, &y, ATK_XY_SCREEN); - - return y; -} - -double AccessibilityUIElement::width() -{ - int width, height; - - atk_component_get_size(ATK_COMPONENT(m_element), &width, &height); - - return width; -} - -double AccessibilityUIElement::height() -{ - int width, height; - - atk_component_get_size(ATK_COMPONENT(m_element), &width, &height); - - return height; -} - -double AccessibilityUIElement::clickPointX() -{ - return 0.f; -} - -double AccessibilityUIElement::clickPointY() -{ - return 0.f; -} - -JSStringRef AccessibilityUIElement::orientation() const -{ - return 0; -} - -double AccessibilityUIElement::intValue() const -{ - GValue value = { 0, { { 0 } } }; - - if (!ATK_IS_VALUE(m_element)) - return 0.0f; - - atk_value_get_current_value(ATK_VALUE(m_element), &value); - - if (G_VALUE_HOLDS_DOUBLE(&value)) - return g_value_get_double(&value); - else if (G_VALUE_HOLDS_INT(&value)) - return static_cast(g_value_get_int(&value)); - else - return 0.0f; -} - -double AccessibilityUIElement::minValue() -{ - GValue value = { 0, { { 0 } } }; - - if (!ATK_IS_VALUE(m_element)) - return 0.0f; - - atk_value_get_minimum_value(ATK_VALUE(m_element), &value); - - if (G_VALUE_HOLDS_DOUBLE(&value)) - return g_value_get_double(&value); - else if (G_VALUE_HOLDS_INT(&value)) - return static_cast(g_value_get_int(&value)); - else - return 0.0f; -} - -double AccessibilityUIElement::maxValue() -{ - GValue value = { 0, { { 0 } } }; - - if (!ATK_IS_VALUE(m_element)) - return 0.0f; - - atk_value_get_maximum_value(ATK_VALUE(m_element), &value); - - if (G_VALUE_HOLDS_DOUBLE(&value)) - return g_value_get_double(&value); - else if (G_VALUE_HOLDS_INT(&value)) - return static_cast(g_value_get_int(&value)); - else - return 0.0f; -} - -JSStringRef AccessibilityUIElement::valueDescription() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -bool AccessibilityUIElement::isEnabled() -{ - // FIXME: implement - return false; -} - - -int AccessibilityUIElement::insertionPointLineNumber() -{ - // FIXME: implement - return 0; -} - -bool AccessibilityUIElement::isActionSupported(JSStringRef action) -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isRequired() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isSelected() const -{ - if (!ATK_IS_OBJECT(m_element)) - return false; - - GRefPtr stateSet = adoptGRef(atk_object_ref_state_set(ATK_OBJECT(m_element))); - gboolean isSelected = atk_state_set_contains_state(stateSet.get(), ATK_STATE_SELECTED); - - return isSelected; -} - -int AccessibilityUIElement::hierarchicalLevel() const -{ - // FIXME: implement - return 0; -} - -bool AccessibilityUIElement::ariaIsGrabbed() const -{ - return false; -} - -JSStringRef AccessibilityUIElement::ariaDropEffects() const -{ - return 0; -} - -bool AccessibilityUIElement::isExpanded() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isChecked() const -{ - return intValue(); -} - -JSStringRef AccessibilityUIElement::attributesOfColumnHeaders() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfRowHeaders() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfColumns() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfRows() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfVisibleCells() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfHeader() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -int AccessibilityUIElement::indexInTable() -{ - // FIXME: implement - return 0; -} - -JSStringRef AccessibilityUIElement::rowIndexRange() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::columnIndexRange() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -int AccessibilityUIElement::lineForIndex(int) -{ - // FIXME: implement - return 0; -} - -JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length) -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::stringForRange(unsigned, unsigned) -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned column, unsigned row) -{ - // FIXME: implement - return 0; -} - -JSStringRef AccessibilityUIElement::selectedTextRange() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length) -{ - // FIXME: implement -} - -JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute) -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute) -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute) -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute) -{ - return false; -} - -void AccessibilityUIElement::increment() -{ - // FIXME: implement -} - -void AccessibilityUIElement::decrement() -{ - // FIXME: implement -} - -void AccessibilityUIElement::press() -{ - // FIXME: implement -} - -void AccessibilityUIElement::showMenu() -{ - // FIXME: implement -} - -AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::disclosedByRow() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::accessibilityValue() const -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::documentEncoding() -{ - AtkRole role = atk_object_get_role(ATK_OBJECT(m_element)); - if (role != ATK_ROLE_DOCUMENT_FRAME) - return JSStringCreateWithCharacters(0, 0); - - return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "Encoding")); -} - -JSStringRef AccessibilityUIElement::documentURI() -{ - AtkRole role = atk_object_get_role(ATK_OBJECT(m_element)); - if (role != ATK_ROLE_DOCUMENT_FRAME) - return JSStringCreateWithCharacters(0, 0); - - return JSStringCreateWithUTF8CString(atk_document_get_attribute_value(ATK_DOCUMENT(m_element), "URI")); -} - -JSStringRef AccessibilityUIElement::url() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback) -{ - // FIXME: implement - return false; -} - -void AccessibilityUIElement::removeNotificationListener() -{ - // FIXME: implement -} - -bool AccessibilityUIElement::isSelectable() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isMultiSelectable() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isVisible() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isOffScreen() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isCollapsed() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::hasPopup() const -{ - // FIXME: implement - return false; -} - -void AccessibilityUIElement::takeFocus() -{ - // FIXME: implement -} - -void AccessibilityUIElement::takeSelection() -{ - // FIXME: implement -} - -void AccessibilityUIElement::addSelection() -{ - // FIXME: implement -} - -void AccessibilityUIElement::removeSelection() -{ - // FIXME: implement -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp --- a/WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1007 +0,0 @@ -/* - * Copyright (C) 2007 Eric Seidel - * Copyright (C) 2008 Alp Toker - * Copyright (C) 2009 Jan Alonzo - * Copyright (C) 2010 Igalia S.L. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DumpRenderTree.h" - -#include "AccessibilityController.h" -#include "EventSender.h" -#include "GCController.h" -#include "LayoutTestController.h" -#include "PixelDumpSupport.h" -#include "WorkQueue.h" -#include "WorkQueueItem.h" -#include -#include -#include -#include -#include -#include -#include -#include - -#if PLATFORM(X11) -#include -#endif - - -using namespace std; - -extern "C" { -// This API is not yet public. -extern G_CONST_RETURN gchar* webkit_web_history_item_get_target(WebKitWebHistoryItem*); -extern gboolean webkit_web_history_item_is_target_item(WebKitWebHistoryItem*); -extern GList* webkit_web_history_item_get_children(WebKitWebHistoryItem*); -extern GSList* webkit_web_frame_get_children(WebKitWebFrame* frame); -extern gchar* webkit_web_frame_get_inner_text(WebKitWebFrame* frame); -extern gchar* webkit_web_frame_dump_render_tree(WebKitWebFrame* frame); -extern guint webkit_web_frame_get_pending_unload_event_count(WebKitWebFrame* frame); -extern void webkit_web_settings_add_extra_plugin_directory(WebKitWebView* view, const gchar* directory); -extern gchar* webkit_web_frame_get_response_mime_type(WebKitWebFrame* frame); -extern void webkit_web_frame_clear_main_frame_name(WebKitWebFrame* frame); -extern void webkit_web_view_set_group_name(WebKitWebView* view, const gchar* groupName); -extern void webkit_reset_origin_access_white_lists(); -} - -volatile bool done; -static bool printSeparators; -static int dumpPixels; -static int dumpTree = 1; - -AccessibilityController* axController = 0; -RefPtr gLayoutTestController; -static GCController* gcController = 0; -static WebKitWebView* webView; -static GtkWidget* window; -static GtkWidget* container; -static GtkWidget* webInspectorWindow; -WebKitWebFrame* mainFrame = 0; -WebKitWebFrame* topLoadingFrame = 0; -guint waitToDumpWatchdog = 0; -bool waitForPolicy = false; - -// This is a list of opened webviews -GSList* webViewList = 0; - -// current b/f item at the end of the previous test -static WebKitWebHistoryItem* prevTestBFItem = NULL; - -const unsigned historyItemIndent = 8; - -static bool shouldLogFrameLoadDelegates(const string& pathOrURL) -{ - return pathOrURL.find("loading/") != string::npos; -} - -static bool shouldOpenWebInspector(const string& pathOrURL) -{ - return pathOrURL.find("inspector/") != string::npos; -} - -static bool shouldEnableDeveloperExtras(const string& pathOrURL) -{ - return shouldOpenWebInspector(pathOrURL) || pathOrURL.find("inspector-enabled/") != string::npos; -} - -void dumpFrameScrollPosition(WebKitWebFrame* frame) -{ - -} - -void displayWebView() -{ - gtk_widget_queue_draw(GTK_WIDGET(webView)); -} - -static void appendString(gchar*& target, gchar* string) -{ - gchar* oldString = target; - target = g_strconcat(target, string, NULL); - g_free(oldString); -} - -#if PLATFORM(X11) -static void initializeFonts() -{ - static int numFonts = -1; - - // Some tests may add or remove fonts via the @font-face rule. - // If that happens, font config should be re-created to suppress any unwanted change. - FcFontSet* appFontSet = FcConfigGetFonts(0, FcSetApplication); - if (appFontSet && numFonts >= 0 && appFontSet->nfont == numFonts) - return; - - const char* fontDirEnv = g_getenv("WEBKIT_TESTFONTS"); - if (!fontDirEnv) - g_error("WEBKIT_TESTFONTS environment variable is not set, but it should point to the directory " - "containing the fonts you can clone from git://gitorious.org/qtwebkit/testfonts.git\n"); - - GFile* fontDir = g_file_new_for_path(fontDirEnv); - if (!fontDir || !g_file_query_exists(fontDir, NULL)) - g_error("WEBKIT_TESTFONTS environment variable is not set correctly - it should point to the directory " - "containing the fonts you can clone from git://gitorious.org/qtwebkit/testfonts.git\n"); - - FcConfig *config = FcConfigCreate(); - if (!FcConfigParseAndLoad (config, (FcChar8*) FONTS_CONF_FILE, true)) - g_error("Couldn't load font configuration file"); - if (!FcConfigAppFontAddDir (config, (FcChar8*) g_file_get_path(fontDir))) - g_error("Couldn't add font dir!"); - FcConfigSetCurrent(config); - - g_object_unref(fontDir); - - appFontSet = FcConfigGetFonts(config, FcSetApplication); - numFonts = appFontSet->nfont; -} -#endif - -static gchar* dumpFramesAsText(WebKitWebFrame* frame) -{ - gchar* result = 0; - - // Add header for all but the main frame. - bool isMainFrame = (webkit_web_view_get_main_frame(webView) == frame); - - gchar* innerText = webkit_web_frame_get_inner_text(frame); - if (isMainFrame) - result = g_strdup_printf("%s\n", innerText); - else { - const gchar* frameName = webkit_web_frame_get_name(frame); - result = g_strdup_printf("\n--------\nFrame: '%s'\n--------\n%s\n", frameName, innerText); - } - g_free(innerText); - - if (gLayoutTestController->dumpChildFramesAsText()) { - GSList* children = webkit_web_frame_get_children(frame); - for (GSList* child = children; child; child = g_slist_next(child)) - appendString(result, dumpFramesAsText(static_cast(child->data))); - g_slist_free(children); - } - - return result; -} - -static gint compareHistoryItems(gpointer* item1, gpointer* item2) -{ - return g_ascii_strcasecmp(webkit_web_history_item_get_target(WEBKIT_WEB_HISTORY_ITEM(item1)), - webkit_web_history_item_get_target(WEBKIT_WEB_HISTORY_ITEM(item2))); -} - -static void dumpHistoryItem(WebKitWebHistoryItem* item, int indent, bool current) -{ - ASSERT(item != NULL); - int start = 0; - g_object_ref(item); - if (current) { - printf("curr->"); - start = 6; - } - for (int i = start; i < indent; i++) - putchar(' '); - - // normalize file URLs. - const gchar* uri = webkit_web_history_item_get_uri(item); - gchar* uriScheme = g_uri_parse_scheme(uri); - if (g_strcmp0(uriScheme, "file") == 0) { - gchar* pos = g_strstr_len(uri, -1, "/LayoutTests/"); - if (!pos) - return; - - GString* result = g_string_sized_new(strlen(uri)); - result = g_string_append(result, "(file test):"); - result = g_string_append(result, pos + strlen("/LayoutTests/")); - printf("%s", result->str); - g_string_free(result, TRUE); - } else - printf("%s", uri); - - g_free(uriScheme); - - const gchar* target = webkit_web_history_item_get_target(item); - if (target && strlen(target) > 0) - printf(" (in frame \"%s\")", target); - if (webkit_web_history_item_is_target_item(item)) - printf(" **nav target**"); - putchar('\n'); - GList* kids = webkit_web_history_item_get_children(item); - if (kids) { - // must sort to eliminate arbitrary result ordering which defeats reproducible testing - kids = g_list_sort(kids, (GCompareFunc) compareHistoryItems); - for (unsigned i = 0; i < g_list_length(kids); i++) - dumpHistoryItem(WEBKIT_WEB_HISTORY_ITEM(g_list_nth_data(kids, i)), indent+4, FALSE); - } - g_object_unref(item); -} - -static void dumpBackForwardListForWebView(WebKitWebView* view) -{ - printf("\n============== Back Forward List ==============\n"); - WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(view); - - // Print out all items in the list after prevTestBFItem, which was from the previous test - // Gather items from the end of the list, the print them out from oldest to newest - GList* itemsToPrint = NULL; - gint forwardListCount = webkit_web_back_forward_list_get_forward_length(bfList); - for (int i = forwardListCount; i > 0; i--) { - WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i); - // something is wrong if the item from the last test is in the forward part of the b/f list - ASSERT(item != prevTestBFItem); - g_object_ref(item); - itemsToPrint = g_list_append(itemsToPrint, item); - } - - WebKitWebHistoryItem* currentItem = webkit_web_back_forward_list_get_current_item(bfList); - - g_object_ref(currentItem); - itemsToPrint = g_list_append(itemsToPrint, currentItem); - - gint currentItemIndex = g_list_length(itemsToPrint) - 1; - gint backListCount = webkit_web_back_forward_list_get_back_length(bfList); - for (int i = -1; i >= -(backListCount); i--) { - WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(bfList, i); - if (item == prevTestBFItem) - break; - g_object_ref(item); - itemsToPrint = g_list_append(itemsToPrint, item); - } - - for (int i = g_list_length(itemsToPrint) - 1; i >= 0; i--) { - WebKitWebHistoryItem* item = WEBKIT_WEB_HISTORY_ITEM(g_list_nth_data(itemsToPrint, i)); - dumpHistoryItem(item, historyItemIndent, i == currentItemIndex); - g_object_unref(item); - } - g_list_free(itemsToPrint); - printf("===============================================\n"); -} - -static void dumpBackForwardListForAllWebViews() -{ - // Dump the back forward list of the main WebView first - dumpBackForwardListForWebView(webView); - - // The view list is prepended. Reverse the list so we get the order right. - GSList* viewList = g_slist_reverse(webViewList); - for (unsigned i = 0; i < g_slist_length(viewList); ++i) - dumpBackForwardListForWebView(WEBKIT_WEB_VIEW(g_slist_nth_data(viewList, i))); -} - -static void invalidateAnyPreviousWaitToDumpWatchdog() -{ - if (waitToDumpWatchdog) { - g_source_remove(waitToDumpWatchdog); - waitToDumpWatchdog = 0; - } - - waitForPolicy = false; -} - -static void resetDefaultsToConsistentValues() -{ - WebKitWebSettings* settings = webkit_web_view_get_settings(webView); - g_object_set(G_OBJECT(settings), - "enable-private-browsing", FALSE, - "enable-developer-extras", FALSE, - "enable-spell-checking", TRUE, - "enable-html5-database", TRUE, - "enable-html5-local-storage", TRUE, - "enable-xss-auditor", FALSE, - "enable-spatial-navigation", FALSE, - "javascript-can-access-clipboard", TRUE, - "javascript-can-open-windows-automatically", TRUE, - "enable-offline-web-application-cache", TRUE, - "enable-universal-access-from-file-uris", TRUE, - "enable-scripts", TRUE, - "enable-dom-paste", TRUE, - "default-font-family", "Times", - "monospace-font-family", "Courier", - "serif-font-family", "Times", - "sans-serif-font-family", "Helvetica", - "default-font-size", 16, - "default-monospace-font-size", 13, - "minimum-font-size", 1, - "enable-caret-browsing", FALSE, - "enable-page-cache", FALSE, - "auto-resize-window", TRUE, - "enable-java-applet", FALSE, - "enable-plugins", TRUE, - "editing-behavior", WEBKIT_EDITING_BEHAVIOR_MAC, - NULL); - - webkit_web_frame_clear_main_frame_name(mainFrame); - - WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); - g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", FALSE, NULL); - - webkit_web_view_set_zoom_level(webView, 1.0); - - webkit_reset_origin_access_white_lists(); - -#ifdef HAVE_LIBSOUP_2_29_90 - SoupSession* session = webkit_get_default_session(); - SoupCookieJar* jar = reinterpret_cast(soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR)); - - // We only create the jar when the soup backend needs to do - // HTTP. Should we initialize it earlier, perhaps? - if (jar) - g_object_set(G_OBJECT(jar), SOUP_COOKIE_JAR_ACCEPT_POLICY, SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY, NULL); -#endif - - setlocale(LC_ALL, ""); -} - -void dump() -{ - invalidateAnyPreviousWaitToDumpWatchdog(); - - bool dumpAsText = gLayoutTestController->dumpAsText(); - if (dumpTree) { - char* result = 0; - gchar* responseMimeType = webkit_web_frame_get_response_mime_type(mainFrame); - - dumpAsText = g_str_equal(responseMimeType, "text/plain"); - g_free(responseMimeType); - - // Test can request controller to be dumped as text even - // while test's response mime type is not text/plain. - // Overriding this behavior with dumpAsText being false is a bad idea. - if (dumpAsText) - gLayoutTestController->setDumpAsText(dumpAsText); - - if (gLayoutTestController->dumpAsText()) - result = dumpFramesAsText(mainFrame); - else { - // Widget resizing is done asynchronously in GTK+. We pump the main - // loop here, to flush any pending resize requests. This prevents - // timing issues which affect the size of elements in the output. - // We only enable this workaround for tests that print the render tree - // because this seems to break some dumpAsText tests: see bug 39988 - // After fixing that test, we should apply this approach to all dumps. - while (gtk_events_pending()) - gtk_main_iteration(); - - result = webkit_web_frame_dump_render_tree(mainFrame); - } - - if (!result) { - const char* errorMessage; - if (gLayoutTestController->dumpAsText()) - errorMessage = "[documentElement innerText]"; - else if (gLayoutTestController->dumpDOMAsWebArchive()) - errorMessage = "[[mainFrame DOMDocument] webArchive]"; - else if (gLayoutTestController->dumpSourceAsWebArchive()) - errorMessage = "[[mainFrame dataSource] webArchive]"; - else - errorMessage = "[mainFrame renderTreeAsExternalRepresentation]"; - printf("ERROR: nil result from %s", errorMessage); - } else { - printf("%s", result); - g_free(result); - if (!gLayoutTestController->dumpAsText() && !gLayoutTestController->dumpDOMAsWebArchive() && !gLayoutTestController->dumpSourceAsWebArchive()) - dumpFrameScrollPosition(mainFrame); - - if (gLayoutTestController->dumpBackForwardList()) - dumpBackForwardListForAllWebViews(); - } - - if (printSeparators) { - puts("#EOF"); // terminate the content block - fputs("#EOF\n", stderr); - fflush(stdout); - fflush(stderr); - } - } - - if (dumpPixels - && gLayoutTestController->generatePixelResults() - && !gLayoutTestController->dumpDOMAsWebArchive() - && !gLayoutTestController->dumpSourceAsWebArchive()) - dumpWebViewAsPixelsAndCompareWithExpected(gLayoutTestController->expectedPixelHash()); - - // FIXME: call displayWebView here when we support --paint - - done = true; - gtk_main_quit(); -} - -static void setDefaultsToConsistentStateValuesForTesting() -{ - gdk_screen_set_resolution(gdk_screen_get_default(), 72.0); - - resetDefaultsToConsistentValues(); - - /* Disable the default auth dialog for testing */ - SoupSession* session = webkit_get_default_session(); - soup_session_remove_feature_by_type(session, WEBKIT_TYPE_SOUP_AUTH_DIALOG); - -#if PLATFORM(X11) - webkit_web_settings_add_extra_plugin_directory(webView, TEST_PLUGIN_DIR); -#endif - - gchar* databaseDirectory = g_build_filename(g_get_user_data_dir(), "gtkwebkitdrt", "databases", NULL); - webkit_set_web_database_directory_path(databaseDirectory); - g_free(databaseDirectory); -} - -static void sendPixelResultsEOF() -{ - puts("#EOF"); - - fflush(stdout); - fflush(stderr); -} - -static void runTest(const string& testPathOrURL) -{ - ASSERT(!testPathOrURL.empty()); - - // Look for "'" as a separator between the path or URL, and the pixel dump hash that follows. - string testURL(testPathOrURL); - string expectedPixelHash; - size_t separatorPos = testURL.find("'"); - if (separatorPos != string::npos) { - testURL = string(testPathOrURL, 0, separatorPos); - expectedPixelHash = string(testPathOrURL, separatorPos + 1); - } - - // Convert the path into a full file URL if it does not look - // like an HTTP/S URL (doesn't start with http:// or https://). - if (testURL.find("http://") && testURL.find("https://")) { - GFile* testFile = g_file_new_for_path(testURL.c_str()); - gchar* testURLCString = g_file_get_uri(testFile); - testURL = testURLCString; - g_free(testURLCString); - g_object_unref(testFile); - } - - resetDefaultsToConsistentValues(); - - gLayoutTestController = LayoutTestController::create(testURL, expectedPixelHash); - topLoadingFrame = 0; - done = false; - - gLayoutTestController->setIconDatabaseEnabled(false); - - if (shouldLogFrameLoadDelegates(testURL)) - gLayoutTestController->setDumpFrameLoadCallbacks(true); - - if (shouldEnableDeveloperExtras(testURL)) { - gLayoutTestController->setDeveloperExtrasEnabled(true); - if (shouldOpenWebInspector(testURL)) - gLayoutTestController->showWebInspector(); - } - - WorkQueue::shared()->clear(); - WorkQueue::shared()->setFrozen(false); - - bool isSVGW3CTest = (testURL.find("svg/W3C-SVG-1.1") != string::npos); - GtkAllocation size; - size.x = size.y = 0; - size.width = isSVGW3CTest ? 480 : LayoutTestController::maxViewWidth; - size.height = isSVGW3CTest ? 360 : LayoutTestController::maxViewHeight; - gtk_window_resize(GTK_WINDOW(window), size.width, size.height); - gtk_widget_size_allocate(container, &size); - - if (prevTestBFItem) - g_object_unref(prevTestBFItem); - WebKitWebBackForwardList* bfList = webkit_web_view_get_back_forward_list(webView); - prevTestBFItem = webkit_web_back_forward_list_get_current_item(bfList); - if (prevTestBFItem) - g_object_ref(prevTestBFItem); - -#if PLATFORM(X11) - initializeFonts(); -#endif - - // Focus the web view before loading the test to avoid focusing problems - gtk_widget_grab_focus(GTK_WIDGET(webView)); - webkit_web_view_open(webView, testURL.c_str()); - - gtk_main(); - - // If developer extras enabled Web Inspector may have been open by the test. - if (shouldEnableDeveloperExtras(testURL)) { - gLayoutTestController->closeWebInspector(); - gLayoutTestController->setDeveloperExtrasEnabled(false); - } - - // Also check if we still have opened webViews and free them. - if (gLayoutTestController->closeRemainingWindowsWhenComplete() || webViewList) { - while (webViewList) { - g_object_unref(WEBKIT_WEB_VIEW(webViewList->data)); - webViewList = g_slist_next(webViewList); - } - g_slist_free(webViewList); - webViewList = 0; - } - - // A blank load seems to be necessary to reset state after certain tests. - webkit_web_view_open(webView, "about:blank"); - - gLayoutTestController.clear(); - - // terminate the (possibly empty) pixels block after all the state reset - sendPixelResultsEOF(); -} - -void webViewLoadStarted(WebKitWebView* view, WebKitWebFrame* frame, void*) -{ - // Make sure we only set this once per test. If it gets cleared, and then set again, we might - // end up doing two dumps for one test. - if (!topLoadingFrame && !done) - topLoadingFrame = frame; -} - -static gboolean processWork(void* data) -{ - // if we finish all the commands, we're ready to dump state - if (WorkQueue::shared()->processWork() && !gLayoutTestController->waitToDump()) - dump(); - - return FALSE; -} - -static char* getFrameNameSuitableForTestResult(WebKitWebView* view, WebKitWebFrame* frame) -{ - char* frameName = g_strdup(webkit_web_frame_get_name(frame)); - - if (frame == webkit_web_view_get_main_frame(view)) { - // This is a bit strange. Shouldn't web_frame_get_name return NULL? - if (frameName && (frameName[0] != '\0')) { - char* tmp = g_strdup_printf("main frame \"%s\"", frameName); - g_free(frameName); - frameName = tmp; - } else { - g_free(frameName); - frameName = g_strdup("main frame"); - } - } else if (!frameName || (frameName[0] == '\0')) { - g_free(frameName); - frameName = g_strdup("frame (anonymous)"); - } else { - char* tmp = g_strdup_printf("frame \"%s\"", frameName); - g_free(frameName); - frameName = tmp; - } - - return frameName; -} - -static void webViewLoadCommitted(WebKitWebView* view, WebKitWebFrame* frame, void*) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - char* frameName = getFrameNameSuitableForTestResult(view, frame); - printf("%s - didCommitLoadForFrame\n", frameName); - g_free(frameName); - } -} - - -static void webViewLoadFinished(WebKitWebView* view, WebKitWebFrame* frame, void*) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - char* frameName = getFrameNameSuitableForTestResult(view, frame); - printf("%s - didFinishLoadForFrame\n", frameName); - g_free(frameName); - } - - if (frame != topLoadingFrame) - return; - - topLoadingFrame = 0; - WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test - if (gLayoutTestController->waitToDump()) - return; - - if (WorkQueue::shared()->count()) - g_timeout_add(0, processWork, 0); - else - dump(); -} - -static void webViewDocumentLoadFinished(WebKitWebView* view, WebKitWebFrame* frame, void*) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - char* frameName = getFrameNameSuitableForTestResult(view, frame); - printf("%s - didFinishDocumentLoadForFrame\n", frameName); - g_free(frameName); - } else if (!done) { - guint pendingFrameUnloadEvents = webkit_web_frame_get_pending_unload_event_count(frame); - if (pendingFrameUnloadEvents) { - char* frameName = getFrameNameSuitableForTestResult(view, frame); - printf("%s - has %u onunload handler(s)\n", frameName, pendingFrameUnloadEvents); - g_free(frameName); - } - } -} - -static void webViewOnloadEvent(WebKitWebView* view, WebKitWebFrame* frame, void*) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - char* frameName = getFrameNameSuitableForTestResult(view, frame); - printf("%s - didHandleOnloadEventsForFrame\n", frameName); - g_free(frameName); - } -} - -static void webViewWindowObjectCleared(WebKitWebView* view, WebKitWebFrame* frame, JSGlobalContextRef context, JSObjectRef windowObject, gpointer data) -{ - JSValueRef exception = 0; - ASSERT(gLayoutTestController); - - gLayoutTestController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - gcController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - axController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - JSStringRef eventSenderStr = JSStringCreateWithUTF8CString("eventSender"); - JSValueRef eventSender = makeEventSender(context, !webkit_web_frame_get_parent(frame)); - JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0); - JSStringRelease(eventSenderStr); -} - -static gboolean webViewConsoleMessage(WebKitWebView* view, const gchar* message, unsigned int line, const gchar* sourceId, gpointer data) -{ - gchar* testMessage = 0; - const gchar* uriScheme; - - // Tests expect only the filename part of local URIs - uriScheme = g_strstr_len(message, -1, "file://"); - if (uriScheme) { - GString* tempString = g_string_sized_new(strlen(message)); - gchar* filename = g_strrstr(uriScheme, G_DIR_SEPARATOR_S); - - if (filename) { - filename += strlen(G_DIR_SEPARATOR_S); - tempString = g_string_append_len(tempString, message, (uriScheme - message)); - tempString = g_string_append_len(tempString, filename, strlen(filename)); - testMessage = g_string_free(tempString, FALSE); - } - } - - fprintf(stdout, "CONSOLE MESSAGE: line %d: %s\n", line, testMessage ? testMessage : message); - g_free(testMessage); - - return TRUE; -} - - -static gboolean webViewScriptAlert(WebKitWebView* view, WebKitWebFrame* frame, const gchar* message, gpointer data) -{ - fprintf(stdout, "ALERT: %s\n", message); - return TRUE; -} - -static gboolean webViewScriptPrompt(WebKitWebView* webView, WebKitWebFrame* frame, const gchar* message, const gchar* defaultValue, gchar** value, gpointer data) -{ - fprintf(stdout, "PROMPT: %s, default text: %s\n", message, defaultValue); - *value = g_strdup(defaultValue); - return TRUE; -} - -static gboolean webViewScriptConfirm(WebKitWebView* view, WebKitWebFrame* frame, const gchar* message, gboolean* didConfirm, gpointer data) -{ - fprintf(stdout, "CONFIRM: %s\n", message); - *didConfirm = TRUE; - return TRUE; -} - -static void webViewTitleChanged(WebKitWebView* view, WebKitWebFrame* frame, const gchar* title, gpointer data) -{ - if (gLayoutTestController->dumpTitleChanges() && !done) - printf("TITLE CHANGED: %s\n", title ? title : ""); -} - -static bool webViewNavigationPolicyDecisionRequested(WebKitWebView* view, WebKitWebFrame* frame, - WebKitNetworkRequest* request, - WebKitWebNavigationAction* navAction, - WebKitWebPolicyDecision* policyDecision) -{ - // Use the default handler if we're not waiting for policy, - // i.e., LayoutTestController::waitForPolicyDelegate - if (!waitForPolicy) - return FALSE; - - gchar* typeDescription; - WebKitWebNavigationReason reason; - g_object_get(G_OBJECT(navAction), "reason", &reason, NULL); - - switch(reason) { - case WEBKIT_WEB_NAVIGATION_REASON_LINK_CLICKED: - typeDescription = g_strdup("link clicked"); - break; - case WEBKIT_WEB_NAVIGATION_REASON_FORM_SUBMITTED: - typeDescription = g_strdup("form submitted"); - break; - case WEBKIT_WEB_NAVIGATION_REASON_BACK_FORWARD: - typeDescription = g_strdup("back/forward"); - break; - case WEBKIT_WEB_NAVIGATION_REASON_RELOAD: - typeDescription = g_strdup("reload"); - break; - case WEBKIT_WEB_NAVIGATION_REASON_FORM_RESUBMITTED: - typeDescription = g_strdup("form resubmitted"); - break; - case WEBKIT_WEB_NAVIGATION_REASON_OTHER: - typeDescription = g_strdup("other"); - break; - default: - typeDescription = g_strdup("illegal value"); - } - - printf("Policy delegate: attempt to load %s with navigation type '%s'\n", webkit_network_request_get_uri(request), typeDescription); - g_free(typeDescription); - - webkit_web_policy_decision_ignore(policyDecision); - gLayoutTestController->notifyDone(); - - return TRUE; -} - -static void webViewStatusBarTextChanged(WebKitWebView* view, const gchar* message, gpointer data) -{ - // Are we doing anything wrong? One test that does not call - // dumpStatusCallbacks gets true here - if (gLayoutTestController->dumpStatusCallbacks()) { - if (message && strcmp(message, "")) - printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message); - } -} - -static gboolean webViewClose(WebKitWebView* view) -{ - ASSERT(view); - - webViewList = g_slist_remove(webViewList, view); - g_object_unref(view); - - return TRUE; -} - -static void databaseQuotaExceeded(WebKitWebView* view, WebKitWebFrame* frame, WebKitWebDatabase *database) -{ - ASSERT(view); - ASSERT(frame); - ASSERT(database); - - WebKitSecurityOrigin* origin = webkit_web_database_get_security_origin(database); - if (gLayoutTestController->dumpDatabaseCallbacks()) { - printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", - webkit_security_origin_get_protocol(origin), - webkit_security_origin_get_host(origin), - webkit_security_origin_get_port(origin), - webkit_web_database_get_name(database)); - } - webkit_security_origin_set_web_database_quota(origin, 5 * 1024 * 1024); -} - -static bool -geolocationPolicyDecisionRequested(WebKitWebView*, WebKitWebFrame*, WebKitGeolocationPolicyDecision* decision) -{ - if (!gLayoutTestController->isGeolocationPermissionSet()) - return FALSE; - if (gLayoutTestController->geolocationPermission()) - webkit_geolocation_policy_allow(decision); - else - webkit_geolocation_policy_deny(decision); - - return TRUE; -} - - -static WebKitWebView* webViewCreate(WebKitWebView*, WebKitWebFrame*); - -static gboolean webInspectorShowWindow(WebKitWebInspector*, gpointer data) -{ - gtk_window_set_default_size(GTK_WINDOW(webInspectorWindow), 800, 600); - gtk_widget_show_all(webInspectorWindow); - return TRUE; -} - -static gboolean webInspectorCloseWindow(WebKitWebInspector*, gpointer data) -{ - gtk_widget_destroy(webInspectorWindow); - webInspectorWindow = 0; - return TRUE; -} - -static WebKitWebView* webInspectorInspectWebView(WebKitWebInspector*, gpointer data) -{ - webInspectorWindow = gtk_window_new(GTK_WINDOW_TOPLEVEL); - - GtkWidget* webView = webkit_web_view_new(); - gtk_container_add(GTK_CONTAINER(webInspectorWindow), - webView); - - return WEBKIT_WEB_VIEW(webView); -} - -static void webViewLoadStatusNotified(WebKitWebView* view, gpointer user_data) -{ - WebKitLoadStatus loadStatus = webkit_web_view_get_load_status(view); - - if (gLayoutTestController->dumpFrameLoadCallbacks()) { - if (loadStatus == WEBKIT_LOAD_PROVISIONAL) { - char* frameName = getFrameNameSuitableForTestResult(view, mainFrame); - printf("%s - didStartProvisionalLoadForFrame\n", frameName); - g_free(frameName); - } - } -} - -static WebKitWebView* createWebView() -{ - WebKitWebView* view = WEBKIT_WEB_VIEW(webkit_web_view_new()); - - // From bug 11756: Use a frame group name for all WebViews created by - // DumpRenderTree to allow testing of cross-page frame lookup. - webkit_web_view_set_group_name(view, "org.webkit.gtk.DumpRenderTree"); - - g_object_connect(G_OBJECT(view), - "signal::load-started", webViewLoadStarted, 0, - "signal::load-finished", webViewLoadFinished, 0, - "signal::load-committed", webViewLoadCommitted, 0, - "signal::window-object-cleared", webViewWindowObjectCleared, 0, - "signal::console-message", webViewConsoleMessage, 0, - "signal::script-alert", webViewScriptAlert, 0, - "signal::script-prompt", webViewScriptPrompt, 0, - "signal::script-confirm", webViewScriptConfirm, 0, - "signal::title-changed", webViewTitleChanged, 0, - "signal::navigation-policy-decision-requested", webViewNavigationPolicyDecisionRequested, 0, - "signal::status-bar-text-changed", webViewStatusBarTextChanged, 0, - "signal::create-web-view", webViewCreate, 0, - "signal::close-web-view", webViewClose, 0, - "signal::database-quota-exceeded", databaseQuotaExceeded, 0, - "signal::document-load-finished", webViewDocumentLoadFinished, 0, - "signal::geolocation-policy-decision-requested", geolocationPolicyDecisionRequested, 0, - "signal::onload-event", webViewOnloadEvent, 0, - NULL); - - g_signal_connect(view, - "notify::load-status", G_CALLBACK(webViewLoadStatusNotified), - NULL); - - WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); - g_object_connect(G_OBJECT(inspector), - "signal::inspect-web-view", webInspectorInspectWebView, 0, - "signal::show-window", webInspectorShowWindow, 0, - "signal::close-window", webInspectorCloseWindow, 0, - NULL); - - if (webView) { - WebKitWebSettings* settings = webkit_web_view_get_settings(webView); - webkit_web_view_set_settings(view, settings); - } - - return view; -} - -static WebKitWebView* webViewCreate(WebKitWebView* view, WebKitWebFrame* frame) -{ - if (!gLayoutTestController->canOpenWindows()) - return 0; - - // Make sure that waitUntilDone has been called. - ASSERT(gLayoutTestController->waitToDump()); - - WebKitWebView* newWebView = createWebView(); - g_object_ref_sink(G_OBJECT(newWebView)); - webViewList = g_slist_prepend(webViewList, newWebView); - return newWebView; -} - -static void logHandler(const gchar* domain, GLogLevelFlags level, const gchar* message, gpointer data) -{ - if (level < G_LOG_LEVEL_DEBUG) - fprintf(stderr, "%s\n", message); -} - -int main(int argc, char* argv[]) -{ - g_thread_init(NULL); - gtk_init(&argc, &argv); - - // Some plugins might try to use the GLib logger for printing debug - // messages. This will cause tests to fail because of unexpected output. - // We squelch all debug messages sent to the logger. - g_log_set_default_handler(logHandler, 0); - -#if PLATFORM(X11) - FcInit(); - initializeFonts(); -#endif - - struct option options[] = { - {"notree", no_argument, &dumpTree, false}, - {"pixel-tests", no_argument, &dumpPixels, true}, - {"tree", no_argument, &dumpTree, true}, - {NULL, 0, NULL, 0} - }; - - int option; - while ((option = getopt_long(argc, (char* const*)argv, "", options, NULL)) != -1) - switch (option) { - case '?': // unknown or ambiguous option - case ':': // missing argument - exit(1); - break; - } - - window = gtk_window_new(GTK_WINDOW_POPUP); - container = GTK_WIDGET(gtk_scrolled_window_new(NULL, NULL)); - gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(container), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); - gtk_container_add(GTK_CONTAINER(window), container); - gtk_widget_show_all(window); - - webView = createWebView(); - gtk_container_add(GTK_CONTAINER(container), GTK_WIDGET(webView)); - gtk_widget_realize(GTK_WIDGET(webView)); - gtk_widget_show_all(container); - gtk_widget_grab_focus(GTK_WIDGET(webView)); - mainFrame = webkit_web_view_get_main_frame(webView); - - setDefaultsToConsistentStateValuesForTesting(); - - gcController = new GCController(); - axController = new AccessibilityController(); - - if (argc == optind+1 && strcmp(argv[optind], "-") == 0) { - char filenameBuffer[2048]; - printSeparators = true; - while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) { - char* newLineCharacter = strchr(filenameBuffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (strlen(filenameBuffer) == 0) - continue; - - runTest(filenameBuffer); - } - } else { - printSeparators = (optind < argc-1 || (dumpPixels && dumpTree)); - for (int i = optind; i != argc; ++i) - runTest(argv[i]); - } - - delete gcController; - gcController = 0; - - delete axController; - axController = 0; - - gtk_widget_destroy(window); - - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/DumpRenderTreeGtk.h --- a/WebKitTools/DumpRenderTree/gtk/DumpRenderTreeGtk.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTreeGtk_h -#define DumpRenderTreeGtk_h - -#include -#include - -#include - -extern WebKitWebFrame* mainFrame; -extern WebKitWebFrame* topLoadingFrame; -extern guint waitToDumpWatchdog; -extern bool waitForPolicy; -extern GSList* webViewList; - -gchar* JSStringCopyUTF8CString(JSStringRef jsString); - -#endif // DumpRenderTreeGtk_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/EventSender.cpp --- a/WebKitTools/DumpRenderTree/gtk/EventSender.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,637 +0,0 @@ -/* - * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. - * Copyright (C) 2009 Zan Dobersek - * Copyright (C) 2009 Holger Hans Peter Freyther - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "EventSender.h" - -#include "DumpRenderTree.h" - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -// FIXME: Implement support for synthesizing drop events. - -extern "C" { - extern void webkit_web_frame_layout(WebKitWebFrame* frame); -} - -static bool dragMode; -static int timeOffset = 0; - -static int lastMousePositionX; -static int lastMousePositionY; -static int lastClickPositionX; -static int lastClickPositionY; -static int lastClickTimeOffset; -static int lastClickButton; -static int buttonCurrentlyDown; -static int clickCount; - -struct DelayedMessage { - GdkEvent event; - gulong delay; -}; - -static DelayedMessage msgQueue[1024]; - -static unsigned endOfQueue; -static unsigned startOfQueue; - -static const float zoomMultiplierRatio = 1.2f; - -// Key event location code defined in DOM Level 3. -enum KeyLocationCode { - DOM_KEY_LOCATION_STANDARD = 0x00, - DOM_KEY_LOCATION_LEFT = 0x01, - DOM_KEY_LOCATION_RIGHT = 0x02, - DOM_KEY_LOCATION_NUMPAD = 0x03 -}; - -static void sendOrQueueEvent(GdkEvent, bool = true); -static void dispatchEvent(GdkEvent event); -static guint getStateFlags(); - -#if !GTK_CHECK_VERSION(2, 17, 3) -static void gdk_window_get_root_coords(GdkWindow* window, gint x, gint y, gint* rootX, gint* rootY) -{ - gdk_window_get_root_origin(window, rootX, rootY); - *rootX = *rootX + x; - *rootY = *rootY + y; -} -#endif - -#if !GTK_CHECK_VERSION(2, 14, 0) -static GdkWindow* gtk_widget_get_window(GtkWidget* widget) -{ - g_return_val_if_fail(GTK_IS_WIDGET(widget), 0); - return widget->window; -} -#endif - -static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeBoolean(context, dragMode); -} - -static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) -{ - dragMode = JSValueToBoolean(context, value); - return true; -} - -static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount > 0) { - msgQueue[endOfQueue].delay = JSValueToNumber(context, arguments[0], exception); - timeOffset += msgQueue[endOfQueue].delay; - ASSERT(!exception || !*exception); - } - - return JSValueMakeUndefined(context); -} - -bool prepareMouseButtonEvent(GdkEvent* event, int eventSenderButtonNumber) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return false; - - // The logic for mapping EventSender button numbers to GDK button - // numbers originates from the Windows EventSender. - int gdkButtonNumber = 3; - if (eventSenderButtonNumber >= 0 && eventSenderButtonNumber <= 2) - gdkButtonNumber = eventSenderButtonNumber + 1; - - // fast/events/mouse-click-events expects the 4th button - // to be event.button = 1, so send a middle-button event. - else if (eventSenderButtonNumber == 3) - gdkButtonNumber = 2; - - memset(event, 0, sizeof(event)); - event->button.button = gdkButtonNumber; - event->button.x = lastMousePositionX; - event->button.y = lastMousePositionY; - event->button.window = gtk_widget_get_window(GTK_WIDGET(view)); - event->button.device = gdk_device_get_core_pointer(); - event->button.state = getStateFlags(); - event->button.time = GDK_CURRENT_TIME; - - int xRoot, yRoot; - gdk_window_get_root_coords(gtk_widget_get_window(GTK_WIDGET(view)), lastMousePositionX, lastMousePositionY, &xRoot, &yRoot); - event->button.x_root = xRoot; - event->button.y_root = yRoot; - - return true; -} - -static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - GdkEvent event; - if (!prepareMouseButtonEvent(&event, 2)) - return JSValueMakeUndefined(context); - - event.type = GDK_BUTTON_PRESS; - sendOrQueueEvent(event); - event.type = GDK_BUTTON_RELEASE; - sendOrQueueEvent(event); - - return JSValueMakeUndefined(context); -} - -static void updateClickCount(int button) -{ - if (lastClickPositionX != lastMousePositionX - || lastClickPositionY != lastMousePositionY - || lastClickButton != button - || timeOffset - lastClickTimeOffset >= 1) - clickCount = 1; - else - clickCount++; -} - -static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int button = 0; - if (argumentCount == 1) { - button = static_cast(JSValueToNumber(context, arguments[0], exception)); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - } - - GdkEvent event; - if (!prepareMouseButtonEvent(&event, button)) - return JSValueMakeUndefined(context); - - buttonCurrentlyDown = event.button.button; - - // Normally GDK will send both GDK_BUTTON_PRESS and GDK_2BUTTON_PRESS for - // the second button press during double-clicks. WebKit GTK+ selectively - // ignores the first GDK_BUTTON_PRESS of that pair using gdk_event_peek. - // Since our events aren't ever going onto the GDK event queue, WebKit won't - // be able to filter out the first GDK_BUTTON_PRESS, so we just don't send - // it here. Eventually this code should probably figure out a way to get all - // appropriate events onto the event queue and this work-around should be - // removed. - updateClickCount(event.button.button); - if (clickCount == 2) - event.type = GDK_2BUTTON_PRESS; - else if (clickCount == 3) - event.type = GDK_3BUTTON_PRESS; - else - event.type = GDK_BUTTON_PRESS; - - sendOrQueueEvent(event); - return JSValueMakeUndefined(context); -} - -static guint getStateFlags() -{ - if (buttonCurrentlyDown == 1) - return GDK_BUTTON1_MASK; - if (buttonCurrentlyDown == 2) - return GDK_BUTTON2_MASK; - if (buttonCurrentlyDown == 3) - return GDK_BUTTON3_MASK; - return 0; -} - -static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int button = 0; - if (argumentCount == 1) { - button = static_cast(JSValueToNumber(context, arguments[0], exception)); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - } - - GdkEvent event; - if (!prepareMouseButtonEvent(&event, button)) - return JSValueMakeUndefined(context); - - lastClickPositionX = lastMousePositionX; - lastClickPositionY = lastMousePositionY; - lastClickButton = buttonCurrentlyDown; - lastClickTimeOffset = timeOffset; - buttonCurrentlyDown = 0; - - event.type = GDK_BUTTON_RELEASE; - sendOrQueueEvent(event); - return JSValueMakeUndefined(context); -} - -static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return JSValueMakeUndefined(context); - - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - lastMousePositionX = (int)JSValueToNumber(context, arguments[0], exception); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - lastMousePositionY = (int)JSValueToNumber(context, arguments[1], exception); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - - GdkEvent event; - memset(&event, 0, sizeof(event)); - event.type = GDK_MOTION_NOTIFY; - event.motion.x = lastMousePositionX; - event.motion.y = lastMousePositionY; - - event.motion.time = GDK_CURRENT_TIME; - event.motion.window = gtk_widget_get_window(GTK_WIDGET(view)); - event.motion.device = gdk_device_get_core_pointer(); - event.motion.state = getStateFlags(); - - int xRoot, yRoot; - gdk_window_get_root_coords(gtk_widget_get_window(GTK_WIDGET(view)), lastMousePositionX, lastMousePositionY, &xRoot, &yRoot); - event.motion.x_root = xRoot; - event.motion.y_root = yRoot; - - sendOrQueueEvent(event, false); - return JSValueMakeUndefined(context); -} - -static JSValueRef mouseWheelToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return JSValueMakeUndefined(context); - - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - int horizontal = (int)JSValueToNumber(context, arguments[0], exception); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - int vertical = (int)JSValueToNumber(context, arguments[1], exception); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - - // GTK+ doesn't support multiple direction scrolls in the same event! - g_return_val_if_fail((!vertical || !horizontal), JSValueMakeUndefined(context)); - - GdkEvent event; - event.type = GDK_SCROLL; - event.scroll.x = lastMousePositionX; - event.scroll.y = lastMousePositionY; - event.scroll.time = GDK_CURRENT_TIME; - event.scroll.window = gtk_widget_get_window(GTK_WIDGET(view)); - - if (horizontal < 0) - event.scroll.direction = GDK_SCROLL_LEFT; - else if (horizontal > 0) - event.scroll.direction = GDK_SCROLL_RIGHT; - else if (vertical < 0) - event.scroll.direction = GDK_SCROLL_UP; - else if (vertical > 0) - event.scroll.direction = GDK_SCROLL_DOWN; - else - g_assert_not_reached(); - - sendOrQueueEvent(event); - return JSValueMakeUndefined(context); -} - -static JSValueRef beginDragWithFilesCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - // FIXME: Implement this completely once WebCore has complete drag and drop support - return JSValueMakeUndefined(context); -} - -static void sendOrQueueEvent(GdkEvent event, bool shouldReplaySavedEvents) -{ - // Mouse move events are queued if the previous event was queued or if a - // delay was set up by leapForward(). - if ((dragMode && buttonCurrentlyDown) || endOfQueue != startOfQueue || msgQueue[endOfQueue].delay) { - msgQueue[endOfQueue++].event = event; - - if (shouldReplaySavedEvents) - replaySavedEvents(); - - return; - } - - dispatchEvent(event); -} - -static void dispatchEvent(GdkEvent event) -{ - webkit_web_frame_layout(mainFrame); - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return; - - gtk_main_do_event(&event); -} - -void replaySavedEvents() -{ - // FIXME: Eventually we may need to have more sophisticated logic to - // track drag-and-drop operations. - - // First send all the events that are ready to be sent - while (startOfQueue < endOfQueue) { - if (msgQueue[startOfQueue].delay) { - g_usleep(msgQueue[startOfQueue].delay * 1000); - msgQueue[startOfQueue].delay = 0; - } - - dispatchEvent(msgQueue[startOfQueue++].event); - } - - startOfQueue = 0; - endOfQueue = 0; -} - -static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - static const JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length"); - - webkit_web_frame_layout(mainFrame); - - // handle modifier keys. - int state = 0; - if (argumentCount > 1) { - JSObjectRef modifiersArray = JSValueToObject(context, arguments[1], exception); - if (modifiersArray) { - for (int i = 0; i < JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty, 0), 0); ++i) { - JSValueRef value = JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0); - JSStringRef string = JSValueToStringCopy(context, value, 0); - if (JSStringIsEqualToUTF8CString(string, "ctrlKey")) - state |= GDK_CONTROL_MASK; - else if (JSStringIsEqualToUTF8CString(string, "shiftKey")) - state |= GDK_SHIFT_MASK; - else if (JSStringIsEqualToUTF8CString(string, "altKey")) - state |= GDK_MOD1_MASK; - - JSStringRelease(string); - } - } - } - - // handle location argument. - int location = DOM_KEY_LOCATION_STANDARD; - if (argumentCount > 2) - location = (int)JSValueToNumber(context, arguments[2], exception); - - JSStringRef character = JSValueToStringCopy(context, arguments[0], exception); - g_return_val_if_fail((!exception || !*exception), JSValueMakeUndefined(context)); - int gdkKeySym = GDK_VoidSymbol; - if (location == DOM_KEY_LOCATION_NUMPAD) { - if (JSStringIsEqualToUTF8CString(character, "leftArrow")) - gdkKeySym = GDK_KP_Left; - else if (JSStringIsEqualToUTF8CString(character, "rightArrow")) - gdkKeySym = GDK_KP_Right; - else if (JSStringIsEqualToUTF8CString(character, "upArrow")) - gdkKeySym = GDK_KP_Up; - else if (JSStringIsEqualToUTF8CString(character, "downArrow")) - gdkKeySym = GDK_KP_Down; - else if (JSStringIsEqualToUTF8CString(character, "pageUp")) - gdkKeySym = GDK_KP_Page_Up; - else if (JSStringIsEqualToUTF8CString(character, "pageDown")) - gdkKeySym = GDK_KP_Page_Down; - else if (JSStringIsEqualToUTF8CString(character, "home")) - gdkKeySym = GDK_KP_Home; - else if (JSStringIsEqualToUTF8CString(character, "end")) - gdkKeySym = GDK_KP_End; - else - // Assume we only get arrow/pgUp/pgDn/home/end keys with - // location=NUMPAD for now. - g_assert_not_reached(); - } else { - if (JSStringIsEqualToUTF8CString(character, "leftArrow")) - gdkKeySym = GDK_Left; - else if (JSStringIsEqualToUTF8CString(character, "rightArrow")) - gdkKeySym = GDK_Right; - else if (JSStringIsEqualToUTF8CString(character, "upArrow")) - gdkKeySym = GDK_Up; - else if (JSStringIsEqualToUTF8CString(character, "downArrow")) - gdkKeySym = GDK_Down; - else if (JSStringIsEqualToUTF8CString(character, "pageUp")) - gdkKeySym = GDK_Page_Up; - else if (JSStringIsEqualToUTF8CString(character, "pageDown")) - gdkKeySym = GDK_Page_Down; - else if (JSStringIsEqualToUTF8CString(character, "home")) - gdkKeySym = GDK_Home; - else if (JSStringIsEqualToUTF8CString(character, "end")) - gdkKeySym = GDK_End; - else if (JSStringIsEqualToUTF8CString(character, "delete")) - gdkKeySym = GDK_Delete; - else if (JSStringIsEqualToUTF8CString(character, "F1")) - gdkKeySym = GDK_F1; - else if (JSStringIsEqualToUTF8CString(character, "F2")) - gdkKeySym = GDK_F2; - else if (JSStringIsEqualToUTF8CString(character, "F3")) - gdkKeySym = GDK_F3; - else if (JSStringIsEqualToUTF8CString(character, "F4")) - gdkKeySym = GDK_F4; - else if (JSStringIsEqualToUTF8CString(character, "F5")) - gdkKeySym = GDK_F5; - else if (JSStringIsEqualToUTF8CString(character, "F6")) - gdkKeySym = GDK_F6; - else if (JSStringIsEqualToUTF8CString(character, "F7")) - gdkKeySym = GDK_F7; - else if (JSStringIsEqualToUTF8CString(character, "F8")) - gdkKeySym = GDK_F8; - else if (JSStringIsEqualToUTF8CString(character, "F9")) - gdkKeySym = GDK_F9; - else if (JSStringIsEqualToUTF8CString(character, "F10")) - gdkKeySym = GDK_F10; - else if (JSStringIsEqualToUTF8CString(character, "F11")) - gdkKeySym = GDK_F11; - else if (JSStringIsEqualToUTF8CString(character, "F12")) - gdkKeySym = GDK_F12; - else { - int charCode = JSStringGetCharactersPtr(character)[0]; - if (charCode == '\n' || charCode == '\r') - gdkKeySym = GDK_Return; - else if (charCode == '\t') - gdkKeySym = GDK_Tab; - else if (charCode == '\x8') - gdkKeySym = GDK_BackSpace; - else { - gdkKeySym = gdk_unicode_to_keyval(charCode); - if (WTF::isASCIIUpper(charCode)) - state |= GDK_SHIFT_MASK; - } - } - } - JSStringRelease(character); - - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return JSValueMakeUndefined(context); - - // create and send the event - GdkEvent event; - memset(&event, 0, sizeof(event)); - event.key.keyval = gdkKeySym; - event.key.state = state; - event.key.window = gtk_widget_get_window(GTK_WIDGET(view)); - - // When synthesizing an event, an invalid hardware_keycode value - // can cause it to be badly processed by Gtk+. - GdkKeymapKey* keys; - gint n_keys; - if (gdk_keymap_get_entries_for_keyval(gdk_keymap_get_default(), gdkKeySym, &keys, &n_keys)) { - event.key.hardware_keycode = keys[0].keycode; - g_free(keys); - } - - event.key.type = GDK_KEY_PRESS; - dispatchEvent(event); - - event.key.type = GDK_KEY_RELEASE; - dispatchEvent(event); - - return JSValueMakeUndefined(context); -} - -static void zoomIn(gboolean fullContentsZoom) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return; - - webkit_web_view_set_full_content_zoom(view, fullContentsZoom); - gfloat currentZoom = webkit_web_view_get_zoom_level(view); - webkit_web_view_set_zoom_level(view, currentZoom * zoomMultiplierRatio); -} - -static void zoomOut(gboolean fullContentsZoom) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - if (!view) - return; - - webkit_web_view_set_full_content_zoom(view, fullContentsZoom); - gfloat currentZoom = webkit_web_view_get_zoom_level(view); - webkit_web_view_set_zoom_level(view, currentZoom / zoomMultiplierRatio); -} - -static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - zoomIn(FALSE); - return JSValueMakeUndefined(context); -} - -static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - zoomOut(FALSE); - return JSValueMakeUndefined(context); -} - -static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - zoomIn(TRUE); - return JSValueMakeUndefined(context); -} - -static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - zoomOut(TRUE); - return JSValueMakeUndefined(context); -} - -static JSStaticFunction staticFunctions[] = { - { "mouseWheelTo", mouseWheelToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "beginDragWithFiles", beginDragWithFilesCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } -}; - -static JSStaticValue staticValues[] = { - { "dragMode", getDragModeCallback, setDragModeCallback, kJSPropertyAttributeNone }, - { 0, 0, 0, 0 } -}; - -static JSClassRef getClass(JSContextRef context) -{ - static JSClassRef eventSenderClass = 0; - - if (!eventSenderClass) { - JSClassDefinition classDefinition = { - 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}; - classDefinition.staticFunctions = staticFunctions; - classDefinition.staticValues = staticValues; - - eventSenderClass = JSClassCreate(&classDefinition); - } - - return eventSenderClass; -} - -JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame) -{ - if (isTopFrame) { - dragMode = true; - - // Fly forward in time one second when the main frame loads. This will - // ensure that when a test begins clicking in the same location as - // a previous test, those clicks won't be interpreted as continuations - // of the previous test's click sequences. - timeOffset += 1000; - - lastMousePositionX = lastMousePositionY = 0; - lastClickPositionX = lastClickPositionY = 0; - lastClickTimeOffset = 0; - lastClickButton = 0; - buttonCurrentlyDown = 0; - clickCount = 0; - - endOfQueue = 0; - startOfQueue = 0; - } - - return JSObjectMake(context, getClass(context), 0); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/EventSender.h --- a/WebKitTools/DumpRenderTree/gtk/EventSender.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * Copyright (C) 2009 Holger Hans Peter Freyther - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef EventSender_h -#define EventSender_h - -typedef const struct OpaqueJSContext* JSContextRef; -typedef struct OpaqueJSValue* JSObjectRef; - -JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame); -void replaySavedEvents(); - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/GCControllerGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/GCControllerGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "GCController.h" - -#include -#include - -extern "C" { -extern void webkit_gc_collect_javascript_objects(); -extern void webkit_gc_collect_javascript_objects_on_alternate_thread(gboolean waitUntilDone); -extern gsize webkit_gc_count_javascript_objects(); -} - -void GCController::collect() const -{ - webkit_gc_collect_javascript_objects(); -} - -void GCController::collectOnAlternateThread(bool waitUntilDone) const -{ - webkit_gc_collect_javascript_objects_on_alternate_thread(waitUntilDone); -} - -size_t GCController::getJSObjectCount() const -{ - return webkit_gc_count_javascript_objects(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/ImageDiff.cpp --- a/WebKitTools/DumpRenderTree/gtk/ImageDiff.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,234 +0,0 @@ -/* - * Copyright (C) 2009 Zan Dobersek - * Copyright (C) 2010 Igalia S.L. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include -#include -#include -#include -#include - -using namespace std; - -static double tolerance = 0; -static GOptionEntry commandLineOptionEntries[] = -{ - { "tolerance", 0, 0, G_OPTION_ARG_DOUBLE, &tolerance, "Percentage difference between images before considering them different", "T" }, - { 0, 0, 0, G_OPTION_ARG_NONE, 0, 0, 0 }, -}; - -GdkPixbuf* readPixbufFromStdin(long imageSize) -{ - unsigned char imageBuffer[2048]; - GdkPixbufLoader* loader = gdk_pixbuf_loader_new_with_type("png", 0); - GError* error = 0; - - while (imageSize > 0) { - size_t bytesToRead = min(imageSize, 2048); - size_t bytesRead = fread(imageBuffer, 1, bytesToRead, stdin); - - if (!gdk_pixbuf_loader_write(loader, reinterpret_cast(imageBuffer), bytesRead, &error)) { - g_error_free(error); - gdk_pixbuf_loader_close(loader, 0); - g_object_unref(loader); - return 0; - } - - imageSize -= static_cast(bytesRead); - } - - gdk_pixbuf_loader_close(loader, 0); - GdkPixbuf* decodedImage = gdk_pixbuf_loader_get_pixbuf(loader); - g_object_ref(decodedImage); - return decodedImage; -} - -GdkPixbuf* differenceImageFromDifferenceBuffer(unsigned char* buffer, int width, int height) -{ - GdkPixbuf* image = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height); - if (!image) - return image; - - int rowStride = gdk_pixbuf_get_rowstride(image); - unsigned char* diffPixels = gdk_pixbuf_get_pixels(image); - for (int x = 0; x < width; x++) { - for (int y = 0; y < height; y++) { - unsigned char* diffPixel = diffPixels + (y * rowStride) + (x * 3); - diffPixel[0] = diffPixel[1] = diffPixel[2] = *buffer++; - } - } - - return image; -} - -float calculateDifference(GdkPixbuf* baselineImage, GdkPixbuf* actualImage, GdkPixbuf** differenceImage) -{ - int width = gdk_pixbuf_get_width(actualImage); - int height = gdk_pixbuf_get_height(actualImage); - int numberOfChannels = gdk_pixbuf_get_n_channels(actualImage); - if ((width != gdk_pixbuf_get_width(baselineImage)) - || (height != gdk_pixbuf_get_height(baselineImage)) - || (numberOfChannels != gdk_pixbuf_get_n_channels(baselineImage)) - || (gdk_pixbuf_get_has_alpha(actualImage) != gdk_pixbuf_get_has_alpha(baselineImage))) { - fprintf(stderr, "Error, test and reference image have different properties.\n"); - return 100; // Completely different. - } - - unsigned char* diffBuffer = static_cast(malloc(width * height)); - float count = 0; - float sum = 0; - float maxDistance = 0; - int actualRowStride = gdk_pixbuf_get_rowstride(actualImage); - int baseRowStride = gdk_pixbuf_get_rowstride(baselineImage); - unsigned char* actualPixels = gdk_pixbuf_get_pixels(actualImage); - unsigned char* basePixels = gdk_pixbuf_get_pixels(baselineImage); - unsigned char* currentDiffPixel = diffBuffer; - for (int x = 0; x < width; x++) { - for (int y = 0; y < height; y++) { - unsigned char* actualPixel = actualPixels + (y * actualRowStride) + (x * numberOfChannels); - unsigned char* basePixel = basePixels + (y * baseRowStride) + (x * numberOfChannels); - - float red = (actualPixel[0] - basePixel[0]) / max(255 - basePixel[0], basePixel[0]); - float green = (actualPixel[1] - basePixel[1]) / max(255 - basePixel[1], basePixel[1]); - float blue = (actualPixel[2] - basePixel[2]) / max(255 - basePixel[2], basePixel[2]); - float alpha = (actualPixel[3] - basePixel[3]) / max(255 - basePixel[3], basePixel[3]); - float distance = sqrtf(red * red + green * green + blue * blue + alpha * alpha) / 2.0f; - - *currentDiffPixel++ = (unsigned char)(distance * 255.0f); - - if (distance >= 1.0f / 255.0f) { - count += 1.0f; - sum += distance; - maxDistance = max(maxDistance, distance); - } - } - } - - // Compute the difference as a percentage combining both the number of - // different pixels and their difference amount i.e. the average distance - // over the entire image - float difference = 0; - if (count > 0.0f) - difference = 100.0f * sum / (height * width); - if (difference <= tolerance) - difference = 0; - else { - difference = roundf(difference * 100.0f) / 100.0f; - difference = max(difference, 0.01f); // round to 2 decimal places - *differenceImage = differenceImageFromDifferenceBuffer(diffBuffer, width, height); - } - - free(diffBuffer); - return difference; -} - -void printImage(GdkPixbuf* image) -{ - char* buffer; - gsize bufferSize; - GError* error = 0; - if (!gdk_pixbuf_save_to_buffer(image, &buffer, &bufferSize, "png", &error, NULL)) { - g_error_free(error); - return; // Don't bail out, as we can still use the percentage output. - } - - printf("Content-Length: %"G_GSIZE_FORMAT"\n", bufferSize); - fwrite(buffer, 1, bufferSize, stdout); -} - -void printImageDifferences(GdkPixbuf* baselineImage, GdkPixbuf* actualImage) -{ - GdkPixbuf* differenceImage = 0; - float difference = calculateDifference(baselineImage, actualImage, &differenceImage); - if (difference > 0.0f) { - if (differenceImage) { - printImage(differenceImage); - g_object_unref(differenceImage); - } - printf("diff: %01.2f%% failed\n", difference); - } else { - printf("diff: %01.2f%% passed\n", difference); - } -} - -int main(int argc, char* argv[]) -{ - gdk_init(&argc, &argv); - - GError* error = 0; - GOptionContext* context = g_option_context_new("- compare two image files, printing their percentage difference and the difference image to stdout"); - g_option_context_add_main_entries(context, commandLineOptionEntries, 0); - if (!g_option_context_parse(context, &argc, &argv, &error)) { - printf("Option parsing failed: %s\n", error->message); - g_error_free(error); - return 1; - } - - GdkPixbuf* actualImage = 0; - GdkPixbuf* baselineImage = 0; - char buffer[2048]; - while (fgets(buffer, sizeof(buffer), stdin)) { - // Convert the first newline into a NUL character so that strtok doesn't produce it. - char* newLineCharacter = strchr(buffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (!strncmp("Content-Length: ", buffer, 16)) { - char* context; - strtok_r(buffer, " ", &context); - long imageSize = strtol(strtok_r(0, " ", &context), 0, 10); - - if (imageSize > 0 && !actualImage) { - if (!(actualImage = readPixbufFromStdin(imageSize))) { - printf("Error, could not read actual image.\n"); - return 1; - } - } else if (imageSize > 0 && !baselineImage) { - if (!(baselineImage = readPixbufFromStdin(imageSize))) { - printf("Error, could not read baseline image.\n"); - return 1; - } - } else { - printf("Error, image size must be specified..\n"); - return 1; - } - } - - if (actualImage && baselineImage) { - printImageDifferences(baselineImage, actualImage); - g_object_unref(actualImage); - g_object_unref(baselineImage); - actualImage = 0; - baselineImage = 0; - } - - fflush(stdout); - } - - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,729 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * Copyright (C) 2007 Eric Seidel - * Copyright (C) 2008 Nuanti Ltd. - * Copyright (C) 2009 Jan Michael Alonzo - * Copyright (C) 2009 Collabora Ltd. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "LayoutTestController.h" - -#include "DumpRenderTree.h" -#include "WorkQueue.h" -#include "WorkQueueItem.h" -#include -#include - -#include -#include -#include -#include -#include -#include -#include - -extern "C" { -bool webkit_web_frame_pause_animation(WebKitWebFrame* frame, const gchar* name, double time, const gchar* element); -bool webkit_web_frame_pause_transition(WebKitWebFrame* frame, const gchar* name, double time, const gchar* element); -bool webkit_web_frame_pause_svg_animation(WebKitWebFrame* frame, const gchar* name, double time, const gchar* element); -unsigned int webkit_web_frame_number_of_active_animations(WebKitWebFrame* frame); -void webkit_application_cache_set_maximum_size(unsigned long long size); -unsigned int webkit_worker_thread_count(void); -void webkit_white_list_access_from_origin(const gchar* sourceOrigin, const gchar* destinationProtocol, const gchar* destinationHost, bool allowDestinationSubdomains); -gchar* webkit_web_frame_counter_value_for_element_by_id(WebKitWebFrame* frame, const gchar* id); -int webkit_web_frame_page_number_for_element_by_id(WebKitWebFrame* frame, const gchar* id, float pageWidth, float pageHeight); -int webkit_web_frame_number_of_pages(WebKitWebFrame* frame, float pageWidth, float pageHeight); -void webkit_web_inspector_execute_script(WebKitWebInspector* inspector, long callId, const gchar* script); -gchar* webkit_web_frame_marker_text_for_list_item(WebKitWebFrame* frame, JSContextRef context, JSValueRef nodeObject); -} - -static gchar* copyWebSettingKey(gchar* preferenceKey) -{ - static GHashTable* keyTable; - - if (!keyTable) { - // If you add a pref here, make sure you reset the value in - // DumpRenderTree::resetDefaultsToConsistentValues. - keyTable = g_hash_table_new(g_str_hash, g_str_equal); - g_hash_table_insert(keyTable, g_strdup("WebKitJavaScriptEnabled"), g_strdup("enable-scripts")); - g_hash_table_insert(keyTable, g_strdup("WebKitDefaultFontSize"), g_strdup("default-font-size")); - g_hash_table_insert(keyTable, g_strdup("WebKitEnableCaretBrowsing"), g_strdup("enable-caret-browsing")); - g_hash_table_insert(keyTable, g_strdup("WebKitUsesPageCachePreferenceKey"), g_strdup("enable-page-cache")); - g_hash_table_insert(keyTable, g_strdup("WebKitPluginsEnabled"), g_strdup("enable-plugins")); - } - - return g_strdup(static_cast(g_hash_table_lookup(keyTable, preferenceKey))); -} - -LayoutTestController::~LayoutTestController() -{ - // FIXME: implement -} - -void LayoutTestController::addDisallowedURL(JSStringRef url) -{ - // FIXME: implement -} - -void LayoutTestController::clearBackForwardList() -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebBackForwardList* list = webkit_web_view_get_back_forward_list(webView); - WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_current_item(list); - g_object_ref(item); - - // We clear the history by setting the back/forward list's capacity to 0 - // then restoring it back and adding back the current item. - gint limit = webkit_web_back_forward_list_get_limit(list); - webkit_web_back_forward_list_set_limit(list, 0); - webkit_web_back_forward_list_set_limit(list, limit); - webkit_web_back_forward_list_add_item(list, item); - webkit_web_back_forward_list_go_to_item(list, item); - g_object_unref(item); -} - -JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name) -{ - // FIXME: implement - return 0; -} - -JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name) -{ - // FIXME: implement - return 0; -} - -void LayoutTestController::dispatchPendingLoadRequests() -{ - // FIXME: Implement for testing fix for 6727495 -} - -void LayoutTestController::display() -{ - displayWebView(); -} - -JSRetainPtr LayoutTestController::counterValueForElementById(JSStringRef id) -{ - gchar* idGChar = JSStringCopyUTF8CString(id); - gchar* counterValueGChar = webkit_web_frame_counter_value_for_element_by_id(mainFrame, idGChar); - g_free(idGChar); - if (!counterValueGChar) - return 0; - JSRetainPtr counterValue(Adopt, JSStringCreateWithUTF8CString(counterValueGChar)); - return counterValue; -} - -void LayoutTestController::keepWebHistory() -{ - // FIXME: implement -} - -JSValueRef LayoutTestController::computedStyleIncludingVisitedInfo(JSContextRef context, JSValueRef value) -{ - // FIXME: Implement this. - return JSValueMakeUndefined(context); -} - -JSRetainPtr LayoutTestController::layerTreeAsText() const -{ - // FIXME: implement - JSRetainPtr string(Adopt, JSStringCreateWithUTF8CString("")); - return string; -} - -int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidth, float pageHeight) -{ - gchar* idGChar = JSStringCopyUTF8CString(id); - int pageNumber = webkit_web_frame_page_number_for_element_by_id(mainFrame, idGChar, pageWidth, pageHeight); - g_free(idGChar); - return pageNumber; -} - -int LayoutTestController::numberOfPages(float pageWidth, float pageHeight) -{ - return webkit_web_frame_number_of_pages(mainFrame, pageWidth, pageHeight); -} - -JSRetainPtr LayoutTestController::pageProperty(const char* propertyName, int pageNumber) const -{ - // FIXME: implement - return JSRetainPtr(); -} - -bool LayoutTestController::isPageBoxVisible(int pageNumber) const -{ - // FIXME: implement - return false; -} - -JSRetainPtr LayoutTestController::pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const -{ - // FIXME: implement - return JSRetainPtr(); -} - -size_t LayoutTestController::webHistoryItemCount() -{ - // FIXME: implement - return 0; -} - -unsigned LayoutTestController::workerThreadCount() const -{ - return webkit_worker_thread_count(); -} - -void LayoutTestController::notifyDone() -{ - if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) - dump(); - m_waitToDump = false; - waitForPolicy = false; -} - -JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url) -{ - // Function introduced in r28690. This may need special-casing on Windows. - return JSStringRetain(url); // Do nothing on Unix. -} - -void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target) -{ - gchar* relativeURL = JSStringCopyUTF8CString(url); - SoupURI* baseURI = soup_uri_new(webkit_web_frame_get_uri(mainFrame)); - - SoupURI* absoluteURI = soup_uri_new_with_base(baseURI, relativeURL); - soup_uri_free(baseURI); - g_free(relativeURL); - - gchar* absoluteCString; - if (absoluteURI) { - absoluteCString = soup_uri_to_string(absoluteURI, FALSE); - soup_uri_free(absoluteURI); - } else - absoluteCString = JSStringCopyUTF8CString(url); - - JSRetainPtr absoluteURL(Adopt, JSStringCreateWithUTF8CString(absoluteCString)); - g_free(absoluteCString); - - WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target)); -} - -void LayoutTestController::setAcceptsEditing(bool acceptsEditing) -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - webkit_web_view_set_editable(webView, acceptsEditing); -} - -void LayoutTestController::setAlwaysAcceptCookies(bool alwaysAcceptCookies) -{ -#ifdef HAVE_LIBSOUP_2_29_90 - SoupSession* session = webkit_get_default_session(); - SoupCookieJar* jar = reinterpret_cast(soup_session_get_feature(session, SOUP_TYPE_COOKIE_JAR)); - - SoupCookieJarAcceptPolicy policy; - - if (alwaysAcceptCookies) - policy = SOUP_COOKIE_JAR_ACCEPT_ALWAYS; - else - policy = SOUP_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY; - - g_object_set(G_OBJECT(jar), SOUP_COOKIE_JAR_ACCEPT_POLICY, policy, NULL); -#endif -} - -void LayoutTestController::setCustomPolicyDelegate(bool setDelegate, bool permissive) -{ - // FIXME: implement -} - -void LayoutTestController::waitForPolicyDelegate() -{ - waitForPolicy = true; - setWaitToDump(true); -} - -void LayoutTestController::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy) -{ - // FIXME: implement -} - -void LayoutTestController::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains) -{ - gchar* sourceOriginGChar = JSStringCopyUTF8CString(sourceOrigin); - gchar* protocolGChar = JSStringCopyUTF8CString(protocol); - gchar* hostGChar = JSStringCopyUTF8CString(host); - webkit_white_list_access_from_origin(sourceOriginGChar, protocolGChar, hostGChar, includeSubdomains); - g_free(sourceOriginGChar); - g_free(protocolGChar); - g_free(hostGChar); -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef protocol, JSStringRef host, bool includeSubdomains) -{ - // FIXME: implement -} - -void LayoutTestController::setMainFrameIsFirstResponder(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setTabKeyCyclesThroughElements(bool cycles) -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebSettings* settings = webkit_web_view_get_settings(webView); - g_object_set(G_OBJECT(settings), "tab-key-cycles-through-elements", cycles, NULL); -} - -void LayoutTestController::setTimelineProfilingEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); - g_object_set(G_OBJECT(inspector), "timeline-profiling-enabled", flag, NULL); -} - -void LayoutTestController::setUseDashboardCompatibilityMode(bool flag) -{ - // FIXME: implement -} - -static gchar* userStyleSheet = NULL; -static gboolean userStyleSheetEnabled = TRUE; - -void LayoutTestController::setUserStyleSheetEnabled(bool flag) -{ - userStyleSheetEnabled = flag; - - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebSettings* settings = webkit_web_view_get_settings(webView); - if (flag && userStyleSheet) - g_object_set(G_OBJECT(settings), "user-stylesheet-uri", userStyleSheet, NULL); - else - g_object_set(G_OBJECT(settings), "user-stylesheet-uri", "", NULL); -} - -void LayoutTestController::setUserStyleSheetLocation(JSStringRef path) -{ - g_free(userStyleSheet); - userStyleSheet = JSStringCopyUTF8CString(path); - if (userStyleSheetEnabled) - setUserStyleSheetEnabled(true); -} - -void LayoutTestController::setWindowIsKey(bool windowIsKey) -{ - // FIXME: implement -} - -void LayoutTestController::setSmartInsertDeleteEnabled(bool flag) -{ - // FIXME: implement -} - -static gboolean waitToDumpWatchdogFired(void*) -{ - waitToDumpWatchdog = 0; - gLayoutTestController->waitToDumpWatchdogTimerFired(); - return FALSE; -} - -void LayoutTestController::setWaitToDump(bool waitUntilDone) -{ - static const int timeoutSeconds = 30; - - m_waitToDump = waitUntilDone; - if (m_waitToDump && !waitToDumpWatchdog) - waitToDumpWatchdog = g_timeout_add_seconds(timeoutSeconds, waitToDumpWatchdogFired, 0); -} - -int LayoutTestController::windowCount() -{ - // +1 -> including the main view - return g_slist_length(webViewList) + 1; -} - -void LayoutTestController::setPrivateBrowsingEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "enable-private-browsing", flag, NULL); -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "javascript-can-access-clipboard", flag, NULL); -} - -void LayoutTestController::setXSSAuditorEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "enable-xss-auditor", flag, NULL); -} - -void LayoutTestController::setFrameFlatteningEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setSpatialNavigationEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "enable-spatial-navigation", flag, NULL); -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "enable-universal-access-from-file-uris", flag, NULL); -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "enable-file-access-from-file-uris", flag, NULL); -} - -void LayoutTestController::setAuthorAndUserStylesEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::disableImageLoading() -{ - // FIXME: Implement for testing fix for https://bugs.webkit.org/show_bug.cgi?id=27896 - // Also need to make sure image loading is re-enabled for each new test. -} - -void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setMockGeolocationError(int code, JSStringRef message) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setIconDatabaseEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setJavaScriptProfilingEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - setDeveloperExtrasEnabled(flag); - - WebKitWebInspector* inspector = webkit_web_view_get_inspector(view); - g_object_set(G_OBJECT(inspector), "javascript-profiling-enabled", flag, NULL); -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setPopupBlockingEnabled(bool flag) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - g_object_set(G_OBJECT(settings), "javascript-can-open-windows-automatically", !flag, NULL); - -} - -void LayoutTestController::setPluginsEnabled(bool flag) -{ - // FIXME: Implement -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(JSStringRef id) -{ - // FIXME: implement - return false; -} - -void LayoutTestController::execCommand(JSStringRef name, JSStringRef value) -{ - // FIXME: implement -} - -void LayoutTestController::setCacheModel(int) -{ - // FIXME: implement -} - -bool LayoutTestController::isCommandEnabled(JSStringRef /*name*/) -{ - // FIXME: implement - return false; -} - -void LayoutTestController::setPersistentUserStyleSheetLocation(JSStringRef jsURL) -{ - // FIXME: implement -} - -void LayoutTestController::clearPersistentUserStyleSheet() -{ - // FIXME: implement -} - -void LayoutTestController::clearAllDatabases() -{ - webkit_remove_all_web_databases(); -} - -void LayoutTestController::setDatabaseQuota(unsigned long long quota) -{ - WebKitSecurityOrigin* origin = webkit_web_frame_get_security_origin(mainFrame); - webkit_security_origin_set_web_database_quota(origin, quota); -} - -void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool, JSStringRef) -{ - // FIXME: implement -} - -void LayoutTestController::setAppCacheMaximumSize(unsigned long long size) -{ - webkit_application_cache_set_maximum_size(size); -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) -{ - gchar* name = JSStringCopyUTF8CString(animationName); - gchar* element = JSStringCopyUTF8CString(elementId); - bool returnValue = webkit_web_frame_pause_animation(mainFrame, name, time, element); - g_free(name); - g_free(element); - return returnValue; -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) -{ - gchar* name = JSStringCopyUTF8CString(propertyName); - gchar* element = JSStringCopyUTF8CString(elementId); - bool returnValue = webkit_web_frame_pause_transition(mainFrame, name, time, element); - g_free(name); - g_free(element); - return returnValue; -} - -bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) -{ - gchar* name = JSStringCopyUTF8CString(animationId); - gchar* element = JSStringCopyUTF8CString(elementId); - bool returnValue = webkit_web_frame_pause_svg_animation(mainFrame, name, time, element); - g_free(name); - g_free(element); - return returnValue; -} - -unsigned LayoutTestController::numberOfActiveAnimations() const -{ - return webkit_web_frame_number_of_active_animations(mainFrame); -} - -void LayoutTestController::overridePreference(JSStringRef key, JSStringRef value) -{ - gchar* name = JSStringCopyUTF8CString(key); - gchar* strValue = JSStringCopyUTF8CString(value); - - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - ASSERT(view); - - WebKitWebSettings* settings = webkit_web_view_get_settings(view); - gchar* webSettingKey = copyWebSettingKey(name); - - if (webSettingKey) { - GValue stringValue = { 0, { { 0 } } }; - g_value_init(&stringValue, G_TYPE_STRING); - g_value_set_string(&stringValue, const_cast(strValue)); - - WebKitWebSettingsClass* klass = WEBKIT_WEB_SETTINGS_GET_CLASS(settings); - GParamSpec* pspec = g_object_class_find_property(G_OBJECT_CLASS(klass), webSettingKey); - GValue propValue = { 0, { { 0 } } }; - g_value_init(&propValue, pspec->value_type); - - if (g_value_type_transformable(G_TYPE_STRING, pspec->value_type)) { - g_value_transform(const_cast(&stringValue), &propValue); - g_object_set_property(G_OBJECT(settings), webSettingKey, const_cast(&propValue)); - } else if (G_VALUE_HOLDS_BOOLEAN(&propValue)) { - char* lowered = g_utf8_strdown(strValue, -1); - g_object_set(G_OBJECT(settings), webSettingKey, - g_str_equal(lowered, "true") - || g_str_equal(strValue, "1"), - NULL); - g_free(lowered); - } else if (G_VALUE_HOLDS_INT(&propValue)) { - std::string str(strValue); - std::stringstream ss(str); - int val = 0; - if (!(ss >> val).fail()) - g_object_set(G_OBJECT(settings), webSettingKey, val, NULL); - } else - printf("LayoutTestController::overridePreference failed to override preference '%s'.\n", name); - } - - g_free(webSettingKey); - g_free(name); - g_free(strValue); -} - -void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) -{ - printf("LayoutTestController::addUserScript not implemented.\n"); -} - -void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) -{ - printf("LayoutTestController::addUserStyleSheet not implemented.\n"); -} - -void LayoutTestController::setDeveloperExtrasEnabled(bool enabled) -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebSettings* webSettings = webkit_web_view_get_settings(webView); - - g_object_set(webSettings, "enable-developer-extras", enabled, NULL); -} - -void LayoutTestController::showWebInspector() -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); - - webkit_web_inspector_show(inspector); -} - -void LayoutTestController::closeWebInspector() -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); - - webkit_web_inspector_close(inspector); -} - -void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script) -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebInspector* inspector = webkit_web_view_get_inspector(webView); - char* scriptString = JSStringCopyUTF8CString(script); - - webkit_web_inspector_execute_script(inspector, callId, scriptString); - g_free(scriptString); -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script) -{ - // FIXME: Implement this. -} - -void LayoutTestController::removeAllVisitedLinks() -{ - // FIXME: Implement this. -} - -bool LayoutTestController::callShouldCloseOnWebView() -{ - // FIXME: Implement for testing fix for https://bugs.webkit.org/show_bug.cgi?id=27481 - return false; -} - -void LayoutTestController::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL) -{ - -} - -void LayoutTestController::apiTestGoToCurrentBackForwardItem() -{ - -} - -void LayoutTestController::setWebViewEditable(bool) -{ -} - -JSRetainPtr LayoutTestController::markerTextForListItem(JSContextRef context, JSValueRef nodeObject) const -{ - gchar* markerTextGChar = webkit_web_frame_marker_text_for_list_item(mainFrame, context, nodeObject); - if (!markerTextGChar) - return 0; - - JSRetainPtr markerText(Adopt, JSStringCreateWithUTF8CString(markerTextGChar)); - g_free(markerTextGChar); - return markerText; -} - -void LayoutTestController::authenticateSession(JSStringRef, JSStringRef, JSStringRef) -{ -} - -void LayoutTestController::setEditingBehavior(const char* editingBehavior) -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - WebKitWebSettings* settings = webkit_web_view_get_settings(webView); - - if (!strcmp(editingBehavior, "win")) - g_object_set(G_OBJECT(settings), "editing-behavior", WEBKIT_EDITING_BEHAVIOR_WINDOWS, NULL); - if (!strcmp(editingBehavior, "mac")) - g_object_set(G_OBJECT(settings), "editing-behavior", WEBKIT_EDITING_BEHAVIOR_MAC, NULL); -} - -void LayoutTestController::abortModal() -{ -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/PixelDumpSupportGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,50 +0,0 @@ -/* - * Copyright (C) 2009 Zan Dobersek - * Copyright (C) 2010 Igalia S.L. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" - -#include "DumpRenderTree.h" -#include "PixelDumpSupportCairo.h" -#include - -PassRefPtr createBitmapContextFromWebView(bool, bool, bool, bool) -{ - WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); - GdkPixmap* pixmap = gtk_widget_get_snapshot(GTK_WIDGET(view), 0); - gint width, height; - gdk_drawable_get_size(GDK_DRAWABLE(pixmap), &width, &height); - - cairo_surface_t* imageSurface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, width, height); - cairo_t* context = cairo_create(imageSurface); - gdk_cairo_set_source_pixmap(context, pixmap, 0, 0); - cairo_paint(context); - g_object_unref(pixmap); - - return BitmapContext::createByAdoptingBitmapAndContext(0, context); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp --- a/WebKitTools/DumpRenderTree/gtk/WorkQueueItemGtk.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,92 +0,0 @@ -/* - * Copyright (C) 2007 Alp Toker - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Library General Public - * License as published by the Free Software Foundation; either - * version 2 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Library General Public License for more details. - * - * You should have received a copy of the GNU Library General Public License - * along with this library; see the file COPYING.LIB. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. - */ - -#include "config.h" -#include "WorkQueueItem.h" - -#include "DumpRenderTree.h" - -#include -#include -#include - -// Returns a newly allocated UTF-8 character buffer which must be freed with g_free() -gchar* JSStringCopyUTF8CString(JSStringRef jsString) -{ - size_t dataSize = JSStringGetMaximumUTF8CStringSize(jsString); - gchar* utf8 = (gchar*)g_malloc(dataSize); - JSStringGetUTF8CString(jsString, utf8, dataSize); - - return utf8; -} - -bool LoadItem::invoke() const -{ - gchar* targetString = JSStringCopyUTF8CString(m_target.get()); - - WebKitWebFrame* targetFrame; - if (!strlen(targetString)) - targetFrame = mainFrame; - else - targetFrame = webkit_web_frame_find_frame(mainFrame, targetString); - g_free(targetString); - - gchar* urlString = JSStringCopyUTF8CString(m_url.get()); - WebKitNetworkRequest* request = webkit_network_request_new(urlString); - g_free(urlString); - webkit_web_frame_load_request(targetFrame, request); - g_object_unref(request); - - return true; -} - -bool LoadHTMLStringItem::invoke() const -{ - return false; -} - -bool ReloadItem::invoke() const -{ - webkit_web_frame_reload(mainFrame); - return true; -} - -bool ScriptItem::invoke() const -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - gchar* scriptString = JSStringCopyUTF8CString(m_script.get()); - webkit_web_view_execute_script(webView, scriptString); - g_free(scriptString); - return true; -} - -bool BackForwardItem::invoke() const -{ - WebKitWebView* webView = webkit_web_frame_get_web_view(mainFrame); - if (m_howFar == 1) - webkit_web_view_go_forward(webView); - else if (m_howFar == -1) - webkit_web_view_go_back(webView); - else { - WebKitWebBackForwardList* webBackForwardList = webkit_web_view_get_back_forward_list(webView); - WebKitWebHistoryItem* item = webkit_web_back_forward_list_get_nth_item(webBackForwardList, m_howFar); - webkit_web_view_go_to_back_forward_item(webView, item); - } - return true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/gtk/fonts.conf --- a/WebKitTools/DumpRenderTree/gtk/fonts.conf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,258 +0,0 @@ - - - - - - - - mono - - - monospace - - - - - - - sans serif - - - sans-serif - - - - - - - sans - - - sans-serif - - - - - - - - 0x0020 - 0x00A0 - 0x00AD - 0x034F - 0x0600 - 0x0601 - 0x0602 - 0x0603 - 0x06DD - 0x070F - 0x115F - 0x1160 - 0x1680 - 0x17B4 - 0x17B5 - 0x180E - 0x2000 - 0x2001 - 0x2002 - 0x2003 - 0x2004 - 0x2005 - 0x2006 - 0x2007 - 0x2008 - 0x2009 - 0x200A - 0x200B - 0x200C - 0x200D - 0x200E - 0x200F - 0x2028 - 0x2029 - 0x202A - 0x202B - 0x202C - 0x202D - 0x202E - 0x202F - 0x205F - 0x2060 - 0x2061 - 0x2062 - 0x2063 - 0x206A - 0x206B - 0x206C - 0x206D - 0x206E - 0x206F - 0x3000 - 0x3164 - 0xFEFF - 0xFFA0 - 0xFFF9 - 0xFFFA - 0xFFFB - - - - 30 - - - - - - - Avant Garde - - - true - - - URW Gothic L - - - - - Bookman - - - true - - - URW Bookman L - - - - - Courier - - - true - - - Nimbus Mono L - - - - - Helvetica - - - true - - - Nimbus Sans L - - - - - New Century Schoolbook - - - true - - - Century Schoolbook L - - - - - Palatino - - - true - - - URW Palladio L - - - - - Times - - - true - - - Nimbus Roman No9 L - - - - - Zapf Chancery - - - true - - - URW Chancery L - - - - - Zapf Dingbats - - - true - - - Dingbats - - - - - Symbol - - - true - - - Standard Symbols L - - - - - - Nimbus Roman No9 L - serif - - - - Nimbus Sans L - sans-serif - - - - Nimbus Mono L - monospace - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/AccessibilityControllerMac.mm --- a/WebKitTools/DumpRenderTree/mac/AccessibilityControllerMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,81 +0,0 @@ -/* - * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" -#import "AccessibilityController.h" - -#import "AccessibilityUIElement.h" -#import -#import -#import - -AccessibilityController::AccessibilityController() -{ -} - -AccessibilityController::~AccessibilityController() -{ -} - -AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y) -{ - id accessibilityObject = [[[mainFrame frameView] documentView] accessibilityHitTest:NSMakePoint(x, y)]; - return AccessibilityUIElement(accessibilityObject); -} - -AccessibilityUIElement AccessibilityController::focusedElement() -{ - // FIXME: we could do some caching here. - id accessibilityObject = [[[mainFrame frameView] documentView] accessibilityFocusedUIElement]; - return AccessibilityUIElement(accessibilityObject); -} - -AccessibilityUIElement AccessibilityController::rootElement() -{ - // FIXME: we could do some caching here. - id accessibilityObject = [[mainFrame frameView] documentView]; - return AccessibilityUIElement(accessibilityObject); -} - -void AccessibilityController::setLogFocusEvents(bool) -{ -} - -void AccessibilityController::setLogScrollingStartEvents(bool) -{ -} - -void AccessibilityController::setLogValueChangeEvents(bool) -{ -} - -void AccessibilityController::addNotificationListener(PlatformUIElement, JSObjectRef) -{ -} - -void AccessibilityController::notificationReceived(PlatformUIElement, const std::string&) -{ -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/AccessibilityUIElementMac.mm --- a/WebKitTools/DumpRenderTree/mac/AccessibilityUIElementMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1161 +0,0 @@ -/* - * Copyright (C) 2008 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" -#import "AccessibilityUIElement.h" - -#import -#import -#import -#import -#import -#import -#import -#import -#import - -#ifdef BUILDING_ON_TIGER -#define NSAccessibilityValueDescriptionAttribute @"AXValueDescription" -#endif - -#ifndef NSAccessibilityOwnsAttribute -#define NSAccessibilityOwnsAttribute @"AXOwns" -#endif - -#ifndef NSAccessibilityGrabbedAttribute -#define NSAccessibilityGrabbedAttribute @"AXGrabbed" -#endif - -#ifndef NSAccessibilityDropEffectsAttribute -#define NSAccessibilityDropEffectsAttribute @"AXDropEffects" -#endif - -// If an unsupported attribute is passed in, it will raise an accessibility exception. These are usually caught by the Accessibility Runtime to inform -// the AX client app of the error. However, DRT is the AX client app, so it must catch these exceptions. -#define BEGIN_AX_OBJC_EXCEPTIONS @try { -#define END_AX_OBJC_EXCEPTIONS } @catch(NSException *e) { if (![[e name] isEqualToString:NSAccessibilityException]) @throw; } - - -typedef void (*AXPostedNotificationCallback)(id element, NSString* notification, void* context); - -@interface NSObject (WebKitAccessibilityAdditions) -- (NSArray *)accessibilityArrayAttributeValues:(NSString *)attribute index:(NSUInteger)index maxCount:(NSUInteger)maxCount; -- (void)accessibilitySetShouldRepostNotifications:(BOOL)repost; -- (NSUInteger)accessibilityIndexOfChild:(id)child; -- (NSUInteger)accessibilityArrayAttributeCount:(NSString *)attribute; -@end - -@interface NSString (JSStringRefAdditions) -+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef; -- (JSStringRef)createJSStringRef; -@end - -@implementation NSString (JSStringRefAdditions) - -+ (NSString *)stringWithJSStringRef:(JSStringRef)jsStringRef -{ - if (!jsStringRef) - return NULL; - - CFStringRef cfString = JSStringCopyCFString(kCFAllocatorDefault, jsStringRef); - return [(NSString *)cfString autorelease]; -} - -- (JSStringRef)createJSStringRef -{ - return JSStringCreateWithCFString((CFStringRef)self); -} - -@end - -@interface AccessibilityNotificationHandler : NSObject -{ - id m_platformElement; - JSObjectRef m_notificationFunctionCallback; -} - -@end - -@implementation AccessibilityNotificationHandler - -- (id)initWithPlatformElement:(id)platformElement -{ - self = [super init]; - - m_platformElement = platformElement; - - // Once an object starts requesting notifications, it's on for the duration of the program. - // This is to avoid any race conditions between tests turning this flag on and off. Instead - // AccessibilityNotificationHandler can just listen when they want to. - [m_platformElement accessibilitySetShouldRepostNotifications:YES]; - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(_notificationReceived:) name:@"AXDRTNotification" object:nil]; - - return self; -} - -- (void)dealloc -{ - [[NSNotificationCenter defaultCenter] removeObserver:self]; - JSValueUnprotect([mainFrame globalContext], m_notificationFunctionCallback); - m_notificationFunctionCallback = 0; - - [super dealloc]; -} - -- (void)_notificationReceived:(NSNotification *)notification -{ - NSString *notificationName = [[notification userInfo] objectForKey:@"notificationName"]; - if (!notificationName) - return; - - JSRetainPtr jsNotification(Adopt, [notificationName createJSStringRef]); - JSValueRef argument = JSValueMakeString([mainFrame globalContext], jsNotification.get()); - JSObjectCallAsFunction([mainFrame globalContext], m_notificationFunctionCallback, 0, 1, &argument, 0); -} - -- (void)setCallback:(JSObjectRef)callback -{ - if (!callback) - return; - - // Release the old callback. - if (m_notificationFunctionCallback) - JSValueUnprotect([mainFrame globalContext], m_notificationFunctionCallback); - - m_notificationFunctionCallback = callback; - JSValueProtect([mainFrame globalContext], m_notificationFunctionCallback); -} - -@end - -AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element) - : m_element(element) - , m_notificationHandler(0) -{ - // FIXME: ap@webkit.org says ObjC objects need to be CFRetained/CFRelease to be GC-compliant on the mac. - [m_element retain]; -} - -AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other) - : m_element(other.m_element) - , m_notificationHandler(0) -{ - [m_element retain]; -} - -AccessibilityUIElement::~AccessibilityUIElement() -{ - // The notification handler should be nil because removeNotificationListener() should have been called in the test. - ASSERT(!m_notificationHandler); - [m_element release]; -} - -static NSString* descriptionOfValue(id valueObject, id focusedAccessibilityObject) -{ - if (!valueObject) - return NULL; - - if ([valueObject isKindOfClass:[NSArray class]]) - return [NSString stringWithFormat:@"", [(NSArray*)valueObject count]]; - - if ([valueObject isKindOfClass:[NSNumber class]]) - return [(NSNumber*)valueObject stringValue]; - - if ([valueObject isKindOfClass:[NSValue class]]) { - NSString* type = [NSString stringWithCString:[valueObject objCType] encoding:NSASCIIStringEncoding]; - NSValue* value = (NSValue*)valueObject; - if ([type rangeOfString:@"NSRect"].length > 0) - return [NSString stringWithFormat:@"NSRect: %@", NSStringFromRect([value rectValue])]; - if ([type rangeOfString:@"NSPoint"].length > 0) - return [NSString stringWithFormat:@"NSPoint: %@", NSStringFromPoint([value pointValue])]; - if ([type rangeOfString:@"NSSize"].length > 0) - return [NSString stringWithFormat:@"NSSize: %@", NSStringFromSize([value sizeValue])]; - if ([type rangeOfString:@"NSRange"].length > 0) - return [NSString stringWithFormat:@"NSRange: %@", NSStringFromRange([value rangeValue])]; - } - - // Strip absolute URL paths - NSString* description = [valueObject description]; - NSRange range = [description rangeOfString:@"LayoutTests"]; - if (range.length) - return [description substringFromIndex:range.location]; - - // Strip pointer locations - if ([description rangeOfString:@"0x"].length) { - NSString* role = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityRoleAttribute]; - NSString* title = [focusedAccessibilityObject accessibilityAttributeValue:NSAccessibilityTitleAttribute]; - if ([title length]) - return [NSString stringWithFormat:@"<%@: '%@'>", role, title]; - return [NSString stringWithFormat:@"<%@>", role]; - } - - return [valueObject description]; -} - -static NSString* attributesOfElement(id accessibilityObject) -{ - NSArray* supportedAttributes = [accessibilityObject accessibilityAttributeNames]; - - NSMutableString* attributesString = [NSMutableString string]; - for (NSUInteger i = 0; i < [supportedAttributes count]; ++i) { - NSString* attribute = [supportedAttributes objectAtIndex:i]; - - // Right now, position provides useless and screen-specific information, so we do not - // want to include it for the sake of universally passing tests. - if ([attribute isEqualToString:@"AXPosition"]) - continue; - - // accessibilityAttributeValue: can throw an if an attribute is not returned. - // For DumpRenderTree's purpose, we should ignore those exceptions - BEGIN_AX_OBJC_EXCEPTIONS - id valueObject = [accessibilityObject accessibilityAttributeValue:attribute]; - NSString* value = descriptionOfValue(valueObject, accessibilityObject); - [attributesString appendFormat:@"%@: %@\n", attribute, value]; - END_AX_OBJC_EXCEPTIONS - } - - return attributesString; -} - -static JSStringRef concatenateAttributeAndValue(NSString* attribute, NSString* value) -{ - Vector buffer([attribute length]); - [attribute getCharacters:buffer.data()]; - buffer.append(':'); - buffer.append(' '); - - Vector valueBuffer([value length]); - [value getCharacters:valueBuffer.data()]; - buffer.append(valueBuffer); - - return JSStringCreateWithCharacters(buffer.data(), buffer.size()); -} - -static void convertNSArrayToVector(NSArray* array, Vector& elementVector) -{ - NSUInteger count = [array count]; - for (NSUInteger i = 0; i < count; ++i) - elementVector.append(AccessibilityUIElement([array objectAtIndex:i])); -} - -static JSStringRef descriptionOfElements(Vector& elementVector) -{ - NSMutableString* allElementString = [NSMutableString string]; - size_t size = elementVector.size(); - for (size_t i = 0; i < size; ++i) { - NSString* attributes = attributesOfElement(elementVector[i].platformUIElement()); - [allElementString appendFormat:@"%@\n------------\n", attributes]; - } - - return [allElementString createJSStringRef]; -} - -void AccessibilityUIElement::getLinkedUIElements(Vector& elementVector) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* linkedElements = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute]; - convertNSArrayToVector(linkedElements, elementVector); - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::getDocumentLinks(Vector& elementVector) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* linkElements = [m_element accessibilityAttributeValue:@"AXLinkUIElements"]; - convertNSArrayToVector(linkElements, elementVector); - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::getChildren(Vector& elementVector) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* children = [m_element accessibilityAttributeValue:NSAccessibilityChildrenAttribute]; - convertNSArrayToVector(children, elementVector); - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::getChildrenWithRange(Vector& elementVector, unsigned location, unsigned length) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* children = [m_element accessibilityArrayAttributeValues:NSAccessibilityChildrenAttribute index:location maxCount:length]; - convertNSArrayToVector(children, elementVector); - END_AX_OBJC_EXCEPTIONS -} - -int AccessibilityUIElement::childrenCount() -{ - Vector children; - getChildren(children); - - return children.size(); -} - -AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y) -{ - id element = [m_element accessibilityHitTest:NSMakePoint(x, y)]; - if (!element) - return nil; - - return AccessibilityUIElement(element); -} - -unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element) -{ - return [m_element accessibilityIndexOfChild:element->platformUIElement()]; -} - -AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index) -{ - Vector children; - getChildrenWithRange(children, index, 1); - - if (children.size() == 1) - return children[0]; - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute]; - if (index < [objects count]) - return [objects objectAtIndex:index]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityOwnsAttribute]; - if (index < [objects count]) - return [objects objectAtIndex:index]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* objects = [m_element accessibilityAttributeValue:NSAccessibilityLinkedUIElementsAttribute]; - if (index < [objects count]) - return [objects objectAtIndex:index]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedRowsAttribute]; - if (index < [rows count]) - return [rows objectAtIndex:index]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* rows = [m_element accessibilityAttributeValue:NSAccessibilitySelectedRowsAttribute]; - if (index < [rows count]) - return [rows objectAtIndex:index]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::titleUIElement() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityTitleUIElementAttribute]; - if (accessibilityObject) - return AccessibilityUIElement(accessibilityObject); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::parentElement() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityParentAttribute]; - if (accessibilityObject) - return AccessibilityUIElement(accessibilityObject); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::disclosedByRow() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id accessibilityObject = [m_element accessibilityAttributeValue:NSAccessibilityDisclosedByRowAttribute]; - if (accessibilityObject) - return AccessibilityUIElement(accessibilityObject); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements() -{ - Vector linkedElements; - getLinkedUIElements(linkedElements); - return descriptionOfElements(linkedElements); -} - -JSStringRef AccessibilityUIElement::attributesOfDocumentLinks() -{ - Vector linkElements; - getDocumentLinks(linkElements); - return descriptionOfElements(linkElements); -} - -JSStringRef AccessibilityUIElement::attributesOfChildren() -{ - Vector children; - getChildren(children); - return descriptionOfElements(children); -} - -JSStringRef AccessibilityUIElement::allAttributes() -{ - NSString* attributes = attributesOfElement(m_element); - return [attributes createJSStringRef]; -} - -JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute) -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]]; - if ([value isKindOfClass:[NSString class]]) - return [value createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute) -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:[NSString stringWithJSStringRef:attribute]]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute) -{ - BEGIN_AX_OBJC_EXCEPTIONS - return [m_element accessibilityIsAttributeSettable:[NSString stringWithJSStringRef:attribute]]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute) -{ - BEGIN_AX_OBJC_EXCEPTIONS - return [[m_element accessibilityAttributeNames] containsObject:[NSString stringWithJSStringRef:attribute]]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -JSStringRef AccessibilityUIElement::parameterizedAttributeNames() -{ - NSArray* supportedParameterizedAttributes = [m_element accessibilityParameterizedAttributeNames]; - - NSMutableString* attributesString = [NSMutableString string]; - for (NSUInteger i = 0; i < [supportedParameterizedAttributes count]; ++i) { - [attributesString appendFormat:@"%@\n", [supportedParameterizedAttributes objectAtIndex:i]]; - } - - return [attributesString createJSStringRef]; -} - -JSStringRef AccessibilityUIElement::role() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSString *role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleAttribute], m_element); - return concatenateAttributeAndValue(@"AXRole", role); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::subrole() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilitySubroleAttribute], m_element); - return concatenateAttributeAndValue(@"AXSubrole", role); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::roleDescription() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSString* role = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityRoleDescriptionAttribute], m_element); - return concatenateAttributeAndValue(@"AXRoleDescription", role); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::title() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSString* title = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityTitleAttribute], m_element); - return concatenateAttributeAndValue(@"AXTitle", title); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::description() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityDescriptionAttribute], m_element); - return concatenateAttributeAndValue(@"AXDescription", description); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::orientation() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityOrientationAttribute], m_element); - return concatenateAttributeAndValue(@"AXOrientation", description); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::stringValue() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityValueAttribute], m_element); - return concatenateAttributeAndValue(@"AXValue", description); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::language() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id description = descriptionOfValue([m_element accessibilityAttributeValue:@"AXLanguage"], m_element); - return concatenateAttributeAndValue(@"AXLanguage", description); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::helpText() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id description = descriptionOfValue([m_element accessibilityAttributeValue:NSAccessibilityHelpAttribute], m_element); - return concatenateAttributeAndValue(@"AXHelp", description); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -double AccessibilityUIElement::x() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute]; - return static_cast([positionValue pointValue].x); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::y() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* positionValue = [m_element accessibilityAttributeValue:NSAccessibilityPositionAttribute]; - return static_cast([positionValue pointValue].y); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::width() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute]; - return static_cast([sizeValue sizeValue].width); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::height() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* sizeValue = [m_element accessibilityAttributeValue:NSAccessibilitySizeAttribute]; - return static_cast([sizeValue sizeValue].height); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::clickPointX() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"]; - return static_cast([positionValue pointValue].x); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::clickPointY() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* positionValue = [m_element accessibilityAttributeValue:@"AXClickPoint"]; - return static_cast([positionValue pointValue].y); - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::intValue() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityValueAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [(NSNumber*)value doubleValue]; - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::minValue() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityMinValueAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [(NSNumber*)value doubleValue]; - END_AX_OBJC_EXCEPTIONS - - return 0.0f; -} - -double AccessibilityUIElement::maxValue() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityMaxValueAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [(NSNumber*)value doubleValue]; - END_AX_OBJC_EXCEPTIONS - - return 0.0; -} - -JSStringRef AccessibilityUIElement::valueDescription() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSString* valueDescription = [m_element accessibilityAttributeValue:NSAccessibilityValueDescriptionAttribute]; - if ([valueDescription isKindOfClass:[NSString class]]) - return [valueDescription createJSStringRef]; - - END_AX_OBJC_EXCEPTIONS - return 0; -} - -int AccessibilityUIElement::insertionPointLineNumber() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityInsertionPointLineNumberAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [(NSNumber *)value intValue]; - END_AX_OBJC_EXCEPTIONS - - return -1; -} - -bool AccessibilityUIElement::isActionSupported(JSStringRef action) -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* actions = [m_element accessibilityActionNames]; - return [actions containsObject:[NSString stringWithJSStringRef:action]]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isEnabled() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityEnabledAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isRequired() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:@"AXRequired"]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isSelected() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilitySelectedAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isExpanded() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityExpandedAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -bool AccessibilityUIElement::isChecked() const -{ - // On the Mac, intValue()==1 if a a checkable control is checked. - return intValue() == 1; -} - -int AccessibilityUIElement::hierarchicalLevel() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityDisclosureLevelAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [value intValue]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -bool AccessibilityUIElement::ariaIsGrabbed() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityGrabbedAttribute]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -JSStringRef AccessibilityUIElement::ariaDropEffects() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityDropEffectsAttribute]; - if (![value isKindOfClass:[NSArray class]]) - return 0; - - NSMutableString* dropEffects = [NSMutableString string]; - NSInteger length = [value count]; - for (NSInteger k = 0; k < length; ++k) { - [dropEffects appendString:[value objectAtIndex:k]]; - if (k < length - 1) - [dropEffects appendString:@","]; - } - - return [dropEffects createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -// parameterized attributes -int AccessibilityUIElement::lineForIndex(int index) -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityLineForIndexParameterizedAttribute forParameter:[NSNumber numberWithInt:index]]; - if ([value isKindOfClass:[NSNumber class]]) - return [(NSNumber *)value intValue]; - END_AX_OBJC_EXCEPTIONS - - return -1; -} - -JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length) -{ - NSRange range = NSMakeRange(location, length); - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:NSAccessibilityBoundsForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]]; - NSRect rect = NSMakeRect(0,0,0,0); - if ([value isKindOfClass:[NSValue class]]) - rect = [value rectValue]; - - // don't return position information because it is platform dependent - NSMutableString* boundsDescription = [NSMutableString stringWithFormat:@"{{%f, %f}, {%f, %f}}",-1.0f,-1.0f,rect.size.width,rect.size.height]; - return [boundsDescription createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::stringForRange(unsigned location, unsigned length) -{ - NSRange range = NSMakeRange(location, length); - BEGIN_AX_OBJC_EXCEPTIONS - id string = [m_element accessibilityAttributeValue:NSAccessibilityStringForRangeParameterizedAttribute forParameter:[NSValue valueWithRange:range]]; - if (![string isKindOfClass:[NSString class]]) - return 0; - - return [string createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfColumnHeaders() -{ - // not yet defined in AppKit... odd - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* columnHeadersArray = [m_element accessibilityAttributeValue:@"AXColumnHeaderUIElements"]; - Vector columnHeadersVector; - convertNSArrayToVector(columnHeadersArray, columnHeadersVector); - return descriptionOfElements(columnHeadersVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfRowHeaders() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* rowHeadersArray = [m_element accessibilityAttributeValue:@"AXRowHeaderUIElements"]; - Vector rowHeadersVector; - convertNSArrayToVector(rowHeadersArray, rowHeadersVector); - return descriptionOfElements(rowHeadersVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfColumns() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* columnsArray = [m_element accessibilityAttributeValue:NSAccessibilityColumnsAttribute]; - Vector columnsVector; - convertNSArrayToVector(columnsArray, columnsVector); - return descriptionOfElements(columnsVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfRows() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* rowsArray = [m_element accessibilityAttributeValue:NSAccessibilityRowsAttribute]; - Vector rowsVector; - convertNSArrayToVector(rowsArray, rowsVector); - return descriptionOfElements(rowsVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfVisibleCells() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSArray* cellsArray = [m_element accessibilityAttributeValue:@"AXVisibleCells"]; - Vector cellsVector; - convertNSArrayToVector(cellsArray, cellsVector); - return descriptionOfElements(cellsVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfHeader() -{ - BEGIN_AX_OBJC_EXCEPTIONS - id headerObject = [m_element accessibilityAttributeValue:NSAccessibilityHeaderAttribute]; - if (!headerObject) - return [@"" createJSStringRef]; - - Vector headerVector; - headerVector.append(headerObject); - return descriptionOfElements(headerVector); - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -int AccessibilityUIElement::rowCount() -{ - BEGIN_AX_OBJC_EXCEPTIONS - return [m_element accessibilityArrayAttributeCount:NSAccessibilityRowsAttribute]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -int AccessibilityUIElement::columnCount() -{ - BEGIN_AX_OBJC_EXCEPTIONS - return [m_element accessibilityArrayAttributeCount:NSAccessibilityColumnsAttribute]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -int AccessibilityUIElement::indexInTable() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSNumber* indexNumber = [m_element accessibilityAttributeValue:NSAccessibilityIndexAttribute]; - if (indexNumber) - return [indexNumber intValue]; - END_AX_OBJC_EXCEPTIONS - - return -1; -} - -JSStringRef AccessibilityUIElement::rowIndexRange() -{ - NSRange range = NSMakeRange(0,0); - BEGIN_AX_OBJC_EXCEPTIONS - NSValue* indexRange = [m_element accessibilityAttributeValue:@"AXRowIndexRange"]; - if (indexRange) - range = [indexRange rangeValue]; - NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length]; - return [rangeDescription createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::columnIndexRange() -{ - NSRange range = NSMakeRange(0,0); - BEGIN_AX_OBJC_EXCEPTIONS - NSNumber* indexRange = [m_element accessibilityAttributeValue:@"AXColumnIndexRange"]; - if (indexRange) - range = [indexRange rangeValue]; - NSMutableString* rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length]; - return [rangeDescription createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned col, unsigned row) -{ - NSArray *colRowArray = [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:col], [NSNumber numberWithUnsignedInt:row], nil]; - BEGIN_AX_OBJC_EXCEPTIONS - return [m_element accessibilityAttributeValue:@"AXCellForColumnAndRow" forParameter:colRowArray]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -JSStringRef AccessibilityUIElement::selectedTextRange() -{ - NSRange range = NSMakeRange(NSNotFound, 0); - BEGIN_AX_OBJC_EXCEPTIONS - NSValue *indexRange = [m_element accessibilityAttributeValue:NSAccessibilitySelectedTextRangeAttribute]; - if (indexRange) - range = [indexRange rangeValue]; - NSMutableString *rangeDescription = [NSMutableString stringWithFormat:@"{%d, %d}",range.location, range.length]; - return [rangeDescription createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return 0; -} - -void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length) -{ - NSRange textRange = NSMakeRange(location, length); - NSValue *textRangeValue = [NSValue valueWithRange:textRange]; - BEGIN_AX_OBJC_EXCEPTIONS - [m_element accessibilitySetValue:textRangeValue forAttribute:NSAccessibilitySelectedTextRangeAttribute]; - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::increment() -{ - BEGIN_AX_OBJC_EXCEPTIONS - [m_element accessibilityPerformAction:NSAccessibilityIncrementAction]; - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::decrement() -{ - BEGIN_AX_OBJC_EXCEPTIONS - [m_element accessibilityPerformAction:NSAccessibilityDecrementAction]; - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::showMenu() -{ - BEGIN_AX_OBJC_EXCEPTIONS - [m_element accessibilityPerformAction:NSAccessibilityShowMenuAction]; - END_AX_OBJC_EXCEPTIONS -} - -void AccessibilityUIElement::press() -{ - BEGIN_AX_OBJC_EXCEPTIONS - [m_element accessibilityPerformAction:NSAccessibilityPressAction]; - END_AX_OBJC_EXCEPTIONS -} - -JSStringRef AccessibilityUIElement::accessibilityValue() const -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::documentEncoding() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::documentURI() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::url() -{ - BEGIN_AX_OBJC_EXCEPTIONS - NSURL *url = [m_element accessibilityAttributeValue:NSAccessibilityURLAttribute]; - return [[url absoluteString] createJSStringRef]; - END_AX_OBJC_EXCEPTIONS - - return nil; -} - -bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback) -{ - if (!functionCallback) - return false; - - // Mac programmers should not be adding more than one notification listener per element. - // Other platforms may be different. - if (m_notificationHandler) - return false; - m_notificationHandler = [[AccessibilityNotificationHandler alloc] initWithPlatformElement:platformUIElement()]; - [m_notificationHandler setCallback:functionCallback]; - - return true; -} - -void AccessibilityUIElement::removeNotificationListener() -{ - // Mac programmers should not be trying to remove a listener that's already removed. - ASSERT(m_notificationHandler); - - [m_notificationHandler release]; - m_notificationHandler = nil; -} - -bool AccessibilityUIElement::isSelectable() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isMultiSelectable() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isVisible() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isOffScreen() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isCollapsed() const -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::hasPopup() const -{ - BEGIN_AX_OBJC_EXCEPTIONS - id value = [m_element accessibilityAttributeValue:@"AXHasPopup"]; - if ([value isKindOfClass:[NSNumber class]]) - return [value boolValue]; - END_AX_OBJC_EXCEPTIONS - - return false; -} - -void AccessibilityUIElement::takeFocus() -{ - // FIXME: implement -} - -void AccessibilityUIElement::takeSelection() -{ - // FIXME: implement -} - -void AccessibilityUIElement::addSelection() -{ - // FIXME: implement -} - -void AccessibilityUIElement::removeSelection() -{ - // FIXME: implement -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/AppleScriptController.h --- a/WebKitTools/DumpRenderTree/mac/AppleScriptController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@class WebView; - -@interface AppleScriptController : NSObject -{ - WebView *webView; -} -- (id)initWithWebView:(WebView *)view; -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/AppleScriptController.m --- a/WebKitTools/DumpRenderTree/mac/AppleScriptController.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,127 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "AppleScriptController.h" - -#import -#import // for aeDescByEvaluatingJavaScriptFromString, which is pending API review - -@implementation AppleScriptController - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (aSelector == @selector(doJavaScript:)) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(doJavaScript:)) - return @"doJavaScript"; - - return nil; -} - -- (id)initWithWebView:(WebView *)wv -{ - self = [super init]; - webView = wv; - return self; -} - -static id convertAEDescToObject(NSAppleEventDescriptor *aeDesc) -{ - id value = nil; - - DescType descType = [aeDesc descriptorType]; - switch (descType) { - case typeUnicodeText: - value = [NSString stringWithFormat:@"\"%@\"", [aeDesc stringValue]]; - break; - case typeLongDateTime: - if ([[aeDesc data] length] == sizeof(LongDateTime)) { - LongDateTime d; - [[aeDesc data] getBytes:&d]; - value = [NSString stringWithFormat:@"%016llX", (unsigned long long)d]; - } - break; - case typeAEList: - value = [NSMutableString stringWithString:@"("]; - int numItems = [aeDesc numberOfItems]; - for (int i = 0; i < numItems; ++i) { - if (i != 0) - [(NSMutableString*)value appendString:@", "]; - id obj = convertAEDescToObject([aeDesc descriptorAtIndex:(i + 1)]); - [(NSMutableString*)value appendString:[obj description]]; - } - [(NSMutableString*)value appendString:@")"]; - break; - case typeType: { - OSType type = [aeDesc typeCodeValue]; - - char typeStr[5]; - typeStr[0] = type >> 24; - typeStr[1] = type >> 16; - typeStr[2] = type >> 8; - typeStr[3] = type; - typeStr[4] = 0; - - value = [NSString stringWithFormat:@"'%s'", typeStr]; - break; - } - } - - if (!value) - value = [aeDesc stringValue]; - if (!value) - value = [aeDesc data]; - - return value; -} - -- (NSString *)doJavaScript:(NSString *)aString -{ - NSAppleEventDescriptor *aeDesc = [webView aeDescByEvaluatingJavaScriptFromString:aString]; - if (!aeDesc) - return @"(null)"; - - DescType descType = [aeDesc descriptorType]; - char descTypeStr[5]; - descTypeStr[0] = descType >> 24; - descTypeStr[1] = descType >> 16; - descTypeStr[2] = descType >> 8; - descTypeStr[3] = descType; - descTypeStr[4] = 0; - - return [NSString stringWithFormat:@"%@ ('%s')", convertAEDescToObject(aeDesc), descTypeStr]; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/CheckedMalloc.cpp --- a/WebKitTools/DumpRenderTree/mac/CheckedMalloc.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "CheckedMalloc.h" - -#import -#import - -static void* (*savedMalloc)(malloc_zone_t*, size_t); -static void* (*savedRealloc)(malloc_zone_t*, void*, size_t); - -static void* checkedMalloc(malloc_zone_t* zone, size_t size) -{ - if (size >= 0x10000000) - return 0; - return savedMalloc(zone, size); -} - -static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size) -{ - if (size >= 0x10000000) - return 0; - return savedRealloc(zone, ptr, size); -} - -void makeLargeMallocFailSilently() -{ - malloc_zone_t* zone = malloc_default_zone(); - -#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD) - vm_address_t pageStart = reinterpret_cast(zone) & static_cast(~(getpagesize() - 1)); - vm_size_t len = reinterpret_cast(zone) - pageStart + sizeof(malloc_zone_t); - mprotect(reinterpret_cast(pageStart), len, PROT_READ | PROT_WRITE); -#endif - - savedMalloc = zone->malloc; - savedRealloc = zone->realloc; - zone->malloc = checkedMalloc; - zone->realloc = checkedRealloc; - -#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD) - mprotect(reinterpret_cast(pageStart), len, PROT_READ); -#endif -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/CheckedMalloc.h --- a/WebKitTools/DumpRenderTree/mac/CheckedMalloc.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple, Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -void makeLargeMallocFailSilently(); diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/Configurations/Base.xcconfig --- a/WebKitTools/DumpRenderTree/mac/Configurations/Base.xcconfig Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,69 +0,0 @@ -// Copyright (C) 2009 Apple Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -HEADER_SEARCH_PATHS = ForwardingHeaders mac/InternalHeaders; -FRAMEWORK_SEARCH_PATHS = $(SYSTEM_LIBRARY_DIR)/Frameworks/Quartz.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/ApplicationServices.framework/Frameworks $(SYSTEM_LIBRARY_DIR)/Frameworks/CoreServices.framework/Frameworks; -GCC_PREPROCESSOR_DEFINITIONS = ENABLE_DASHBOARD_SUPPORT WEBKIT_VERSION_MIN_REQUIRED=WEBKIT_VERSION_LATEST; -DEBUG_INFORMATION_FORMAT = dwarf -PREBINDING = NO -GCC_C_LANGUAGE_STANDARD = gnu99 -GCC_OBJC_CALL_CXX_CDTORS = YES -GCC_PRECOMPILE_PREFIX_HEADER = YES -GCC_TREAT_WARNINGS_AS_ERRORS = YES -GCC_WARN_UNUSED_FUNCTION = YES -GCC_WARN_UNUSED_VARIABLE = YES -GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO -WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -LINKER_DISPLAYS_MANGLED_NAMES = YES; - - -TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR); - - -// Use GCC 4.2 with Xcode 3.1, which includes GCC 4.2 but defaults to GCC 4.0. -// Note that Xcode versions as new as 3.1.2 use XCODE_VERSION_ACTUAL for the minor version -// number. Newer versions of Xcode use XCODE_VERSION_MINOR for the minor version, and -// XCODE_VERSION_ACTUAL for the full version number. -TARGET_GCC_VERSION = $(TARGET_GCC_VERSION_$(TARGET_MAC_OS_X_VERSION_MAJOR)); -TARGET_GCC_VERSION_ = $(TARGET_GCC_VERSION_1040); -TARGET_GCC_VERSION_1040 = GCC_40; -TARGET_GCC_VERSION_1050 = $(TARGET_GCC_VERSION_1050_$(XCODE_VERSION_MINOR)); -TARGET_GCC_VERSION_1050_ = $(TARGET_GCC_VERSION_1050_$(XCODE_VERSION_ACTUAL)); -TARGET_GCC_VERSION_1050_0310 = GCC_42; -TARGET_GCC_VERSION_1050_0320 = GCC_42; -TARGET_GCC_VERSION_1060 = GCC_42; -TARGET_GCC_VERSION_1070 = LLVM_GCC_42; - -GCC_VERSION = $(GCC_VERSION_$(TARGET_GCC_VERSION)); -GCC_VERSION_GCC_40 = 4.0; -GCC_VERSION_GCC_42 = 4.2; -GCC_VERSION_LLVM_GCC_42 = com.apple.compilers.llvmgcc42; - -// If the target Mac OS X version does not match the current Mac OS X version then we'll want to build using the target version's SDK. -SDKROOT = $(SDKROOT_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR)); -SDKROOT_1050_1040 = macosx10.4; -SDKROOT_1060_1040 = macosx10.4; -SDKROOT_1060_1050 = macosx10.5; -SDKROOT_1070_1040 = macosx10.4; -SDKROOT_1070_1050 = macosx10.5; -SDKROOT_1070_1060 = macosx10.6; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig --- a/WebKitTools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,40 +0,0 @@ -// Copyright (C) 2009 Apple Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -#include "Base.xcconfig" - -ARCHS = $(ARCHS_$(TARGET_MAC_OS_X_VERSION_MAJOR)); -ARCHS_ = $(ARCHS_1040); -ARCHS_1040 = $(NATIVE_ARCH); -ARCHS_1050 = $(NATIVE_ARCH); -ARCHS_1060 = $(ARCHS_STANDARD_32_64_BIT); -ARCHS_1070 = $(ARCHS_STANDARD_32_64_BIT); - -ONLY_ACTIVE_ARCH = YES; - -MACOSX_DEPLOYMENT_TARGET = $(MACOSX_DEPLOYMENT_TARGET_$(TARGET_MAC_OS_X_VERSION_MAJOR)) -MACOSX_DEPLOYMENT_TARGET_ = 10.4; -MACOSX_DEPLOYMENT_TARGET_1040 = 10.4; -MACOSX_DEPLOYMENT_TARGET_1050 = 10.5; -MACOSX_DEPLOYMENT_TARGET_1060 = 10.6; -MACOSX_DEPLOYMENT_TARGET_1070 = 10.7; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig --- a/WebKitTools/DumpRenderTree/mac/Configurations/DumpRenderTree.xcconfig Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -// Copyright (C) 2009 Apple Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -OTHER_LDFLAGS = -sectcreate __DATA Ahem qt/fonts/AHEM____.TTF -sectcreate __DATA WeightWatcher100 fonts/WebKitWeightWatcher100.ttf -sectcreate __DATA WeightWatcher200 fonts/WebKitWeightWatcher200.ttf -sectcreate __DATA WeightWatcher300 fonts/WebKitWeightWatcher300.ttf -sectcreate __DATA WeightWatcher400 fonts/WebKitWeightWatcher400.ttf -sectcreate __DATA WeightWatcher500 fonts/WebKitWeightWatcher500.ttf -sectcreate __DATA WeightWatcher600 fonts/WebKitWeightWatcher600.ttf -sectcreate __DATA WeightWatcher700 fonts/WebKitWeightWatcher700.ttf -sectcreate __DATA WeightWatcher800 fonts/WebKitWeightWatcher800.ttf -sectcreate __DATA WeightWatcher900 fonts/WebKitWeightWatcher900.ttf -PRODUCT_NAME = DumpRenderTree -GCC_ENABLE_OBJC_EXCEPTIONS = YES -GCC_PREFIX_HEADER = DumpRenderTreePrefix.h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/Configurations/ImageDiff.xcconfig --- a/WebKitTools/DumpRenderTree/mac/Configurations/ImageDiff.xcconfig Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,24 +0,0 @@ -// Copyright (C) 2009 Apple Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRODUCT_NAME = ImageDiff diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig --- a/WebKitTools/DumpRenderTree/mac/Configurations/TestNetscapePlugIn.xcconfig Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -// Copyright (C) 2009 Apple Inc. All rights reserved. -// -// Redistribution and use in source and binary forms, with or without -// modification, are permitted provided that the following conditions -// are met: -// 1. Redistributions of source code must retain the above copyright -// notice, this list of conditions and the following disclaimer. -// 2. Redistributions in binary form must reproduce the above copyright -// notice, this list of conditions and the following disclaimer in the -// documentation and/or other materials provided with the distribution. -// -// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRODUCT_NAME = TestNetscapePlugIn -WRAPPER_EXTENSION = plugin -INFOPLIST_FILE = TestNetscapePlugIn.subproj/Info.plist -INSTALL_PATH = "$(USER_LIBRARY_DIR)/Plugins" -WARNING_CFLAGS = -Wmost -Wno-four-char-constants -Wno-unknown-pragmas -LIBRARY_STYLE = BUNDLE diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTree.mm --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTree.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1353 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" - -#import "AccessibilityController.h" -#import "CheckedMalloc.h" -#import "DumpRenderTreeDraggingInfo.h" -#import "DumpRenderTreePasteboard.h" -#import "DumpRenderTreeWindow.h" -#import "EditingDelegate.h" -#import "EventSendingController.h" -#import "FrameLoadDelegate.h" -#import "HistoryDelegate.h" -#import "JavaScriptThreading.h" -#import "LayoutTestController.h" -#import "MockGeolocationProvider.h" -#import "NavigationController.h" -#import "ObjCPlugin.h" -#import "ObjCPluginFunction.h" -#import "PixelDumpSupport.h" -#import "PolicyDelegate.h" -#import "ResourceLoadDelegate.h" -#import "UIDelegate.h" -#import "WorkQueue.h" -#import "WorkQueueItem.h" -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import - -extern "C" { -#import -} - -using namespace std; - -@interface DumpRenderTreeApplication : NSApplication -@end - -@interface DumpRenderTreeEvent : NSEvent -@end - -@interface NSURLRequest (PrivateThingsWeShouldntReallyUse) -+(void)setAllowsAnyHTTPSCertificate:(BOOL)allow forHost:(NSString *)host; -@end - -static void runTest(const string& testPathOrURL); - -// Deciding when it's OK to dump out the state is a bit tricky. All these must be true: -// - There is no load in progress -// - There is no work queued up (see workQueue var, below) -// - waitToDump==NO. This means either waitUntilDone was never called, or it was called -// and notifyDone was called subsequently. -// Note that the call to notifyDone and the end of the load can happen in either order. - -volatile bool done; - -NavigationController* gNavigationController = 0; -RefPtr gLayoutTestController; - -WebFrame *mainFrame = 0; -// This is the topmost frame that is loading, during a given load, or nil when no load is -// in progress. Usually this is the same as the main frame, but not always. In the case -// where a frameset is loaded, and then new content is loaded into one of the child frames, -// that child frame is the "topmost frame that is loading". -WebFrame *topLoadingFrame = nil; // !nil iff a load is in progress - - -CFMutableSetRef disallowedURLs = 0; -CFRunLoopTimerRef waitToDumpWatchdog = 0; - -// Delegates -static FrameLoadDelegate *frameLoadDelegate; -static UIDelegate *uiDelegate; -static EditingDelegate *editingDelegate; -static ResourceLoadDelegate *resourceLoadDelegate; -static HistoryDelegate *historyDelegate; -PolicyDelegate *policyDelegate; - -static int dumpPixels; -static int threaded; -static int dumpTree = YES; -static int forceComplexText; -static int useHTML5Parser = YES; -static int useHTML5TreeBuilder = NO; // Temporary, will be removed. -static BOOL printSeparators; -static RetainPtr persistentUserStyleSheetLocation; - -static WebHistoryItem *prevTestBFItem = nil; // current b/f item at the end of the previous test - -#if __OBJC2__ -static void swizzleAllMethods(Class imposter, Class original) -{ - unsigned int imposterMethodCount; - Method* imposterMethods = class_copyMethodList(imposter, &imposterMethodCount); - - unsigned int originalMethodCount; - Method* originalMethods = class_copyMethodList(original, &originalMethodCount); - - for (unsigned int i = 0; i < imposterMethodCount; i++) { - SEL imposterMethodName = method_getName(imposterMethods[i]); - - // Attempt to add the method to the original class. If it fails, the method already exists and we should - // instead exchange the implementations. - if (class_addMethod(original, imposterMethodName, method_getImplementation(imposterMethods[i]), method_getTypeEncoding(imposterMethods[i]))) - continue; - - unsigned int j = 0; - for (; j < originalMethodCount; j++) { - SEL originalMethodName = method_getName(originalMethods[j]); - if (sel_isEqual(imposterMethodName, originalMethodName)) - break; - } - - // If class_addMethod failed above then the method must exist on the original class. - ASSERT(j < originalMethodCount); - method_exchangeImplementations(imposterMethods[i], originalMethods[j]); - } - - free(imposterMethods); - free(originalMethods); -} -#endif - -static void poseAsClass(const char* imposter, const char* original) -{ - Class imposterClass = objc_getClass(imposter); - Class originalClass = objc_getClass(original); - -#if !__OBJC2__ - class_poseAs(imposterClass, originalClass); -#else - - // Swizzle instance methods - swizzleAllMethods(imposterClass, originalClass); - // and then class methods - swizzleAllMethods(object_getClass(imposterClass), object_getClass(originalClass)); -#endif -} - -void setPersistentUserStyleSheetLocation(CFStringRef url) -{ - persistentUserStyleSheetLocation = url; -} - -static bool shouldIgnoreWebCoreNodeLeaks(const string& URLString) -{ - static char* const ignoreSet[] = { - // Keeping this infrastructure around in case we ever need it again. - }; - static const int ignoreSetCount = sizeof(ignoreSet) / sizeof(char*); - - for (int i = 0; i < ignoreSetCount; i++) { - // FIXME: ignore case - string curIgnore(ignoreSet[i]); - // Match at the end of the URLString - if (!URLString.compare(URLString.length() - curIgnore.length(), curIgnore.length(), curIgnore)) - return true; - } - return false; -} - -static void activateFonts() -{ -#if defined(BUILDING_ON_LEOPARD) || defined(BUILDING_ON_TIGER) - static const char* fontSectionNames[] = { - "Ahem", - "WeightWatcher100", - "WeightWatcher200", - "WeightWatcher300", - "WeightWatcher400", - "WeightWatcher500", - "WeightWatcher600", - "WeightWatcher700", - "WeightWatcher800", - "WeightWatcher900", - 0 - }; - - for (unsigned i = 0; fontSectionNames[i]; ++i) { - unsigned long fontDataLength; - char* fontData = getsectdata("__DATA", fontSectionNames[i], &fontDataLength); - if (!fontData) { - fprintf(stderr, "Failed to locate the %s font.\n", fontSectionNames[i]); - exit(1); - } - - ATSFontContainerRef fontContainer; - OSStatus status = ATSFontActivateFromMemory(fontData, fontDataLength, kATSFontContextLocal, kATSFontFormatUnspecified, NULL, kATSOptionFlagsDefault, &fontContainer); - - if (status != noErr) { - fprintf(stderr, "Failed to activate the %s font.\n", fontSectionNames[i]); - exit(1); - } - } -#else - - // Work around by activating fonts from disk - // FIXME: This code can be removed once is addressed. - - static const char* fontFileNames[] = { - "AHEM____.TTF", - "ColorBits.ttf", - "WebKitWeightWatcher100.ttf", - "WebKitWeightWatcher200.ttf", - "WebKitWeightWatcher300.ttf", - "WebKitWeightWatcher400.ttf", - "WebKitWeightWatcher500.ttf", - "WebKitWeightWatcher600.ttf", - "WebKitWeightWatcher700.ttf", - "WebKitWeightWatcher800.ttf", - "WebKitWeightWatcher900.ttf", - 0 - }; - - NSMutableArray *fontURLs = [NSMutableArray array]; - NSURL *resourcesDirectory = [NSURL URLWithString:@"DumpRenderTree.resources" relativeToURL:[[NSBundle mainBundle] executableURL]]; - for (unsigned i = 0; fontFileNames[i]; ++i) { - NSURL *fontURL = [resourcesDirectory URLByAppendingPathComponent:[NSString stringWithUTF8String:fontFileNames[i]]]; - [fontURLs addObject:[fontURL absoluteURL]]; - } - - CFArrayRef errors = 0; - if (!CTFontManagerRegisterFontsForURLs((CFArrayRef)fontURLs, kCTFontManagerScopeProcess, &errors)) { - NSLog(@"Failed to activate fonts: %@", errors); - CFRelease(errors); - exit(1); - } -#endif -} - -WebView *createWebViewAndOffscreenWindow() -{ - NSRect rect = NSMakeRect(0, 0, LayoutTestController::maxViewWidth, LayoutTestController::maxViewHeight); - WebView *webView = [[WebView alloc] initWithFrame:rect frameName:nil groupName:@"org.webkit.DumpRenderTree"]; - - [webView setUIDelegate:uiDelegate]; - [webView setFrameLoadDelegate:frameLoadDelegate]; - [webView setEditingDelegate:editingDelegate]; - [webView setResourceLoadDelegate:resourceLoadDelegate]; - [webView _setGeolocationProvider:[MockGeolocationProvider shared]]; - - // Register the same schemes that Safari does - [WebView registerURLSchemeAsLocal:@"feed"]; - [WebView registerURLSchemeAsLocal:@"feeds"]; - [WebView registerURLSchemeAsLocal:@"feedsearch"]; - - [webView setContinuousSpellCheckingEnabled:YES]; - - // To make things like certain NSViews, dragging, and plug-ins work, put the WebView a window, but put it off-screen so you don't see it. - // Put it at -10000, -10000 in "flipped coordinates", since WebCore and the DOM use flipped coordinates. - NSRect windowRect = NSOffsetRect(rect, -10000, [[[NSScreen screens] objectAtIndex:0] frame].size.height - rect.size.height + 10000); - DumpRenderTreeWindow *window = [[DumpRenderTreeWindow alloc] initWithContentRect:windowRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]; - -#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) - [window setColorSpace:[[NSScreen mainScreen] colorSpace]]; -#endif - - [[window contentView] addSubview:webView]; - [window orderBack:nil]; - [window setAutodisplay:NO]; - - [window startListeningForAcceleratedCompositingChanges]; - - // For reasons that are not entirely clear, the following pair of calls makes WebView handle its - // dynamic scrollbars properly. Without it, every frame will always have scrollbars. - NSBitmapImageRep *imageRep = [webView bitmapImageRepForCachingDisplayInRect:[webView bounds]]; - [webView cacheDisplayInRect:[webView bounds] toBitmapImageRep:imageRep]; - - return webView; -} - -void testStringByEvaluatingJavaScriptFromString() -{ - // maps expected result <= JavaScript expression - NSDictionary *expressions = [NSDictionary dictionaryWithObjectsAndKeys: - @"0", @"0", - @"0", @"'0'", - @"", @"", - @"", @"''", - @"", @"new String()", - @"", @"new String('0')", - @"", @"throw 1", - @"", @"{ }", - @"", @"[ ]", - @"", @"//", - @"", @"a.b.c", - @"", @"(function() { throw 'error'; })()", - @"", @"null", - @"", @"undefined", - @"true", @"true", - @"false", @"false", - nil - ]; - - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""]; - - NSEnumerator *enumerator = [expressions keyEnumerator]; - id expression; - while ((expression = [enumerator nextObject])) { - NSString *expectedResult = [expressions objectForKey:expression]; - NSString *result = [webView stringByEvaluatingJavaScriptFromString:expression]; - assert([result isEqualToString:expectedResult]); - } - - [webView close]; - [webView release]; - [pool release]; -} - -static NSString *libraryPathForDumpRenderTree() -{ - //FIXME: This may not be sufficient to prevent interactions/crashes - //when running more than one copy of DumpRenderTree. - //See https://bugs.webkit.org/show_bug.cgi?id=10906 - char* dumpRenderTreeTemp = getenv("DUMPRENDERTREE_TEMP"); - if (dumpRenderTreeTemp) - return [[NSFileManager defaultManager] stringWithFileSystemRepresentation:dumpRenderTreeTemp length:strlen(dumpRenderTreeTemp)]; - else - return [@"~/Library/Application Support/DumpRenderTree" stringByExpandingTildeInPath]; -} - -// Called before each test. -static void resetDefaultsToConsistentValues() -{ - // Give some clear to undocumented defaults values - static const int NoFontSmoothing = 0; - static const int BlueTintedAppearance = 1; - - NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; - [defaults setInteger:4 forKey:@"AppleAntiAliasingThreshold"]; // smallest font size to CG should perform antialiasing on - [defaults setInteger:NoFontSmoothing forKey:@"AppleFontSmoothing"]; - [defaults setInteger:BlueTintedAppearance forKey:@"AppleAquaColorVariant"]; - [defaults setObject:@"0.709800 0.835300 1.000000" forKey:@"AppleHighlightColor"]; - [defaults setObject:@"0.500000 0.500000 0.500000" forKey:@"AppleOtherHighlightColor"]; - [defaults setObject:[NSArray arrayWithObject:@"en"] forKey:@"AppleLanguages"]; - [defaults setBool:YES forKey:WebKitEnableFullDocumentTeardownPreferenceKey]; - - // Scrollbars are drawn either using AppKit (which uses NSUserDefaults) or using HIToolbox (which uses CFPreferences / kCFPreferencesAnyApplication / kCFPreferencesCurrentUser / kCFPreferencesAnyHost) - [defaults setObject:@"DoubleMax" forKey:@"AppleScrollBarVariant"]; - RetainPtr initialValue = CFPreferencesCopyValue(CFSTR("AppleScrollBarVariant"), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost); - CFPreferencesSetValue(CFSTR("AppleScrollBarVariant"), CFSTR("DoubleMax"), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost); -#ifndef __LP64__ - // See . - ThemeScrollBarArrowStyle style; - GetThemeScrollBarArrowStyle(&style); // Force HIToolbox to read from CFPreferences -#endif - - [defaults setBool:NO forKey:@"AppleScrollAnimationEnabled"]; - - if (initialValue) - CFPreferencesSetValue(CFSTR("AppleScrollBarVariant"), initialValue.get(), kCFPreferencesAnyApplication, kCFPreferencesCurrentUser, kCFPreferencesAnyHost); - - NSString *path = libraryPathForDumpRenderTree(); - [defaults setObject:[path stringByAppendingPathComponent:@"Databases"] forKey:WebDatabaseDirectoryDefaultsKey]; - [defaults setObject:[path stringByAppendingPathComponent:@"LocalCache"] forKey:WebKitLocalCacheDefaultsKey]; - - WebPreferences *preferences = [WebPreferences standardPreferences]; - - [preferences setAllowUniversalAccessFromFileURLs:YES]; - [preferences setAllowFileAccessFromFileURLs:YES]; - [preferences setStandardFontFamily:@"Times"]; - [preferences setFixedFontFamily:@"Courier"]; - [preferences setSerifFontFamily:@"Times"]; - [preferences setSansSerifFontFamily:@"Helvetica"]; - [preferences setCursiveFontFamily:@"Apple Chancery"]; - [preferences setFantasyFontFamily:@"Papyrus"]; - [preferences setDefaultFontSize:16]; - [preferences setDefaultFixedFontSize:13]; - [preferences setMinimumFontSize:1]; - [preferences setJavaEnabled:NO]; - [preferences setJavaScriptEnabled:YES]; - [preferences setEditableLinkBehavior:WebKitEditableLinkOnlyLiveWithShiftKey]; - [preferences setTabsToLinks:NO]; - [preferences setDOMPasteAllowed:YES]; - [preferences setShouldPrintBackgrounds:YES]; - [preferences setCacheModel:WebCacheModelDocumentBrowser]; - [preferences setXSSAuditorEnabled:NO]; - [preferences setExperimentalNotificationsEnabled:NO]; - [preferences setPluginAllowedRunTime:1]; - [preferences setPlugInsEnabled:YES]; - - [preferences setPrivateBrowsingEnabled:NO]; - [preferences setAuthorAndUserStylesEnabled:YES]; - [preferences setJavaScriptCanOpenWindowsAutomatically:YES]; - [preferences setJavaScriptCanAccessClipboard:YES]; - [preferences setOfflineWebApplicationCacheEnabled:YES]; - [preferences setDeveloperExtrasEnabled:NO]; - [preferences setLoadsImagesAutomatically:YES]; - [preferences setFrameFlatteningEnabled:NO]; - [preferences setEditingBehavior:WebKitEditingMacBehavior]; - if (persistentUserStyleSheetLocation) { - [preferences setUserStyleSheetLocation:[NSURL URLWithString:(NSString *)(persistentUserStyleSheetLocation.get())]]; - [preferences setUserStyleSheetEnabled:YES]; - } else - [preferences setUserStyleSheetEnabled:NO]; - - // The back/forward cache is causing problems due to layouts during transition from one page to another. - // So, turn it off for now, but we might want to turn it back on some day. - [preferences setUsesPageCache:NO]; - [preferences setAcceleratedCompositingEnabled:YES]; - [preferences setWebGLEnabled:NO]; - [preferences setHTML5ParserEnabled:useHTML5Parser]; - [preferences setHTML5TreeBuilderEnabled:useHTML5TreeBuilder]; // Temporary, will be removed. - - [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain]; - - setlocale(LC_ALL, ""); -} - -// Called once on DumpRenderTree startup. -static void setDefaultsToConsistentValuesForTesting() -{ - resetDefaultsToConsistentValues(); - - NSString *path = libraryPathForDumpRenderTree(); - NSURLCache *sharedCache = - [[NSURLCache alloc] initWithMemoryCapacity:1024 * 1024 - diskCapacity:0 - diskPath:[path stringByAppendingPathComponent:@"URLCache"]]; - [NSURLCache setSharedURLCache:sharedCache]; - [sharedCache release]; - -} - -static void* runThread(void* arg) -{ - static ThreadIdentifier previousId = 0; - ThreadIdentifier currentId = currentThread(); - // Verify 2 successive threads do not get the same Id. - ASSERT(previousId != currentId); - previousId = currentId; - return 0; -} - -static void testThreadIdentifierMap() -{ - // Imitate 'foreign' threads that are not created by WTF. - pthread_t pthread; - pthread_create(&pthread, 0, &runThread, 0); - pthread_join(pthread, 0); - - pthread_create(&pthread, 0, &runThread, 0); - pthread_join(pthread, 0); - - // Now create another thread using WTF. On OSX, it will have the same pthread handle - // but should get a different ThreadIdentifier. - createThread(runThread, 0, "DumpRenderTree: test"); -} - -static void crashHandler(int sig) -{ - char *signalName = strsignal(sig); - write(STDERR_FILENO, signalName, strlen(signalName)); - write(STDERR_FILENO, "\n", 1); - restoreMainDisplayColorProfile(0); - exit(128 + sig); -} - -static void installSignalHandlers() -{ - signal(SIGILL, crashHandler); /* 4: illegal instruction (not reset when caught) */ - signal(SIGTRAP, crashHandler); /* 5: trace trap (not reset when caught) */ - signal(SIGEMT, crashHandler); /* 7: EMT instruction */ - signal(SIGFPE, crashHandler); /* 8: floating point exception */ - signal(SIGBUS, crashHandler); /* 10: bus error */ - signal(SIGSEGV, crashHandler); /* 11: segmentation violation */ - signal(SIGSYS, crashHandler); /* 12: bad argument to system call */ - signal(SIGPIPE, crashHandler); /* 13: write on a pipe with no reader */ - signal(SIGXCPU, crashHandler); /* 24: exceeded CPU time limit */ - signal(SIGXFSZ, crashHandler); /* 25: exceeded file size limit */ -} - -static void allocateGlobalControllers() -{ - // FIXME: We should remove these and move to the ObjC standard [Foo sharedInstance] model - gNavigationController = [[NavigationController alloc] init]; - frameLoadDelegate = [[FrameLoadDelegate alloc] init]; - uiDelegate = [[UIDelegate alloc] init]; - editingDelegate = [[EditingDelegate alloc] init]; - resourceLoadDelegate = [[ResourceLoadDelegate alloc] init]; - policyDelegate = [[PolicyDelegate alloc] init]; - historyDelegate = [[HistoryDelegate alloc] init]; -} - -// ObjC++ doens't seem to let me pass NSObject*& sadly. -static inline void releaseAndZero(NSObject** object) -{ - [*object release]; - *object = nil; -} - -static void releaseGlobalControllers() -{ - releaseAndZero(&gNavigationController); - releaseAndZero(&frameLoadDelegate); - releaseAndZero(&editingDelegate); - releaseAndZero(&resourceLoadDelegate); - releaseAndZero(&uiDelegate); - releaseAndZero(&policyDelegate); -} - -static void initializeGlobalsFromCommandLineOptions(int argc, const char *argv[]) -{ - struct option options[] = { - {"notree", no_argument, &dumpTree, NO}, - {"pixel-tests", no_argument, &dumpPixels, YES}, - {"tree", no_argument, &dumpTree, YES}, - {"threaded", no_argument, &threaded, YES}, - {"complex-text", no_argument, &forceComplexText, YES}, - {"legacy-parser", no_argument, &useHTML5Parser, NO}, - {"html5-treebuilder", no_argument, &useHTML5TreeBuilder, YES}, - {NULL, 0, NULL, 0} - }; - - int option; - while ((option = getopt_long(argc, (char * const *)argv, "", options, NULL)) != -1) { - switch (option) { - case '?': // unknown or ambiguous option - case ':': // missing argument - exit(1); - break; - } - } -} - -static void addTestPluginsToPluginSearchPath(const char* executablePath) -{ - NSString *pwd = [[NSString stringWithUTF8String:executablePath] stringByDeletingLastPathComponent]; - [WebPluginDatabase setAdditionalWebPlugInPaths:[NSArray arrayWithObject:pwd]]; - [[WebPluginDatabase sharedDatabase] refresh]; -} - -static bool useLongRunningServerMode(int argc, const char *argv[]) -{ - // This assumes you've already called getopt_long - return (argc == optind+1 && strcmp(argv[optind], "-") == 0); -} - -static void runTestingServerLoop() -{ - // When DumpRenderTree run in server mode, we just wait around for file names - // to be passed to us and read each in turn, passing the results back to the client - char filenameBuffer[2048]; - while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) { - char *newLineCharacter = strchr(filenameBuffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (strlen(filenameBuffer) == 0) - continue; - - runTest(filenameBuffer); - } -} - -static void prepareConsistentTestingEnvironment() -{ - poseAsClass("DumpRenderTreePasteboard", "NSPasteboard"); - poseAsClass("DumpRenderTreeEvent", "NSEvent"); - - setDefaultsToConsistentValuesForTesting(); - activateFonts(); - - if (dumpPixels) - setupMainDisplayColorProfile(); - allocateGlobalControllers(); - - makeLargeMallocFailSilently(); -} - -void dumpRenderTree(int argc, const char *argv[]) -{ - initializeGlobalsFromCommandLineOptions(argc, argv); - prepareConsistentTestingEnvironment(); - addTestPluginsToPluginSearchPath(argv[0]); - if (dumpPixels) - installSignalHandlers(); - - if (forceComplexText) - [WebView _setAlwaysUsesComplexTextCodePath:YES]; - - WebView *webView = createWebViewAndOffscreenWindow(); - mainFrame = [webView mainFrame]; - - [[NSURLCache sharedURLCache] removeAllCachedResponses]; - [WebCache empty]; - - // In order to prevent extra frame load delegate logging being generated if the first test to use SSL - // is set to log frame load delegate calls we ignore SSL certificate errors on localhost and 127.0.0.1. -#if BUILDING_ON_TIGER - // Initialize internal NSURLRequest data for setAllowsAnyHTTPSCertificate:forHost: to work properly. - [[[[NSURLRequest alloc] init] autorelease] HTTPMethod]; -#endif - [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"localhost"]; - [NSURLRequest setAllowsAnyHTTPSCertificate:YES forHost:@"127.0.0.1"]; - - // - testStringByEvaluatingJavaScriptFromString(); - - // http://webkit.org/b/32689 - testThreadIdentifierMap(); - - if (threaded) - startJavaScriptThreads(); - - if (useLongRunningServerMode(argc, argv)) { - printSeparators = YES; - runTestingServerLoop(); - } else { - printSeparators = (optind < argc-1 || (dumpPixels && dumpTree)); - for (int i = optind; i != argc; ++i) - runTest(argv[i]); - } - - if (threaded) - stopJavaScriptThreads(); - - NSWindow *window = [webView window]; - [webView close]; - mainFrame = nil; - - // Work around problem where registering drag types leaves an outstanding - // "perform selector" on the window, which retains the window. It's a bit - // inelegant and perhaps dangerous to just blow them all away, but in practice - // it probably won't cause any trouble (and this is just a test tool, after all). - [NSObject cancelPreviousPerformRequestsWithTarget:window]; - - [window close]; // releases when closed - [webView release]; - - releaseGlobalControllers(); - - [DumpRenderTreePasteboard releaseLocalPasteboards]; - - // FIXME: This should be moved onto LayoutTestController and made into a HashSet - if (disallowedURLs) { - CFRelease(disallowedURLs); - disallowedURLs = 0; - } - - if (dumpPixels) - restoreMainDisplayColorProfile(0); -} - -int main(int argc, const char *argv[]) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - [DumpRenderTreeApplication sharedApplication]; // Force AppKit to init itself - dumpRenderTree(argc, argv); - [WebCoreStatistics garbageCollectJavaScriptObjects]; - [WebCoreStatistics emptyCache]; // Otherwise SVGImages trigger false positives for Frame/Node counts - [pool release]; - return 0; -} - -static NSInteger compareHistoryItems(id item1, id item2, void *context) -{ - return [[item1 target] caseInsensitiveCompare:[item2 target]]; -} - -static void dumpHistoryItem(WebHistoryItem *item, int indent, BOOL current) -{ - int start = 0; - if (current) { - printf("curr->"); - start = 6; - } - for (int i = start; i < indent; i++) - putchar(' '); - - NSString *urlString = [item URLString]; - if ([[NSURL URLWithString:urlString] isFileURL]) { - NSRange range = [urlString rangeOfString:@"/LayoutTests/"]; - urlString = [@"(file test):" stringByAppendingString:[urlString substringFromIndex:(range.length + range.location)]]; - } - - printf("%s", [urlString UTF8String]); - NSString *target = [item target]; - if (target && [target length] > 0) - printf(" (in frame \"%s\")", [target UTF8String]); - if ([item isTargetItem]) - printf(" **nav target**"); - putchar('\n'); - NSArray *kids = [item children]; - if (kids) { - // must sort to eliminate arbitrary result ordering which defeats reproducible testing - kids = [kids sortedArrayUsingFunction:&compareHistoryItems context:nil]; - for (unsigned i = 0; i < [kids count]; i++) - dumpHistoryItem([kids objectAtIndex:i], indent+4, NO); - } -} - -static void dumpFrameScrollPosition(WebFrame *f) -{ - NSPoint scrollPosition = [[[[f frameView] documentView] superview] bounds].origin; - if (ABS(scrollPosition.x) > 0.00000001 || ABS(scrollPosition.y) > 0.00000001) { - if ([f parentFrame] != nil) - printf("frame '%s' ", [[f name] UTF8String]); - printf("scrolled to %.f,%.f\n", scrollPosition.x, scrollPosition.y); - } - - if (gLayoutTestController->dumpChildFrameScrollPositions()) { - NSArray *kids = [f childFrames]; - if (kids) - for (unsigned i = 0; i < [kids count]; i++) - dumpFrameScrollPosition([kids objectAtIndex:i]); - } -} - -static NSString *dumpFramesAsText(WebFrame *frame) -{ - DOMDocument *document = [frame DOMDocument]; - DOMElement *documentElement = [document documentElement]; - - if (!documentElement) - return @""; - - NSMutableString *result = [[[NSMutableString alloc] init] autorelease]; - - // Add header for all but the main frame. - if ([frame parentFrame]) - result = [NSMutableString stringWithFormat:@"\n--------\nFrame: '%@'\n--------\n", [frame name]]; - - [result appendFormat:@"%@\n", [documentElement innerText]]; - - if (gLayoutTestController->dumpChildFramesAsText()) { - NSArray *kids = [frame childFrames]; - if (kids) { - for (unsigned i = 0; i < [kids count]; i++) - [result appendString:dumpFramesAsText([kids objectAtIndex:i])]; - } - } - - return result; -} - -static NSData *dumpFrameAsPDF(WebFrame *frame) -{ - if (!frame) - return nil; - - // Sadly we have to dump to a file and then read from that file again - // +[NSPrintOperation PDFOperationWithView:insideRect:] requires a rect and prints to a single page - // likewise +[NSView dataWithPDFInsideRect:] also prints to a single continuous page - // The goal of this function is to test "real" printing across multiple pages. - // FIXME: It's possible there might be printing SPI to let us print a multi-page PDF to an NSData object - NSString *path = [libraryPathForDumpRenderTree() stringByAppendingPathComponent:@"test.pdf"]; - - NSMutableDictionary *printInfoDict = [NSMutableDictionary dictionaryWithDictionary:[[NSPrintInfo sharedPrintInfo] dictionary]]; - [printInfoDict setObject:NSPrintSaveJob forKey:NSPrintJobDisposition]; - [printInfoDict setObject:path forKey:NSPrintSavePath]; - - NSPrintInfo *printInfo = [[NSPrintInfo alloc] initWithDictionary:printInfoDict]; - [printInfo setHorizontalPagination:NSAutoPagination]; - [printInfo setVerticalPagination:NSAutoPagination]; - [printInfo setVerticallyCentered:NO]; - - NSPrintOperation *printOperation = [NSPrintOperation printOperationWithView:[frame frameView] printInfo:printInfo]; - [printOperation setShowPanels:NO]; - [printOperation runOperation]; - - [printInfo release]; - - NSData *pdfData = [NSData dataWithContentsOfFile:path]; - [[NSFileManager defaultManager] removeFileAtPath:path handler:nil]; - - return pdfData; -} - -static void convertMIMEType(NSMutableString *mimeType) -{ -#ifdef BUILDING_ON_LEOPARD - // Workaround for on Leopard - if ([mimeType isEqualToString:@"text/xml"]) - [mimeType setString:@"application/xml"]; -#endif - // Workaround for with Dashcode 2.0 - if ([mimeType isEqualToString:@"application/x-javascript"]) - [mimeType setString:@"text/javascript"]; -} - -static void convertWebResourceDataToString(NSMutableDictionary *resource) -{ - NSMutableString *mimeType = [resource objectForKey:@"WebResourceMIMEType"]; - convertMIMEType(mimeType); - - if ([mimeType hasPrefix:@"text/"] || [[WebHTMLRepresentation supportedNonImageMIMETypes] containsObject:mimeType]) { - NSString *textEncodingName = [resource objectForKey:@"WebResourceTextEncodingName"]; - NSStringEncoding stringEncoding; - if ([textEncodingName length] > 0) - stringEncoding = CFStringConvertEncodingToNSStringEncoding(CFStringConvertIANACharSetNameToEncoding((CFStringRef)textEncodingName)); - else - stringEncoding = NSUTF8StringEncoding; - - NSData *data = [resource objectForKey:@"WebResourceData"]; - NSString *dataAsString = [[NSString alloc] initWithData:data encoding:stringEncoding]; - if (dataAsString) - [resource setObject:dataAsString forKey:@"WebResourceData"]; - [dataAsString release]; - } -} - -static void normalizeHTTPResponseHeaderFields(NSMutableDictionary *fields) -{ - // Normalize headers - if ([fields objectForKey:@"Date"]) - [fields setObject:@"Sun, 16 Nov 2008 17:00:00 GMT" forKey:@"Date"]; - if ([fields objectForKey:@"Last-Modified"]) - [fields setObject:@"Sun, 16 Nov 2008 16:55:00 GMT" forKey:@"Last-Modified"]; - if ([fields objectForKey:@"Etag"]) - [fields setObject:@"\"301925-21-45c7d72d3e780\"" forKey:@"Etag"]; - if ([fields objectForKey:@"Server"]) - [fields setObject:@"Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.7l PHP/5.2.6" forKey:@"Server"]; - - // Remove headers - if ([fields objectForKey:@"Connection"]) - [fields removeObjectForKey:@"Connection"]; - if ([fields objectForKey:@"Keep-Alive"]) - [fields removeObjectForKey:@"Keep-Alive"]; -} - -static void normalizeWebResourceURL(NSMutableString *webResourceURL) -{ - static int fileUrlLength = [(NSString *)@"file://" length]; - NSRange layoutTestsWebArchivePathRange = [webResourceURL rangeOfString:@"/LayoutTests/" options:NSBackwardsSearch]; - if (layoutTestsWebArchivePathRange.location == NSNotFound) - return; - NSRange currentWorkingDirectoryRange = NSMakeRange(fileUrlLength, layoutTestsWebArchivePathRange.location - fileUrlLength); - [webResourceURL replaceCharactersInRange:currentWorkingDirectoryRange withString:@""]; -} - -static void convertWebResourceResponseToDictionary(NSMutableDictionary *propertyList) -{ - NSURLResponse *response = nil; - NSData *responseData = [propertyList objectForKey:@"WebResourceResponse"]; // WebResourceResponseKey in WebResource.m - if ([responseData isKindOfClass:[NSData class]]) { - // Decode NSURLResponse - NSKeyedUnarchiver *unarchiver = [[NSKeyedUnarchiver alloc] initForReadingWithData:responseData]; - response = [unarchiver decodeObjectForKey:@"WebResourceResponse"]; // WebResourceResponseKey in WebResource.m - [unarchiver finishDecoding]; - [unarchiver release]; - } - - NSMutableDictionary *responseDictionary = [[NSMutableDictionary alloc] init]; - - NSMutableString *urlString = [[[response URL] description] mutableCopy]; - normalizeWebResourceURL(urlString); - [responseDictionary setObject:urlString forKey:@"URL"]; - [urlString release]; - - NSMutableString *mimeTypeString = [[response MIMEType] mutableCopy]; - convertMIMEType(mimeTypeString); - [responseDictionary setObject:mimeTypeString forKey:@"MIMEType"]; - [mimeTypeString release]; - - NSString *textEncodingName = [response textEncodingName]; - if (textEncodingName) - [responseDictionary setObject:textEncodingName forKey:@"textEncodingName"]; - [responseDictionary setObject:[NSNumber numberWithLongLong:[response expectedContentLength]] forKey:@"expectedContentLength"]; - - if ([response isKindOfClass:[NSHTTPURLResponse class]]) { - NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response; - - NSMutableDictionary *allHeaderFields = [[httpResponse allHeaderFields] mutableCopy]; - normalizeHTTPResponseHeaderFields(allHeaderFields); - [responseDictionary setObject:allHeaderFields forKey:@"allHeaderFields"]; - [allHeaderFields release]; - - [responseDictionary setObject:[NSNumber numberWithInt:[httpResponse statusCode]] forKey:@"statusCode"]; - } - - [propertyList setObject:responseDictionary forKey:@"WebResourceResponse"]; - [responseDictionary release]; -} - -static NSInteger compareResourceURLs(id resource1, id resource2, void *context) -{ - NSString *url1 = [resource1 objectForKey:@"WebResourceURL"]; - NSString *url2 = [resource2 objectForKey:@"WebResourceURL"]; - - return [url1 compare:url2]; -} - -static NSString *serializeWebArchiveToXML(WebArchive *webArchive) -{ - NSString *errorString; - NSMutableDictionary *propertyList = [NSPropertyListSerialization propertyListFromData:[webArchive data] - mutabilityOption:NSPropertyListMutableContainersAndLeaves - format:NULL - errorDescription:&errorString]; - if (!propertyList) - return errorString; - - NSMutableArray *resources = [NSMutableArray arrayWithCapacity:1]; - [resources addObject:propertyList]; - - while ([resources count]) { - NSMutableDictionary *resourcePropertyList = [resources objectAtIndex:0]; - [resources removeObjectAtIndex:0]; - - NSMutableDictionary *mainResource = [resourcePropertyList objectForKey:@"WebMainResource"]; - normalizeWebResourceURL([mainResource objectForKey:@"WebResourceURL"]); - convertWebResourceDataToString(mainResource); - - // Add subframeArchives to list for processing - NSMutableArray *subframeArchives = [resourcePropertyList objectForKey:@"WebSubframeArchives"]; // WebSubframeArchivesKey in WebArchive.m - if (subframeArchives) - [resources addObjectsFromArray:subframeArchives]; - - NSMutableArray *subresources = [resourcePropertyList objectForKey:@"WebSubresources"]; // WebSubresourcesKey in WebArchive.m - NSEnumerator *enumerator = [subresources objectEnumerator]; - NSMutableDictionary *subresourcePropertyList; - while ((subresourcePropertyList = [enumerator nextObject])) { - normalizeWebResourceURL([subresourcePropertyList objectForKey:@"WebResourceURL"]); - convertWebResourceResponseToDictionary(subresourcePropertyList); - convertWebResourceDataToString(subresourcePropertyList); - } - - // Sort the subresources so they're always in a predictable order for the dump - if (NSArray *sortedSubresources = [subresources sortedArrayUsingFunction:compareResourceURLs context:nil]) - [resourcePropertyList setObject:sortedSubresources forKey:@"WebSubresources"]; - } - - NSData *xmlData = [NSPropertyListSerialization dataFromPropertyList:propertyList - format:NSPropertyListXMLFormat_v1_0 - errorDescription:&errorString]; - if (!xmlData) - return errorString; - - NSMutableString *string = [[[NSMutableString alloc] initWithData:xmlData encoding:NSUTF8StringEncoding] autorelease]; - - // Replace "Apple Computer" with "Apple" in the DTD declaration. - NSRange range = [string rangeOfString:@"-//Apple Computer//"]; - if (range.location != NSNotFound) - [string replaceCharactersInRange:range withString:@"-//Apple//"]; - - return string; -} - -static void dumpBackForwardListForWebView(WebView *view) -{ - printf("\n============== Back Forward List ==============\n"); - WebBackForwardList *bfList = [view backForwardList]; - - // Print out all items in the list after prevTestBFItem, which was from the previous test - // Gather items from the end of the list, the print them out from oldest to newest - NSMutableArray *itemsToPrint = [[NSMutableArray alloc] init]; - for (int i = [bfList forwardListCount]; i > 0; i--) { - WebHistoryItem *item = [bfList itemAtIndex:i]; - // something is wrong if the item from the last test is in the forward part of the b/f list - assert(item != prevTestBFItem); - [itemsToPrint addObject:item]; - } - - assert([bfList currentItem] != prevTestBFItem); - [itemsToPrint addObject:[bfList currentItem]]; - int currentItemIndex = [itemsToPrint count] - 1; - - for (int i = -1; i >= -[bfList backListCount]; i--) { - WebHistoryItem *item = [bfList itemAtIndex:i]; - if (item == prevTestBFItem) - break; - [itemsToPrint addObject:item]; - } - - for (int i = [itemsToPrint count]-1; i >= 0; i--) - dumpHistoryItem([itemsToPrint objectAtIndex:i], 8, i == currentItemIndex); - - [itemsToPrint release]; - printf("===============================================\n"); -} - -static void sizeWebViewForCurrentTest() -{ - // W3C SVG tests expect to be 480x360 - bool isSVGW3CTest = (gLayoutTestController->testPathOrURL().find("svg/W3C-SVG-1.1") != string::npos); - if (isSVGW3CTest) - [[mainFrame webView] setFrameSize:NSMakeSize(480, 360)]; - else - [[mainFrame webView] setFrameSize:NSMakeSize(LayoutTestController::maxViewWidth, LayoutTestController::maxViewHeight)]; -} - -static const char *methodNameStringForFailedTest() -{ - const char *errorMessage; - if (gLayoutTestController->dumpAsText()) - errorMessage = "[documentElement innerText]"; - else if (gLayoutTestController->dumpDOMAsWebArchive()) - errorMessage = "[[mainFrame DOMDocument] webArchive]"; - else if (gLayoutTestController->dumpSourceAsWebArchive()) - errorMessage = "[[mainFrame dataSource] webArchive]"; - else - errorMessage = "[mainFrame renderTreeAsExternalRepresentation]"; - - return errorMessage; -} - -static void dumpBackForwardListForAllWindows() -{ - CFArrayRef openWindows = (CFArrayRef)[DumpRenderTreeWindow openWindows]; - unsigned count = CFArrayGetCount(openWindows); - for (unsigned i = 0; i < count; i++) { - NSWindow *window = (NSWindow *)CFArrayGetValueAtIndex(openWindows, i); - WebView *webView = [[[window contentView] subviews] objectAtIndex:0]; - dumpBackForwardListForWebView(webView); - } -} - -static void invalidateAnyPreviousWaitToDumpWatchdog() -{ - if (waitToDumpWatchdog) { - CFRunLoopTimerInvalidate(waitToDumpWatchdog); - CFRelease(waitToDumpWatchdog); - waitToDumpWatchdog = 0; - } -} - -void dump() -{ - invalidateAnyPreviousWaitToDumpWatchdog(); - - bool dumpAsText = gLayoutTestController->dumpAsText(); - if (dumpTree) { - NSString *resultString = nil; - NSData *resultData = nil; - NSString *resultMimeType = @"text/plain"; - - dumpAsText |= [[[mainFrame dataSource] _responseMIMEType] isEqualToString:@"text/plain"]; - gLayoutTestController->setDumpAsText(dumpAsText); - if (gLayoutTestController->dumpAsText()) { - resultString = dumpFramesAsText(mainFrame); - } else if (gLayoutTestController->dumpAsPDF()) { - resultData = dumpFrameAsPDF(mainFrame); - resultMimeType = @"application/pdf"; - } else if (gLayoutTestController->dumpDOMAsWebArchive()) { - WebArchive *webArchive = [[mainFrame DOMDocument] webArchive]; - resultString = serializeWebArchiveToXML(webArchive); - resultMimeType = @"application/x-webarchive"; - } else if (gLayoutTestController->dumpSourceAsWebArchive()) { - WebArchive *webArchive = [[mainFrame dataSource] webArchive]; - resultString = serializeWebArchiveToXML(webArchive); - resultMimeType = @"application/x-webarchive"; - } else { - sizeWebViewForCurrentTest(); - resultString = [mainFrame renderTreeAsExternalRepresentationForPrinting:gLayoutTestController->isPrinting()]; - } - - if (resultString && !resultData) - resultData = [resultString dataUsingEncoding:NSUTF8StringEncoding]; - - printf("Content-Type: %s\n", [resultMimeType UTF8String]); - - if (resultData) { - fwrite([resultData bytes], 1, [resultData length], stdout); - - if (!gLayoutTestController->dumpAsText() && !gLayoutTestController->dumpDOMAsWebArchive() && !gLayoutTestController->dumpSourceAsWebArchive()) - dumpFrameScrollPosition(mainFrame); - - if (gLayoutTestController->dumpBackForwardList()) - dumpBackForwardListForAllWindows(); - } else - printf("ERROR: nil result from %s", methodNameStringForFailedTest()); - - // Stop the watchdog thread before we leave this test to make sure it doesn't - // fire in between tests causing the next test to fail. - // This is a speculative fix for: https://bugs.webkit.org/show_bug.cgi?id=32339 - invalidateAnyPreviousWaitToDumpWatchdog(); - - if (printSeparators) { - puts("#EOF"); // terminate the content block - fputs("#EOF\n", stderr); - } - } - - if (dumpPixels && gLayoutTestController->generatePixelResults()) - // FIXME: when isPrinting is set, dump the image with page separators. - dumpWebViewAsPixelsAndCompareWithExpected(gLayoutTestController->expectedPixelHash()); - - puts("#EOF"); // terminate the (possibly empty) pixels block - - fflush(stdout); - fflush(stderr); - - done = YES; -} - -static bool shouldLogFrameLoadDelegates(const char* pathOrURL) -{ - return strstr(pathOrURL, "loading/"); -} - -static bool shouldLogHistoryDelegates(const char* pathOrURL) -{ - return strstr(pathOrURL, "globalhistory/"); -} - -static bool shouldOpenWebInspector(const char* pathOrURL) -{ - return strstr(pathOrURL, "inspector/"); -} - -static bool shouldEnableDeveloperExtras(const char* pathOrURL) -{ - return shouldOpenWebInspector(pathOrURL) || strstr(pathOrURL, "inspector-enabled/"); -} - -static void resetWebViewToConsistentStateBeforeTesting() -{ - WebView *webView = [mainFrame webView]; - [webView setEditable:NO]; - [(EditingDelegate *)[webView editingDelegate] setAcceptsEditing:YES]; - [webView makeTextStandardSize:nil]; - [webView resetPageZoom:nil]; - [webView setTabKeyCyclesThroughElements:YES]; - [webView setPolicyDelegate:nil]; - [policyDelegate setPermissive:NO]; - [policyDelegate setControllerToNotifyDone:0]; - [frameLoadDelegate resetToConsistentState]; - [webView _setDashboardBehavior:WebDashboardBehaviorUseBackwardCompatibilityMode to:NO]; - [webView _clearMainFrameName]; - [[webView undoManager] removeAllActions]; - [WebView _removeAllUserContentFromGroup:[webView groupName]]; - [[webView window] setAutodisplay:NO]; - - resetDefaultsToConsistentValues(); - - [[mainFrame webView] setSmartInsertDeleteEnabled:YES]; - [[[mainFrame webView] inspector] setJavaScriptProfilingEnabled:NO]; - - [WebView _setUsesTestModeFocusRingColor:YES]; - [WebView _resetOriginAccessWhitelists]; - - [[MockGeolocationProvider shared] stopTimer]; - - // Clear the contents of the general pasteboard - [[NSPasteboard generalPasteboard] declareTypes:[NSArray arrayWithObject:NSStringPboardType] owner:nil]; -} - -static void runTest(const string& testPathOrURL) -{ - ASSERT(!testPathOrURL.empty()); - - // Look for "'" as a separator between the path or URL, and the pixel dump hash that follows. - string pathOrURL(testPathOrURL); - string expectedPixelHash; - - size_t separatorPos = pathOrURL.find("'"); - if (separatorPos != string::npos) { - pathOrURL = string(testPathOrURL, 0, separatorPos); - expectedPixelHash = string(testPathOrURL, separatorPos + 1); - } - - NSString *pathOrURLString = [NSString stringWithUTF8String:pathOrURL.c_str()]; - if (!pathOrURLString) { - fprintf(stderr, "Failed to parse \"%s\" as UTF-8\n", pathOrURL.c_str()); - return; - } - - NSURL *url; - if ([pathOrURLString hasPrefix:@"http://"] || [pathOrURLString hasPrefix:@"https://"]) - url = [NSURL URLWithString:pathOrURLString]; - else - url = [NSURL fileURLWithPath:pathOrURLString]; - if (!url) { - fprintf(stderr, "Failed to parse \"%s\" as a URL\n", pathOrURL.c_str()); - return; - } - - const string testURL([[url absoluteString] UTF8String]); - - resetWebViewToConsistentStateBeforeTesting(); - - gLayoutTestController = LayoutTestController::create(testURL, expectedPixelHash); - topLoadingFrame = nil; - ASSERT(!draggingInfo); // the previous test should have called eventSender.mouseUp to drop! - releaseAndZero(&draggingInfo); - done = NO; - - gLayoutTestController->setIconDatabaseEnabled(false); - - if (disallowedURLs) - CFSetRemoveAllValues(disallowedURLs); - if (shouldLogFrameLoadDelegates(pathOrURL.c_str())) - gLayoutTestController->setDumpFrameLoadCallbacks(true); - - if (shouldLogHistoryDelegates(pathOrURL.c_str())) - [[mainFrame webView] setHistoryDelegate:historyDelegate]; - else - [[mainFrame webView] setHistoryDelegate:nil]; - - if (shouldEnableDeveloperExtras(pathOrURL.c_str())) { - gLayoutTestController->setDeveloperExtrasEnabled(true); - if (shouldOpenWebInspector(pathOrURL.c_str())) - gLayoutTestController->showWebInspector(); - } - - if ([WebHistory optionalSharedHistory]) - [WebHistory setOptionalSharedHistory:nil]; - lastMousePosition = NSZeroPoint; - lastClickPosition = NSZeroPoint; - - [prevTestBFItem release]; - prevTestBFItem = [[[[mainFrame webView] backForwardList] currentItem] retain]; - - WorkQueue::shared()->clear(); - WorkQueue::shared()->setFrozen(false); - - bool ignoreWebCoreNodeLeaks = shouldIgnoreWebCoreNodeLeaks(testURL); - if (ignoreWebCoreNodeLeaks) - [WebCoreStatistics startIgnoringWebCoreNodeLeaks]; - - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - [mainFrame loadRequest:[NSURLRequest requestWithURL:url]]; - [pool release]; - - while (!done) { - pool = [[NSAutoreleasePool alloc] init]; - [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]]; - [pool release]; - } - - pool = [[NSAutoreleasePool alloc] init]; - [EventSendingController clearSavedEvents]; - [[mainFrame webView] setSelectedDOMRange:nil affinity:NSSelectionAffinityDownstream]; - - WorkQueue::shared()->clear(); - - if (gLayoutTestController->closeRemainingWindowsWhenComplete()) { - NSArray* array = [DumpRenderTreeWindow openWindows]; - - unsigned count = [array count]; - for (unsigned i = 0; i < count; i++) { - NSWindow *window = [array objectAtIndex:i]; - - // Don't try to close the main window - if (window == [[mainFrame webView] window]) - continue; - - WebView *webView = [[[window contentView] subviews] objectAtIndex:0]; - - [webView close]; - [window close]; - } - } - - // If developer extras enabled Web Inspector may have been open by the test. - if (shouldEnableDeveloperExtras(pathOrURL.c_str())) { - gLayoutTestController->closeWebInspector(); - gLayoutTestController->setDeveloperExtrasEnabled(false); - } - - resetWebViewToConsistentStateBeforeTesting(); - - [mainFrame loadHTMLString:@"" baseURL:[NSURL URLWithString:@"about:blank"]]; - [mainFrame stopLoading]; - - [pool release]; - - // We should only have our main window left open when we're done - ASSERT(CFArrayGetCount(openWindowsRef) == 1); - ASSERT(CFArrayGetValueAtIndex(openWindowsRef, 0) == [[mainFrame webView] window]); - - gLayoutTestController.clear(); - - if (ignoreWebCoreNodeLeaks) - [WebCoreStatistics stopIgnoringWebCoreNodeLeaks]; -} - -void displayWebView() -{ - NSView *webView = [mainFrame webView]; - [webView display]; - [webView lockFocus]; - [[[NSColor blackColor] colorWithAlphaComponent:0.66] set]; - NSRectFillUsingOperation([webView frame], NSCompositeSourceOver); - [webView unlockFocus]; -} - -@implementation DumpRenderTreeEvent - -+ (NSPoint)mouseLocation -{ - return [[[mainFrame webView] window] convertBaseToScreen:lastMousePosition]; -} - -@end - -@implementation DumpRenderTreeApplication - -- (BOOL)isRunning -{ - // Java plug-in freezes unless NSApplication is running - return YES; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,53 +0,0 @@ -/* - * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@interface DumpRenderTreeDraggingInfo : NSObject { -@private - NSSize offset; - NSImage *draggedImage; - NSPasteboard *draggingPasteboard; - id draggingSource; -} - -- (id)initWithImage:(NSImage *)image offset:(NSSize)offset pasteboard:(NSPasteboard *)pasteboard source:(id)source; - -- (NSWindow *)draggingDestinationWindow; -- (NSDragOperation)draggingSourceOperationMask; -- (NSPoint)draggingLocation; -- (NSPoint)draggedImageLocation; -- (NSImage *)draggedImage; -- (NSPasteboard *)draggingPasteboard; -- (id)draggingSource; -- (int)draggingSequenceNumber; - -- (void)slideDraggedImageTo:(NSPoint)screenPoint; -- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination; -@end - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreeDraggingInfo.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -/* - * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTreeDraggingInfo.h" - -#import "DumpRenderTree.h" -#import "EventSendingController.h" -#import - -@implementation DumpRenderTreeDraggingInfo - -- (id)initWithImage:(NSImage *)anImage offset:(NSSize)o pasteboard:(NSPasteboard *)pboard source:(id)source -{ - draggedImage = [anImage retain]; - draggingPasteboard = [pboard retain]; - draggingSource = [source retain]; - offset = o; - - return [super init]; -} - -- (void)dealloc -{ - [draggedImage release]; - [draggingPasteboard release]; - [draggingSource release]; - [super dealloc]; -} - -- (NSWindow *)draggingDestinationWindow -{ - return [[mainFrame webView] window]; -} - -- (NSDragOperation)draggingSourceOperationMask -{ - return [draggingSource draggingSourceOperationMaskForLocal:YES]; -} - -- (NSPoint)draggingLocation -{ - return lastMousePosition; -} - -- (NSPoint)draggedImageLocation -{ - return NSMakePoint(lastMousePosition.x + offset.width, lastMousePosition.y + offset.height); -} - -- (NSImage *)draggedImage -{ - return draggedImage; -} - -- (NSPasteboard *)draggingPasteboard -{ - return draggingPasteboard; -} - -- (id)draggingSource -{ - return draggingSource; -} - -- (int)draggingSequenceNumber -{ - NSLog(@"DumpRenderTree doesn't support draggingSequenceNumber"); - return 0; -} - -- (void)slideDraggedImageTo:(NSPoint)screenPoint -{ - NSLog(@"DumpRenderTree doesn't support slideDraggedImageTo:"); -} - -- (NSArray *)namesOfPromisedFilesDroppedAtDestination:(NSURL *)dropDestination -{ - NSLog(@"DumpRenderTree doesn't support namesOfPromisedFilesDroppedAtDestination:"); - return nil; -} - -@end - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreeMac.h --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreeMac.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTreeMac_h -#define DumpRenderTreeMac_h - -// FIXME: we should add a config.h file for DumpRenderTree. -#define WTF_PLATFORM_CF 1 - -#if !defined(MAC_OS_X_VERSION_10_5) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5 -#define BUILDING_ON_TIGER 1 -#elif !defined(MAC_OS_X_VERSION_10_6) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6 -#define BUILDING_ON_LEOPARD 1 -#elif !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_7 -#define BUILDING_ON_SNOW_LEOPARD 1 -#endif - -@class DumpRenderTreeDraggingInfo; -@class NavigationController; -@class PolicyDelegate; -@class WebFrame; -@class WebScriptWorld; -@class WebView; - -typedef const struct __CFString* CFStringRef; - -extern CFMutableArrayRef openWindowsRef; -extern CFMutableSetRef disallowedURLs; -extern WebFrame* mainFrame; -extern WebFrame* topLoadingFrame; -extern DumpRenderTreeDraggingInfo *draggingInfo; -extern NavigationController* gNavigationController; -extern PolicyDelegate* policyDelegate; - -extern const unsigned maxViewHeight; -extern const unsigned maxViewWidth; - -extern CFRunLoopTimerRef waitToDumpWatchdog; - -WebView* createWebViewAndOffscreenWindow(); -void setPersistentUserStyleSheetLocation(CFStringRef); - -unsigned worldIDForWorld(WebScriptWorld *); - -#endif // DumpRenderTreeMac_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreePasteboard.h --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreePasteboard.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple, Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import -#import - -@interface DumpRenderTreePasteboard : NSPasteboard -- (NSInteger)declareType:(NSString *)type owner:(id)newOwner; -+ (void)releaseLocalPasteboards; -@end - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreePasteboard.m --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreePasteboard.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,206 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple, Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTreeMac.h" -#import "DumpRenderTreePasteboard.h" - -#import - -@interface LocalPasteboard : NSPasteboard -{ - NSMutableArray *typesArray; - NSMutableSet *typesSet; - NSMutableDictionary *dataByType; - NSInteger changeCount; -} -@end - -static NSMutableDictionary *localPasteboards; - -@implementation DumpRenderTreePasteboard - -// Return a local pasteboard so we don't disturb the real pasteboards when running tests. -+ (NSPasteboard *)_pasteboardWithName:(NSString *)name -{ - static int number = 0; - if (!name) - name = [NSString stringWithFormat:@"LocalPasteboard%d", ++number]; - if (!localPasteboards) - localPasteboards = [[NSMutableDictionary alloc] init]; - LocalPasteboard *pasteboard = [localPasteboards objectForKey:name]; - if (pasteboard) - return pasteboard; - pasteboard = [[LocalPasteboard alloc] init]; - [localPasteboards setObject:pasteboard forKey:name]; - [pasteboard release]; - return pasteboard; -} - -+ (void)releaseLocalPasteboards -{ - [localPasteboards release]; - localPasteboards = nil; -} - -// Convenience method for JS so that it doesn't have to try and create a NSArray on the objc side instead -// of the usual WebScriptObject that is passed around -- (NSInteger)declareType:(NSString *)type owner:(id)newOwner -{ - return [self declareTypes:[NSArray arrayWithObject:type] owner:newOwner]; -} - -@end - -@implementation LocalPasteboard - -+ (id)alloc -{ - return NSAllocateObject(self, 0, 0); -} - -- (id)init -{ - typesArray = [[NSMutableArray alloc] init]; - typesSet = [[NSMutableSet alloc] init]; - dataByType = [[NSMutableDictionary alloc] init]; - return self; -} - -- (void)dealloc -{ - [typesArray release]; - [typesSet release]; - [dataByType release]; - [super dealloc]; -} - -- (NSString *)name -{ - return nil; -} - -- (void)releaseGlobally -{ -} - -- (NSInteger)declareTypes:(NSArray *)newTypes owner:(id)newOwner -{ - [typesArray removeAllObjects]; - [typesSet removeAllObjects]; - [dataByType removeAllObjects]; - return [self addTypes:newTypes owner:newOwner]; -} - -- (NSInteger)addTypes:(NSArray *)newTypes owner:(id)newOwner -{ - unsigned count = [newTypes count]; - unsigned i; - for (i = 0; i < count; ++i) { - NSString *type = [newTypes objectAtIndex:i]; - NSString *setType = [typesSet member:type]; - if (!setType) { - setType = [type copy]; - [typesArray addObject:setType]; - [typesSet addObject:setType]; - [setType release]; - } - if (newOwner && [newOwner respondsToSelector:@selector(pasteboard:provideDataForType:)]) - [newOwner pasteboard:self provideDataForType:setType]; - } - return ++changeCount; -} - -- (NSInteger)changeCount -{ - return changeCount; -} - -- (NSArray *)types -{ - return typesArray; -} - -- (NSString *)availableTypeFromArray:(NSArray *)types -{ - unsigned count = [types count]; - unsigned i; - for (i = 0; i < count; ++i) { - NSString *type = [types objectAtIndex:i]; - NSString *setType = [typesSet member:type]; - if (setType) - return setType; - } - return nil; -} - -- (BOOL)setData:(NSData *)data forType:(NSString *)dataType -{ - if (data == nil) - data = [NSData data]; - if (![typesSet containsObject:dataType]) - return NO; - [dataByType setObject:data forKey:dataType]; - ++changeCount; - return YES; -} - -- (NSData *)dataForType:(NSString *)dataType -{ - return [dataByType objectForKey:dataType]; -} - -- (BOOL)setPropertyList:(id)propertyList forType:(NSString *)dataType -{ - CFDataRef data = NULL; - if (propertyList) - data = CFPropertyListCreateXMLData(NULL, propertyList); - BOOL result = [self setData:(NSData *)data forType:dataType]; - if (data) - CFRelease(data); - return result; -} - -- (BOOL)setString:(NSString *)string forType:(NSString *)dataType -{ - CFDataRef data = NULL; - if (string) { - if ([string length] == 0) - data = CFDataCreate(NULL, NULL, 0); - else - data = CFStringCreateExternalRepresentation(NULL, (CFStringRef)string, kCFStringEncodingUTF8, 0); - } - BOOL result = [self setData:(NSData *)data forType:dataType]; - if (data) - CFRelease(data); - return result; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreeWindow.h --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreeWindow.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,46 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple, Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@class WebView; - -@interface DumpRenderTreeWindow : NSWindow -{ -} - -// I'm not sure why we can't just use [NSApp windows] -+ (NSArray *)openWindows; - -- (WebView *)webView; - -- (void)startListeningForAcceleratedCompositingChanges; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/DumpRenderTreeWindow.mm --- a/WebKitTools/DumpRenderTree/mac/DumpRenderTreeWindow.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,118 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple, Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTreeWindow.h" - -#import "DumpRenderTree.h" - -// FIXME: This file is ObjC++ only because of this include. :( -#import "LayoutTestController.h" -#import -#import - -CFMutableArrayRef openWindowsRef = 0; - -static CFArrayCallBacks NonRetainingArrayCallbacks = { - 0, - NULL, - NULL, - CFCopyDescription, - CFEqual -}; - -@implementation DumpRenderTreeWindow - -+ (NSArray *)openWindows -{ - return [[(NSArray *)openWindowsRef copy] autorelease]; -} - -- (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)deferCreation -{ - if (!openWindowsRef) - openWindowsRef = CFArrayCreateMutable(NULL, 0, &NonRetainingArrayCallbacks); - - CFArrayAppendValue(openWindowsRef, self); - - return [super initWithContentRect:contentRect styleMask:styleMask backing:bufferingType defer:deferCreation]; -} - -- (void)close -{ - [[NSNotificationCenter defaultCenter] removeObserver:self]; - - CFRange arrayRange = CFRangeMake(0, CFArrayGetCount(openWindowsRef)); - CFIndex i = CFArrayGetFirstIndexOfValue(openWindowsRef, arrayRange, self); - if (i != kCFNotFound) - CFArrayRemoveValueAtIndex(openWindowsRef, i); - - [super close]; -} - -- (BOOL)isKeyWindow -{ - return gLayoutTestController ? gLayoutTestController->windowIsKey() : YES; -} - -- (void)keyDown:(NSEvent *)event -{ - // Do nothing, avoiding the beep we'd otherwise get from NSResponder, - // once we get to the end of the responder chain. -} - -- (WebView *)webView -{ - NSView *firstView = nil; - if ([[[self contentView] subviews] count] > 0) { - firstView = [[[self contentView] subviews] objectAtIndex:0]; - if ([firstView isKindOfClass:[WebView class]]) - return static_cast(firstView); - } - return nil; -} - -- (void)startListeningForAcceleratedCompositingChanges -{ - [[self webView] _setPostsAcceleratedCompositingNotifications:YES]; - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(webViewStartedAcceleratedCompositing:) - name:_WebViewDidStartAcceleratedCompositingNotification object:nil]; -} - -- (void)webViewStartedAcceleratedCompositing:(NSNotification *)notification -{ - // If the WebView has gone into compositing mode, turn on window autodisplay. This is necessary for CA - // to update layers and start animations. - // We only ever turn autodisplay on here, because we turn it off before every test. - if ([[self webView] _isUsingAcceleratedCompositing]) - [self setAutodisplay:YES]; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/EditingDelegate.h --- a/WebKitTools/DumpRenderTree/mac/EditingDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -/* - * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@interface EditingDelegate : NSObject -{ - BOOL acceptsEditing; -} - -- (void)setAcceptsEditing:(BOOL)newAcceptsEditing; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/EditingDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/EditingDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,192 +0,0 @@ -/* - * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "EditingDelegate.h" - -#import "DumpRenderTree.h" -#import "LayoutTestController.h" -#import - -@interface DOMNode (dumpPath) -- (NSString *)dumpPath; -@end - -@implementation DOMNode (dumpPath) -- (NSString *)dumpPath -{ - DOMNode *parent = [self parentNode]; - NSString *str = [NSString stringWithFormat:@"%@", [self nodeName]]; - if (parent != nil) { - str = [str stringByAppendingString:@" > "]; - str = [str stringByAppendingString:[parent dumpPath]]; - } - return str; -} -@end - -@interface DOMRange (dump) -- (NSString *)dump; -@end - -@implementation DOMRange (dump) -- (NSString *)dump -{ - return [NSString stringWithFormat:@"range from %ld of %@ to %ld of %@", [self startOffset], [[self startContainer] dumpPath], [self endOffset], [[self endContainer] dumpPath]]; -} -@end - -@implementation EditingDelegate - -- (id)init -{ - self = [super init]; - if (!self) - return nil; - acceptsEditing = YES; - return self; -} - -- (BOOL)webView:(WebView *)webView shouldBeginEditingInDOMRange:(DOMRange *)range -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", [[range dump] UTF8String]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldEndEditingInDOMRange:(DOMRange *)range -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", [[range dump] UTF8String]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldInsertNode:(DOMNode *)node replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action -{ - static const char *insertactionstring[] = { - "WebViewInsertActionTyped", - "WebViewInsertActionPasted", - "WebViewInsertActionDropped", - }; - - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n", [[node dumpPath] UTF8String], [[range dump] UTF8String], insertactionstring[action]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldInsertText:(NSString *)text replacingDOMRange:(DOMRange *)range givenAction:(WebViewInsertAction)action -{ - static const char *insertactionstring[] = { - "WebViewInsertActionTyped", - "WebViewInsertActionPasted", - "WebViewInsertActionDropped", - }; - - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n", [[text description] UTF8String], [[range dump] UTF8String], insertactionstring[action]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldDeleteDOMRange:(DOMRange *)range -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", [[range dump] UTF8String]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldShowDeleteInterfaceForElement:(DOMHTMLElement *)element -{ - return [[element className] isEqualToString:@"needsDeletionUI"]; -} - -- (BOOL)webView:(WebView *)webView shouldChangeSelectedDOMRange:(DOMRange *)currentRange toDOMRange:(DOMRange *)proposedRange affinity:(NSSelectionAffinity)selectionAffinity stillSelecting:(BOOL)flag -{ - static const char *affinitystring[] = { - "NSSelectionAffinityUpstream", - "NSSelectionAffinityDownstream" - }; - static const char *boolstring[] = { - "FALSE", - "TRUE" - }; - - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n", [[currentRange dump] UTF8String], [[proposedRange dump] UTF8String], affinitystring[selectionAffinity], boolstring[flag]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldApplyStyle:(DOMCSSStyleDeclaration *)style toElementsInDOMRange:(DOMRange *)range -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n", [[style description] UTF8String], [[range dump] UTF8String]); - return acceptsEditing; -} - -- (BOOL)webView:(WebView *)webView shouldChangeTypingStyle:(DOMCSSStyleDeclaration *)currentStyle toStyle:(DOMCSSStyleDeclaration *)proposedStyle -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n", [[currentStyle description] UTF8String], [[proposedStyle description] UTF8String]); - return acceptsEditing; -} - -- (void)webViewDidBeginEditing:(NSNotification *)notification -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: webViewDidBeginEditing:%s\n", [[notification name] UTF8String]); -} - -- (void)webViewDidChange:(NSNotification *)notification -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: webViewDidChange:%s\n", [[notification name] UTF8String]); -} - -- (void)webViewDidEndEditing:(NSNotification *)notification -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: webViewDidEndEditing:%s\n", [[notification name] UTF8String]); -} - -- (void)webViewDidChangeTypingStyle:(NSNotification *)notification -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: webViewDidChangeTypingStyle:%s\n", [[notification name] UTF8String]); -} - -- (void)webViewDidChangeSelection:(NSNotification *)notification -{ - if (!done && gLayoutTestController->dumpEditingCallbacks()) - printf("EDITING DELEGATE: webViewDidChangeSelection:%s\n", [[notification name] UTF8String]); -} - -- (void)setAcceptsEditing:(BOOL)newAcceptsEditing -{ - acceptsEditing = newAcceptsEditing; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/EventSendingController.h --- a/WebKitTools/DumpRenderTree/mac/EventSendingController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,55 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import -#import - -@interface EventSendingController : NSObject -{ - BOOL leftMouseButtonDown; - BOOL dragMode; - int clickCount; - NSTimeInterval lastClick; - int eventNumber; - double timeOffset; -} - -+ (void)saveEvent:(NSInvocation *)event; -+ (void)replaySavedEvents; -+ (void)clearSavedEvents; - -- (void)scheduleAsynchronousClick; - -- (void)enableDOMUIEventLogging:(WebScriptObject *)node; - -- (void)handleEvent:(DOMEvent *)event; - -@end - -extern NSPoint lastMousePosition; -extern NSPoint lastClickPosition; \ No newline at end of file diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/EventSendingController.mm --- a/WebKitTools/DumpRenderTree/mac/EventSendingController.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,860 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. - * Copyright (C) 2006 Jonas Witt - * Copyright (C) 2006 Samuel Weinig - * Copyright (C) 2006 Alexey Proskuryakov - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "EventSendingController.h" - -#import "DumpRenderTree.h" -#import "DumpRenderTreeDraggingInfo.h" -#import "DumpRenderTreeFileDraggingSource.h" - -#import // for GetCurrentEventTime() -#import -#import -#import - -extern "C" void _NSNewKillRingSequence(); - -enum MouseAction { - MouseDown, - MouseUp, - MouseDragged -}; - -// Match the DOM spec (sadly the DOM spec does not provide an enum) -enum MouseButton { - LeftMouseButton = 0, - MiddleMouseButton = 1, - RightMouseButton = 2, - NoMouseButton = -1 -}; - -NSPoint lastMousePosition; -NSPoint lastClickPosition; -int lastClickButton = NoMouseButton; -NSArray *webkitDomEventNames; -NSMutableArray *savedMouseEvents; // mouse events sent between mouseDown and mouseUp are stored here, and then executed at once. -BOOL replayingSavedEvents; - -@implementation EventSendingController - -+ (void)initialize -{ - webkitDomEventNames = [[NSArray alloc] initWithObjects: - @"abort", - @"beforecopy", - @"beforecut", - @"beforepaste", - @"blur", - @"change", - @"click", - @"contextmenu", - @"copy", - @"cut", - @"dblclick", - @"drag", - @"dragend", - @"dragenter", - @"dragleave", - @"dragover", - @"dragstart", - @"drop", - @"error", - @"focus", - @"input", - @"keydown", - @"keypress", - @"keyup", - @"load", - @"mousedown", - @"mousemove", - @"mouseout", - @"mouseover", - @"mouseup", - @"mousewheel", - @"beforeunload", - @"paste", - @"readystatechange", - @"reset", - @"resize", - @"scroll", - @"search", - @"select", - @"selectstart", - @"submit", - @"textInput", - @"textzoomin", - @"textzoomout", - @"unload", - @"zoom", - nil]; -} - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (aSelector == @selector(beginDragWithFiles:) - || aSelector == @selector(clearKillRing) - || aSelector == @selector(contextClick) - || aSelector == @selector(enableDOMUIEventLogging:) - || aSelector == @selector(fireKeyboardEventsToElement:) - || aSelector == @selector(keyDown:withModifiers:withLocation:) - || aSelector == @selector(leapForward:) - || aSelector == @selector(mouseDown:withModifiers:) - || aSelector == @selector(mouseMoveToX:Y:) - || aSelector == @selector(mouseUp:withModifiers:) - || aSelector == @selector(scheduleAsynchronousClick) - || aSelector == @selector(textZoomIn) - || aSelector == @selector(textZoomOut) - || aSelector == @selector(zoomPageIn) - || aSelector == @selector(zoomPageOut) - || aSelector == @selector(mouseScrollByX:andY:) - || aSelector == @selector(continuousMouseScrollByX:andY:)) - return NO; - return YES; -} - -+ (BOOL)isKeyExcludedFromWebScript:(const char*)name -{ - if (strcmp(name, "dragMode") == 0) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(beginDragWithFiles:)) - return @"beginDragWithFiles"; - if (aSelector == @selector(contextClick)) - return @"contextClick"; - if (aSelector == @selector(enableDOMUIEventLogging:)) - return @"enableDOMUIEventLogging"; - if (aSelector == @selector(fireKeyboardEventsToElement:)) - return @"fireKeyboardEventsToElement"; - if (aSelector == @selector(keyDown:withModifiers:withLocation:)) - return @"keyDown"; - if (aSelector == @selector(leapForward:)) - return @"leapForward"; - if (aSelector == @selector(mouseDown:withModifiers:)) - return @"mouseDown"; - if (aSelector == @selector(mouseUp:withModifiers:)) - return @"mouseUp"; - if (aSelector == @selector(mouseMoveToX:Y:)) - return @"mouseMoveTo"; - if (aSelector == @selector(setDragMode:)) - return @"setDragMode"; - if (aSelector == @selector(mouseScrollByX:andY:)) - return @"mouseScrollBy"; - if (aSelector == @selector(continuousMouseScrollByX:andY:)) - return @"continuousMouseScrollBy"; - return nil; -} - -- (id)init -{ - self = [super init]; - if (self) - dragMode = YES; - return self; -} - -- (void)dealloc -{ - [super dealloc]; -} - -- (double)currentEventTime -{ - return GetCurrentEventTime() + timeOffset; -} - -- (void)leapForward:(int)milliseconds -{ - if (dragMode && leftMouseButtonDown && !replayingSavedEvents) { - NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(leapForward:)]]; - [invocation setTarget:self]; - [invocation setSelector:@selector(leapForward:)]; - [invocation setArgument:&milliseconds atIndex:2]; - - [EventSendingController saveEvent:invocation]; - - return; - } - - timeOffset += milliseconds / 1000.0; -} - -- (void)clearKillRing -{ - _NSNewKillRingSequence(); -} - -static NSEventType eventTypeForMouseButtonAndAction(int button, MouseAction action) -{ - switch (button) { - case LeftMouseButton: - switch (action) { - case MouseDown: - return NSLeftMouseDown; - case MouseUp: - return NSLeftMouseUp; - case MouseDragged: - return NSLeftMouseDragged; - } - case RightMouseButton: - switch (action) { - case MouseDown: - return NSRightMouseDown; - case MouseUp: - return NSRightMouseUp; - case MouseDragged: - return NSRightMouseDragged; - } - default: - switch (action) { - case MouseDown: - return NSOtherMouseDown; - case MouseUp: - return NSOtherMouseUp; - case MouseDragged: - return NSOtherMouseDragged; - } - } - assert(0); - return static_cast(0); -} - -- (void)beginDragWithFiles:(WebScriptObject*)jsFilePaths -{ - assert(!draggingInfo); - assert([jsFilePaths isKindOfClass:[WebScriptObject class]]); - - NSPasteboard *pboard = [NSPasteboard pasteboardWithUniqueName]; - [pboard declareTypes:[NSArray arrayWithObject:NSFilenamesPboardType] owner:nil]; - - NSURL *currentTestURL = [NSURL URLWithString:[[mainFrame webView] mainFrameURL]]; - - NSMutableArray *filePaths = [NSMutableArray array]; - for (unsigned i = 0; [[jsFilePaths webScriptValueAtIndex:i] isKindOfClass:[NSString class]]; i++) { - NSString *filePath = (NSString *)[jsFilePaths webScriptValueAtIndex:i]; - // Have NSURL encode the name so that we handle '?' in file names correctly. - NSURL *fileURL = [NSURL fileURLWithPath:filePath]; - NSURL *absoluteFileURL = [NSURL URLWithString:[fileURL relativeString] relativeToURL:currentTestURL]; - [filePaths addObject:[absoluteFileURL path]]; - } - - [pboard setPropertyList:filePaths forType:NSFilenamesPboardType]; - assert([pboard propertyListForType:NSFilenamesPboardType]); // setPropertyList will silently fail on error, assert that it didn't fail - - // Provide a source, otherwise [DumpRenderTreeDraggingInfo draggingSourceOperationMask] defaults to NSDragOperationNone - DumpRenderTreeFileDraggingSource *source = [[[DumpRenderTreeFileDraggingSource alloc] init] autorelease]; - draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:nil offset:NSZeroSize pasteboard:pboard source:source]; - [[mainFrame webView] draggingEntered:draggingInfo]; - - dragMode = NO; // dragMode saves events and then replays them later. We don't need/want that. - leftMouseButtonDown = YES; // Make the rest of eventSender think a drag is in progress -} - -- (void)updateClickCountForButton:(int)buttonNumber -{ - if (([self currentEventTime] - lastClick >= 1) || - !NSEqualPoints(lastMousePosition, lastClickPosition) || - lastClickButton != buttonNumber) { - clickCount = 1; - lastClickButton = buttonNumber; - } else - clickCount++; -} - -static int buildModifierFlags(const WebScriptObject* modifiers) -{ - int flags = 0; - if (![modifiers isKindOfClass:[WebScriptObject class]]) - return flags; - for (unsigned i = 0; [[modifiers webScriptValueAtIndex:i] isKindOfClass:[NSString class]]; i++) { - NSString* modifierName = (NSString*)[modifiers webScriptValueAtIndex:i]; - if ([modifierName isEqual:@"ctrlKey"]) - flags |= NSControlKeyMask; - else if ([modifierName isEqual:@"shiftKey"] || [modifierName isEqual:@"rangeSelectionKey"]) - flags |= NSShiftKeyMask; - else if ([modifierName isEqual:@"altKey"]) - flags |= NSAlternateKeyMask; - else if ([modifierName isEqual:@"metaKey"] || [modifierName isEqual:@"addSelectionKey"]) - flags |= NSCommandKeyMask; - } - return flags; -} - -- (void)mouseDown:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers -{ - [[[mainFrame frameView] documentView] layout]; - [self updateClickCountForButton:buttonNumber]; - - NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseDown); - NSEvent *event = [NSEvent mouseEventWithType:eventType - location:lastMousePosition - modifierFlags:buildModifierFlags(modifiers) - timestamp:[self currentEventTime] - windowNumber:[[[mainFrame webView] window] windowNumber] - context:[NSGraphicsContext currentContext] - eventNumber:++eventNumber - clickCount:clickCount - pressure:0.0]; - - NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]]; - if (subView) { - [subView mouseDown:event]; - if (buttonNumber == LeftMouseButton) - leftMouseButtonDown = YES; - } -} - -- (void)mouseDown:(int)buttonNumber -{ - [self mouseDown:buttonNumber withModifiers:nil]; -} - -- (void)textZoomIn -{ - [[mainFrame webView] makeTextLarger:self]; -} - -- (void)textZoomOut -{ - [[mainFrame webView] makeTextSmaller:self]; -} - -- (void)zoomPageIn -{ - [[mainFrame webView] zoomPageIn:self]; -} - -- (void)zoomPageOut -{ - [[mainFrame webView] zoomPageOut:self]; -} - -- (void)mouseUp:(int)buttonNumber withModifiers:(WebScriptObject*)modifiers -{ - if (dragMode && !replayingSavedEvents) { - NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseUp:withModifiers:)]]; - [invocation setTarget:self]; - [invocation setSelector:@selector(mouseUp:withModifiers:)]; - [invocation setArgument:&buttonNumber atIndex:2]; - [invocation setArgument:&modifiers atIndex:3]; - - [EventSendingController saveEvent:invocation]; - [EventSendingController replaySavedEvents]; - - return; - } - - [[[mainFrame frameView] documentView] layout]; - NSEventType eventType = eventTypeForMouseButtonAndAction(buttonNumber, MouseUp); - NSEvent *event = [NSEvent mouseEventWithType:eventType - location:lastMousePosition - modifierFlags:buildModifierFlags(modifiers) - timestamp:[self currentEventTime] - windowNumber:[[[mainFrame webView] window] windowNumber] - context:[NSGraphicsContext currentContext] - eventNumber:++eventNumber - clickCount:clickCount - pressure:0.0]; - - NSView *targetView = [[mainFrame webView] hitTest:[event locationInWindow]]; - // FIXME: Silly hack to teach DRT to respect capturing mouse events outside the WebView. - // The right solution is just to use NSApplication's built-in event sending methods, - // instead of rolling our own algorithm for selecting an event target. - targetView = targetView ? targetView : [[mainFrame frameView] documentView]; - assert(targetView); - [targetView mouseUp:event]; - if (buttonNumber == LeftMouseButton) - leftMouseButtonDown = NO; - lastClick = [event timestamp]; - lastClickPosition = lastMousePosition; - if (draggingInfo) { - WebView *webView = [mainFrame webView]; - - NSDragOperation dragOperation = [webView draggingUpdated:draggingInfo]; - - if (dragOperation != NSDragOperationNone) - [webView performDragOperation:draggingInfo]; - else - [webView draggingExited:draggingInfo]; - // Per NSDragging.h: draggingSources may not implement draggedImage:endedAt:operation: - if ([[draggingInfo draggingSource] respondsToSelector:@selector(draggedImage:endedAt:operation:)]) - [[draggingInfo draggingSource] draggedImage:[draggingInfo draggedImage] endedAt:lastMousePosition operation:dragOperation]; - [draggingInfo release]; - draggingInfo = nil; - } -} - -- (void)mouseUp:(int)buttonNumber -{ - [self mouseUp:buttonNumber withModifiers:nil]; -} - -- (void)mouseMoveToX:(int)x Y:(int)y -{ - if (dragMode && leftMouseButtonDown && !replayingSavedEvents) { - NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[EventSendingController instanceMethodSignatureForSelector:@selector(mouseMoveToX:Y:)]]; - [invocation setTarget:self]; - [invocation setSelector:@selector(mouseMoveToX:Y:)]; - [invocation setArgument:&x atIndex:2]; - [invocation setArgument:&y atIndex:3]; - - [EventSendingController saveEvent:invocation]; - return; - } - - NSView *view = [mainFrame webView]; - lastMousePosition = [view convertPoint:NSMakePoint(x, [view frame].size.height - y) toView:nil]; - NSEvent *event = [NSEvent mouseEventWithType:(leftMouseButtonDown ? NSLeftMouseDragged : NSMouseMoved) - location:lastMousePosition - modifierFlags:0 - timestamp:[self currentEventTime] - windowNumber:[[view window] windowNumber] - context:[NSGraphicsContext currentContext] - eventNumber:++eventNumber - clickCount:(leftMouseButtonDown ? clickCount : 0) - pressure:0.0]; - - NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]]; - if (subView) { - if (leftMouseButtonDown) { - [subView mouseDragged:event]; - if (draggingInfo) { - // Per NSDragging.h: draggingSources may not implement draggedImage:movedTo: - if ([[draggingInfo draggingSource] respondsToSelector:@selector(draggedImage:movedTo:)]) - [[draggingInfo draggingSource] draggedImage:[draggingInfo draggedImage] movedTo:lastMousePosition]; - [[mainFrame webView] draggingUpdated:draggingInfo]; - } - } else - [subView mouseMoved:event]; - } -} - -- (void)mouseScrollByX:(int)x andY:(int)y continuously:(BOOL)c -{ - // CGEventCreateScrollWheelEvent() was introduced in 10.5 -#if !defined(BUILDING_ON_TIGER) - CGScrollEventUnit unit = c?kCGScrollEventUnitPixel:kCGScrollEventUnitLine; - CGEventRef cgScrollEvent = CGEventCreateScrollWheelEvent(NULL, unit, 2, y, x); - - // CGEvent locations are in global display coordinates. - CGPoint lastGlobalMousePosition = { - lastMousePosition.x, - [[NSScreen mainScreen] frame].size.height - lastMousePosition.y - }; - CGEventSetLocation(cgScrollEvent, lastGlobalMousePosition); - - NSEvent *scrollEvent = [NSEvent eventWithCGEvent:cgScrollEvent]; - CFRelease(cgScrollEvent); - - NSView *subView = [[mainFrame webView] hitTest:[scrollEvent locationInWindow]]; - if (subView) - [subView scrollWheel:scrollEvent]; -#endif -} - -- (void)continuousMouseScrollByX:(int)x andY:(int)y -{ - [self mouseScrollByX:x andY:y continuously:YES]; -} - -- (void)mouseScrollByX:(int)x andY:(int)y -{ - [self mouseScrollByX:x andY:y continuously:NO]; -} - -- (NSArray *)contextClick -{ - [[[mainFrame frameView] documentView] layout]; - [self updateClickCountForButton:RightMouseButton]; - - NSEvent *event = [NSEvent mouseEventWithType:NSRightMouseDown - location:lastMousePosition - modifierFlags:0 - timestamp:[self currentEventTime] - windowNumber:[[[mainFrame webView] window] windowNumber] - context:[NSGraphicsContext currentContext] - eventNumber:++eventNumber - clickCount:clickCount - pressure:0.0]; - - NSView *subView = [[mainFrame webView] hitTest:[event locationInWindow]]; - NSMutableArray *menuItemStrings = [NSMutableArray array]; - - if (subView) { - NSMenu* menu = [subView menuForEvent:event]; - - for (int i = 0; i < [menu numberOfItems]; ++i) { - NSMenuItem* menuItem = [menu itemAtIndex:i]; - if (!strcmp("Inspect Element", [[menuItem title] UTF8String])) - continue; - - if ([menuItem isSeparatorItem]) - [menuItemStrings addObject:@""]; - else - [menuItemStrings addObject:[menuItem title]]; - } - } - - return menuItemStrings; -} - -- (void)scheduleAsynchronousClick -{ - [self performSelector:@selector(mouseDown:) withObject:nil afterDelay:0]; - [self performSelector:@selector(mouseUp:) withObject:nil afterDelay:0]; -} - -+ (void)saveEvent:(NSInvocation *)event -{ - if (!savedMouseEvents) - savedMouseEvents = [[NSMutableArray alloc] init]; - [savedMouseEvents addObject:event]; -} - -+ (void)replaySavedEvents -{ - replayingSavedEvents = YES; - while ([savedMouseEvents count]) { - // if a drag is initiated, the remaining saved events will be dispatched from our dragging delegate - NSInvocation *invocation = [[[savedMouseEvents objectAtIndex:0] retain] autorelease]; - [savedMouseEvents removeObjectAtIndex:0]; - [invocation invoke]; - } - replayingSavedEvents = NO; -} - -+ (void)clearSavedEvents -{ - [savedMouseEvents release]; - savedMouseEvents = nil; -} - -- (void)keyDown:(NSString *)character withModifiers:(WebScriptObject *)modifiers withLocation:(unsigned long)keyLocation -{ - NSString *eventCharacter = character; - unsigned short keyCode = 0; - if ([character isEqualToString:@"leftArrow"]) { - const unichar ch = NSLeftArrowFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x7B; - } else if ([character isEqualToString:@"rightArrow"]) { - const unichar ch = NSRightArrowFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x7C; - } else if ([character isEqualToString:@"upArrow"]) { - const unichar ch = NSUpArrowFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x7E; - } else if ([character isEqualToString:@"downArrow"]) { - const unichar ch = NSDownArrowFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x7D; - } else if ([character isEqualToString:@"pageUp"]) { - const unichar ch = NSPageUpFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x74; - } else if ([character isEqualToString:@"pageDown"]) { - const unichar ch = NSPageDownFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x79; - } else if ([character isEqualToString:@"home"]) { - const unichar ch = NSHomeFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x73; - } else if ([character isEqualToString:@"end"]) { - const unichar ch = NSEndFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x77; - } else if ([character isEqualToString:@"delete"]) { - const unichar ch = NSDeleteFunctionKey; - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - keyCode = 0x75; - } - - // Compare the input string with the function-key names defined by the DOM spec (i.e. "F1",...,"F24"). - // If the input string is a function-key name, set its key code. - for (unsigned i = 1; i <= 24; i++) { - if ([character isEqualToString:[NSString stringWithFormat:@"F%u", i]]) { - const unichar ch = NSF1FunctionKey + (i - 1); - eventCharacter = [NSString stringWithCharacters:&ch length:1]; - switch (i) { - case 1: keyCode = 0x7A; break; - case 2: keyCode = 0x78; break; - case 3: keyCode = 0x63; break; - case 4: keyCode = 0x76; break; - case 5: keyCode = 0x60; break; - case 6: keyCode = 0x61; break; - case 7: keyCode = 0x62; break; - case 8: keyCode = 0x64; break; - case 9: keyCode = 0x65; break; - case 10: keyCode = 0x6D; break; - case 11: keyCode = 0x67; break; - case 12: keyCode = 0x6F; break; - case 13: keyCode = 0x69; break; - case 14: keyCode = 0x6B; break; - case 15: keyCode = 0x71; break; - case 16: keyCode = 0x6A; break; - case 17: keyCode = 0x40; break; - case 18: keyCode = 0x4F; break; - case 19: keyCode = 0x50; break; - case 20: keyCode = 0x5A; break; - } - } - } - - // FIXME: No keyCode is set for most keys. - if ([character isEqualToString:@"\t"]) - keyCode = 0x30; - else if ([character isEqualToString:@" "]) - keyCode = 0x31; - else if ([character isEqualToString:@"\r"]) - keyCode = 0x24; - else if ([character isEqualToString:@"\n"]) - keyCode = 0x4C; - else if ([character isEqualToString:@"\x8"]) - keyCode = 0x33; - else if ([character isEqualToString:@"7"]) - keyCode = 0x1A; - else if ([character isEqualToString:@"5"]) - keyCode = 0x17; - else if ([character isEqualToString:@"9"]) - keyCode = 0x19; - else if ([character isEqualToString:@"0"]) - keyCode = 0x1D; - else if ([character isEqualToString:@"a"]) - keyCode = 0x00; - else if ([character isEqualToString:@"b"]) - keyCode = 0x0B; - else if ([character isEqualToString:@"d"]) - keyCode = 0x02; - else if ([character isEqualToString:@"e"]) - keyCode = 0x0E; - - NSString *charactersIgnoringModifiers = eventCharacter; - - int modifierFlags = 0; - - if ([character length] == 1 && [character characterAtIndex:0] >= 'A' && [character characterAtIndex:0] <= 'Z') { - modifierFlags |= NSShiftKeyMask; - charactersIgnoringModifiers = [character lowercaseString]; - } - - modifierFlags |= buildModifierFlags(modifiers); - - if (keyLocation == DOM_KEY_LOCATION_NUMPAD) - modifierFlags |= NSNumericPadKeyMask; - - [[[mainFrame frameView] documentView] layout]; - - NSEvent *event = [NSEvent keyEventWithType:NSKeyDown - location:NSMakePoint(5, 5) - modifierFlags:modifierFlags - timestamp:[self currentEventTime] - windowNumber:[[[mainFrame webView] window] windowNumber] - context:[NSGraphicsContext currentContext] - characters:eventCharacter - charactersIgnoringModifiers:charactersIgnoringModifiers - isARepeat:NO - keyCode:keyCode]; - - [[[[mainFrame webView] window] firstResponder] keyDown:event]; - - event = [NSEvent keyEventWithType:NSKeyUp - location:NSMakePoint(5, 5) - modifierFlags:modifierFlags - timestamp:[self currentEventTime] - windowNumber:[[[mainFrame webView] window] windowNumber] - context:[NSGraphicsContext currentContext] - characters:eventCharacter - charactersIgnoringModifiers:charactersIgnoringModifiers - isARepeat:NO - keyCode:keyCode]; - - [[[[mainFrame webView] window] firstResponder] keyUp:event]; -} - -- (void)enableDOMUIEventLogging:(WebScriptObject *)node -{ - NSEnumerator *eventEnumerator = [webkitDomEventNames objectEnumerator]; - id eventName; - while ((eventName = [eventEnumerator nextObject])) { - [(id)node addEventListener:eventName listener:self useCapture:NO]; - } -} - -- (void)handleEvent:(DOMEvent *)event -{ - DOMNode *target = [event target]; - - printf("event type: %s\n", [[event type] UTF8String]); - printf(" target: <%s>\n", [[[target nodeName] lowercaseString] UTF8String]); - - if ([event isKindOfClass:[DOMEvent class]]) { - printf(" eventPhase: %d\n", [event eventPhase]); - printf(" bubbles: %d\n", [event bubbles] ? 1 : 0); - printf(" cancelable: %d\n", [event cancelable] ? 1 : 0); - } - - if ([event isKindOfClass:[DOMUIEvent class]]) { - printf(" detail: %d\n", [(DOMUIEvent*)event detail]); - - DOMAbstractView *view = [(DOMUIEvent*)event view]; - if (view) { - printf(" view: OK"); - if ([view document]) - printf(" (document: OK)"); - printf("\n"); - } - } - - if ([event isKindOfClass:[DOMKeyboardEvent class]]) { - printf(" keyIdentifier: %s\n", [[(DOMKeyboardEvent*)event keyIdentifier] UTF8String]); - printf(" keyLocation: %d\n", [(DOMKeyboardEvent*)event keyLocation]); - printf(" modifier keys: c:%d s:%d a:%d m:%d\n", - [(DOMKeyboardEvent*)event ctrlKey] ? 1 : 0, - [(DOMKeyboardEvent*)event shiftKey] ? 1 : 0, - [(DOMKeyboardEvent*)event altKey] ? 1 : 0, - [(DOMKeyboardEvent*)event metaKey] ? 1 : 0); - printf(" keyCode: %d\n", [(DOMKeyboardEvent*)event keyCode]); - printf(" charCode: %d\n", [(DOMKeyboardEvent*)event charCode]); - } - - if ([event isKindOfClass:[DOMMouseEvent class]]) { - printf(" button: %d\n", [(DOMMouseEvent*)event button]); - printf(" clientX: %d\n", [(DOMMouseEvent*)event clientX]); - printf(" clientY: %d\n", [(DOMMouseEvent*)event clientY]); - printf(" screenX: %d\n", [(DOMMouseEvent*)event screenX]); - printf(" screenY: %d\n", [(DOMMouseEvent*)event screenY]); - printf(" modifier keys: c:%d s:%d a:%d m:%d\n", - [(DOMMouseEvent*)event ctrlKey] ? 1 : 0, - [(DOMMouseEvent*)event shiftKey] ? 1 : 0, - [(DOMMouseEvent*)event altKey] ? 1 : 0, - [(DOMMouseEvent*)event metaKey] ? 1 : 0); - id relatedTarget = [(DOMMouseEvent*)event relatedTarget]; - if (relatedTarget) { - printf(" relatedTarget: %s", [[[relatedTarget class] description] UTF8String]); - if ([relatedTarget isKindOfClass:[DOMNode class]]) - printf(" (nodeName: %s)", [[(DOMNode*)relatedTarget nodeName] UTF8String]); - printf("\n"); - } - } - - if ([event isKindOfClass:[DOMMutationEvent class]]) { - printf(" prevValue: %s\n", [[(DOMMutationEvent*)event prevValue] UTF8String]); - printf(" newValue: %s\n", [[(DOMMutationEvent*)event newValue] UTF8String]); - printf(" attrName: %s\n", [[(DOMMutationEvent*)event attrName] UTF8String]); - printf(" attrChange: %d\n", [(DOMMutationEvent*)event attrChange]); - DOMNode *relatedNode = [(DOMMutationEvent*)event relatedNode]; - if (relatedNode) { - printf(" relatedNode: %s (nodeName: %s)\n", - [[[relatedNode class] description] UTF8String], - [[relatedNode nodeName] UTF8String]); - } - } - - if ([event isKindOfClass:[DOMWheelEvent class]]) { - printf(" clientX: %d\n", [(DOMWheelEvent*)event clientX]); - printf(" clientY: %d\n", [(DOMWheelEvent*)event clientY]); - printf(" screenX: %d\n", [(DOMWheelEvent*)event screenX]); - printf(" screenY: %d\n", [(DOMWheelEvent*)event screenY]); - printf(" modifier keys: c:%d s:%d a:%d m:%d\n", - [(DOMWheelEvent*)event ctrlKey] ? 1 : 0, - [(DOMWheelEvent*)event shiftKey] ? 1 : 0, - [(DOMWheelEvent*)event altKey] ? 1 : 0, - [(DOMWheelEvent*)event metaKey] ? 1 : 0); - printf(" isHorizontal: %d\n", [(DOMWheelEvent*)event isHorizontal] ? 1 : 0); - printf(" wheelDelta: %d\n", [(DOMWheelEvent*)event wheelDelta]); - } -} - -// FIXME: It's not good to have a test hard-wired into this controller like this. -// Instead we need to get testing framework based on the Objective-C bindings -// to work well enough that we can test that way instead. -- (void)fireKeyboardEventsToElement:(WebScriptObject *)element { - - if (![element isKindOfClass:[DOMHTMLElement class]]) - return; - - DOMHTMLElement *target = (DOMHTMLElement*)element; - DOMDocument *document = [target ownerDocument]; - - // Keyboard Event 1 - - DOMEvent *domEvent = [document createEvent:@"KeyboardEvent"]; - [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keydown" - canBubble:YES - cancelable:YES - view:[document defaultView] - keyIdentifier:@"U+000041" - keyLocation:0 - ctrlKey:YES - altKey:NO - shiftKey:NO - metaKey:NO]; - [target dispatchEvent:domEvent]; - - // Keyboard Event 2 - - domEvent = [document createEvent:@"KeyboardEvent"]; - [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keypress" - canBubble:YES - cancelable:YES - view:[document defaultView] - keyIdentifier:@"U+000045" - keyLocation:1 - ctrlKey:NO - altKey:YES - shiftKey:NO - metaKey:NO]; - [target dispatchEvent:domEvent]; - - // Keyboard Event 3 - - domEvent = [document createEvent:@"KeyboardEvent"]; - [(DOMKeyboardEvent*)domEvent initKeyboardEvent:@"keyup" - canBubble:YES - cancelable:YES - view:[document defaultView] - keyIdentifier:@"U+000056" - keyLocation:0 - ctrlKey:NO - altKey:NO - shiftKey:NO - metaKey:NO]; - [target dispatchEvent:domEvent]; - -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/FrameLoadDelegate.h --- a/WebKitTools/DumpRenderTree/mac/FrameLoadDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -class AccessibilityController; -class GCController; - -@interface FrameLoadDelegate : NSObject -{ - AccessibilityController* accessibilityController; - GCController* gcController; -} - -- (void)resetToConsistentState; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/FrameLoadDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/FrameLoadDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,388 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" -#import "FrameLoadDelegate.h" - -#import "AccessibilityController.h" -#import "AppleScriptController.h" -#import "EventSendingController.h" -#import "GCController.h" -#import "LayoutTestController.h" -#import "NavigationController.h" -#import "ObjCController.h" -#import "ObjCPlugin.h" -#import "ObjCPluginFunction.h" -#import "PlainTextController.h" -#import "TextInputController.h" -#import "WorkQueue.h" -#import "WorkQueueItem.h" -#import -#import -#import -#import -#import -#import -#import -#import - -@interface NSURL (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSError (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSURLResponse (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSURLRequest (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface WebFrame (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@implementation WebFrame (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult -{ - BOOL isMainFrame = (self == [[self webView] mainFrame]); - NSString *name = [self name]; - if (isMainFrame) { - if ([name length]) - return [NSString stringWithFormat:@"main frame \"%@\"", name]; - else - return @"main frame"; - } else { - if (name) - return [NSString stringWithFormat:@"frame \"%@\"", name]; - else - return @"frame (anonymous)"; - } -} -@end - -@implementation FrameLoadDelegate - -- (id)init -{ - if ((self = [super init])) { - gcController = new GCController; - accessibilityController = new AccessibilityController; - } - return self; -} - -- (void)dealloc -{ - delete gcController; - delete accessibilityController; - [super dealloc]; -} - -// Exec messages in the work queue until they're all done, or one of them starts a new load -- (void)processWork:(id)dummy -{ - // if another load started, then wait for it to complete. - if (topLoadingFrame) - return; - - // if we finish all the commands, we're ready to dump state - if (WorkQueue::shared()->processWork() && !gLayoutTestController->waitToDump()) - dump(); -} - -- (void)resetToConsistentState -{ - accessibilityController->resetToConsistentState(); -} - -- (void)webView:(WebView *)c locationChangeDone:(NSError *)error forDataSource:(WebDataSource *)dataSource -{ - if ([dataSource webFrame] == topLoadingFrame) { - topLoadingFrame = nil; - WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test - if (!gLayoutTestController->waitToDump()) { - if (WorkQueue::shared()->count()) - [self performSelector:@selector(processWork:) withObject:nil afterDelay:0]; - else - dump(); - } - } -} - -- (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didStartProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } - - ASSERT([frame provisionalDataSource]); - // Make sure we only set this once per test. If it gets cleared, and then set again, we might - // end up doing two dumps for one test. - if (!topLoadingFrame && !done) - topLoadingFrame = frame; - - if (!done && gLayoutTestController->stopProvisionalFrameLoads()) { - NSString *string = [NSString stringWithFormat:@"%@ - stopping load in didStartProvisionalLoadForFrame callback", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - [frame stopLoading]; - } -} - -- (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didCommitLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } - - ASSERT(![frame provisionalDataSource]); - ASSERT([frame dataSource]); - - gLayoutTestController->setWindowIsKey(true); - NSView *documentView = [[mainFrame frameView] documentView]; - [[[mainFrame webView] window] makeFirstResponder:documentView]; -} - -- (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFailProvisionalLoadWithError", [frame _drt_descriptionSuitableForTestResult]]; - printf("%s\n", [string UTF8String]); - } - - if ([error domain] == NSURLErrorDomain && ([error code] == NSURLErrorServerCertificateHasUnknownRoot || [error code] == NSURLErrorServerCertificateUntrusted)) { - // In order to prevent extra frame load delegate logging being generated if the first test to use SSL - // is set to log frame load delegate calls we ignore SSL certificate errors on localhost and 127.0.0.1 from within dumpRenderTree. - // Those are the only hosts that we use SSL with at present. If we hit this code path then we've found another host that we need - // to apply the workaround to. - ASSERT_NOT_REACHED(); - return; - } - - ASSERT([frame provisionalDataSource]); - [self webView:sender locationChangeDone:error forDataSource:[frame provisionalDataSource]]; -} - -- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame -{ - ASSERT([frame dataSource]); - ASSERT(frame == [[frame dataSource] webFrame]); - - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFinishLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } - - // FIXME: This call to displayIfNeeded can be removed when is fixed. - // After that is fixed, we will reenable painting after WebCore is done loading the document, - // and this call will no longer be needed. - if ([[sender mainFrame] isEqual:frame]) - [sender displayIfNeeded]; - [self webView:sender locationChangeDone:nil forDataSource:[frame dataSource]]; - [gNavigationController webView:sender didFinishLoadForFrame:frame]; -} - -- (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFailLoadWithError", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } - - ASSERT(![frame provisionalDataSource]); - ASSERT([frame dataSource]); - - [self webView:sender locationChangeDone:error forDataSource:[frame dataSource]]; -} - -- (void)webView:(WebView *)webView windowScriptObjectAvailable:(WebScriptObject *)windowScriptObject -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"?? - windowScriptObjectAvailable"]; - printf ("%s\n", [string UTF8String]); - } - - ASSERT_NOT_REACHED(); -} - -- (void)didClearWindowObjectInStandardWorldForFrame:(WebFrame *)frame -{ - // Make New-Style LayoutTestController - JSContextRef context = [frame globalContext]; - JSObjectRef globalObject = JSContextGetGlobalObject(context); - JSValueRef exception = 0; - - ASSERT(gLayoutTestController); - gLayoutTestController->makeWindowObject(context, globalObject, &exception); - ASSERT(!exception); - - gcController->makeWindowObject(context, globalObject, &exception); - ASSERT(!exception); - - accessibilityController->makeWindowObject(context, globalObject, &exception); - ASSERT(!exception); - - // Make Old-Style controllers - - WebView *webView = [frame webView]; - WebScriptObject *obj = [frame windowObject]; - AppleScriptController *asc = [[AppleScriptController alloc] initWithWebView:webView]; - [obj setValue:asc forKey:@"appleScriptController"]; - [asc release]; - - EventSendingController *esc = [[EventSendingController alloc] init]; - [obj setValue:esc forKey:@"eventSender"]; - [esc release]; - - [obj setValue:gNavigationController forKey:@"navigationController"]; - - ObjCController *occ = [[ObjCController alloc] init]; - [obj setValue:occ forKey:@"objCController"]; - [occ release]; - - ObjCPlugin *plugin = [[ObjCPlugin alloc] init]; - [obj setValue:plugin forKey:@"objCPlugin"]; - [plugin release]; - - ObjCPluginFunction *pluginFunction = [[ObjCPluginFunction alloc] init]; - [obj setValue:pluginFunction forKey:@"objCPluginFunction"]; - [pluginFunction release]; - - [obj setValue:[PlainTextController sharedPlainTextController] forKey:@"plainText"]; - - TextInputController *tic = [[TextInputController alloc] initWithWebView:webView]; - [obj setValue:tic forKey:@"textInputController"]; - [tic release]; -} - -- (void)didClearWindowObjectForFrame:(WebFrame *)frame inIsolatedWorld:(WebScriptWorld *)world -{ - JSGlobalContextRef ctx = [frame _globalContextForScriptWorld:world]; - if (!ctx) - return; - - JSObjectRef globalObject = JSContextGetGlobalObject(ctx); - if (!globalObject) - return; - - JSObjectSetProperty(ctx, globalObject, JSRetainPtr(Adopt, JSStringCreateWithUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0); -} - -- (void)webView:(WebView *)sender didClearWindowObjectForFrame:(WebFrame *)frame inScriptWorld:(WebScriptWorld *)world -{ - if (world == [WebScriptWorld standardWorld]) - [self didClearWindowObjectInStandardWorldForFrame:frame]; - else - [self didClearWindowObjectForFrame:frame inIsolatedWorld:world]; -} - -- (void)webView:(WebView *)sender didReceiveTitle:(NSString *)title forFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didReceiveTitle: %@", [frame _drt_descriptionSuitableForTestResult], title]; - printf ("%s\n", [string UTF8String]); - } - - if (gLayoutTestController->dumpTitleChanges()) - printf("TITLE CHANGED: %s\n", [title UTF8String]); -} - -- (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didReceiveServerRedirectForProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } -} - -- (void)webView:(WebView *)sender didChangeLocationWithinPageForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didChangeLocationWithinPageForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } -} - -- (void)webView:(WebView *)sender willPerformClientRedirectToURL:(NSURL *)URL delay:(NSTimeInterval)seconds fireDate:(NSDate *)date forFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - willPerformClientRedirectToURL: %@ ", [frame _drt_descriptionSuitableForTestResult], [URL _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } -} - -- (void)webView:(WebView *)sender didCancelClientRedirectForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didCancelClientRedirectForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } -} - -- (void)webView:(WebView *)sender didFinishDocumentLoadForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFinishDocumentLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } else if (!done) { - unsigned pendingFrameUnloadEvents = [frame _pendingFrameUnloadEventCount]; - if (pendingFrameUnloadEvents) { - NSString *string = [NSString stringWithFormat:@"%@ - has %u onunload handler(s)", [frame _drt_descriptionSuitableForTestResult], pendingFrameUnloadEvents]; - printf ("%s\n", [string UTF8String]); - } - } -} - -- (void)webView:(WebView *)sender didHandleOnloadEventsForFrame:(WebFrame *)frame -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didHandleOnloadEventsForFrame", [frame _drt_descriptionSuitableForTestResult]]; - printf ("%s\n", [string UTF8String]); - } -} - -- (void)webViewDidDisplayInsecureContent:(WebView *)sender -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf ("didDisplayInsecureContent\n"); -} - -- (void)webView:(WebView *)sender didRunInsecureContent:(WebSecurityOrigin *)origin -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf ("didRunInsecureContent\n"); -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/GCControllerMac.mm --- a/WebKitTools/DumpRenderTree/mac/GCControllerMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "GCController.h" - -#import - - -void GCController::collect() const -{ - [WebCoreStatistics garbageCollectJavaScriptObjects]; -} - -void GCController::collectOnAlternateThread(bool waitUntilDone) const -{ - [WebCoreStatistics garbageCollectJavaScriptObjectsOnAlternateThreadForDebugging:waitUntilDone]; -} - -size_t GCController::getJSObjectCount() const -{ - return [WebCoreStatistics javaScriptObjectsCount]; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/HistoryDelegate.h --- a/WebKitTools/DumpRenderTree/mac/HistoryDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,32 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@interface HistoryDelegate : NSObject -{ -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/HistoryDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/HistoryDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,81 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#import "config.h" -#import "HistoryDelegate.h" - -#import "DumpRenderTree.h" -#import "LayoutTestController.h" - -#import -#import - -@interface NSURL (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@implementation HistoryDelegate - -- (void)webView:(WebView *)webView didNavigateWithNavigationData:(WebNavigationData *)navigationData inFrame:(WebFrame *)webFrame -{ - NSURL *url = [navigationData url] ? [NSURL URLWithString:[navigationData url]] : nil; - bool hasClientRedirect = [[navigationData clientRedirectSource] length]; - NSHTTPURLResponse *httpResponse = [[navigationData response] isKindOfClass:[NSHTTPURLResponse class]] ? (NSHTTPURLResponse *)[navigationData response] : nil; - bool wasFailure = [navigationData hasSubstituteData] || (httpResponse && [httpResponse statusCode] >= 400); - - printf("WebView navigated to url \"%s\" with title \"%s\" with HTTP equivalent method \"%s\". The navigation was %s and was %s%s.\n", - url ? [[url _drt_descriptionSuitableForTestResult] UTF8String] : "", - [navigationData title] ? [[navigationData title] UTF8String] : "", - [navigationData originalRequest] ? [[[navigationData originalRequest] HTTPMethod] UTF8String] : "", - wasFailure ? "a failure" : "successful", - hasClientRedirect ? "a client redirect from " : "not a client redirect", - hasClientRedirect ? [[navigationData clientRedirectSource] UTF8String] : ""); -} - -- (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame -{ - NSURL *source = [NSURL URLWithString:sourceURL]; - NSURL *dest = [NSURL URLWithString:destinationURL]; - printf("WebView performed a client redirect from \"%s\" to \"%s\".\n", [[source _drt_descriptionSuitableForTestResult] UTF8String], [[dest _drt_descriptionSuitableForTestResult] UTF8String]); -} - -- (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame -{ - NSURL *source = [NSURL URLWithString:sourceURL]; - NSURL *dest = [NSURL URLWithString:destinationURL]; - printf("WebView performed a server redirect from \"%s\" to \"%s\".\n", [[source _drt_descriptionSuitableForTestResult] UTF8String], [[dest _drt_descriptionSuitableForTestResult] UTF8String]); -} - -- (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url -{ - printf("WebView updated the title for history URL \"%s\" to \"%s\".\n", [[[NSURL URLWithString:url]_drt_descriptionSuitableForTestResult] UTF8String], [title UTF8String]); -} - -- (void)populateVisitedLinksForWebView:(WebView *)webView -{ - if (gLayoutTestController->dumpVisitedLinksCallback()) - printf("Asked to populate visited links for WebView \"%s\"\n", [[[NSURL URLWithString:[webView mainFrameURL]] _drt_descriptionSuitableForTestResult] UTF8String]); -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h --- a/WebKitTools/DumpRenderTree/mac/InternalHeaders/WebKit/WebHTMLRepresentationInternal.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include "../../../../WebKit/mac/WebView/WebHTMLRepresentationInternal.h" diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h --- a/WebKitTools/DumpRenderTree/mac/InternalHeaders/WebKit/WebTypesInternal.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include "../../../../WebKit/mac/Misc/WebTypesInternal.h" diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/LayoutTestControllerMac.mm --- a/WebKitTools/DumpRenderTree/mac/LayoutTestControllerMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,889 +0,0 @@ -/* - * Copyright (C) 2007, 2008, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" -#import "LayoutTestController.h" - -#import "EditingDelegate.h" -#import "MockGeolocationProvider.h" -#import "PolicyDelegate.h" -#import "WorkQueue.h" -#import "WorkQueueItem.h" -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import -#import - -@interface CommandValidationTarget : NSObject -{ - SEL _action; -} -- (id)initWithAction:(SEL)action; -@end - -@implementation CommandValidationTarget - -- (id)initWithAction:(SEL)action -{ - self = [super init]; - if (!self) - return nil; - - _action = action; - return self; -} - -- (SEL)action -{ - return _action; -} - -- (NSInteger)tag -{ - return 0; -} - -@end - -LayoutTestController::~LayoutTestController() -{ -} - -void LayoutTestController::addDisallowedURL(JSStringRef url) -{ - RetainPtr urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url)); - - if (!disallowedURLs) - disallowedURLs = CFSetCreateMutable(kCFAllocatorDefault, 0, NULL); - - // Canonicalize the URL - NSURLRequest* request = [NSURLRequest requestWithURL:[NSURL URLWithString:(NSString *)urlCF.get()]]; - request = [NSURLProtocol canonicalRequestForRequest:request]; - - CFSetAddValue(disallowedURLs, [request URL]); -} - -bool LayoutTestController::callShouldCloseOnWebView() -{ - return [[mainFrame webView] shouldClose]; -} - -void LayoutTestController::clearAllDatabases() -{ - [[WebDatabaseManager sharedWebDatabaseManager] deleteAllDatabases]; -} - -void LayoutTestController::clearBackForwardList() -{ - WebBackForwardList *backForwardList = [[mainFrame webView] backForwardList]; - WebHistoryItem *item = [[backForwardList currentItem] retain]; - - // We clear the history by setting the back/forward list's capacity to 0 - // then restoring it back and adding back the current item. - int capacity = [backForwardList capacity]; - [backForwardList setCapacity:0]; - [backForwardList setCapacity:capacity]; - [backForwardList addItem:item]; - [backForwardList goToItem:item]; - [item release]; -} - -JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name) -{ - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name)); - NSString *nameNS = (NSString *)nameCF.get(); - return JSStringCreateWithCFString((CFStringRef)[nameNS _web_decodeHostName]); -} - -JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name) -{ - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name)); - NSString *nameNS = (NSString *)nameCF.get(); - return JSStringCreateWithCFString((CFStringRef)[nameNS _web_encodeHostName]); -} - -void LayoutTestController::display() -{ - displayWebView(); -} - -JSRetainPtr LayoutTestController::counterValueForElementById(JSStringRef id) -{ - RetainPtr idCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, id)); - NSString *idNS = (NSString *)idCF.get(); - - DOMElement *element = [[mainFrame DOMDocument] getElementById:idNS]; - if (!element) - return 0; - - JSRetainPtr counterValue(Adopt, JSStringCreateWithCFString((CFStringRef)[mainFrame counterValueForElement:element])); - return counterValue; -} - -void LayoutTestController::keepWebHistory() -{ - if (![WebHistory optionalSharedHistory]) { - WebHistory *history = [[WebHistory alloc] init]; - [WebHistory setOptionalSharedHistory:history]; - [history release]; - } -} - -JSValueRef LayoutTestController::computedStyleIncludingVisitedInfo(JSContextRef context, JSValueRef value) -{ - return [[mainFrame webView] _computedStyleIncludingVisitedInfo:context forElement:value]; -} - -JSRetainPtr LayoutTestController::layerTreeAsText() const -{ - JSRetainPtr string(Adopt, JSStringCreateWithCFString((CFStringRef)[mainFrame _layerTreeAsText])); - return string; -} - -JSRetainPtr LayoutTestController::markerTextForListItem(JSContextRef context, JSValueRef nodeObject) const -{ - DOMElement *element = [DOMElement _DOMElementFromJSContext:context value:nodeObject]; - if (!element) - return JSRetainPtr(); - - JSRetainPtr markerText(Adopt, JSStringCreateWithCFString((CFStringRef)[element _markerTextForListItem])); - return markerText; -} - -int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels) -{ - RetainPtr idCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, id)); - NSString *idNS = (NSString *)idCF.get(); - - DOMElement *element = [[mainFrame DOMDocument] getElementById:idNS]; - if (!element) - return -1; - - return [mainFrame pageNumberForElement:element:pageWidthInPixels:pageHeightInPixels]; -} - -JSRetainPtr LayoutTestController::pageProperty(const char* propertyName, int pageNumber) const -{ - JSRetainPtr propertyValue(Adopt, JSStringCreateWithCFString((CFStringRef)[mainFrame pageProperty:propertyName:pageNumber])); - return propertyValue; -} - -bool LayoutTestController::isPageBoxVisible(int pageNumber) const -{ - return [mainFrame isPageBoxVisible:pageNumber]; -} - -JSRetainPtr LayoutTestController::pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const -{ - JSRetainPtr propertyValue(Adopt, JSStringCreateWithCFString((CFStringRef)[mainFrame pageSizeAndMarginsInPixels:pageNumber:width:height:marginTop:marginRight:marginBottom:marginLeft])); - return propertyValue; -} - -int LayoutTestController::numberOfPages(float pageWidthInPixels, float pageHeightInPixels) -{ - return [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels]; -} - -size_t LayoutTestController::webHistoryItemCount() -{ - return [[[WebHistory optionalSharedHistory] allItems] count]; -} - -unsigned LayoutTestController::workerThreadCount() const -{ - return [WebWorkersPrivate workerThreadCount]; -} - -void LayoutTestController::notifyDone() -{ - if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) - dump(); - m_waitToDump = false; -} - -JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url) -{ - return JSStringRetain(url); // Do nothing on mac. -} - -void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target) -{ - RetainPtr urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url)); - NSString *urlNS = (NSString *)urlCF.get(); - - NSURL *nsurl = [NSURL URLWithString:urlNS relativeToURL:[[[mainFrame dataSource] response] URL]]; - NSString* nsurlString = [nsurl absoluteString]; - - JSRetainPtr absoluteURL(Adopt, JSStringCreateWithUTF8CString([nsurlString UTF8String])); - WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target)); -} - -void LayoutTestController::setAcceptsEditing(bool newAcceptsEditing) -{ - [(EditingDelegate *)[[mainFrame webView] editingDelegate] setAcceptsEditing:newAcceptsEditing]; -} - -void LayoutTestController::setAlwaysAcceptCookies(bool alwaysAcceptCookies) -{ - if (alwaysAcceptCookies == m_alwaysAcceptCookies) - return; - - m_alwaysAcceptCookies = alwaysAcceptCookies; - NSHTTPCookieAcceptPolicy cookieAcceptPolicy = alwaysAcceptCookies ? NSHTTPCookieAcceptPolicyAlways : NSHTTPCookieAcceptPolicyOnlyFromMainDocumentDomain; - [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookieAcceptPolicy:cookieAcceptPolicy]; -} - -void LayoutTestController::setAppCacheMaximumSize(unsigned long long size) -{ - [WebApplicationCache setMaximumSize:size]; -} - -void LayoutTestController::setAuthorAndUserStylesEnabled(bool flag) -{ - [[[mainFrame webView] preferences] setAuthorAndUserStylesEnabled:flag]; -} - -void LayoutTestController::setCustomPolicyDelegate(bool setDelegate, bool permissive) -{ - if (setDelegate) { - [policyDelegate setPermissive:permissive]; - [[mainFrame webView] setPolicyDelegate:policyDelegate]; - } else - [[mainFrame webView] setPolicyDelegate:nil]; -} - -void LayoutTestController::setDatabaseQuota(unsigned long long quota) -{ - WebSecurityOrigin *origin = [[WebSecurityOrigin alloc] initWithURL:[NSURL URLWithString:@"file:///"]]; - [origin setQuota:quota]; - [origin release]; -} - -void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme) -{ - RetainPtr schemeCFString(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, scheme)); - [WebView _setDomainRelaxationForbidden:forbidden forURLScheme:(NSString *)schemeCFString.get()]; -} - -void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) -{ - WebGeolocationPosition *position = [[WebGeolocationPosition alloc] initWithTimestamp:0 latitude:latitude longitude:longitude accuracy:accuracy]; - [[MockGeolocationProvider shared] setPosition:position]; - [position release]; -} - -void LayoutTestController::setMockGeolocationError(int code, JSStringRef message) -{ - RetainPtr messageCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, message)); - NSString *messageNS = (NSString *)messageCF.get(); - NSError *error = [NSError errorWithDomain:WebKitErrorDomain code:code userInfo:[NSDictionary dictionaryWithObject:messageNS forKey:NSLocalizedDescriptionKey]]; - [[MockGeolocationProvider shared] setError:error]; -} - -void LayoutTestController::setIconDatabaseEnabled(bool iconDatabaseEnabled) -{ - // FIXME: Workaround - static WebIconDatabase* sharedWebIconDatabase = NULL; - if (!sharedWebIconDatabase) { - if (!iconDatabaseEnabled) - return; - sharedWebIconDatabase = [WebIconDatabase sharedIconDatabase]; - if ([sharedWebIconDatabase isEnabled] == iconDatabaseEnabled) - return; - } - [sharedWebIconDatabase setEnabled:iconDatabaseEnabled]; -} - -void LayoutTestController::setJavaScriptProfilingEnabled(bool profilingEnabled) -{ - setDeveloperExtrasEnabled(profilingEnabled); - [[[mainFrame webView] inspector] setJavaScriptProfilingEnabled:profilingEnabled]; -} - -void LayoutTestController::setMainFrameIsFirstResponder(bool flag) -{ - NSView *documentView = [[mainFrame frameView] documentView]; - - NSResponder *firstResponder = flag ? documentView : nil; - [[[mainFrame webView] window] makeFirstResponder:firstResponder]; -} - -void LayoutTestController::setPrivateBrowsingEnabled(bool privateBrowsingEnabled) -{ - [[[mainFrame webView] preferences] setPrivateBrowsingEnabled:privateBrowsingEnabled]; -} - -void LayoutTestController::setXSSAuditorEnabled(bool enabled) -{ - [[[mainFrame webView] preferences] setXSSAuditorEnabled:enabled]; -} - -void LayoutTestController::setFrameFlatteningEnabled(bool enabled) -{ - [[[mainFrame webView] preferences] setFrameFlatteningEnabled:enabled]; -} - -void LayoutTestController::setSpatialNavigationEnabled(bool enabled) -{ - // FIXME: Implement for SpatialNavigation layout tests. -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(bool enabled) -{ - [[[mainFrame webView] preferences] setAllowUniversalAccessFromFileURLs:enabled]; -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(bool enabled) -{ - [[[mainFrame webView] preferences] setAllowFileAccessFromFileURLs:enabled]; -} - -void LayoutTestController::setPopupBlockingEnabled(bool popupBlockingEnabled) -{ - [[[mainFrame webView] preferences] setJavaScriptCanOpenWindowsAutomatically:!popupBlockingEnabled]; -} - -void LayoutTestController::setPluginsEnabled(bool pluginsEnabled) -{ - [[[mainFrame webView] preferences] setPlugInsEnabled:pluginsEnabled]; -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(bool enabled) -{ - [[[mainFrame webView] preferences] setJavaScriptCanAccessClipboard:enabled]; -} - -void LayoutTestController::setTabKeyCyclesThroughElements(bool cycles) -{ - [[mainFrame webView] setTabKeyCyclesThroughElements:cycles]; -} - -void LayoutTestController::setTimelineProfilingEnabled(bool enabled) -{ - [[[mainFrame webView] inspector] setTimelineProfilingEnabled:enabled]; -} - -void LayoutTestController::setUseDashboardCompatibilityMode(bool flag) -{ - [[mainFrame webView] _setDashboardBehavior:WebDashboardBehaviorUseBackwardCompatibilityMode to:flag]; -} - -void LayoutTestController::setUserStyleSheetEnabled(bool flag) -{ - [[WebPreferences standardPreferences] setUserStyleSheetEnabled:flag]; -} - -void LayoutTestController::setUserStyleSheetLocation(JSStringRef path) -{ - RetainPtr pathCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, path)); - NSURL *url = [NSURL URLWithString:(NSString *)pathCF.get()]; - [[WebPreferences standardPreferences] setUserStyleSheetLocation:url]; -} - -void LayoutTestController::disableImageLoading() -{ - [[WebPreferences standardPreferences] setLoadsImagesAutomatically:NO]; -} - -void LayoutTestController::dispatchPendingLoadRequests() -{ - [[mainFrame webView] _dispatchPendingLoadRequests]; -} - -void LayoutTestController::overridePreference(JSStringRef key, JSStringRef value) -{ - RetainPtr keyCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, key)); - NSString *keyNS = (NSString *)keyCF.get(); - - RetainPtr valueCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, value)); - NSString *valueNS = (NSString *)valueCF.get(); - - [[WebPreferences standardPreferences] _setPreferenceForTestWithValue:valueNS forKey:keyNS]; -} - -void LayoutTestController::removeAllVisitedLinks() -{ - [WebHistory _removeAllVisitedLinks]; -} - -void LayoutTestController::setPersistentUserStyleSheetLocation(JSStringRef jsURL) -{ - RetainPtr urlString(AdoptCF, JSStringCopyCFString(0, jsURL)); - ::setPersistentUserStyleSheetLocation(urlString.get()); -} - -void LayoutTestController::clearPersistentUserStyleSheet() -{ - ::setPersistentUserStyleSheetLocation(0); -} - -void LayoutTestController::setWindowIsKey(bool windowIsKey) -{ - m_windowIsKey = windowIsKey; - [[mainFrame webView] _updateActiveState]; -} - -void LayoutTestController::setSmartInsertDeleteEnabled(bool flag) -{ - [[mainFrame webView] setSmartInsertDeleteEnabled:flag]; -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(bool flag) -{ - [[mainFrame webView] setSelectTrailingWhitespaceEnabled:flag]; -} - -static const CFTimeInterval waitToDumpWatchdogInterval = 30.0; - -static void waitUntilDoneWatchdogFired(CFRunLoopTimerRef timer, void* info) -{ - gLayoutTestController->waitToDumpWatchdogTimerFired(); -} - -void LayoutTestController::setWaitToDump(bool waitUntilDone) -{ - m_waitToDump = waitUntilDone; - if (m_waitToDump && !waitToDumpWatchdog) { - waitToDumpWatchdog = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + waitToDumpWatchdogInterval, 0, 0, 0, waitUntilDoneWatchdogFired, NULL); - CFRunLoopAddTimer(CFRunLoopGetCurrent(), waitToDumpWatchdog, kCFRunLoopCommonModes); - } -} - -int LayoutTestController::windowCount() -{ - return CFArrayGetCount(openWindowsRef); -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(JSStringRef jsString) -{ - RetainPtr idCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, jsString)); - NSString *idNS = (NSString *)idCF.get(); - - DOMElement *element = [[mainFrame DOMDocument] getElementById:idNS]; - id rep = [[mainFrame dataSource] representation]; - - if ([rep class] == [WebHTMLRepresentation class]) - return [(WebHTMLRepresentation *)rep elementDoesAutoComplete:element]; - - return false; -} - -void LayoutTestController::execCommand(JSStringRef name, JSStringRef value) -{ - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name)); - NSString *nameNS = (NSString *)nameCF.get(); - - RetainPtr valueCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, value)); - NSString *valueNS = (NSString *)valueCF.get(); - - [[mainFrame webView] _executeCoreCommandByName:nameNS value:valueNS]; -} - -void LayoutTestController::setCacheModel(int cacheModel) -{ - [[WebPreferences standardPreferences] setCacheModel:cacheModel]; -} - -bool LayoutTestController::isCommandEnabled(JSStringRef name) -{ - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, name)); - NSString *nameNS = (NSString *)nameCF.get(); - - // Accept command strings with capital letters for first letter without trailing colon. - if (![nameNS hasSuffix:@":"] && [nameNS length]) { - nameNS = [[[[nameNS substringToIndex:1] lowercaseString] - stringByAppendingString:[nameNS substringFromIndex:1]] - stringByAppendingString:@":"]; - } - - SEL selector = NSSelectorFromString(nameNS); - RetainPtr target(AdoptNS, [[CommandValidationTarget alloc] initWithAction:selector]); - id validator = [NSApp targetForAction:selector to:[mainFrame webView] from:target.get()]; - if (!validator) - return false; - if (![validator respondsToSelector:selector]) - return false; - if (![validator respondsToSelector:@selector(validateUserInterfaceItem:)]) - return true; - return [validator validateUserInterfaceItem:target.get()]; -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) -{ - RetainPtr idCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, elementId)); - NSString *idNS = (NSString *)idCF.get(); - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, animationName)); - NSString *nameNS = (NSString *)nameCF.get(); - - return [mainFrame _pauseAnimation:nameNS onNode:[[mainFrame DOMDocument] getElementById:idNS] atTime:time]; -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) -{ - RetainPtr idCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, elementId)); - NSString *idNS = (NSString *)idCF.get(); - RetainPtr nameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, propertyName)); - NSString *nameNS = (NSString *)nameCF.get(); - - return [mainFrame _pauseTransitionOfProperty:nameNS onNode:[[mainFrame DOMDocument] getElementById:idNS] atTime:time]; -} - -bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) -{ - RetainPtr animationIDCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, animationId)); - NSString *animationIDNS = (NSString *)animationIDCF.get(); - RetainPtr elementIDCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, elementId)); - NSString *elementIDNS = (NSString *)elementIDCF.get(); - - return [mainFrame _pauseSVGAnimation:elementIDNS onSMILNode:[[mainFrame DOMDocument] getElementById:animationIDNS] atTime:time]; -} - -unsigned LayoutTestController::numberOfActiveAnimations() const -{ - return [mainFrame _numberOfActiveAnimations]; -} - -void LayoutTestController::waitForPolicyDelegate() -{ - setWaitToDump(true); - [policyDelegate setControllerToNotifyDone:this]; - [[mainFrame webView] setPolicyDelegate:policyDelegate]; -} - -void LayoutTestController::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - RetainPtr sourceOriginCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, sourceOrigin)); - NSString *sourceOriginNS = (NSString *)sourceOriginCF.get(); - RetainPtr protocolCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationProtocol)); - NSString *destinationProtocolNS = (NSString *)protocolCF.get(); - RetainPtr hostCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationHost)); - NSString *destinationHostNS = (NSString *)hostCF.get(); - [WebView _addOriginAccessWhitelistEntryWithSourceOrigin:sourceOriginNS destinationProtocol:destinationProtocolNS destinationHost:destinationHostNS allowDestinationSubdomains:allowDestinationSubdomains]; -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - RetainPtr sourceOriginCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, sourceOrigin)); - NSString *sourceOriginNS = (NSString *)sourceOriginCF.get(); - RetainPtr protocolCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationProtocol)); - NSString *destinationProtocolNS = (NSString *)protocolCF.get(); - RetainPtr hostCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, destinationHost)); - NSString *destinationHostNS = (NSString *)hostCF.get(); - [WebView _removeOriginAccessWhitelistEntryWithSourceOrigin:sourceOriginNS destinationProtocol:destinationProtocolNS destinationHost:destinationHostNS allowDestinationSubdomains:allowDestinationSubdomains]; -} - -void LayoutTestController::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy) -{ - // FIXME: implement -} - -void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) -{ - RetainPtr sourceCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, source)); - NSString *sourceNS = (NSString *)sourceCF.get(); - [WebView _addUserScriptToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectionTime:(runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd) injectedFrames:(allFrames ? WebInjectInAllFrames : WebInjectInTopFrameOnly)]; -} - -void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) -{ - RetainPtr sourceCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, source)); - NSString *sourceNS = (NSString *)sourceCF.get(); - [WebView _addUserStyleSheetToGroup:@"org.webkit.DumpRenderTree" world:[WebScriptWorld world] source:sourceNS url:nil whitelist:nil blacklist:nil injectedFrames:(allFrames ? WebInjectInAllFrames : WebInjectInTopFrameOnly)]; -} - -void LayoutTestController::setDeveloperExtrasEnabled(bool enabled) -{ - [[[mainFrame webView] preferences] setDeveloperExtrasEnabled:enabled]; -} - -void LayoutTestController::showWebInspector() -{ - [[[mainFrame webView] inspector] show:nil]; -} - -void LayoutTestController::closeWebInspector() -{ - [[[mainFrame webView] inspector] close:nil]; -} - -void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script) -{ - RetainPtr scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, script)); - NSString *scriptNS = (NSString *)scriptCF.get(); - [[[mainFrame webView] inspector] evaluateInFrontend:nil callId:callId script:scriptNS]; -} - -typedef HashMap > WorldMap; -static WorldMap& worldMap() -{ - static WorldMap& map = *new WorldMap; - return map; -} - -unsigned worldIDForWorld(WebScriptWorld *world) -{ - WorldMap::const_iterator end = worldMap().end(); - for (WorldMap::const_iterator it = worldMap().begin(); it != end; ++it) { - if (it->second == world) - return it->first; - } - - return 0; -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script) -{ - RetainPtr scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, script)); - NSString *scriptNS = (NSString *)scriptCF.get(); - - // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world - // that is created once and cached forever. - WebScriptWorld *world; - if (!worldID) - world = [WebScriptWorld world]; - else { - RetainPtr& worldSlot = worldMap().add(worldID, 0).first->second; - if (!worldSlot) - worldSlot.adoptNS([[WebScriptWorld alloc] init]); - world = worldSlot.get(); - } - - [mainFrame _stringByEvaluatingJavaScriptFromString:scriptNS withGlobalObject:globalObject inScriptWorld:world]; -} - -@interface APITestDelegate : NSObject -{ - bool* m_condition; -} -@end - -@implementation APITestDelegate - -- (id)initWithCompletionCondition:(bool*)condition -{ - [super init]; - ASSERT(condition); - m_condition = condition; - *m_condition = false; - return self; -} - -- (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame -{ - printf("API Test load failed\n"); - *m_condition = true; -} - -- (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame -{ - printf("API Test load failed provisional\n"); - *m_condition = true; -} - -- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame -{ - printf("API Test load succeeded\n"); - *m_condition = true; -} - -@end - -void LayoutTestController::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - - RetainPtr utf8DataCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, utf8Data)); - RetainPtr baseURLCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, baseURL)); - - WebView *webView = [[WebView alloc] initWithFrame:NSZeroRect frameName:@"" groupName:@""]; - - bool done = false; - APITestDelegate *delegate = [[APITestDelegate alloc] initWithCompletionCondition:&done]; - [webView setFrameLoadDelegate:delegate]; - - [[webView mainFrame] loadData:[(NSString *)utf8DataCF.get() dataUsingEncoding:NSUTF8StringEncoding] MIMEType:@"text/html" textEncodingName:@"utf-8" baseURL:[NSURL URLWithString:(NSString *)baseURLCF.get()]]; - - while (!done) { - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantPast]]; - [pool release]; - } - - [webView close]; - [webView release]; - [delegate release]; - [pool release]; -} - -void LayoutTestController::apiTestGoToCurrentBackForwardItem() -{ - WebView *view = [mainFrame webView]; - [view goToBackForwardItem:[[view backForwardList] currentItem]]; -} - -void LayoutTestController::setWebViewEditable(bool editable) -{ - WebView *view = [mainFrame webView]; - [view setEditable:editable]; -} - -#ifndef BUILDING_ON_TIGER -static NSString *SynchronousLoaderRunLoopMode = @"DumpRenderTreeSynchronousLoaderRunLoopMode"; - -#if defined(BUILDING_ON_LEOPARD) || defined(BUILDING_ON_SNOW_LEOPARD) -@protocol NSURLConnectionDelegate -@end -#endif - -@interface SynchronousLoader : NSObject -{ - NSString *m_username; - NSString *m_password; - BOOL m_isDone; -} -+ (void)makeRequest:(NSURLRequest *)request withUsername:(NSString *)username password:(NSString *)password; -@end - -@implementation SynchronousLoader : NSObject -- (void)dealloc -{ - [m_username release]; - [m_password release]; - - [super dealloc]; -} - -- (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection -{ - return YES; -} - -- (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge -{ - if ([challenge previousFailureCount] == 0) { - NSURLCredential *credential = [[NSURLCredential alloc] initWithUser:m_username password:m_password persistence:NSURLCredentialPersistenceForSession]; - [[challenge sender] useCredential:credential forAuthenticationChallenge:challenge]; - return; - } - [[challenge sender] cancelAuthenticationChallenge:challenge]; -} - -- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error -{ - printf("SynchronousLoader failed: %s\n", [[error description] UTF8String]); - m_isDone = YES; -} - -- (void)connectionDidFinishLoading:(NSURLConnection *)connection -{ - m_isDone = YES; -} - -+ (void)makeRequest:(NSURLRequest *)request withUsername:(NSString *)username password:(NSString *)password -{ - ASSERT(![[request URL] user]); - ASSERT(![[request URL] password]); - - SynchronousLoader *delegate = [[SynchronousLoader alloc] init]; - delegate->m_username = [username copy]; - delegate->m_password = [password copy]; - - NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate startImmediately:NO]; - [connection scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:SynchronousLoaderRunLoopMode]; - [connection start]; - - while (!delegate->m_isDone) - [[NSRunLoop currentRunLoop] runMode:SynchronousLoaderRunLoopMode beforeDate:[NSDate distantFuture]]; - - [connection cancel]; - - [connection release]; - [delegate release]; -} - -@end -#endif - -void LayoutTestController::authenticateSession(JSStringRef url, JSStringRef username, JSStringRef password) -{ - // See . -#if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) - RetainPtr urlStringCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, url)); - RetainPtr usernameCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, username)); - RetainPtr passwordCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, password)); - - NSURLRequest *request = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:(NSString *)urlStringCF.get()]]; - - [SynchronousLoader makeRequest:request withUsername:(NSString *)usernameCF.get() password:(NSString *)passwordCF.get()]; -#endif -} - -void LayoutTestController::setEditingBehavior(const char* editingBehavior) -{ - NSString* editingBehaviorNS = [[NSString alloc] initWithUTF8String:editingBehavior]; - if ([editingBehaviorNS isEqualToString:@"mac"]) - [[WebPreferences standardPreferences] setEditingBehavior:WebKitEditingMacBehavior]; - if ([editingBehaviorNS isEqualToString:@"win"]) - [[WebPreferences standardPreferences] setEditingBehavior:WebKitEditingWinBehavior]; - [editingBehaviorNS release]; -} - -void LayoutTestController::abortModal() -{ - [NSApp abortModal]; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/MockGeolocationProvider.h --- a/WebKitTools/DumpRenderTree/mac/MockGeolocationProvider.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -/* - * Copyright (C) 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef MockGeolocationProvider_h -#define MockGeolocationProvider_h - -#import -#import - -@interface MockGeolocationProvider : NSObject { - WebGeolocationPosition *_lastPosition; - NSError *_error; - NSTimer *_timer; - HashSet _registeredViews; -} - -+ (MockGeolocationProvider *)shared; - -- (void)setPosition:(WebGeolocationPosition *)position; -- (void)setError:(NSError *)error; - -- (void)stopTimer; - -@end -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/MockGeolocationProvider.mm --- a/WebKitTools/DumpRenderTree/mac/MockGeolocationProvider.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,109 +0,0 @@ -/* - * Copyright (C) 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "MockGeolocationProvider.h" - - -@implementation MockGeolocationProvider - -+ (MockGeolocationProvider *)shared -{ - static MockGeolocationProvider *provider = [[MockGeolocationProvider alloc] init]; - return provider; -} - -- (void)dealloc -{ - ASSERT(_registeredViews.isEmpty()); - - [_lastPosition release]; - [_error release]; - [super dealloc]; -} - -- (void)setPosition:(WebGeolocationPosition *)position -{ - if (_lastPosition != position) { - [_lastPosition release]; - _lastPosition = [position retain]; - } - - [_error release]; - _error = 0; - - if (!_timer) - _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO]; -} - -- (void)setError:(NSError *)error -{ - if (_error != error) { - [_error release]; - _error = [error retain]; - } - - [_lastPosition release]; - _lastPosition = 0; - - if (!_timer) - _timer = [NSTimer scheduledTimerWithTimeInterval:0 target:self selector:@selector(timerFired) userInfo:0 repeats:NO]; -} - -- (void)registerWebView:(WebView *)webView -{ - _registeredViews.add(webView); -} - -- (void)unregisterWebView:(WebView *)webView -{ - _registeredViews.remove(webView); -} - -- (WebGeolocationPosition *)lastPosition -{ - return _lastPosition; -} - -- (void)stopTimer -{ - [_timer invalidate]; - _timer = 0; -} - -- (void)timerFired -{ - _timer = 0; - - // Expect that views won't be (un)registered while iterating. - HashSet views = _registeredViews; - for (HashSet::iterator iter = views.begin(); iter != views.end(); ++iter) { - if (_error) - [*iter _geolocationDidFailWithError:_error]; - else - [*iter _geolocationDidChangePosition:_lastPosition]; - } -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/NavigationController.h --- a/WebKitTools/DumpRenderTree/mac/NavigationController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,39 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import -#import - -@interface NavigationController : NSObject -{ - enum { None, Load, GoBack, ExecuteScript } pendingAction; - NSString *pendingScript; - NSURLRequest *pendingRequest; -} -- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame; -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/NavigationController.m --- a/WebKitTools/DumpRenderTree/mac/NavigationController.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,112 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "NavigationController.h" - -#import -#import - - -@implementation NavigationController -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector -{ - if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:)) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)selector -{ - if (selector == @selector(evaluateWebScript:afterBackForwardNavigation:)) - return @"evalAfterBackForwardNavigation"; - return nil; -} - -- (void)setPendingScript:(NSString *)script -{ - if (script != pendingScript) { - [pendingScript release]; - pendingScript = [script copy]; - } -} - -- (void)setPendingRequest:(NSURLRequest *)request -{ - if (request != pendingRequest) { - [pendingRequest release]; - pendingRequest = [request copy]; - } -} - -- (void)evaluateWebScript:(NSString *)script afterBackForwardNavigation:(NSString *)navigation -{ - // Allow both arguments to be optional - if (![script isKindOfClass:[NSString class]]) - script = @""; - if (![navigation isKindOfClass:[NSString class]]) - navigation = @"about:blank"; - - [self setPendingScript:script]; - [self setPendingRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:navigation]]]; - pendingAction = Load; -} - -- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame -{ - if (frame == [[frame webView] mainFrame]) { - switch (pendingAction) { - case Load: - pendingAction = GoBack; - [frame loadRequest:pendingRequest]; - [self setPendingRequest:nil]; - break; - case GoBack: - pendingAction = ExecuteScript; - [[frame webView] goBack]; - break; - case ExecuteScript: - pendingAction = None; - [[[frame webView] windowScriptObject] evaluateWebScript:pendingScript]; - [self setPendingScript:nil]; - break; - case None: - default: - break; - } - } -} - -- (void)dealloc -{ - [self setPendingScript:nil]; - [self setPendingRequest:nil]; - [super dealloc]; -} -@end - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCController.h --- a/WebKitTools/DumpRenderTree/mac/ObjCController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@class WebScriptObject; - -// This controller should be used to test Objective-C language features and the WebScriptObject. -@interface ObjCController : NSObject -{ - WebScriptObject *storedWebScriptObject; -} -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCController.m --- a/WebKitTools/DumpRenderTree/mac/ObjCController.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,266 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "ObjCController.h" - -#import -#import -#import -#import -#import -#import - -// Remove this once hasWebScriptKey has been made public. -@interface WebScriptObject (StagedForPublic) -- (BOOL)hasWebScriptKey:(NSString *)name; -@end - -static void* runJavaScriptThread(void* arg) -{ - JSGlobalContextRef ctx = JSGlobalContextCreate(0); - JSStringRef scriptRef = JSStringCreateWithUTF8CString("'Hello World!'"); - - JSValueRef exception = 0; - JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception); - ASSERT(!exception); - - JSGlobalContextRelease(ctx); - JSStringRelease(scriptRef); - - return 0; -} - -@implementation ObjCController - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (0 - || aSelector == @selector(classNameOf:) - || aSelector == @selector(objectOfClass:) - || aSelector == @selector(arrayOfString) - || aSelector == @selector(identityIsEqual::) - || aSelector == @selector(longLongRoundTrip:) - || aSelector == @selector(unsignedLongLongRoundTrip:) - || aSelector == @selector(testWrapperRoundTripping:) - || aSelector == @selector(accessStoredWebScriptObject) - || aSelector == @selector(storeWebScriptObject:) - || aSelector == @selector(testValueForKey) - || aSelector == @selector(testHasWebScriptKey:) - || aSelector == @selector(testArray) - ) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(classNameOf:)) - return @"className"; - if (aSelector == @selector(objectOfClass:)) - return @"objectOfClass"; - if (aSelector == @selector(arrayOfString)) - return @"arrayOfString"; - if (aSelector == @selector(identityIsEqual::)) - return @"identityIsEqual"; - if (aSelector == @selector(longLongRoundTrip:)) - return @"longLongRoundTrip"; - if (aSelector == @selector(unsignedLongLongRoundTrip:)) - return @"unsignedLongLongRoundTrip"; - if (aSelector == @selector(testWrapperRoundTripping:)) - return @"testWrapperRoundTripping"; - if (aSelector == @selector(storeWebScriptObject:)) - return @"storeWebScriptObject"; - if (aSelector == @selector(testValueForKey)) - return @"testValueForKey"; - if (aSelector == @selector(testHasWebScriptKey:)) - return @"testHasWebScriptKey"; - if (aSelector == @selector(testArray)) - return @"testArray"; - - return nil; -} - -- (NSString *)classNameOf:(id)object -{ - if (!object) - return @"nil"; - return NSStringFromClass([object class]); -} - -- (id)objectOfClass:(NSString *)aClass -{ - if ([aClass isEqualToString:@"NSNull"]) - return [NSNull null]; - if ([aClass isEqualToString:@"WebUndefined"]) - return [WebUndefined undefined]; - if ([aClass isEqualToString:@"NSCFBoolean"]) - return [NSNumber numberWithBool:true]; - if ([aClass isEqualToString:@"NSCFNumber"]) - return [NSNumber numberWithInt:1]; - if ([aClass isEqualToString:@"NSCFString"]) - return @""; - if ([aClass isEqualToString:@"WebScriptObject"]) - return self; - if ([aClass isEqualToString:@"NSArray"]) - return [NSArray array]; - - return nil; -} - -- (NSArray *)arrayOfString -{ - NSString *strings[3]; - strings[0] = @"one"; - strings[1] = @"two"; - strings[2] = @"three"; - NSArray *array = [NSArray arrayWithObjects:strings count:3]; - return array; -} - -- (BOOL)identityIsEqual:(WebScriptObject *)a :(WebScriptObject *)b -{ - if ([a isKindOfClass:[NSString class]] && [b isKindOfClass:[NSString class]]) - return [(NSString *)a isEqualToString:(NSString *)b]; - return a == b; -} - -- (long long)longLongRoundTrip:(long long)num -{ - return num; -} - -- (unsigned long long)unsignedLongLongRoundTrip:(unsigned long long)num -{ - return num; -} - -- (void)testValueForKey -{ - ASSERT(storedWebScriptObject); - - @try { - [storedWebScriptObject valueForKey:@"ThisKeyDoesNotExist"]; - } @catch (NSException *e) { - } - - pthread_t pthread; - pthread_create(&pthread, 0, &runJavaScriptThread, 0); - pthread_join(pthread, 0); -} - -- (BOOL)testHasWebScriptKey:(NSString *)key -{ - ASSERT(storedWebScriptObject); - return [storedWebScriptObject hasWebScriptKey:key]; -} - -- (BOOL)testWrapperRoundTripping:(WebScriptObject *)webScriptObject -{ - JSObjectRef jsObject = [webScriptObject JSObject]; - - if (!jsObject) - return false; - - if (!webScriptObject) - return false; - - if ([[webScriptObject evaluateWebScript:@"({ })"] class] != [webScriptObject class]) - return false; - - [webScriptObject setValue:[NSNumber numberWithInt:666] forKey:@"key"]; - if (![[webScriptObject valueForKey:@"key"] isKindOfClass:[NSNumber class]] || - ![[webScriptObject valueForKey:@"key"] isEqualToNumber:[NSNumber numberWithInt:666]]) - return false; - - [webScriptObject removeWebScriptKey:@"key"]; - @try { - if ([webScriptObject valueForKey:@"key"]) - return false; - } @catch(NSException *exception) { - // NSObject throws an exception if the key doesn't exist. - } - - [webScriptObject setWebScriptValueAtIndex:0 value:webScriptObject]; - if ([webScriptObject webScriptValueAtIndex:0] != webScriptObject) - return false; - - if ([[webScriptObject stringRepresentation] isEqualToString:@"[Object object]"]) - return false; - - if ([webScriptObject callWebScriptMethod:@"returnThis" withArguments:nil] != webScriptObject) - return false; - - return true; -} - -- (void)accessStoredWebScriptObject -{ -#if !ASSERT_DISABLED - BOOL isWindowObject = [storedWebScriptObject isKindOfClass:[DOMAbstractView class]]; - JSObjectRef jsObject = [storedWebScriptObject JSObject]; - ASSERT((jsObject && isWindowObject) || (!jsObject && !isWindowObject)); -#endif - [storedWebScriptObject callWebScriptMethod:@"" withArguments:nil]; - [storedWebScriptObject evaluateWebScript:@""]; - [storedWebScriptObject setValue:[WebUndefined undefined] forKey:@"key"]; - [storedWebScriptObject valueForKey:@"key"]; - [storedWebScriptObject removeWebScriptKey:@"key"]; - [storedWebScriptObject stringRepresentation]; - [storedWebScriptObject webScriptValueAtIndex:0]; - [storedWebScriptObject setWebScriptValueAtIndex:0 value:[WebUndefined undefined]]; - [storedWebScriptObject setException:@"exception"]; -} - -- (void)storeWebScriptObject:(WebScriptObject *)webScriptObject -{ - if (webScriptObject == storedWebScriptObject) - return; - - [storedWebScriptObject release]; - storedWebScriptObject = [webScriptObject retain]; -} - -- (NSArray *)testArray -{ - return [NSArray array]; -} - -- (void)dealloc -{ - [storedWebScriptObject release]; - [super dealloc]; -} - -- (id)invokeUndefinedMethodFromWebScript:(NSString *)name withArguments:(NSArray *)args -{ - // FIXME: Perhaps we should log that this has been called. - return nil; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCPlugin.h --- a/WebKitTools/DumpRenderTree/mac/ObjCPlugin.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,36 +0,0 @@ -/* - * Copyright (C) 2005 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#import - - -@interface ObjCPlugin : NSObject -{ - BOOL throwOnDealloc; -} - -- (void)removeBridgeRestrictions:(id)container; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCPlugin.m --- a/WebKitTools/DumpRenderTree/mac/ObjCPlugin.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,207 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * Copyright (C) 2006 James G. Speth (speth@end.com) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#import "config.h" -#import "ObjCPlugin.h" - -#import -#import - -// === NSObject category to expose almost everything to JavaScript === - -// Warning: this class introduces huge security weaknesses, and should only be used -// for testing inside of DumpRenderTree, and only with trusted code. By default, it has -// the same restrictive behavior as the standard WebKit setup. However, scripts can use the -// plugin's removeBridgeRestrictions: method to open up almost total access to the Cocoa -// frameworks. - -static BOOL _allowsScriptsFullAccess = NO; - -@interface NSObject (ObjCScriptAccess) - -+ (void)setAllowsScriptsFullAccess:(BOOL)value; -+ (BOOL)allowsScriptsFullAccess; - -@end - -@implementation NSObject (ObjCScriptAccess) - -+ (void)setAllowsScriptsFullAccess:(BOOL)value -{ - _allowsScriptsFullAccess = value; -} - -+ (BOOL)allowsScriptsFullAccess -{ - return _allowsScriptsFullAccess; -} - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector -{ - return !_allowsScriptsFullAccess; -} - -+ (NSString *)webScriptNameForSelector:(SEL)selector -{ - return nil; -} - -@end - -@interface JSObjC : NSObject { -} - -// expose some useful objc functions to the scripting environment -- (id)lookUpClass:(NSString *)name; -- (void)log:(NSString *)message; -- (id)retainObject:(id)obj; -- (id)classOfObject:(id)obj; -- (NSString *)classNameOfObject:(id)obj; - -@end - -@implementation JSObjC - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector -{ - return NO; -} - -+ (NSString *)webScriptNameForSelector:(SEL)selector -{ - return nil; -} - -- (id)invokeDefaultMethodWithArguments:(NSArray *)args -{ - // this is a useful shortcut for accessing objective-c classes from the scripting - // environment, e.g. 'var myObject = objc("NSObject").alloc().init();' - if ([args count] == 1) - return [self lookUpClass:[args objectAtIndex:0]]; - return nil; -} - -- (id)lookUpClass:(NSString *)name -{ - return NSClassFromString(name); -} - -- (void)log:(NSString *)message -{ - NSLog(@"%@", message); -} - -- (id)retainObject:(id)obj -{ - return [obj retain]; -} - -- (id)classOfObject:(id)obj -{ - return (id)[obj class]; -} - -- (NSString *)classNameOfObject:(id)obj -{ - return [obj className]; -} - -@end - -@implementation ObjCPlugin - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (aSelector == @selector(removeBridgeRestrictions:)) - return NO; - - if (aSelector == @selector(echo:)) - return NO; - - if (aSelector == @selector(throwIfArgumentIsNotHello:)) - return NO; - - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(echo:)) - return @"echo"; - - if (aSelector == @selector(throwIfArgumentIsNotHello:)) - return @"throwIfArgumentIsNotHello"; - - return nil; -} - -+ (NSString *)webScriptNameForKey:(const char *)key -{ - if (strcmp(key, "throwOnDealloc") == 0) - return @"throwOnDealloc"; - - return nil; -} - -+ (BOOL)isKeyExcludedFromWebScript:(const char *)key -{ - if (strcmp(key, "throwOnDealloc") == 0) - return NO; - - return YES; -} - -- (void)removeBridgeRestrictions:(id)container -{ - // let scripts invoke any selector - [NSObject setAllowsScriptsFullAccess:YES]; - - // store a JSObjC instance into the provided container - JSObjC *objc = [[JSObjC alloc] init]; - [container setValue:objc forKey:@"objc"]; - [objc release]; -} - -- (id)echo:(id)obj -{ - return obj; -} - -- (void)throwIfArgumentIsNotHello:(NSString *)str -{ - if (![str isEqualToString:@"Hello"]) - [WebScriptObject throwException:[NSString stringWithFormat:@"%@ != Hello", str]]; -} - -- (void)dealloc -{ - if (throwOnDealloc) - [WebScriptObject throwException:@"Throwing exception on dealloc of ObjCPlugin"]; - - [super dealloc]; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCPluginFunction.h --- a/WebKitTools/DumpRenderTree/mac/ObjCPluginFunction.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - - -#import - - -@interface ObjCPluginFunction : NSObject -{ -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ObjCPluginFunction.m --- a/WebKitTools/DumpRenderTree/mac/ObjCPluginFunction.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -*/ - -#import "config.h" -#import "ObjCPluginFunction.h" - - -@implementation ObjCPluginFunction - -- (id)invokeDefaultMethodWithArguments:(NSArray *)args -{ - return @"test"; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c --- a/WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport.c Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include - -int processIsCrashing(int pid) -{ - int mib[4] = { CTL_KERN, KERN_PROC, KERN_PROC_PID, pid }; - struct kinfo_proc info; - size_t bufferSize = sizeof(info); - if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), &info, &bufferSize, 0, 0)) { - perror("sysctl"); - return 0; - } - - struct extern_proc proc = info.kp_proc; - - // The process is crashing if it is waiting to exit, is not a zombie, and has a non-zero exit code. - return proc.p_stat != SZOMB && (proc.p_flag & P_WEXIT) && proc.p_xstat; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm --- a/WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupportTiger.pm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -# This file was automatically generated by SWIG -package DumpRenderTreeSupport; -require Exporter; -require DynaLoader; -@ISA = qw(Exporter DynaLoader); -package DumpRenderTreeSupportc; -bootstrap DumpRenderTreeSupport; -package DumpRenderTreeSupport; -@EXPORT = qw( ); - -# ---------- BASE METHODS ------------- - -package DumpRenderTreeSupport; - -sub TIEHASH { - my ($classname,$obj) = @_; - return bless $obj, $classname; -} - -sub CLEAR { } - -sub FIRSTKEY { } - -sub NEXTKEY { } - -sub FETCH { - my ($self,$field) = @_; - my $member_func = "swig_${field}_get"; - $self->$member_func(); -} - -sub STORE { - my ($self,$field,$newval) = @_; - my $member_func = "swig_${field}_set"; - $self->$member_func($newval); -} - -sub this { - my $ptr = shift; - return tied(%$ptr); -} - - -# ------- FUNCTION WRAPPERS -------- - -package DumpRenderTreeSupport; - -*processIsCrashing = *DumpRenderTreeSupportc::processIsCrashing; - -# ------- VARIABLE STUBS -------- - -package DumpRenderTreeSupport; - -1; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapTiger.c --- a/WebKitTools/DumpRenderTree/mac/PerlSupport/DumpRenderTreeSupport_wrapTiger.c Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1167 +0,0 @@ -/* ---------------------------------------------------------------------------- - * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.24 - * - * This file is not intended to be easily readable and contains a number of - * coding conventions designed to improve portability and efficiency. Do not make - * changes to this file unless you know what you are doing--modify the SWIG - * interface file instead. - * ----------------------------------------------------------------------------- */ - - -#ifndef SWIG_TEMPLATE_DISAMBIGUATOR -# if defined(__SUNPRO_CC) -# define SWIG_TEMPLATE_DISAMBIGUATOR template -# else -# define SWIG_TEMPLATE_DISAMBIGUATOR -# endif -#endif - -/*********************************************************************** - * swigrun.swg - * - * This file contains generic CAPI SWIG runtime support for pointer - * type checking. - * - ************************************************************************/ - -/* This should only be incremented when either the layout of swig_type_info changes, - or for whatever reason, the runtime changes incompatibly */ -#define SWIG_RUNTIME_VERSION "1" - -/* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ -#ifdef SWIG_TYPE_TABLE -#define SWIG_QUOTE_STRING(x) #x -#define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) -#define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) -#else -#define SWIG_TYPE_TABLE_NAME -#endif - -#include - -#ifndef SWIGINLINE -#if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) -# define SWIGINLINE inline -#else -# define SWIGINLINE -#endif -#endif - -/* - You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for - creating a static or dynamic library from the swig runtime code. - In 99.9% of the cases, swig just needs to declare them as 'static'. - - But only do this if is strictly necessary, ie, if you have problems - with your compiler or so. -*/ -#ifndef SWIGRUNTIME -#define SWIGRUNTIME static -#endif -#ifndef SWIGRUNTIMEINLINE -#define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE -#endif - -#ifdef __cplusplus -extern "C" { -#endif - -typedef void *(*swig_converter_func)(void *); -typedef struct swig_type_info *(*swig_dycast_func)(void **); - -typedef struct swig_type_info { - const char *name; - swig_converter_func converter; - const char *str; - void *clientdata; - swig_dycast_func dcast; - struct swig_type_info *next; - struct swig_type_info *prev; -} swig_type_info; - -/* - Compare two type names skipping the space characters, therefore - "char*" == "char *" and "Class" == "Class", etc. - - Return 0 when the two name types are equivalent, as in - strncmp, but skipping ' '. -*/ -SWIGRUNTIME int -SWIG_TypeNameComp(const char *f1, const char *l1, - const char *f2, const char *l2) { - for (;(f1 != l1) && (f2 != l2); ++f1, ++f2) { - while ((*f1 == ' ') && (f1 != l1)) ++f1; - while ((*f2 == ' ') && (f2 != l2)) ++f2; - if (*f1 != *f2) return *f1 - *f2; - } - return (l1 - f1) - (l2 - f2); -} - -/* - Check type equivalence in a name list like ||... -*/ -SWIGRUNTIME int -SWIG_TypeEquiv(const char *nb, const char *tb) { - int equiv = 0; - const char* te = tb + strlen(tb); - const char* ne = nb; - while (!equiv && *ne) { - for (nb = ne; *ne; ++ne) { - if (*ne == '|') break; - } - equiv = SWIG_TypeNameComp(nb, ne, tb, te) == 0; - if (*ne) ++ne; - } - return equiv; -} - -/* - Register a type mapping with the type-checking -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeRegisterTL(swig_type_info **tl, swig_type_info *ti) { - swig_type_info *tc, *head, *ret, *next; - /* Check to see if this type has already been registered */ - tc = *tl; - while (tc) { - /* check simple type equivalence */ - int typeequiv = (strcmp(tc->name, ti->name) == 0); - /* check full type equivalence, resolving typedefs */ - if (!typeequiv) { - /* only if tc is not a typedef (no '|' on it) */ - if (tc->str && ti->str && !strstr(tc->str,"|")) { - typeequiv = SWIG_TypeEquiv(ti->str,tc->str); - } - } - if (typeequiv) { - /* Already exists in the table. Just add additional types to the list */ - if (ti->clientdata) tc->clientdata = ti->clientdata; - head = tc; - next = tc->next; - goto l1; - } - tc = tc->prev; - } - head = ti; - next = 0; - - /* Place in list */ - ti->prev = *tl; - *tl = ti; - - /* Build linked lists */ - l1: - ret = head; - tc = ti + 1; - /* Patch up the rest of the links */ - while (tc->name) { - head->next = tc; - tc->prev = head; - head = tc; - tc++; - } - if (next) next->prev = head; - head->next = next; - - return ret; -} - -/* - Check the typename -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeCheck(const char *c, swig_type_info *ty) { - swig_type_info *s; - if (!ty) return 0; /* Void pointer */ - s = ty->next; /* First element always just a name */ - do { - if (strcmp(s->name,c) == 0) { - if (s == ty->next) return s; - /* Move s to the top of the linked list */ - s->prev->next = s->next; - if (s->next) { - s->next->prev = s->prev; - } - /* Insert s as second element in the list */ - s->next = ty->next; - if (ty->next) ty->next->prev = s; - ty->next = s; - s->prev = ty; - return s; - } - s = s->next; - } while (s && (s != ty->next)); - return 0; -} - -/* - Cast a pointer up an inheritance hierarchy -*/ -SWIGRUNTIMEINLINE void * -SWIG_TypeCast(swig_type_info *ty, void *ptr) { - return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr); -} - -/* - Dynamic pointer casting. Down an inheritance hierarchy -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeDynamicCast(swig_type_info *ty, void **ptr) { - swig_type_info *lastty = ty; - if (!ty || !ty->dcast) return ty; - while (ty && (ty->dcast)) { - ty = (*ty->dcast)(ptr); - if (ty) lastty = ty; - } - return lastty; -} - -/* - Return the name associated with this type -*/ -SWIGRUNTIMEINLINE const char * -SWIG_TypeName(const swig_type_info *ty) { - return ty->name; -} - -/* - Return the pretty name associated with this type, - that is an unmangled type name in a form presentable to the user. -*/ -SWIGRUNTIME const char * -SWIG_TypePrettyName(const swig_type_info *type) { - /* The "str" field contains the equivalent pretty names of the - type, separated by vertical-bar characters. We choose - to print the last name, as it is often (?) the most - specific. */ - if (type->str != NULL) { - const char *last_name = type->str; - const char *s; - for (s = type->str; *s; s++) - if (*s == '|') last_name = s+1; - return last_name; - } - else - return type->name; -} - -/* - Search for a swig_type_info structure -*/ -SWIGRUNTIME swig_type_info * -SWIG_TypeQueryTL(swig_type_info *tl, const char *name) { - swig_type_info *ty = tl; - while (ty) { - if (ty->str && (SWIG_TypeEquiv(ty->str,name))) return ty; - if (ty->name && (strcmp(name,ty->name) == 0)) return ty; - ty = ty->prev; - } - return 0; -} - -/* - Set the clientdata field for a type -*/ -SWIGRUNTIME void -SWIG_TypeClientDataTL(swig_type_info *tl, swig_type_info *ti, void *clientdata) { - swig_type_info *tc, *equiv; - if (ti->clientdata) return; - /* if (ti->clientdata == clientdata) return; */ - ti->clientdata = clientdata; - equiv = ti->next; - while (equiv) { - if (!equiv->converter) { - tc = tl; - while (tc) { - if ((strcmp(tc->name, equiv->name) == 0)) - SWIG_TypeClientDataTL(tl,tc,clientdata); - tc = tc->prev; - } - } - equiv = equiv->next; - } -} - -/* - Pack binary data into a string -*/ -SWIGRUNTIME char * -SWIG_PackData(char *c, void *ptr, size_t sz) { - static char hex[17] = "0123456789abcdef"; - unsigned char *u = (unsigned char *) ptr; - const unsigned char *eu = u + sz; - register unsigned char uu; - for (; u != eu; ++u) { - uu = *u; - *(c++) = hex[(uu & 0xf0) >> 4]; - *(c++) = hex[uu & 0xf]; - } - return c; -} - -/* - Unpack binary data from a string -*/ -SWIGRUNTIME const char * -SWIG_UnpackData(const char *c, void *ptr, size_t sz) { - register unsigned char *u = (unsigned char *) ptr; - register const unsigned char *eu = u + sz; - for (; u != eu; ++u) { - register int d = *(c++); - register unsigned char uu = 0; - if ((d >= '0') && (d <= '9')) - uu = ((d - '0') << 4); - else if ((d >= 'a') && (d <= 'f')) - uu = ((d - ('a'-10)) << 4); - else - return (char *) 0; - d = *(c++); - if ((d >= '0') && (d <= '9')) - uu |= (d - '0'); - else if ((d >= 'a') && (d <= 'f')) - uu |= (d - ('a'-10)); - else - return (char *) 0; - *u = uu; - } - return c; -} - -/* - This function will propagate the clientdata field of type to any new - swig_type_info structures that have been added into the list of - equivalent types. It is like calling SWIG_TypeClientData(type, - clientdata) a second time. -*/ -SWIGRUNTIME void -SWIG_PropagateClientDataTL(swig_type_info *tl, swig_type_info *type) { - swig_type_info *equiv = type->next; - swig_type_info *tc; - if (!type->clientdata) return; - while (equiv) { - if (!equiv->converter) { - tc = tl; - while (tc) { - if ((strcmp(tc->name, equiv->name) == 0) && !tc->clientdata) - SWIG_TypeClientDataTL(tl,tc, type->clientdata); - tc = tc->prev; - } - } - equiv = equiv->next; - } -} - -/* - Pack 'void *' into a string buffer. -*/ -SWIGRUNTIME char * -SWIG_PackVoidPtr(char *buff, void *ptr, const char *name, size_t bsz) { - char *r = buff; - if ((2*sizeof(void *) + 2) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,&ptr,sizeof(void *)); - if (strlen(name) + 1 > (bsz - (r - buff))) return 0; - strcpy(r,name); - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackVoidPtr(const char *c, void **ptr, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - *ptr = (void *) 0; - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sizeof(void *)); -} - -SWIGRUNTIME char * -SWIG_PackDataName(char *buff, void *ptr, size_t sz, const char *name, size_t bsz) { - char *r = buff; - size_t lname = (name ? strlen(name) : 0); - if ((2*sz + 2 + lname) > bsz) return 0; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - if (lname) { - strncpy(r,name,lname+1); - } else { - *r = 0; - } - return buff; -} - -SWIGRUNTIME const char * -SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { - if (*c != '_') { - if (strcmp(c,"NULL") == 0) { - memset(ptr,0,sz); - return name; - } else { - return 0; - } - } - return SWIG_UnpackData(++c,ptr,sz); -} - -#ifdef __cplusplus -} -#endif - -/*********************************************************************** - * common.swg - * - * This file contains generic SWIG runtime support for pointer - * type checking as well as a few commonly used macros to control - * external linkage. - * - * Author : David Beazley (beazley@cs.uchicago.edu) - * - * Copyright (c) 1999-2000, The University of Chicago - * - * This file may be freely redistributed without license or fee provided - * this copyright message remains intact. - ************************************************************************/ - - -#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) -# if !defined(STATIC_LINKED) -# define SWIGEXPORT(a) __declspec(dllexport) a -# else -# define SWIGEXPORT(a) a -# endif -#else -# define SWIGEXPORT(a) a -#endif - -#ifdef __cplusplus -extern "C" { -#endif - - -/*************************************************************************/ - - -/* The static type info list */ - -static swig_type_info *swig_type_list = 0; -static swig_type_info **swig_type_list_handle = &swig_type_list; - - -/* Register a type mapping with the type-checking */ -static swig_type_info * -SWIG_TypeRegister(swig_type_info *ti) { - return SWIG_TypeRegisterTL(swig_type_list_handle, ti); -} - -/* Search for a swig_type_info structure */ -static swig_type_info * -SWIG_TypeQuery(const char *name) { - return SWIG_TypeQueryTL(*swig_type_list_handle, name); -} - -/* Set the clientdata field for a type */ -static void -SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { - SWIG_TypeClientDataTL(*swig_type_list_handle, ti, clientdata); -} - -/* This function will propagate the clientdata field of type to -* any new swig_type_info structures that have been added into the list -* of equivalent types. It is like calling -* SWIG_TypeClientData(type, clientdata) a second time. -*/ -static void -SWIG_PropagateClientData(swig_type_info *type) { - SWIG_PropagateClientDataTL(*swig_type_list_handle, type); -} - -#ifdef __cplusplus -} -#endif - -/* ---------------------------------------------------------------------- -*- c -*- - * perl5.swg - * - * Perl5 runtime library - * $Header: /cvsroot/swig/SWIG/Lib/perl5/perlrun.swg,v 1.20 2004/11/29 23:13:57 wuzzeb Exp $ - * ----------------------------------------------------------------------------- */ - -#define SWIGPERL -#define SWIGPERL5 -#ifdef __cplusplus -/* Needed on some windows machines---since MS plays funny games with the header files under C++ */ -#include -#include -extern "C" { -#endif -#include "EXTERN.h" -#include "perl.h" -#include "XSUB.h" - -/* Get rid of free and malloc defined by perl */ -#undef free -#undef malloc - -#ifndef pTHX_ -#define pTHX_ -#endif - -#include -#ifdef __cplusplus -} -#endif - -/* Macro to call an XS function */ - -#ifdef PERL_OBJECT -# define SWIG_CALLXS(_name) _name(cv,pPerl) -#else -# ifndef MULTIPLICITY -# define SWIG_CALLXS(_name) _name(cv) -# else -# define SWIG_CALLXS(_name) _name(PERL_GET_THX, cv) -# endif -#endif - -/* Contract support */ - -#define SWIG_contract_assert(expr,msg) if (!(expr)) { SWIG_croak(msg); } else - -/* Note: SwigMagicFuncHack is a typedef used to get the C++ compiler to just shut up already */ - -#ifdef PERL_OBJECT -#define MAGIC_PPERL CPerlObj *pPerl = (CPerlObj *) this; -typedef int (CPerlObj::*SwigMagicFunc)(SV *, MAGIC *); - -#ifdef __cplusplus -extern "C" { -#endif -typedef int (CPerlObj::*SwigMagicFuncHack)(SV *, MAGIC *); -#ifdef __cplusplus -} -#endif - -#define SWIG_MAGIC(a,b) (SV *a, MAGIC *b) -#define SWIGCLASS_STATIC -#else -#define MAGIC_PPERL -#define SWIGCLASS_STATIC static -#ifndef MULTIPLICITY -#define SWIG_MAGIC(a,b) (SV *a, MAGIC *b) -typedef int (*SwigMagicFunc)(SV *, MAGIC *); - -#ifdef __cplusplus -extern "C" { -#endif -typedef int (*SwigMagicFuncHack)(SV *, MAGIC *); -#ifdef __cplusplus -} -#endif - - -#else -#define SWIG_MAGIC(a,b) (struct interpreter *interp, SV *a, MAGIC *b) -typedef int (*SwigMagicFunc)(struct interpreter *, SV *, MAGIC *); -#ifdef __cplusplus -extern "C" { -#endif -typedef int (*SwigMagicFuncHack)(struct interpreter *, SV *, MAGIC *); -#ifdef __cplusplus -} -#endif - -#endif -#endif - -#if defined(WIN32) && defined(PERL_OBJECT) && !defined(PerlIO_exportFILE) -#define PerlIO_exportFILE(fh,fl) (FILE*)(fh) -#endif - -/* Modifications for newer Perl 5.005 releases */ - -#if !defined(PERL_REVISION) || ((PERL_REVISION >= 5) && ((PERL_VERSION < 5) || ((PERL_VERSION == 5) && (PERL_SUBVERSION < 50)))) -# ifndef PL_sv_yes -# define PL_sv_yes sv_yes -# endif -# ifndef PL_sv_undef -# define PL_sv_undef sv_undef -# endif -# ifndef PL_na -# define PL_na na -# endif -#endif - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -#define SWIG_OWNER 1 -#define SWIG_SHADOW 2 - -/* Common SWIG API */ - -#ifdef PERL_OBJECT -# define SWIG_ConvertPtr(obj, pp, type, flags) \ - SWIG_Perl_ConvertPtr(pPerl, obj, pp, type, flags) -# define SWIG_NewPointerObj(p, type, flags) \ - SWIG_Perl_NewPointerObj(pPerl, p, type, flags) -# define SWIG_MakePackedObj(sv, p, s, type) \ - SWIG_Perl_MakePackedObj(pPerl, sv, p, s, type) -# define SWIG_ConvertPacked(obj, p, s, type, flags) \ - SWIG_Perl_ConvertPacked(pPerl, obj, p, s, type, flags) - -#else -# define SWIG_ConvertPtr(obj, pp, type, flags) \ - SWIG_Perl_ConvertPtr(obj, pp, type, flags) -# define SWIG_NewPointerObj(p, type, flags) \ - SWIG_Perl_NewPointerObj(p, type, flags) -# define SWIG_MakePackedObj(sv, p, s, type) \ - SWIG_Perl_MakePackedObj(sv, p, s, type ) -# define SWIG_ConvertPacked(obj, p, s, type, flags) \ - SWIG_Perl_ConvertPacked(obj, p, s, type, flags) -#endif - -/* Perl-specific API */ -#ifdef PERL_OBJECT -# define SWIG_MakePtr(sv, ptr, type, flags) \ - SWIG_Perl_MakePtr(pPerl, sv, ptr, type, flags) -# define SWIG_SetError(str) \ - SWIG_Perl_SetError(pPerl, str) -#else -# define SWIG_MakePtr(sv, ptr, type, flags) \ - SWIG_Perl_MakePtr(sv, ptr, type, flags) -# define SWIG_SetError(str) \ - SWIG_Perl_SetError(str) -# define SWIG_SetErrorSV(str) \ - SWIG_Perl_SetErrorSV(str) -#endif - -#define SWIG_SetErrorf SWIG_Perl_SetErrorf - - -#ifdef PERL_OBJECT -# define SWIG_MAYBE_PERL_OBJECT CPerlObj *pPerl, -#else -# define SWIG_MAYBE_PERL_OBJECT -#endif - -static swig_type_info ** -SWIG_Perl_GetTypeListHandle() { - static void *type_pointer = (void *)0; - SV *pointer; - - /* first check if pointer already created */ - if (!type_pointer) { - pointer = get_sv("swig_runtime_data::type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, FALSE); - if (pointer && SvOK(pointer)) { - type_pointer = INT2PTR(swig_type_info **, SvIV(pointer)); - } - } - - return (swig_type_info **) type_pointer; -} - -/* - Search for a swig_type_info structure - */ -SWIGRUNTIMEINLINE swig_type_info * -SWIG_Perl_GetTypeList() { - swig_type_info **tlh = SWIG_Perl_GetTypeListHandle(); - return tlh ? *tlh : (swig_type_info*)0; -} - -#define SWIG_Runtime_GetTypeList SWIG_Perl_GetTypeList - -static swig_type_info * -SWIG_Perl_TypeCheckRV(SWIG_MAYBE_PERL_OBJECT SV *rv, swig_type_info *ty) { - swig_type_info *s; - if (!ty) return 0; /* Void pointer */ - s = ty->next; /* First element always just a name */ - do { - if (sv_derived_from(rv, (char *) s->name)) { - if (s == ty->next) return s; - /* Move s to the top of the linked list */ - s->prev->next = s->next; - if (s->next) { - s->next->prev = s->prev; - } - /* Insert s as second element in the list */ - s->next = ty->next; - if (ty->next) ty->next->prev = s; - ty->next = s; - s->prev = ty; - return s; - } - s = s->next; - } while (s && (s != ty->next)); - return 0; -} - -/* Function for getting a pointer value */ - -static int -SWIG_Perl_ConvertPtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void **ptr, swig_type_info *_t, int flags) { - swig_type_info *tc; - void *voidptr = (void *)0; - - /* If magical, apply more magic */ - if (SvGMAGICAL(sv)) - mg_get(sv); - - /* Check to see if this is an object */ - if (sv_isobject(sv)) { - SV *tsv = (SV*) SvRV(sv); - IV tmp = 0; - if ((SvTYPE(tsv) == SVt_PVHV)) { - MAGIC *mg; - if (SvMAGICAL(tsv)) { - mg = mg_find(tsv,'P'); - if (mg) { - sv = mg->mg_obj; - if (sv_isobject(sv)) { - tmp = SvIV((SV*)SvRV(sv)); - } - } - } else { - return -1; - } - } else { - tmp = SvIV((SV*)SvRV(sv)); - } - voidptr = (void *)tmp; - if (!_t) { - *(ptr) = voidptr; - return 0; - } - } else if (! SvOK(sv)) { /* Check for undef */ - *(ptr) = (void *) 0; - return 0; - } else if (SvTYPE(sv) == SVt_RV) { /* Check for NULL pointer */ - *(ptr) = (void *) 0; - if (!SvROK(sv)) - return 0; - else - return -1; - } else { /* Don't know what it is */ - *(ptr) = (void *) 0; - return -1; - } - if (_t) { - /* Now see if the types match */ - char *_c = HvNAME(SvSTASH(SvRV(sv))); - tc = SWIG_TypeCheck(_c,_t); - if (!tc) { - *ptr = voidptr; - return -1; - } - *ptr = SWIG_TypeCast(tc,voidptr); - return 0; - } - *ptr = voidptr; - return 0; -} - -static void -SWIG_Perl_MakePtr(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, swig_type_info *t, int flags) { - if (ptr && (flags & SWIG_SHADOW)) { - SV *self; - SV *obj=newSV(0); - HV *hash=newHV(); - HV *stash; - sv_setref_pv(obj, (char *) t->name, ptr); - stash=SvSTASH(SvRV(obj)); - if (flags & SWIG_OWNER) { - HV *hv; - GV *gv=*(GV**)hv_fetch(stash, "OWNER", 5, TRUE); - if (!isGV(gv)) - gv_init(gv, stash, "OWNER", 5, FALSE); - hv=GvHVn(gv); - hv_store_ent(hv, obj, newSViv(1), 0); - } - sv_magic((SV *)hash, (SV *)obj, 'P', Nullch, 0); - SvREFCNT_dec(obj); - self=newRV_noinc((SV *)hash); - sv_setsv(sv, self); - SvREFCNT_dec((SV *)self); - sv_bless(sv, stash); - } - else { - sv_setref_pv(sv, (char *) t->name, ptr); - } -} - -static SWIGINLINE SV * -SWIG_Perl_NewPointerObj(SWIG_MAYBE_PERL_OBJECT void *ptr, swig_type_info *t, int flags) { - SV *result = sv_newmortal(); - SWIG_MakePtr(result, ptr, t, flags); - return result; -} - -static void - SWIG_Perl_MakePackedObj(SWIG_MAYBE_PERL_OBJECT SV *sv, void *ptr, int sz, swig_type_info *type) { - char result[1024]; - char *r = result; - if ((2*sz + 1 + strlen(type->name)) > 1000) return; - *(r++) = '_'; - r = SWIG_PackData(r,ptr,sz); - strcpy(r,type->name); - sv_setpv(sv, result); -} - -/* Convert a packed value value */ -static int -SWIG_Perl_ConvertPacked(SWIG_MAYBE_PERL_OBJECT SV *obj, void *ptr, int sz, swig_type_info *ty, int flags) { - swig_type_info *tc; - const char *c = 0; - - if ((!obj) || (!SvOK(obj))) return -1; - c = SvPV(obj, PL_na); - /* Pointer values must start with leading underscore */ - if (*c != '_') return -1; - c++; - c = SWIG_UnpackData(c,ptr,sz); - if (ty) { - tc = SWIG_TypeCheck(c,ty); - if (!tc) return -1; - } - return 0; -} - -static SWIGINLINE void -SWIG_Perl_SetError(SWIG_MAYBE_PERL_OBJECT const char *error) { - if (error) sv_setpv(perl_get_sv("@", TRUE), error); -} - -static SWIGINLINE void -SWIG_Perl_SetErrorSV(SWIG_MAYBE_PERL_OBJECT SV *error) { - if (error) sv_setsv(perl_get_sv("@", TRUE), error); -} - -static void -SWIG_Perl_SetErrorf(const char *fmt, ...) { - va_list args; - va_start(args, fmt); - sv_vsetpvfn(perl_get_sv("@", TRUE), fmt, strlen(fmt), &args, Null(SV**), 0, Null(bool*)); - va_end(args); -} - -/* Macros for low-level exception handling */ -#define SWIG_fail goto fail -#define SWIG_croak(x) { SWIG_SetError(x); goto fail; } -#define SWIG_croakSV(x) { SWIG_SetErrorSV(x); goto fail; } -/* most preprocessors do not support vararg macros :-( */ -/* #define SWIG_croakf(x...) { SWIG_SetErrorf(x); goto fail; } */ - - -typedef XS(SwigPerlWrapper); -typedef SwigPerlWrapper *SwigPerlWrapperPtr; - -/* Structure for command table */ -typedef struct { - const char *name; - SwigPerlWrapperPtr wrapper; -} swig_command_info; - -/* Information for constant table */ - -#define SWIG_INT 1 -#define SWIG_FLOAT 2 -#define SWIG_STRING 3 -#define SWIG_POINTER 4 -#define SWIG_BINARY 5 - -/* Constant information structure */ -typedef struct swig_constant_info { - int type; - const char *name; - long lvalue; - double dvalue; - void *pvalue; - swig_type_info **ptype; -} swig_constant_info; - -#ifdef __cplusplus -} -#endif - -/* Structure for variable table */ -typedef struct { - const char *name; - SwigMagicFunc set; - SwigMagicFunc get; - swig_type_info **type; -} swig_variable_info; - -/* Magic variable code */ -#ifndef PERL_OBJECT -#define swig_create_magic(s,a,b,c) _swig_create_magic(s,a,b,c) - #ifndef MULTIPLICITY - static void _swig_create_magic(SV *sv, char *name, int (*set)(SV *, MAGIC *), int (*get)(SV *,MAGIC *)) { - #else - static void _swig_create_magic(SV *sv, char *name, int (*set)(struct interpreter*, SV *, MAGIC *), int (*get)(struct interpreter*, SV *,MAGIC *)) { - #endif -#else -# define swig_create_magic(s,a,b,c) _swig_create_magic(pPerl,s,a,b,c) -static void _swig_create_magic(CPerlObj *pPerl, SV *sv, const char *name, int (CPerlObj::*set)(SV *, MAGIC *), int (CPerlObj::*get)(SV *, MAGIC *)) { -#endif - MAGIC *mg; - sv_magic(sv,sv,'U',(char *) name,strlen(name)); - mg = mg_find(sv,'U'); - mg->mg_virtual = (MGVTBL *) malloc(sizeof(MGVTBL)); - mg->mg_virtual->svt_get = (SwigMagicFuncHack) get; - mg->mg_virtual->svt_set = (SwigMagicFuncHack) set; - mg->mg_virtual->svt_len = 0; - mg->mg_virtual->svt_clear = 0; - mg->mg_virtual->svt_free = 0; -} - - - - - - -#ifdef do_open - #undef do_open -#endif -#ifdef do_close - #undef do_close -#endif -#ifdef scalar - #undef scalar -#endif -#ifdef list - #undef list -#endif -#ifdef apply - #undef apply -#endif -#ifdef convert - #undef convert -#endif -#ifdef Error - #undef Error -#endif -#ifdef form - #undef form -#endif -#ifdef vform - #undef vform -#endif -#ifdef LABEL - #undef LABEL -#endif -#ifdef METHOD - #undef METHOD -#endif -#ifdef Move - #undef Move -#endif -#ifdef yylex - #undef yylex -#endif -#ifdef yyparse - #undef yyparse -#endif -#ifdef yyerror - #undef yyerror -#endif -#ifdef invert - #undef invert -#endif -#ifdef ref - #undef ref -#endif -#ifdef ENTER - #undef ENTER -#endif - - -/* -------- TYPES TABLE (BEGIN) -------- */ - -static swig_type_info *swig_types[1]; - -/* -------- TYPES TABLE (END) -------- */ - -#define SWIG_init boot_DumpRenderTreeSupport - -#define SWIG_name "DumpRenderTreeSupportc::boot_DumpRenderTreeSupport" -#define SWIG_prefix "DumpRenderTreeSupportc::" - -#ifdef __cplusplus -extern "C" -#endif -#ifndef PERL_OBJECT -#ifndef MULTIPLICITY -SWIGEXPORT(void) SWIG_init (CV* cv); -#else -SWIGEXPORT(void) SWIG_init (pTHXo_ CV* cv); -#endif -#else -SWIGEXPORT(void) SWIG_init (CV *cv, CPerlObj *); -#endif - -int processIsCrashing(int); -#ifdef PERL_OBJECT -#define MAGIC_CLASS _wrap_DumpRenderTreeSupport_var:: -class _wrap_DumpRenderTreeSupport_var : public CPerlObj { -public: -#else -#define MAGIC_CLASS -#endif -SWIGCLASS_STATIC int swig_magic_readonly(pTHX_ SV *sv, MAGIC *mg) { - MAGIC_PPERL - sv = sv; mg = mg; - croak("Value is read-only."); - return 0; -} - - -#ifdef PERL_OBJECT -}; -#endif - -#ifdef __cplusplus -extern "C" { -#endif -XS(_wrap_processIsCrashing) { - { - int arg1 ; - int result; - int argvi = 0; - dXSARGS; - - if ((items < 1) || (items > 1)) { - SWIG_croak("Usage: processIsCrashing(pid);"); - } - arg1 = (int) SvIV(ST(0)); - result = (int)processIsCrashing(arg1); - - ST(argvi) = sv_newmortal(); - sv_setiv(ST(argvi++), (IV) result); - XSRETURN(argvi); - fail: - ; - } - croak(Nullch); -} - - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ - - -static swig_type_info *swig_types_initial[] = { -0 -}; - - -/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ - -static swig_constant_info swig_constants[] = { -{0,0,0,0,0,0} -}; -#ifdef __cplusplus -} -#endif -static swig_variable_info swig_variables[] = { -{0,0,0,0} -}; -static swig_command_info swig_commands[] = { -{"DumpRenderTreeSupportc::processIsCrashing", _wrap_processIsCrashing}, -{0,0} -}; - - -static void SWIG_Perl_SetTypeListHandle(swig_type_info **handle) { - SV *pointer; - - /* create a new pointer */ - pointer = get_sv("swig_runtime_data::type_pointer" SWIG_RUNTIME_VERSION SWIG_TYPE_TABLE_NAME, TRUE); - sv_setiv(pointer, PTR2IV(swig_type_list_handle)); -} - -static swig_type_info ** -SWIG_Perl_LookupTypePointer(swig_type_info **type_list_handle) { - swig_type_info **type_pointer; - - /* first check if module already created */ - type_pointer = SWIG_Perl_GetTypeListHandle(); - if (type_pointer) { - return type_pointer; - } else { - /* create a new module and variable */ - SWIG_Perl_SetTypeListHandle(type_list_handle); - return type_list_handle; - } -} - - -#ifdef __cplusplus -extern "C" -#endif - -XS(SWIG_init) { - dXSARGS; - int i; - static int _init = 0; - if (!_init) { - swig_type_list_handle = SWIG_Perl_LookupTypePointer(swig_type_list_handle); - for (i = 0; swig_types_initial[i]; i++) { - swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]); - } - _init = 1; - } - - /* Install commands */ - for (i = 0; swig_commands[i].name; i++) { - newXS((char*) swig_commands[i].name,swig_commands[i].wrapper, (char*)__FILE__); - } - - /* Install variables */ - for (i = 0; swig_variables[i].name; i++) { - SV *sv; - sv = perl_get_sv((char*) swig_variables[i].name, TRUE | 0x2); - if (swig_variables[i].type) { - SWIG_MakePtr(sv,(void *)1, *swig_variables[i].type,0); - } else { - sv_setiv(sv,(IV) 0); - } - swig_create_magic(sv, (char *) swig_variables[i].name, swig_variables[i].set, swig_variables[i].get); - } - - /* Install constant */ - for (i = 0; swig_constants[i].type; i++) { - SV *sv; - sv = perl_get_sv((char*)swig_constants[i].name, TRUE | 0x2); - switch(swig_constants[i].type) { - case SWIG_INT: - sv_setiv(sv, (IV) swig_constants[i].lvalue); - break; - case SWIG_FLOAT: - sv_setnv(sv, (double) swig_constants[i].dvalue); - break; - case SWIG_STRING: - sv_setpv(sv, (char *) swig_constants[i].pvalue); - break; - case SWIG_POINTER: - SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0); - break; - case SWIG_BINARY: - SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype)); - break; - default: - break; - } - SvREADONLY_on(sv); - } - - ST(0) = &PL_sv_yes; - XSRETURN(1); -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PerlSupport/Makefile --- a/WebKitTools/DumpRenderTree/mac/PerlSupport/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,69 +0,0 @@ -# Copyright (C) 2009 Apple Inc. All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY -# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR -# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -CONFIGURATION_BUILD_DIR ?= . -OUTPUT_DIR=$(CONFIGURATION_BUILD_DIR) - -WRAPPER_DIR=$(OUTPUT_DIR)/DerivedSources/DumpRenderTree -WRAPPER=$(WRAPPER_DIR)/DumpRenderTreeSupport_wrap.c -PERL_MODULE=$(OUTPUT_DIR)/DumpRenderTreeSupport.pm -DYLIB=$(OUTPUT_DIR)/DumpRenderTreeSupport.dylib -DUMPRENDERTREE=$(OUTPUT_DIR)/DumpRenderTree -PERL=/usr/bin/perl - -OSX_VERSION=$(shell sw_vers -productVersion | cut -d. -f 2) - -ifneq "$(OSX_VERSION)" "4" - - -SWIG=/usr/bin/swig - -all: $(DYLIB) $(PERL_MODULE) - -$(WRAPPER) $(PERL_MODULE): DumpRenderTreeSupport.c $(DUMPRENDERTREE) - mkdir -p $(WRAPPER_DIR) - $(SWIG) -o $(WRAPPER) -outdir $(OUTPUT_DIR) -perl -module DumpRenderTreeSupport $< - - -else - - -all: $(DYLIB) $(PERL_MODULE) - -$(WRAPPER): DumpRenderTreeSupport_wrapTiger.c $(DUMPRENDERTREE) - mkdir -p $(WRAPPER_DIR) - cp DumpRenderTreeSupport_wrapTiger.c $(WRAPPER) - -$(PERL_MODULE): DumpRenderTreeSupportTiger.pm $(DUMPRENDERTREE) - cp DumpRenderTreeSupportTiger.pm $(PERL_MODULE) - - -endif - -$(DYLIB): DumpRenderTreeSupport.c $(WRAPPER) - gcc -g -dynamiclib -o $(DYLIB) `$(PERL) -MExtUtils::Embed -eperl_inc` `$(PERL) -MExtUtils::Embed -eldopts` $^ - -clean: - rm -f $(WRAPPER) $(PERL_MODULE) $(DYLIB) - -installhdrs installsrc install: diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PixelDumpSupportMac.mm --- a/WebKitTools/DumpRenderTree/mac/PixelDumpSupportMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,279 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PixelDumpSupport.h" -#include "PixelDumpSupportCG.h" - -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include -#include -#include - -#import -#import -#import -#import -#import - -#if defined(BUILDING_ON_TIGER) -#include -#include -#endif - -// To ensure pixel tests consistency, we need to always render in the same colorspace. -// Unfortunately, because of AppKit / WebKit constraints, we can't render directly in the colorspace of our choice. -// This implies we have to temporarily change the profile of the main display to the colorspace we want to render into. -// We also need to make sure the CGBitmapContext we return is in that same colorspace. - -#define PROFILE_PATH "/System/Library/ColorSync/Profiles/Generic RGB Profile.icc" // FIXME: This cannot be more than CS_MAX_PATH (256 characters) - -static CMProfileLocation sInitialProfileLocation; // The locType field is initialized to 0 which is the same as cmNoProfileBase - -void restoreMainDisplayColorProfile(int ignored) -{ - // This is used as a signal handler, and thus the calls into ColorSync are unsafe - // But we might as well try to restore the user's color profile, we're going down anyway... - if (sInitialProfileLocation.locType != cmNoProfileBase) { - const CMDeviceScope scope = { kCFPreferencesCurrentUser, kCFPreferencesCurrentHost }; - int error = CMSetDeviceProfile(cmDisplayDeviceClass, (CMDeviceID)kCGDirectMainDisplay, &scope, cmDefaultProfileID, &sInitialProfileLocation); - if (error) - fprintf(stderr, "Failed to restore initial color profile for main display! Open System Preferences > Displays > Color and manually re-select the profile. (Error: %i)", error); - sInitialProfileLocation.locType = cmNoProfileBase; - } -} - -void setupMainDisplayColorProfile() -{ - const CMDeviceScope scope = { kCFPreferencesCurrentUser, kCFPreferencesCurrentHost }; - int error; - - CMProfileRef profile = 0; - error = CMGetProfileByAVID((CMDisplayIDType)kCGDirectMainDisplay, &profile); - if (!error) { - UInt32 size = sizeof(CMProfileLocation); - error = NCMGetProfileLocation(profile, &sInitialProfileLocation, &size); - CMCloseProfile(profile); - } - if (error) { - fprintf(stderr, "Failed to retrieve current color profile for main display, thus it won't be changed. Many pixel tests may fail as a result. (Error: %i)", error); - sInitialProfileLocation.locType = cmNoProfileBase; - return; - } - - CMProfileLocation location; - location.locType = cmPathBasedProfile; - strcpy(location.u.pathLoc.path, PROFILE_PATH); - error = CMSetDeviceProfile(cmDisplayDeviceClass, (CMDeviceID)kCGDirectMainDisplay, &scope, cmDefaultProfileID, &location); - if (error) { - fprintf(stderr, "Failed to set color profile for main display! Many pixel tests may fail as a result. (Error: %i)", error); - sInitialProfileLocation.locType = cmNoProfileBase; - return; - } - - // Other signals are handled in installSignalHandlers() which also calls restoreMainDisplayColorProfile() - signal(SIGINT, restoreMainDisplayColorProfile); - signal(SIGHUP, restoreMainDisplayColorProfile); - signal(SIGTERM, restoreMainDisplayColorProfile); -} - -static PassRefPtr createBitmapContext(size_t pixelsWide, size_t pixelsHigh, size_t& rowBytes, void*& buffer) -{ - rowBytes = (4 * pixelsWide + 63) & ~63; // Use a multiple of 64 bytes to improve CG performance - - buffer = calloc(pixelsHigh, rowBytes); - if (!buffer) - return 0; - - static CGColorSpaceRef colorSpace = 0; - if (!colorSpace) { - CMProfileLocation location; - location.locType = cmPathBasedProfile; - strcpy(location.u.pathLoc.path, PROFILE_PATH); - CMProfileRef profile; - if (CMOpenProfile(&profile, &location) == noErr) { - colorSpace = CGColorSpaceCreateWithPlatformColorSpace(profile); - CMCloseProfile(profile); - } - } - - CGContextRef context = CGBitmapContextCreate(buffer, pixelsWide, pixelsHigh, 8, rowBytes, colorSpace, kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host); // Use ARGB8 on PPC or BGRA8 on X86 to improve CG performance - if (!context) { - free(buffer); - return 0; - } - - return BitmapContext::createByAdoptingBitmapAndContext(buffer, context); -} - -PassRefPtr createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect) -{ - WebView* view = [mainFrame webView]; - - // If the WebHTMLView uses accelerated compositing, we need for force the on-screen capture path - // and also force Core Animation to start its animations with -display since the DRT window has autodisplay disabled. - if ([view _isUsingAcceleratedCompositing]) - onscreen = YES; - - NSSize webViewSize = [view frame].size; - size_t pixelsWide = static_cast(webViewSize.width); - size_t pixelsHigh = static_cast(webViewSize.height); - size_t rowBytes = 0; - void* buffer = 0; - RefPtr bitmapContext = createBitmapContext(pixelsWide, pixelsHigh, rowBytes, buffer); - if (!bitmapContext) - return 0; - CGContextRef context = bitmapContext->cgContext(); - - NSGraphicsContext *nsContext = [NSGraphicsContext graphicsContextWithGraphicsPort:context flipped:NO]; - ASSERT(nsContext); - - if (incrementalRepaint) { - if (sweepHorizontally) { - for (NSRect column = NSMakeRect(0, 0, 1, webViewSize.height); column.origin.x < webViewSize.width; column.origin.x++) - [view displayRectIgnoringOpacity:column inContext:nsContext]; - } else { - for (NSRect line = NSMakeRect(0, 0, webViewSize.width, 1); line.origin.y < webViewSize.height; line.origin.y++) - [view displayRectIgnoringOpacity:line inContext:nsContext]; - } - } else { - - if (onscreen) { -#if !defined(BUILDING_ON_TIGER) - // displayIfNeeded does not update the CA layers if the layer-hosting view was not marked as needing display, so - // we're at the mercy of CA's display-link callback to update layers in time. So we need to force a display of the view - // to get AppKit to update the CA layers synchronously. - // FIXME: this will break repaint testing if we have compositing in repaint tests - // (displayWebView() painted gray over the webview, but we'll be making everything repaint again). - [view display]; - - // Ask the window server to provide us a composited version of the *real* window content including surfaces (i.e. OpenGL content) - // Note that the returned image might differ very slightly from the window backing because of dithering artifacts in the window server compositor - CGImageRef image = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, [[view window] windowNumber], kCGWindowImageBoundsIgnoreFraming | kCGWindowImageShouldBeOpaque); - CGContextDrawImage(context, CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image)), image); - CGImageRelease(image); -#else - // On 10.4 and earlier, we have to move the window temporarily "onscreen" and read directly from the display framebuffer using OpenGL - // In this code path, we need to ensure the window is above any other window or captured result will be corrupted - - NSWindow *window = [view window]; - int oldLevel = [window level]; - NSRect oldFrame = [window frame]; - - NSRect newFrame = [[[NSScreen screens] objectAtIndex:0] frame]; - newFrame = NSMakeRect(newFrame.origin.x + (newFrame.size.width - oldFrame.size.width) / 2, newFrame.origin.y + (newFrame.size.height - oldFrame.size.height) / 2, oldFrame.size.width, oldFrame.size.height); - [window setLevel:NSScreenSaverWindowLevel]; - [window setFrame:newFrame display:NO animate:NO]; - - CGRect rect = CGRectMake(newFrame.origin.x, newFrame.origin.y, webViewSize.width, webViewSize.height); - CGDirectDisplayID displayID; - CGDisplayCount count; - if (CGGetDisplaysWithRect(rect, 1, &displayID, &count) == kCGErrorSuccess) { - CGRect bounds = CGDisplayBounds(displayID); - rect.origin.x -= bounds.origin.x; - rect.origin.y -= bounds.origin.y; - - CGLPixelFormatAttribute attributes[] = {kCGLPFAAccelerated, kCGLPFANoRecovery, kCGLPFAFullScreen, kCGLPFADisplayMask, (CGLPixelFormatAttribute)CGDisplayIDToOpenGLDisplayMask(displayID), (CGLPixelFormatAttribute)0}; - CGLPixelFormatObj pixelFormat; - GLint num; - if (CGLChoosePixelFormat(attributes, &pixelFormat, &num) == kCGLNoError) { - CGLContextObj cgl_ctx; - if (CGLCreateContext(pixelFormat, 0, &cgl_ctx) == kCGLNoError) { - if (CGLSetFullScreen(cgl_ctx) == kCGLNoError) { - void *flipBuffer = calloc(pixelsHigh, rowBytes); - if (flipBuffer) { - glPixelStorei(GL_PACK_ROW_LENGTH, rowBytes / 4); - glPixelStorei(GL_PACK_ALIGNMENT, 4); -#if __BIG_ENDIAN__ - glReadPixels(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height, GL_RGBA, GL_UNSIGNED_INT_8_8_8_8, flipBuffer); -#else - glReadPixels(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height, GL_RGBA, GL_UNSIGNED_INT_8_8_8_8_REV, flipBuffer); -#endif - if (!glGetError()) { - for(size_t i = 0; i < pixelsHigh; ++i) - bcopy((char*)flipBuffer + rowBytes * i, (char*)buffer + rowBytes * (pixelsHigh - i - 1), pixelsWide * 4); - } - - free(flipBuffer); - } - } - CGLDestroyContext(cgl_ctx); - } - CGLDestroyPixelFormat(pixelFormat); - } - } - - [window setFrame:oldFrame display:NO animate:NO]; - [window setLevel:oldLevel]; -#endif - } else { - // Make sure the view has been painted. - [view displayIfNeeded]; - - // Grab directly the contents of the window backing buffer (this ignores any surfaces on the window) - // FIXME: This path is suboptimal: data is read from window backing store, converted to RGB8 then drawn again into an RGBA8 bitmap - [view lockFocus]; - NSBitmapImageRep *imageRep = [[[NSBitmapImageRep alloc] initWithFocusedViewRect:[view frame]] autorelease]; - [view unlockFocus]; - - RetainPtr savedContext = [NSGraphicsContext currentContext]; - [NSGraphicsContext setCurrentContext:nsContext]; - [imageRep draw]; - [NSGraphicsContext setCurrentContext:savedContext.get()]; - } - } - - if (drawSelectionRect) { - NSView *documentView = [[mainFrame frameView] documentView]; - ASSERT([documentView conformsToProtocol:@protocol(WebDocumentSelection)]); - NSRect rect = [documentView convertRect:[(id )documentView selectionRect] fromView:nil]; - CGContextSaveGState(context); - CGContextSetLineWidth(context, 1.0); - CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0); - CGContextStrokeRect(context, CGRectMake(rect.origin.x, rect.origin.y, rect.size.width, rect.size.height)); - CGContextRestoreGState(context); - } - - return bitmapContext.release(); -} - -PassRefPtr createPagedBitmapContext() -{ - int pageWidthInPixels = LayoutTestController::maxViewWidth; - int pageHeightInPixels = LayoutTestController::maxViewHeight; - int numberOfPages = [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels]; - size_t rowBytes = 0; - void* buffer = 0; - - RefPtr bitmapContext = createBitmapContext(pageWidthInPixels, numberOfPages * (pageHeightInPixels + 1) - 1, rowBytes, buffer); - [mainFrame printToCGContext:bitmapContext->cgContext():pageWidthInPixels:pageHeightInPixels]; - return bitmapContext.release(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PlainTextController.h --- a/WebKitTools/DumpRenderTree/mac/PlainTextController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -@interface PlainTextController : NSObject -+ (PlainTextController *)sharedPlainTextController; -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PlainTextController.mm --- a/WebKitTools/DumpRenderTree/mac/PlainTextController.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "PlainTextController.h" - -#import - -@implementation PlainTextController - -+ (PlainTextController *)sharedPlainTextController -{ - static PlainTextController *controller = [[PlainTextController alloc] init]; - return controller; -} - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)selector -{ - if (selector == @selector(plainTextForRange:)) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)selector -{ - if (selector == @selector(plainTextForRange:)) - return @"plainText"; - return nil; -} - -- (NSString *)plainTextForRange:(DOMRange *)range -{ - if (![range isKindOfClass:[DOMRange class]]) - return nil; - return [range text]; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PolicyDelegate.h --- a/WebKitTools/DumpRenderTree/mac/PolicyDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -class LayoutTestController; - -@interface PolicyDelegate : NSObject { - BOOL permissiveDelegate; - LayoutTestController* controllerToNotifyDone; -} - -- (void)setPermissive:(BOOL)permissive; -- (void)setControllerToNotifyDone:(LayoutTestController*)controller; - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/PolicyDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/PolicyDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "PolicyDelegate.h" - -#import "DumpRenderTree.h" -#import "LayoutTestController.h" -#import -#import -#import - -@interface NSURL (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface DOMNode (dumpPath) -- (NSString *)dumpPath; -@end - -@implementation PolicyDelegate - -- (void)webView:(WebView *)webView decidePolicyForNavigationAction:(NSDictionary *)actionInformation - request:(NSURLRequest *)request - frame:(WebFrame *)frame - decisionListener:(id)listener -{ - WebNavigationType navType = (WebNavigationType)[[actionInformation objectForKey:WebActionNavigationTypeKey] intValue]; - - const char* typeDescription; - switch (navType) { - case WebNavigationTypeLinkClicked: - typeDescription = "link clicked"; - break; - case WebNavigationTypeFormSubmitted: - typeDescription = "form submitted"; - break; - case WebNavigationTypeBackForward: - typeDescription = "back/forward"; - break; - case WebNavigationTypeReload: - typeDescription = "reload"; - break; - case WebNavigationTypeFormResubmitted: - typeDescription = "form resubmitted"; - break; - case WebNavigationTypeOther: - typeDescription = "other"; - break; - default: - typeDescription = "illegal value"; - } - - NSString *message = [NSString stringWithFormat:@"Policy delegate: attempt to load %@ with navigation type '%s'", [[request URL] _drt_descriptionSuitableForTestResult], typeDescription]; - - if (DOMElement *originatingNode = [[actionInformation objectForKey:WebActionElementKey] objectForKey:WebElementDOMNodeKey]) - message = [message stringByAppendingFormat:@" originating from %@", [originatingNode dumpPath]]; - - printf("%s\n", [message UTF8String]); - - if (permissiveDelegate) - [listener use]; - else - [listener ignore]; - - if (controllerToNotifyDone) { - controllerToNotifyDone->notifyDone(); - controllerToNotifyDone = 0; - } -} - -- (void)webView:(WebView *)webView unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame -{ - NSString *message = [NSString stringWithFormat:@"Policy delegate: unable to implement policy with error domain '%@', error code %d, in frame '%@'", [error domain], [error code], [frame name]]; - printf("%s\n", [message UTF8String]); -} - -- (void)setPermissive:(BOOL)permissive -{ - permissiveDelegate = permissive; -} - -- (void)setControllerToNotifyDone:(LayoutTestController*)controller -{ - controllerToNotifyDone = controller; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.h --- a/WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - - -@interface ResourceLoadDelegate : NSObject { -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,245 +0,0 @@ -/* - * Copyright (C) 2007, Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "ResourceLoadDelegate.h" - -#import "DumpRenderTree.h" -#import "LayoutTestController.h" -#import -#import -#import -#import - -using namespace std; - -@interface NSURL (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSError (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSURLResponse (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@interface NSURLRequest (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult; -@end - -@implementation NSError (DRTExtras) -- (NSString *)_drt_descriptionSuitableForTestResult -{ - NSString *str = [NSString stringWithFormat:@""]; - - return str; -} - -@end - -@implementation NSURL (DRTExtras) - -- (NSString *)_drt_descriptionSuitableForTestResult -{ - if (![self isFileURL]) - return [self absoluteString]; - - WebDataSource *dataSource = [mainFrame dataSource]; - if (!dataSource) - dataSource = [mainFrame provisionalDataSource]; - - NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent]; - - return [[self path] substringFromIndex:[basePath length] + 1]; -} - -@end - -@implementation NSURLResponse (DRTExtras) - -- (NSString *)_drt_descriptionSuitableForTestResult -{ - int statusCode = 0; - if ([self isKindOfClass:[NSHTTPURLResponse class]]) - statusCode = [(NSHTTPURLResponse *)self statusCode]; - return [NSString stringWithFormat:@"", [[self URL] _drt_descriptionSuitableForTestResult], statusCode]; -} - -@end - -@implementation NSURLRequest (DRTExtras) - -- (NSString *)_drt_descriptionSuitableForTestResult -{ - NSString *httpMethod = [self HTTPMethod]; - if (!httpMethod) - httpMethod = @"(none)"; - return [NSString stringWithFormat:@"", [[self URL] _drt_descriptionSuitableForTestResult], [[self mainDocumentURL] _drt_descriptionSuitableForTestResult], httpMethod]; -} - -@end - -@implementation ResourceLoadDelegate - -- webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource -{ - ASSERT([[dataSource webFrame] dataSource] || [[dataSource webFrame] provisionalDataSource]); - - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) - return [[request URL] _drt_descriptionSuitableForTestResult]; - - return @""; -} - --(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - willSendRequest %@ redirectResponse %@", identifier, [request _drt_descriptionSuitableForTestResult], - [redirectResponse _drt_descriptionSuitableForTestResult]]; - printf("%s\n", [string UTF8String]); - } - - if (!done && !gLayoutTestController->deferMainResourceDataLoad()) { - [dataSource _setDeferMainResourceDataLoad:false]; - } - - if (!done && gLayoutTestController->willSendRequestReturnsNull()) - return nil; - - if (!done && gLayoutTestController->willSendRequestReturnsNullOnRedirect() && redirectResponse) { - printf("Returning null for this redirect\n"); - return nil; - } - - NSURL *url = [request URL]; - NSString *host = [url host]; - if (host - && (NSOrderedSame == [[url scheme] caseInsensitiveCompare:@"http"] || NSOrderedSame == [[url scheme] caseInsensitiveCompare:@"https"]) - && NSOrderedSame != [host compare:@"127.0.0.1"] - && NSOrderedSame != [host compare:@"255.255.255.255"] // used in some tests that expect to get back an error - && NSOrderedSame != [host caseInsensitiveCompare:@"localhost"]) { - printf("Blocked access to external URL %s\n", [[url absoluteString] cStringUsingEncoding:NSUTF8StringEncoding]); - return nil; - } - - if (disallowedURLs && CFSetContainsValue(disallowedURLs, url)) - return nil; - - NSMutableURLRequest *newRequest = [request mutableCopy]; - const set& clearHeaders = gLayoutTestController->willSendRequestClearHeaders(); - for (set::const_iterator header = clearHeaders.begin(); header != clearHeaders.end(); ++header) { - NSString *nsHeader = [[NSString alloc] initWithUTF8String:header->c_str()]; - [newRequest setValue:nil forHTTPHeaderField:nsHeader]; - [nsHeader release]; - } - - return [newRequest autorelease]; -} - -- (void)webView:(WebView *)wv resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource -{ - if (!gLayoutTestController->handlesAuthenticationChallenges()) { - NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet", identifier]; - printf("%s\n", [string UTF8String]); - - [[challenge sender] continueWithoutCredentialForAuthenticationChallenge:challenge]; - return; - } - - const char* user = gLayoutTestController->authenticationUsername().c_str(); - NSString *nsUser = [NSString stringWithFormat:@"%s", user ? user : ""]; - - const char* password = gLayoutTestController->authenticationPassword().c_str(); - NSString *nsPassword = [NSString stringWithFormat:@"%s", password ? password : ""]; - - NSString *string = [NSString stringWithFormat:@"%@ - didReceiveAuthenticationChallenge - Responding with %@:%@", identifier, nsUser, nsPassword]; - printf("%s\n", [string UTF8String]); - - [[challenge sender] useCredential:[NSURLCredential credentialWithUser:nsUser password:nsPassword persistence:NSURLCredentialPersistenceForSession] - forAuthenticationChallenge:challenge]; -} - -- (void)webView:(WebView *)wv resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource -{ -} - --(void)webView: (WebView *)wv resource:identifier didReceiveResponse: (NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didReceiveResponse %@", identifier, [response _drt_descriptionSuitableForTestResult]]; - printf("%s\n", [string UTF8String]); - } - if (!done && gLayoutTestController->dumpResourceResponseMIMETypes()) - printf("%s has MIME type %s\n", [[[[response URL] relativePath] lastPathComponent] UTF8String], [[response MIMEType] UTF8String]); -} - --(void)webView: (WebView *)wv resource:identifier didReceiveContentLength: (NSInteger)length fromDataSource:(WebDataSource *)dataSource -{ -} - --(void)webView: (WebView *)wv resource:identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFinishLoading", identifier]; - printf("%s\n", [string UTF8String]); - } -} - --(void)webView: (WebView *)wv resource:identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - NSString *string = [NSString stringWithFormat:@"%@ - didFailLoadingWithError: %@", identifier, [error _drt_descriptionSuitableForTestResult]]; - printf("%s\n", [string UTF8String]); - } -} - -- (void)webView: (WebView *)wv plugInFailedWithError:(NSError *)error dataSource:(WebDataSource *)dataSource -{ - // The call to -display here simulates the "Plug-in not found" sheet that Safari shows. - // It is used for platform/mac/plugins/update-widget-from-style-recalc.html - [wv display]; -} - --(NSCachedURLResponse *) webView: (WebView *)wv resource:(id)identifier willCacheResponse:(NSCachedURLResponse *)response fromDataSource:(WebDataSource *)dataSource -{ - if (!done && gLayoutTestController->dumpWillCacheResponse()) { - NSString *string = [NSString stringWithFormat:@"%@ - willCacheResponse: called", identifier]; - printf("%s\n", [string UTF8String]); - } - return response; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/TextInputController.h --- a/WebKitTools/DumpRenderTree/mac/TextInputController.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -/* - * Copyright (C) 2005 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@class WebView; -@class WebHTMLView; -@class WebScriptObject; - -@interface TextInputController : NSObject -{ - WebView *webView; - WebHTMLView *inputMethodView; - WebScriptObject *inputMethodHandler; -} -- (id)initWithWebView:(WebView *)view; -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/TextInputController.m --- a/WebKitTools/DumpRenderTree/mac/TextInputController.m Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,430 +0,0 @@ -/* - * Copyright (C) 2005, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "TextInputController.h" - -#import "DumpRenderTreeMac.h" -#import -#import -#import -#import -#import -#import -#import -#import - -@interface TextInputController (DumpRenderTreeInputMethodHandler) -- (BOOL)interpretKeyEvents:(NSArray *)eventArray withSender:(WebHTMLView *)sender; -@end - -@interface WebHTMLView (DumpRenderTreeInputMethodHandler) -- (void)interpretKeyEvents:(NSArray *)eventArray; -@end - -@interface WebHTMLView (WebKitSecretsTextInputControllerIsAwareOf) -- (WebFrame *)_frame; -@end - -@implementation WebHTMLView (DumpRenderTreeInputMethodHandler) -- (void)interpretKeyEvents:(NSArray *)eventArray -{ - WebScriptObject *obj = [[self _frame] windowObject]; - TextInputController *tic = [obj valueForKey:@"textInputController"]; - if (![tic interpretKeyEvents:eventArray withSender:self]) - [super interpretKeyEvents:eventArray]; -} -@end - -@implementation NSMutableAttributedString (TextInputController) - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (aSelector == @selector(string) - || aSelector == @selector(getLength) - || aSelector == @selector(attributeNamesAtIndex:) - || aSelector == @selector(valueOfAttribute:atIndex:) - || aSelector == @selector(addAttribute:value:) - || aSelector == @selector(addAttribute:value:from:length:) - || aSelector == @selector(addColorAttribute:red:green:blue:alpha:) - || aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:) - || aSelector == @selector(addFontAttribute:fontName:size:) - || aSelector == @selector(addFontAttribute:fontName:size:from:length:)) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(getLength)) - return @"length"; - if (aSelector == @selector(attributeNamesAtIndex:)) - return @"getAttributeNamesAtIndex"; - if (aSelector == @selector(valueOfAttribute:atIndex:)) - return @"getAttributeValueAtIndex"; - if (aSelector == @selector(addAttribute:value:)) - return @"addAttribute"; - if (aSelector == @selector(addAttribute:value:from:length:)) - return @"addAttributeForRange"; - if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:)) - return @"addColorAttribute"; - if (aSelector == @selector(addColorAttribute:red:green:blue:alpha:from:length:)) - return @"addColorAttributeForRange"; - if (aSelector == @selector(addFontAttribute:fontName:size:)) - return @"addFontAttribute"; - if (aSelector == @selector(addFontAttribute:fontName:size:from:length:)) - return @"addFontAttributeForRange"; - - return nil; -} - -- (int)getLength -{ - return (int)[self length]; -} - -- (NSArray *)attributeNamesAtIndex:(int)index -{ - NSDictionary *attributes = [self attributesAtIndex:(unsigned)index effectiveRange:nil]; - return [attributes allKeys]; -} - -- (id)valueOfAttribute:(NSString *)attrName atIndex:(int)index -{ - return [self attribute:attrName atIndex:(unsigned)index effectiveRange:nil]; -} - -- (void)addAttribute:(NSString *)attrName value:(id)value -{ - [self addAttribute:attrName value:value range:NSMakeRange(0, [self length])]; -} - -- (void)addAttribute:(NSString *)attrName value:(id)value from:(int)from length:(int)length -{ - [self addAttribute:attrName value:value range:NSMakeRange((unsigned)from, (unsigned)length)]; -} - -- (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha -{ - [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange(0, [self length])]; -} - -- (void)addColorAttribute:(NSString *)attrName red:(float)red green:(float)green blue:(float)blue alpha:(float)alpha from:(int)from length:(int)length -{ - [self addAttribute:attrName value:[NSColor colorWithDeviceRed:red green:green blue:blue alpha:alpha] range:NSMakeRange((unsigned)from, (unsigned)length)]; -} - -- (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize -{ - [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange(0, [self length])]; -} - -- (void)addFontAttribute:(NSString *)attrName fontName:(NSString *)fontName size:(float)fontSize from:(int)from length:(int)length -{ - [self addAttribute:attrName value:[NSFont fontWithName:fontName size:fontSize] range:NSMakeRange((unsigned)from, (unsigned)length)]; -} - -@end - -@implementation TextInputController - -+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector -{ - if (aSelector == @selector(insertText:) - || aSelector == @selector(doCommand:) - || aSelector == @selector(setMarkedText:selectedFrom:length:) - || aSelector == @selector(unmarkText) - || aSelector == @selector(hasMarkedText) - || aSelector == @selector(conversationIdentifier) - || aSelector == @selector(substringFrom:length:) - || aSelector == @selector(attributedSubstringFrom:length:) - || aSelector == @selector(markedRange) - || aSelector == @selector(selectedRange) - || aSelector == @selector(firstRectForCharactersFrom:length:) - || aSelector == @selector(characterIndexForPointX:Y:) - || aSelector == @selector(validAttributesForMarkedText) - || aSelector == @selector(attributedStringWithString:) - || aSelector == @selector(setInputMethodHandler:)) - return NO; - return YES; -} - -+ (NSString *)webScriptNameForSelector:(SEL)aSelector -{ - if (aSelector == @selector(insertText:)) - return @"insertText"; - else if (aSelector == @selector(doCommand:)) - return @"doCommand"; - else if (aSelector == @selector(setMarkedText:selectedFrom:length:)) - return @"setMarkedText"; - else if (aSelector == @selector(substringFrom:length:)) - return @"substringFromRange"; - else if (aSelector == @selector(attributedSubstringFrom:length:)) - return @"attributedSubstringFromRange"; - else if (aSelector == @selector(firstRectForCharactersFrom:length:)) - return @"firstRectForCharacterRange"; - else if (aSelector == @selector(characterIndexForPointX:Y:)) - return @"characterIndexForPoint"; - else if (aSelector == @selector(attributedStringWithString:)) - return @"makeAttributedString"; // just a factory method, doesn't call into NSTextInput - else if (aSelector == @selector(setInputMethodHandler:)) - return @"setInputMethodHandler"; - - return nil; -} - -- (id)initWithWebView:(WebView *)wv -{ - self = [super init]; - webView = wv; - inputMethodView = nil; - inputMethodHandler = nil; - return self; -} - -- (void)dealloc -{ - [inputMethodHandler release]; - inputMethodHandler = nil; - - [super dealloc]; -} - -- (NSObject *)textInput -{ - NSView *view = inputMethodView ? inputMethodView : (id)[[[webView mainFrame] frameView] documentView]; - return [view conformsToProtocol:@protocol(NSTextInput)] ? view : nil; -} - -- (void)insertText:(id)aString -{ - NSObject *textInput = [self textInput]; - - if (textInput) - [textInput insertText:aString]; -} - -- (void)doCommand:(NSString *)aCommand -{ - NSObject *textInput = [self textInput]; - - if (textInput) - [textInput doCommandBySelector:NSSelectorFromString(aCommand)]; -} - -- (void)setMarkedText:(NSString *)aString selectedFrom:(int)from length:(int)length -{ - NSObject *textInput = [self textInput]; - - if (textInput) - [textInput setMarkedText:aString selectedRange:NSMakeRange(from, length)]; -} - -- (void)unmarkText -{ - NSObject *textInput = [self textInput]; - - if (textInput) - [textInput unmarkText]; -} - -- (BOOL)hasMarkedText -{ - NSObject *textInput = [self textInput]; - - if (textInput) - return [textInput hasMarkedText]; - - return FALSE; -} - -- (long)conversationIdentifier -{ - NSObject *textInput = [self textInput]; - - if (textInput) - return [textInput conversationIdentifier]; - - return 0; -} - -- (NSString *)substringFrom:(int)from length:(int)length -{ - NSObject *textInput = [self textInput]; - - if (textInput) - return [[textInput attributedSubstringFromRange:NSMakeRange(from, length)] string]; - - return @""; -} - -- (NSMutableAttributedString *)attributedSubstringFrom:(int)from length:(int)length -{ - NSObject *textInput = [self textInput]; - - NSMutableAttributedString *ret = [[[NSMutableAttributedString alloc] init] autorelease]; - - if (textInput) - [ret setAttributedString:[textInput attributedSubstringFromRange:NSMakeRange(from, length)]]; - - return ret; -} - -- (NSArray *)markedRange -{ - NSObject *textInput = [self textInput]; - - if (textInput) { - NSRange range = [textInput markedRange]; - return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:range.location], [NSNumber numberWithUnsignedInt:range.length], nil]; - } - - return nil; -} - -- (NSArray *)selectedRange -{ - NSObject *textInput = [self textInput]; - - if (textInput) { - NSRange range = [textInput selectedRange]; - return [NSArray arrayWithObjects:[NSNumber numberWithUnsignedInt:range.location], [NSNumber numberWithUnsignedInt:range.length], nil]; - } - - return nil; -} - - -- (NSArray *)firstRectForCharactersFrom:(int)from length:(int)length -{ - NSObject *textInput = [self textInput]; - - if (textInput) { - NSRect rect = [textInput firstRectForCharacterRange:NSMakeRange(from, length)]; - if (rect.origin.x || rect.origin.y || rect.size.width || rect.size.height) { - rect.origin = [[webView window] convertScreenToBase:rect.origin]; - rect = [webView convertRect:rect fromView:nil]; - } - return [NSArray arrayWithObjects: - [NSNumber numberWithFloat:rect.origin.x], - [NSNumber numberWithFloat:rect.origin.y], - [NSNumber numberWithFloat:rect.size.width], - [NSNumber numberWithFloat:rect.size.height], - nil]; - } - - return nil; -} - -- (NSInteger)characterIndexForPointX:(float)x Y:(float)y -{ - NSObject *textInput = [self textInput]; - - if (textInput) { - NSPoint point = NSMakePoint(x, y); - point = [webView convertPoint:point toView:nil]; - point = [[webView window] convertBaseToScreen:point]; - NSInteger index = [textInput characterIndexForPoint:point]; - if (index == NSNotFound) - return -1; - - return index; - } - - return 0; -} - -- (NSArray *)validAttributesForMarkedText -{ - NSObject *textInput = [self textInput]; - - if (textInput) - return [textInput validAttributesForMarkedText]; - - return nil; -} - -- (NSMutableAttributedString *)attributedStringWithString:(NSString *)aString -{ - return [[[NSMutableAttributedString alloc] initWithString:aString] autorelease]; -} - -- (void)setInputMethodHandler:(WebScriptObject *)handler -{ - if (inputMethodHandler == handler) - return; - [handler retain]; - [inputMethodHandler release]; - inputMethodHandler = handler; -} - -- (BOOL)interpretKeyEvents:(NSArray *)eventArray withSender:(WebHTMLView *)sender -{ - if (!inputMethodHandler) - return NO; - - inputMethodView = sender; - - NSEvent *event = [eventArray objectAtIndex:0]; - unsigned modifierFlags = [event modifierFlags]; - NSMutableArray *modifiers = [[NSMutableArray alloc] init]; - if (modifierFlags & NSAlphaShiftKeyMask) - [modifiers addObject:@"NSAlphaShiftKeyMask"]; - if (modifierFlags & NSShiftKeyMask) - [modifiers addObject:@"NSShiftKeyMask"]; - if (modifierFlags & NSControlKeyMask) - [modifiers addObject:@"NSControlKeyMask"]; - if (modifierFlags & NSAlternateKeyMask) - [modifiers addObject:@"NSAlternateKeyMask"]; - if (modifierFlags & NSCommandKeyMask) - [modifiers addObject:@"NSCommandKeyMask"]; - if (modifierFlags & NSNumericPadKeyMask) - [modifiers addObject:@"NSNumericPadKeyMask"]; - if (modifierFlags & NSHelpKeyMask) - [modifiers addObject:@"NSHelpKeyMask"]; - if (modifierFlags & NSFunctionKeyMask) - [modifiers addObject:@"NSFunctionKeyMask"]; - - WebScriptObject* eventParam = [inputMethodHandler evaluateWebScript:@"new Object();"]; - [eventParam setValue:[event characters] forKey:@"characters"]; - [eventParam setValue:[event charactersIgnoringModifiers] forKey:@"charactersIgnoringModifiers"]; - [eventParam setValue:[NSNumber numberWithBool:[event isARepeat]] forKey:@"isARepeat"]; - [eventParam setValue:[NSNumber numberWithUnsignedShort:[event keyCode]] forKey:@"keyCode"]; - [eventParam setValue:modifiers forKey:@"modifierFlags"]; - - [modifiers release]; - - id result = [inputMethodHandler callWebScriptMethod:@"call" withArguments:[NSArray arrayWithObjects:inputMethodHandler, eventParam, nil]]; - if (![result respondsToSelector:@selector(boolValue)] || ![result boolValue]) - [sender doCommandBySelector:@selector(noop:)]; // AppKit sends noop: if the ime does not handle an event - - inputMethodView = nil; - return YES; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/UIDelegate.h --- a/WebKitTools/DumpRenderTree/mac/UIDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -/* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import - -@interface UIDelegate : NSObject { - -@private - NSRect m_frame; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/UIDelegate.mm --- a/WebKitTools/DumpRenderTree/mac/UIDelegate.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,200 +0,0 @@ -/* - * Copyright (C) 2006. 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "UIDelegate.h" - -#import "DumpRenderTree.h" -#import "DumpRenderTreeDraggingInfo.h" -#import "EventSendingController.h" -#import "LayoutTestController.h" -#import -#import -#import -#import -#import -#import -#import - -DumpRenderTreeDraggingInfo *draggingInfo = nil; - -@implementation UIDelegate - -- (void)webView:(WebView *)sender setFrame:(NSRect)frame -{ - m_frame = frame; -} - -- (NSRect)webViewFrame:(WebView *)sender -{ - return m_frame; -} - -- (void)webView:(WebView *)sender addMessageToConsole:(NSDictionary *)dictionary -{ - NSString *message = [dictionary objectForKey:@"message"]; - NSNumber *lineNumber = [dictionary objectForKey:@"lineNumber"]; - - NSRange range = [message rangeOfString:@"file://"]; - if (range.location != NSNotFound) - message = [[message substringToIndex:range.location] stringByAppendingString:[[message substringFromIndex:NSMaxRange(range)] lastPathComponent]]; - - printf ("CONSOLE MESSAGE: line %d: %s\n", [lineNumber intValue], [message UTF8String]); -} - -- (void)modalWindowWillClose:(NSNotification *)notification -{ - [[NSNotificationCenter defaultCenter] removeObserver:self name:NSWindowWillCloseNotification object:nil]; - [NSApp abortModal]; -} - -- (void)webViewRunModal:(WebView *)sender -{ - gLayoutTestController->setWindowIsKey(false); - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(modalWindowWillClose:) name:NSWindowWillCloseNotification object:nil]; - [NSApp runModalForWindow:[sender window]]; - gLayoutTestController->setWindowIsKey(true); -} - -- (void)webView:(WebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame -{ - if (!done) - printf("ALERT: %s\n", [message UTF8String]); -} - -- (BOOL)webView:(WebView *)sender runJavaScriptConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame -{ - if (!done) - printf("CONFIRM: %s\n", [message UTF8String]); - return YES; -} - -- (NSString *)webView:(WebView *)sender runJavaScriptTextInputPanelWithPrompt:(NSString *)prompt defaultText:(NSString *)defaultText initiatedByFrame:(WebFrame *)frame -{ - if (!done) - printf("PROMPT: %s, default text: %s\n", [prompt UTF8String], [defaultText UTF8String]); - return defaultText; -} - -- (BOOL)webView:(WebView *)c runBeforeUnloadConfirmPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame -{ - if (!done) - printf("CONFIRM NAVIGATION: %s\n", [message UTF8String]); - return YES; -} - - -- (void)webView:(WebView *)sender dragImage:(NSImage *)anImage at:(NSPoint)viewLocation offset:(NSSize)initialOffset event:(NSEvent *)event pasteboard:(NSPasteboard *)pboard source:(id)sourceObj slideBack:(BOOL)slideFlag forView:(NSView *)view -{ - assert(!draggingInfo); - draggingInfo = [[DumpRenderTreeDraggingInfo alloc] initWithImage:anImage offset:initialOffset pasteboard:pboard source:sourceObj]; - [sender draggingUpdated:draggingInfo]; - [EventSendingController replaySavedEvents]; -} - -- (void)webViewFocus:(WebView *)webView -{ - gLayoutTestController->setWindowIsKey(true); -} - -- (void)webViewUnfocus:(WebView *)webView -{ - gLayoutTestController->setWindowIsKey(false); -} - -- (WebView *)webView:(WebView *)sender createWebViewWithRequest:(NSURLRequest *)request -{ - if (!gLayoutTestController->canOpenWindows()) - return nil; - - // Make sure that waitUntilDone has been called. - ASSERT(gLayoutTestController->waitToDump()); - - WebView *webView = createWebViewAndOffscreenWindow(); - - if (gLayoutTestController->newWindowsCopyBackForwardList()) - [webView _loadBackForwardListFromOtherView:sender]; - - return [webView autorelease]; -} - -- (void)webViewClose:(WebView *)sender -{ - NSWindow* window = [sender window]; - - if (gLayoutTestController->callCloseOnWebViews()) - [sender close]; - - [window close]; -} - -- (void)webView:(WebView *)sender frame:(WebFrame *)frame exceededDatabaseQuotaForSecurityOrigin:(WebSecurityOrigin *)origin database:(NSString *)databaseIdentifier -{ - if (!done && gLayoutTestController->dumpDatabaseCallbacks()) - printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", [[origin protocol] UTF8String], [[origin host] UTF8String], - [origin port], [databaseIdentifier UTF8String]); - - static const unsigned long long defaultQuota = 5 * 1024 * 1024; - [origin setQuota:defaultQuota]; -} - -- (void)webView:(WebView *)sender setStatusText:(NSString *)text -{ - if (gLayoutTestController->dumpStatusCallbacks()) - printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", [text UTF8String]); -} - -- (void)webView:(WebView *)webView decidePolicyForGeolocationRequestFromOrigin:(WebSecurityOrigin *)origin frame:(WebFrame *)frame listener:(id)listener -{ - // FIXME: If mock permission isn't set yet, we should send the response asynchronously. - if (gLayoutTestController->isGeolocationPermissionSet() && gLayoutTestController->geolocationPermission()) - [listener allow]; - else - [listener deny]; -} - -- (BOOL)webView:(WebView *)sender shouldHaltPlugin:(DOMNode *)pluginNode -{ - return NO; -} - -- (BOOL)webView:(WebView *)webView didPressMissingPluginButton:(DOMElement *)element -{ - printf("MISSING PLUGIN BUTTON PRESSED\n"); - return TRUE; -} - -- (void)dealloc -{ - [draggingInfo release]; - draggingInfo = nil; - - [super dealloc]; -} - -@end diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/mac/WorkQueueItemMac.mm --- a/WebKitTools/DumpRenderTree/mac/WorkQueueItemMac.mm Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,91 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#import "config.h" -#import "DumpRenderTree.h" -#import "WorkQueueItem.h" - -#import -#import -#import -#import -#import -#import -#import - -bool LoadItem::invoke() const -{ - RetainPtr urlCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_url.get())); - NSString *urlNS = (NSString *)urlCF.get(); - RetainPtr targetCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_target.get())); - NSString *targetNS = (NSString *)targetCF.get(); - - WebFrame *targetFrame; - if (targetNS && [targetNS length]) - targetFrame = [mainFrame findFrameNamed:targetNS]; - else - targetFrame = mainFrame; - [targetFrame loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlNS]]]; - return true; -} - -bool LoadHTMLStringItem::invoke() const -{ - RetainPtr contentCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_content.get())); - RetainPtr baseURLCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_baseURL.get())); - - [mainFrame loadHTMLString:(NSString *)contentCF.get() baseURL:[NSURL URLWithString:(NSString *)baseURLCF.get()]]; - return true; -} - -bool ReloadItem::invoke() const -{ - [[mainFrame webView] reload:nil]; - return true; -} - -bool ScriptItem::invoke() const -{ - RetainPtr scriptCF(AdoptCF, JSStringCopyCFString(kCFAllocatorDefault, m_script.get())); - NSString *scriptNS = (NSString *)scriptCF.get(); - [[mainFrame webView] stringByEvaluatingJavaScriptFromString:scriptNS]; - return true; -} - -bool BackForwardItem::invoke() const -{ - if (m_howFar == 1) - [[mainFrame webView] goForward]; - else if (m_howFar == -1) - [[mainFrame webView] goBack]; - else { - WebBackForwardList *bfList = [[mainFrame webView] backForwardList]; - [[mainFrame webView] goToBackForwardItem:[bfList itemAtIndex:m_howFar]]; - } - return true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp --- a/WebKitTools/DumpRenderTree/pthreads/JavaScriptThreadingPthreads.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,138 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * (C) 2007 Graham Dennis (graham.dennis@gmail.com) - * (C) 2007 Eric Seidel - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "JavaScriptThreading.h" - -#include -#include -#include -#include -#include - -static pthread_mutex_t javaScriptThreadsMutex = PTHREAD_MUTEX_INITIALIZER; -static bool javaScriptThreadsShouldTerminate; - -static const int javaScriptThreadsCount = 4; - -typedef HashSet ThreadSet; - -static ThreadSet* javaScriptThreads() -{ - ASSERT(pthread_mutex_trylock(&javaScriptThreadsMutex) == EBUSY); - static ThreadSet staticJavaScriptThreads; - return &staticJavaScriptThreads; -} - -// Loops forever, running a script and randomly respawning, until -// javaScriptThreadsShouldTerminate becomes true. -void* runJavaScriptThread(void* arg) -{ - const char* const script = - "var array = [];" - "for (var i = 0; i < 10; i++) {" - " array.push(String(i));" - "}"; - - while (1) { - JSGlobalContextRef ctx = JSGlobalContextCreate(0); - JSStringRef scriptRef = JSStringCreateWithUTF8CString(script); - - JSValueRef exception = 0; - JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception); - ASSERT(!exception); - - JSGarbageCollect(ctx); - JSGlobalContextRelease(ctx); - JSStringRelease(scriptRef); - - JSGarbageCollect(0); - - pthread_mutex_lock(&javaScriptThreadsMutex); - - // Check for cancellation. - if (javaScriptThreadsShouldTerminate) { - javaScriptThreads()->remove(pthread_self()); - pthread_mutex_unlock(&javaScriptThreadsMutex); - return 0; - } - - // Respawn probabilistically. - if (random() % 5 == 0) { - pthread_t pthread; - pthread_create(&pthread, 0, &runJavaScriptThread, 0); - pthread_detach(pthread); - - javaScriptThreads()->remove(pthread_self()); - javaScriptThreads()->add(pthread); - - pthread_mutex_unlock(&javaScriptThreadsMutex); - return 0; - } - - pthread_mutex_unlock(&javaScriptThreadsMutex); - } -} - -void startJavaScriptThreads() -{ - pthread_mutex_lock(&javaScriptThreadsMutex); - - for (int i = 0; i < javaScriptThreadsCount; i++) { - pthread_t pthread; - pthread_create(&pthread, 0, &runJavaScriptThread, 0); - pthread_detach(pthread); - javaScriptThreads()->add(pthread); - } - - pthread_mutex_unlock(&javaScriptThreadsMutex); -} - -void stopJavaScriptThreads() -{ - pthread_mutex_lock(&javaScriptThreadsMutex); - - javaScriptThreadsShouldTerminate = true; - - ASSERT(javaScriptThreads()->size() == javaScriptThreadsCount); - - pthread_mutex_unlock(&javaScriptThreadsMutex); - - while (true) { - pthread_mutex_lock(&javaScriptThreadsMutex); - int threadCount = javaScriptThreads()->size(); - pthread_mutex_unlock(&javaScriptThreadsMutex); - - if (!threadCount) - break; - - usleep(1000); - } -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree.loc --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "DumpRenderTree" -#define STRING_r_caption "DumpRenderTree" -#else -#define STRING_r_short_caption "DumpRenderTree" -#define STRING_r_caption "DumpRenderTree" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -TARGET = DumpRenderTree -CONFIG -= app_bundle -CONFIG += uitools - -BASEDIR = $$PWD/../ -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../.. - -include(../../../WebKit.pri) -INCLUDEPATH += /usr/include/freetype2 -INCLUDEPATH += ../../.. -INCLUDEPATH += ../../../JavaScriptCore -INCLUDEPATH += ../../../JavaScriptCore/ForwardingHeaders -INCLUDEPATH += $$BASEDIR -DESTDIR = ../../../bin - -!win32:!symbian { - CONFIG += link_pkgconfig - PKGCONFIG += fontconfig -} - -QT = core gui network testlib -macx: QT += xml - -HEADERS = $$BASEDIR/WorkQueue.h \ - DumpRenderTreeQt.h \ - EventSenderQt.h \ - TextInputControllerQt.h \ - WorkQueueItemQt.h \ - LayoutTestControllerQt.h \ - GCControllerQt.h \ - testplugin.h -SOURCES = ../../../JavaScriptCore/wtf/Assertions.cpp \ - $$BASEDIR/WorkQueue.cpp \ - DumpRenderTreeQt.cpp \ - EventSenderQt.cpp \ - TextInputControllerQt.cpp \ - WorkQueueItemQt.cpp \ - LayoutTestControllerQt.cpp \ - GCControllerQt.cpp \ - testplugin.cpp \ - main.cpp - -unix:!mac { - QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR -} - -DEFINES+=USE_SYSTEM_MALLOC diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree.rss --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1054 +0,0 @@ -/* - * Copyright (C) 2005, 2006 Apple Computer, Inc. All rights reserved. - * Copyright (C) 2006 Nikolas Zimmermann - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" - -#include "DumpRenderTreeQt.h" -#include "../../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" -#include "EventSenderQt.h" -#include "GCControllerQt.h" -#include "LayoutTestControllerQt.h" -#include "TextInputControllerQt.h" -#include "testplugin.h" -#include "WorkQueue.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#ifndef QT_NO_PRINTER -#include -#endif -#include -#include - -#include -#include - -#ifndef QT_NO_UITOOLS -#include -#endif - -#ifdef Q_WS_X11 -#include -#endif - -#include -#include - -#ifndef Q_OS_WIN -#include -#endif - -#include - -namespace WebCore { - -NetworkAccessManager::NetworkAccessManager(QObject* parent) - : QNetworkAccessManager(parent) -{ -#ifndef QT_NO_OPENSSL - connect(this, SIGNAL(sslErrors(QNetworkReply*, const QList&)), - this, SLOT(sslErrorsEncountered(QNetworkReply*, const QList&))); -#endif -} - -#ifndef QT_NO_OPENSSL -void NetworkAccessManager::sslErrorsEncountered(QNetworkReply* reply, const QList& errors) -{ - if (reply->url().host() == "127.0.0.1" || reply->url().host() == "localhost") { - bool ignore = true; - - // Accept any HTTPS certificate. - foreach (const QSslError& error, errors) { - if (error.error() < QSslError::UnableToGetIssuerCertificate || error.error() > QSslError::HostNameMismatch) { - ignore = false; - break; - } - } - - if (ignore) - reply->ignoreSslErrors(); - } -} -#endif - - -#ifndef QT_NO_PRINTER -class NullPrinter : public QPrinter { -public: - class NullPaintEngine : public QPaintEngine { - public: - virtual bool begin(QPaintDevice*) { return true; } - virtual bool end() { return true; } - virtual QPaintEngine::Type type() const { return QPaintEngine::User; } - virtual void drawPixmap(const QRectF& r, const QPixmap& pm, const QRectF& sr) { } - virtual void updateState(const QPaintEngineState& state) { } - }; - - virtual QPaintEngine* paintEngine() const { return const_cast(&m_engine); } - - NullPaintEngine m_engine; -}; -#endif - -WebPage::WebPage(QObject* parent, DumpRenderTree* drt) - : QWebPage(parent) - , m_webInspector(0) - , m_drt(drt) -{ - QWebSettings* globalSettings = QWebSettings::globalSettings(); - - globalSettings->setFontSize(QWebSettings::MinimumFontSize, 5); - globalSettings->setFontSize(QWebSettings::MinimumLogicalFontSize, 5); - globalSettings->setFontSize(QWebSettings::DefaultFontSize, 16); - globalSettings->setFontSize(QWebSettings::DefaultFixedFontSize, 13); - - globalSettings->setAttribute(QWebSettings::JavascriptCanOpenWindows, true); - globalSettings->setAttribute(QWebSettings::JavascriptCanAccessClipboard, true); - globalSettings->setAttribute(QWebSettings::LinksIncludedInFocusChain, false); - globalSettings->setAttribute(QWebSettings::PluginsEnabled, true); - globalSettings->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, true); - globalSettings->setAttribute(QWebSettings::JavascriptEnabled, true); - globalSettings->setAttribute(QWebSettings::PrivateBrowsingEnabled, false); - globalSettings->setAttribute(QWebSettings::SpatialNavigationEnabled, false); - - connect(this, SIGNAL(geometryChangeRequested(const QRect &)), - this, SLOT(setViewGeometry(const QRect & ))); - - setNetworkAccessManager(m_drt->networkAccessManager()); - setPluginFactory(new TestPlugin(this)); - - connect(this, SIGNAL(requestPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain)), this, SLOT(requestPermission(QWebFrame*, QWebPage::PermissionDomain))); - connect(this, SIGNAL(checkPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain, QWebPage::PermissionPolicy&)), this, SLOT(checkPermission(QWebFrame*, QWebPage::PermissionDomain, QWebPage::PermissionPolicy&))); - connect(this, SIGNAL(cancelRequestsForPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain)), this, SLOT(cancelRequestsForPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain))); -} - -WebPage::~WebPage() -{ - delete m_webInspector; -} - -QWebInspector* WebPage::webInspector() -{ - if (!m_webInspector) { - m_webInspector = new QWebInspector; - m_webInspector->setPage(this); - } - return m_webInspector; -} - -void WebPage::resetSettings() -{ - // After each layout test, reset the settings that may have been changed by - // layoutTestController.overridePreference() or similar. - settings()->resetFontSize(QWebSettings::DefaultFontSize); - settings()->resetAttribute(QWebSettings::JavascriptCanOpenWindows); - settings()->resetAttribute(QWebSettings::JavascriptEnabled); - settings()->resetAttribute(QWebSettings::PrivateBrowsingEnabled); - settings()->resetAttribute(QWebSettings::SpatialNavigationEnabled); - settings()->resetAttribute(QWebSettings::LinksIncludedInFocusChain); - settings()->resetAttribute(QWebSettings::OfflineWebApplicationCacheEnabled); - settings()->resetAttribute(QWebSettings::LocalContentCanAccessRemoteUrls); - settings()->resetAttribute(QWebSettings::PluginsEnabled); - settings()->resetAttribute(QWebSettings::JavascriptCanAccessClipboard); - settings()->resetAttribute(QWebSettings::AutoLoadImages); - - m_drt->layoutTestController()->setCaretBrowsingEnabled(false); - m_drt->layoutTestController()->setFrameFlatteningEnabled(false); - m_drt->layoutTestController()->setSmartInsertDeleteEnabled(true); - m_drt->layoutTestController()->setSelectTrailingWhitespaceEnabled(false); - - // globalSettings must be reset explicitly. - m_drt->layoutTestController()->setXSSAuditorEnabled(false); - - QWebSettings::setMaximumPagesInCache(0); // reset to default - settings()->setUserStyleSheetUrl(QUrl()); // reset to default -} - -QWebPage *WebPage::createWindow(QWebPage::WebWindowType) -{ - return m_drt->createWindow(); -} - -void WebPage::javaScriptAlert(QWebFrame*, const QString& message) -{ - if (!isTextOutputEnabled()) - return; - - fprintf(stdout, "ALERT: %s\n", message.toUtf8().constData()); -} - -void WebPage::requestPermission(QWebFrame* frame, QWebPage::PermissionDomain domain) -{ - switch (domain) { - case NotificationsPermissionDomain: - if (!m_drt->layoutTestController()->ignoreReqestForPermission()) - setUserPermission(frame, domain, PermissionGranted); - break; - default: - break; - } -} - -void WebPage::checkPermission(QWebFrame* frame, QWebPage::PermissionDomain domain, QWebPage::PermissionPolicy& policy) -{ - switch (domain) { - case NotificationsPermissionDomain: - { - QUrl url = frame->url(); - policy = m_drt->layoutTestController()->checkDesktopNotificationPermission(url.scheme() + "://" + url.host()) ? PermissionGranted : PermissionDenied; - break; - } - default: - break; - } -} - -void WebPage::cancelRequestsForPermission(QWebFrame*, QWebPage::PermissionDomain) -{ -} - -static QString urlSuitableForTestResult(const QString& url) -{ - if (url.isEmpty() || !url.startsWith(QLatin1String("file://"))) - return url; - - return QFileInfo(url).fileName(); -} - -void WebPage::javaScriptConsoleMessage(const QString& message, int lineNumber, const QString&) -{ - if (!isTextOutputEnabled()) - return; - - QString newMessage; - if (!message.isEmpty()) { - newMessage = message; - - size_t fileProtocol = newMessage.indexOf(QLatin1String("file://")); - if (fileProtocol != -1) { - newMessage = newMessage.left(fileProtocol) + urlSuitableForTestResult(newMessage.mid(fileProtocol)); - } - } - - fprintf (stdout, "CONSOLE MESSAGE: line %d: %s\n", lineNumber, newMessage.toUtf8().constData()); -} - -bool WebPage::javaScriptConfirm(QWebFrame*, const QString& msg) -{ - if (!isTextOutputEnabled()) - return true; - - fprintf(stdout, "CONFIRM: %s\n", msg.toUtf8().constData()); - return true; -} - -bool WebPage::javaScriptPrompt(QWebFrame*, const QString& msg, const QString& defaultValue, QString* result) -{ - if (!isTextOutputEnabled()) - return true; - - fprintf(stdout, "PROMPT: %s, default text: %s\n", msg.toUtf8().constData(), defaultValue.toUtf8().constData()); - *result = defaultValue; - return true; -} - -bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type) -{ - if (m_drt->layoutTestController()->waitForPolicy()) { - QString url = QString::fromUtf8(request.url().toEncoded()); - QString typeDescription; - - switch (type) { - case NavigationTypeLinkClicked: - typeDescription = "link clicked"; - break; - case NavigationTypeFormSubmitted: - typeDescription = "form submitted"; - break; - case NavigationTypeBackOrForward: - typeDescription = "back/forward"; - break; - case NavigationTypeReload: - typeDescription = "reload"; - break; - case NavigationTypeFormResubmitted: - typeDescription = "form resubmitted"; - break; - case NavigationTypeOther: - typeDescription = "other"; - break; - default: - typeDescription = "illegal value"; - } - - if (isTextOutputEnabled()) - fprintf(stdout, "Policy delegate: attempt to load %s with navigation type '%s'\n", - url.toUtf8().constData(), typeDescription.toUtf8().constData()); - - m_drt->layoutTestController()->notifyDone(); - } - return QWebPage::acceptNavigationRequest(frame, request, type); -} - -bool WebPage::supportsExtension(QWebPage::Extension extension) const -{ - if (extension == QWebPage::ErrorPageExtension) - return m_drt->layoutTestController()->shouldHandleErrorPages(); - - return false; -} - -bool WebPage::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output) -{ - const QWebPage::ErrorPageExtensionOption* info = static_cast(option); - - // Lets handle error pages for the main frame for now. - if (info->frame != mainFrame()) - return false; - - QWebPage::ErrorPageExtensionReturn* errorPage = static_cast(output); - - errorPage->content = QString("data:text/html,").toUtf8(); - - return true; -} - -QObject* WebPage::createPlugin(const QString& classId, const QUrl& url, const QStringList& paramNames, const QStringList& paramValues) -{ - Q_UNUSED(url); - Q_UNUSED(paramNames); - Q_UNUSED(paramValues); -#ifndef QT_NO_UITOOLS - QUiLoader loader; - return loader.createWidget(classId, view()); -#else - Q_UNUSED(classId); - return 0; -#endif -} - -bool WebPage::allowGeolocationRequest(QWebFrame *) -{ - return m_drt->layoutTestController()->geolocationPermission(); -} - -void WebPage::setViewGeometry(const QRect& rect) -{ - if (WebViewGraphicsBased* v = qobject_cast(view())) - v->scene()->setSceneRect(QRectF(rect)); - else if (QWidget *v = view()) - v->setGeometry(rect); -} - -WebViewGraphicsBased::WebViewGraphicsBased(QWidget* parent) - : m_item(new QGraphicsWebView) -{ - setScene(new QGraphicsScene(this)); - scene()->addItem(m_item); -} - -DumpRenderTree::DumpRenderTree() - : m_dumpPixels(false) - , m_stdin(0) - , m_enableTextOutput(false) - , m_singleFileMode(false) - , m_graphicsBased(false) - , m_persistentStoragePath(QString(getenv("DUMPRENDERTREE_TEMP"))) -{ - - QByteArray viewMode = getenv("QT_DRT_WEBVIEW_MODE"); - if (viewMode == "graphics") - setGraphicsBased(true); - - DumpRenderTreeSupportQt::overwritePluginDirectories(); - - QWebSettings::enablePersistentStorage(m_persistentStoragePath); - - m_networkAccessManager = new NetworkAccessManager(this); - // create our primary testing page/view. - if (isGraphicsBased()) { - WebViewGraphicsBased* view = new WebViewGraphicsBased(0); - m_page = new WebPage(view, this); - view->setPage(m_page); - m_mainView = view; - } else { - QWebView* view = new QWebView(0); - m_page = new WebPage(view, this); - view->setPage(m_page); - m_mainView = view; - } - - m_mainView->setContextMenuPolicy(Qt::NoContextMenu); - m_mainView->resize(QSize(LayoutTestController::maxViewWidth, LayoutTestController::maxViewHeight)); - - // clean up cache by resetting quota. - qint64 quota = webPage()->settings()->offlineWebApplicationCacheQuota(); - webPage()->settings()->setOfflineWebApplicationCacheQuota(quota); - - // create our controllers. This has to be done before connectFrame, - // as it exports there to the JavaScript DOM window. - m_controller = new LayoutTestController(this); - connect(m_controller, SIGNAL(showPage()), this, SLOT(showPage())); - connect(m_controller, SIGNAL(hidePage()), this, SLOT(hidePage())); - - connect(m_controller, SIGNAL(done()), this, SLOT(dump())); - m_eventSender = new EventSender(m_page); - m_textInputController = new TextInputController(m_page); - m_gcController = new GCController(m_page); - - // now connect our different signals - connect(m_page, SIGNAL(frameCreated(QWebFrame *)), - this, SLOT(connectFrame(QWebFrame *))); - connectFrame(m_page->mainFrame()); - - connect(m_page, SIGNAL(loadFinished(bool)), - m_controller, SLOT(maybeDump(bool))); - // We need to connect to loadStarted() because notifyDone should only - // dump results itself when the last page loaded in the test has finished loading. - connect(m_page, SIGNAL(loadStarted()), - m_controller, SLOT(resetLoadFinished())); - connect(m_page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); - connect(m_page, SIGNAL(printRequested(QWebFrame*)), this, SLOT(dryRunPrint(QWebFrame*))); - - connect(m_page->mainFrame(), SIGNAL(titleChanged(const QString&)), - SLOT(titleChanged(const QString&))); - connect(m_page, SIGNAL(databaseQuotaExceeded(QWebFrame*,QString)), - this, SLOT(dumpDatabaseQuota(QWebFrame*,QString))); - connect(m_page, SIGNAL(statusBarMessage(const QString&)), - this, SLOT(statusBarMessage(const QString&))); - - QObject::connect(this, SIGNAL(quit()), qApp, SLOT(quit()), Qt::QueuedConnection); - - DumpRenderTreeSupportQt::setDumpRenderTreeModeEnabled(true); - QFocusEvent event(QEvent::FocusIn, Qt::ActiveWindowFocusReason); - QApplication::sendEvent(m_mainView, &event); -} - -DumpRenderTree::~DumpRenderTree() -{ - delete m_mainView; - delete m_stdin; -} - -static void clearHistory(QWebPage* page) -{ - // QWebHistory::clear() leaves current page, so remove it as well by setting - // max item count to 0, and then setting it back to it's original value. - - QWebHistory* history = page->history(); - int itemCount = history->maximumItemCount(); - - history->clear(); - history->setMaximumItemCount(0); - history->setMaximumItemCount(itemCount); -} - -void DumpRenderTree::dryRunPrint(QWebFrame* frame) -{ -#ifndef QT_NO_PRINTER - NullPrinter printer; - frame->print(&printer); -#endif -} - -void DumpRenderTree::resetToConsistentStateBeforeTesting() -{ - // reset so that any current loads are stopped - // NOTE: that this has to be done before the layoutTestController is - // reset or we get timeouts for some tests. - m_page->blockSignals(true); - m_page->triggerAction(QWebPage::Stop); - m_page->blockSignals(false); - - // reset the layoutTestController at this point, so that we under no - // circumstance dump (stop the waitUntilDone timer) during the reset - // of the DRT. - m_controller->reset(); - - // reset mouse clicks counter - m_eventSender->resetClickCount(); - - closeRemainingWindows(); - - m_page->resetSettings(); - m_page->undoStack()->clear(); - m_page->mainFrame()->setZoomFactor(1.0); - clearHistory(m_page); - DumpRenderTreeSupportQt::clearFrameName(m_page->mainFrame()); - - m_page->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAsNeeded); - m_page->mainFrame()->setScrollBarPolicy(Qt::Horizontal, Qt::ScrollBarAsNeeded); - - WorkQueue::shared()->clear(); - WorkQueue::shared()->setFrozen(false); - - DumpRenderTreeSupportQt::resetOriginAccessWhiteLists(); - - // Qt defaults to Windows editing behavior. - DumpRenderTreeSupportQt::setEditingBehavior(m_page, "win"); - - QLocale::setDefault(QLocale::c()); - setlocale(LC_ALL, ""); -} - -static bool isWebInspectorTest(const QUrl& url) -{ - if (url.path().contains("inspector/")) - return true; - return false; -} - -static bool shouldEnableDeveloperExtras(const QUrl& url) -{ - return isWebInspectorTest(url) || url.path().contains("inspector-enabled/"); -} - -void DumpRenderTree::open(const QUrl& url) -{ - DumpRenderTreeSupportQt::dumpResourceLoadCallbacksPath(QFileInfo(url.toString()).path()); - resetToConsistentStateBeforeTesting(); - - if (shouldEnableDeveloperExtras(m_page->mainFrame()->url())) { - layoutTestController()->closeWebInspector(); - layoutTestController()->setDeveloperExtrasEnabled(false); - } - - if (shouldEnableDeveloperExtras(url)) { - layoutTestController()->setDeveloperExtrasEnabled(true); - if (isWebInspectorTest(url)) - layoutTestController()->showWebInspector(); - } - - // W3C SVG tests expect to be 480x360 - bool isW3CTest = url.toString().contains("svg/W3C-SVG-1.1"); - int width = isW3CTest ? 480 : LayoutTestController::maxViewWidth; - int height = isW3CTest ? 360 : LayoutTestController::maxViewHeight; - m_mainView->resize(QSize(width, height)); - m_page->setPreferredContentsSize(QSize()); - m_page->setViewportSize(QSize(width, height)); - - QFocusEvent ev(QEvent::FocusIn); - m_page->event(&ev); - - QWebSettings::clearMemoryCaches(); -#if !(defined(Q_WS_S60) && QT_VERSION <= QT_VERSION_CHECK(4, 6, 2)) - QFontDatabase::removeAllApplicationFonts(); -#endif -#if defined(Q_WS_X11) - initializeFonts(); -#endif - - DumpRenderTreeSupportQt::dumpFrameLoader(url.toString().contains("loading/")); - setTextOutputEnabled(true); - m_page->mainFrame()->load(url); -} - -void DumpRenderTree::readLine() -{ - if (!m_stdin) { - m_stdin = new QFile; - m_stdin->open(stdin, QFile::ReadOnly); - - if (!m_stdin->isReadable()) { - emit quit(); - return; - } - } - - QByteArray line = m_stdin->readLine().trimmed(); - - if (line.isEmpty()) { - emit quit(); - return; - } - - processLine(QString::fromLocal8Bit(line.constData(), line.length())); -} - -void DumpRenderTree::processLine(const QString &input) -{ - QString line = input; - - m_expectedHash = QString(); - if (m_dumpPixels) { - // single quote marks the pixel dump hash - int i = line.indexOf('\''); - if (i > -1) { - m_expectedHash = line.mid(i + 1, line.length()); - line.remove(i, line.length()); - } - } - - if (line.startsWith(QLatin1String("http:")) - || line.startsWith(QLatin1String("https:")) - || line.startsWith(QLatin1String("file:"))) { - open(QUrl(line)); - } else { - QFileInfo fi(line); - - if (!fi.exists()) { - QDir currentDir = QDir::currentPath(); - - // Try to be smart about where the test is located - if (currentDir.dirName() == QLatin1String("LayoutTests")) - fi = QFileInfo(currentDir, line.replace(QRegExp(".*?LayoutTests/(.*)"), "\\1")); - else if (!line.contains(QLatin1String("LayoutTests"))) - fi = QFileInfo(currentDir, line.prepend(QLatin1String("LayoutTests/"))); - - if (!fi.exists()) { - if (isSingleFileMode()) - emit quit(); - else - emit ready(); - - return; - } - - } - - open(QUrl::fromLocalFile(fi.absoluteFilePath())); - } - - fflush(stdout); -} - -void DumpRenderTree::setDumpPixels(bool dump) -{ - m_dumpPixels = dump; -} - -void DumpRenderTree::closeRemainingWindows() -{ - foreach (QObject* widget, windows) - delete widget; - windows.clear(); -} - -void DumpRenderTree::initJSObjects() -{ - QWebFrame *frame = qobject_cast(sender()); - Q_ASSERT(frame); - frame->addToJavaScriptWindowObject(QLatin1String("layoutTestController"), m_controller); - frame->addToJavaScriptWindowObject(QLatin1String("eventSender"), m_eventSender); - frame->addToJavaScriptWindowObject(QLatin1String("textInputController"), m_textInputController); - frame->addToJavaScriptWindowObject(QLatin1String("GCController"), m_gcController); -} - -void DumpRenderTree::showPage() -{ - m_mainView->show(); - // we need a paint event but cannot process all the events - QPixmap pixmap(m_mainView->size()); - m_mainView->render(&pixmap); -} - -void DumpRenderTree::hidePage() -{ - m_mainView->hide(); -} - -QString DumpRenderTree::dumpFrameScrollPosition(QWebFrame* frame) -{ - if (!frame || !DumpRenderTreeSupportQt::hasDocumentElement(frame)) - return QString(); - - QString result; - QPoint pos = frame->scrollPosition(); - if (pos.x() > 0 || pos.y() > 0) { - QWebFrame* parent = qobject_cast(frame->parent()); - if (parent) - result.append(QString("frame '%1' ").arg(frame->title())); - result.append(QString("scrolled to %1,%2\n").arg(pos.x()).arg(pos.y())); - } - - if (m_controller->shouldDumpChildFrameScrollPositions()) { - QList children = frame->childFrames(); - for (int i = 0; i < children.size(); ++i) - result += dumpFrameScrollPosition(children.at(i)); - } - return result; -} - -QString DumpRenderTree::dumpFramesAsText(QWebFrame* frame) -{ - if (!frame || !DumpRenderTreeSupportQt::hasDocumentElement(frame)) - return QString(); - - QString result; - QWebFrame* parent = qobject_cast(frame->parent()); - if (parent) { - result.append(QLatin1String("\n--------\nFrame: '")); - result.append(frame->frameName()); - result.append(QLatin1String("'\n--------\n")); - } - - QString innerText = frame->toPlainText(); - result.append(innerText); - result.append(QLatin1String("\n")); - - if (m_controller->shouldDumpChildrenAsText()) { - QList children = frame->childFrames(); - for (int i = 0; i < children.size(); ++i) - result += dumpFramesAsText(children.at(i)); - } - - return result; -} - -static QString dumpHistoryItem(const QWebHistoryItem& item, int indent, bool current) -{ - QString result; - - int start = 0; - if (current) { - result.append(QLatin1String("curr->")); - start = 6; - } - for (int i = start; i < indent; i++) - result.append(' '); - - QString url = item.url().toString(); - if (url.contains("file://")) { - static QString layoutTestsString("/LayoutTests/"); - static QString fileTestString("(file test):"); - - QString res = url.mid(url.indexOf(layoutTestsString) + layoutTestsString.length()); - if (res.isEmpty()) - return result; - - result.append(fileTestString); - result.append(res); - } else { - result.append(url); - } - - QString target = DumpRenderTreeSupportQt::historyItemTarget(item); - if (!target.isEmpty()) - result.append(QString(QLatin1String(" (in frame \"%1\")")).arg(target)); - - if (DumpRenderTreeSupportQt::isTargetItem(item)) - result.append(QLatin1String(" **nav target**")); - result.append(QLatin1String("\n")); - - QMap children = DumpRenderTreeSupportQt::getChildHistoryItems(item); - foreach (QWebHistoryItem item, children) - result += dumpHistoryItem(item, 12, false); - - return result; -} - -QString DumpRenderTree::dumpBackForwardList(QWebPage* page) -{ - QWebHistory* history = page->history(); - - QString result; - result.append(QLatin1String("\n============== Back Forward List ==============\n")); - - // FORMAT: - // " (file test):fast/loader/resources/click-fragment-link.html **nav target**" - // "curr-> (file test):fast/loader/resources/click-fragment-link.html#testfragment **nav target**" - - int maxItems = history->maximumItemCount(); - - foreach (const QWebHistoryItem item, history->backItems(maxItems)) { - if (!item.isValid()) - continue; - result.append(dumpHistoryItem(item, 8, false)); - } - - QWebHistoryItem item = history->currentItem(); - if (item.isValid()) - result.append(dumpHistoryItem(item, 8, true)); - - foreach (const QWebHistoryItem item, history->forwardItems(maxItems)) { - if (!item.isValid()) - continue; - result.append(dumpHistoryItem(item, 8, false)); - } - - result.append(QLatin1String("===============================================\n")); - return result; -} - -static const char *methodNameStringForFailedTest(LayoutTestController *controller) -{ - const char *errorMessage; - if (controller->shouldDumpAsText()) - errorMessage = "[documentElement innerText]"; - // FIXME: Add when we have support - //else if (controller->dumpDOMAsWebArchive()) - // errorMessage = "[[mainFrame DOMDocument] webArchive]"; - //else if (controller->dumpSourceAsWebArchive()) - // errorMessage = "[[mainFrame dataSource] webArchive]"; - else - errorMessage = "[mainFrame renderTreeAsExternalRepresentation]"; - - return errorMessage; -} - -void DumpRenderTree::dump() -{ - // Prevent any further frame load or resource load callbacks from appearing after we dump the result. - DumpRenderTreeSupportQt::dumpFrameLoader(false); - DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(false); - - QWebFrame *mainFrame = m_page->mainFrame(); - - if (isSingleFileMode()) { - QString markup = mainFrame->toHtml(); - fprintf(stdout, "Source:\n\n%s\n", markup.toUtf8().constData()); - } - - // Dump render text... - QString resultString; - if (m_controller->shouldDumpAsText()) - resultString = dumpFramesAsText(mainFrame); - else { - resultString = mainFrame->renderTreeDump(); - resultString += dumpFrameScrollPosition(mainFrame); - } - if (!resultString.isEmpty()) { - fprintf(stdout, "Content-Type: text/plain\n"); - fprintf(stdout, "%s", resultString.toUtf8().constData()); - - if (m_controller->shouldDumpBackForwardList()) { - fprintf(stdout, "%s", dumpBackForwardList(webPage()).toUtf8().constData()); - foreach (QObject* widget, windows) { - QWebPage* page = qobject_cast(widget->findChild()); - fprintf(stdout, "%s", dumpBackForwardList(page).toUtf8().constData()); - } - } - - } else - printf("ERROR: nil result from %s", methodNameStringForFailedTest(m_controller)); - - // signal end of text block - fputs("#EOF\n", stdout); - fputs("#EOF\n", stderr); - - // FIXME: All other ports don't dump pixels, if generatePixelResults is false. - if (m_dumpPixels) { - QImage image(m_page->viewportSize(), QImage::Format_ARGB32); - image.fill(Qt::white); - QPainter painter(&image); - mainFrame->render(&painter); - painter.end(); - - QCryptographicHash hash(QCryptographicHash::Md5); - for (int row = 0; row < image.height(); ++row) - hash.addData(reinterpret_cast(image.scanLine(row)), image.width() * 4); - QString actualHash = hash.result().toHex(); - - fprintf(stdout, "\nActualHash: %s\n", qPrintable(actualHash)); - - bool dumpImage = true; - - if (!m_expectedHash.isEmpty()) { - Q_ASSERT(m_expectedHash.length() == 32); - fprintf(stdout, "\nExpectedHash: %s\n", qPrintable(m_expectedHash)); - - if (m_expectedHash == actualHash) - dumpImage = false; - } - - if (dumpImage) { - QBuffer buffer; - buffer.open(QBuffer::WriteOnly); - image.save(&buffer, "PNG"); - buffer.close(); - const QByteArray &data = buffer.data(); - - printf("Content-Type: %s\n", "image/png"); - printf("Content-Length: %lu\n", static_cast(data.length())); - - const quint32 bytesToWriteInOneChunk = 1 << 15; - quint32 dataRemainingToWrite = data.length(); - const char *ptr = data.data(); - while (dataRemainingToWrite) { - quint32 bytesToWriteInThisChunk = qMin(dataRemainingToWrite, bytesToWriteInOneChunk); - quint32 bytesWritten = fwrite(ptr, 1, bytesToWriteInThisChunk, stdout); - if (bytesWritten != bytesToWriteInThisChunk) - break; - dataRemainingToWrite -= bytesWritten; - ptr += bytesWritten; - } - } - - fflush(stdout); - } - - puts("#EOF"); // terminate the (possibly empty) pixels block - - fflush(stdout); - fflush(stderr); - - if (isSingleFileMode()) - emit quit(); - else - emit ready(); -} - -void DumpRenderTree::titleChanged(const QString &s) -{ - if (m_controller->shouldDumpTitleChanges()) - printf("TITLE CHANGED: %s\n", s.toUtf8().data()); -} - -void DumpRenderTree::connectFrame(QWebFrame *frame) -{ - connect(frame, SIGNAL(javaScriptWindowObjectCleared()), this, SLOT(initJSObjects())); - connect(frame, SIGNAL(provisionalLoad()), - layoutTestController(), SLOT(provisionalLoad())); -} - -void DumpRenderTree::dumpDatabaseQuota(QWebFrame* frame, const QString& dbName) -{ - if (!m_controller->shouldDumpDatabaseCallbacks()) - return; - QWebSecurityOrigin origin = frame->securityOrigin(); - printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%s, %s, %i} database:%s\n", - origin.scheme().toUtf8().data(), - origin.host().toUtf8().data(), - origin.port(), - dbName.toUtf8().data()); - origin.setDatabaseQuota(5 * 1024 * 1024); -} - -void DumpRenderTree::statusBarMessage(const QString& message) -{ - if (!m_controller->shouldDumpStatusCallbacks()) - return; - - printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", message.toUtf8().constData()); -} - -QWebPage *DumpRenderTree::createWindow() -{ - if (!m_controller->canOpenWindows()) - return 0; - - // Create a dummy container object to track the page in DRT. - // QObject is used instead of QWidget to prevent DRT from - // showing the main view when deleting the container. - - QObject* container = new QObject(m_mainView); - // create a QWebPage we want to return - QWebPage* page = static_cast(new WebPage(container, this)); - // gets cleaned up in closeRemainingWindows() - windows.append(container); - - // connect the needed signals to the page - connect(page, SIGNAL(frameCreated(QWebFrame*)), this, SLOT(connectFrame(QWebFrame*))); - connectFrame(page->mainFrame()); - connect(page, SIGNAL(loadFinished(bool)), m_controller, SLOT(maybeDump(bool))); - connect(page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); - return page; -} - -void DumpRenderTree::windowCloseRequested() -{ - QWebPage* page = qobject_cast(sender()); - QObject* container = page->parent(); - windows.removeAll(container); - container->deleteLater(); -} - -int DumpRenderTree::windowCount() const -{ -// include the main view in the count - return windows.count() + 1; -} - -void DumpRenderTree::switchFocus(bool focused) -{ - QFocusEvent event((focused) ? QEvent::FocusIn : QEvent::FocusOut, Qt::ActiveWindowFocusReason); - if (!isGraphicsBased()) - QApplication::sendEvent(m_mainView, &event); - else { - if (WebViewGraphicsBased* view = qobject_cast(m_mainView)) - view->scene()->sendEvent(view->graphicsView(), &event); - } - -} - -#if defined(Q_WS_X11) -void DumpRenderTree::initializeFonts() -{ - static int numFonts = -1; - - // Some test cases may add or remove application fonts (via @font-face). - // Make sure to re-initialize the font set if necessary. - FcFontSet* appFontSet = FcConfigGetFonts(0, FcSetApplication); - if (appFontSet && numFonts >= 0 && appFontSet->nfont == numFonts) - return; - - QByteArray fontDir = getenv("WEBKIT_TESTFONTS"); - if (fontDir.isEmpty() || !QDir(fontDir).exists()) { - fprintf(stderr, - "\n\n" - "----------------------------------------------------------------------\n" - "WEBKIT_TESTFONTS environment variable is not set correctly.\n" - "This variable has to point to the directory containing the fonts\n" - "you can clone from git://gitorious.org/qtwebkit/testfonts.git\n" - "----------------------------------------------------------------------\n" - ); - exit(1); - } - char currentPath[PATH_MAX+1]; - if (!getcwd(currentPath, PATH_MAX)) - qFatal("Couldn't get current working directory"); - QByteArray configFile = currentPath; - FcConfig *config = FcConfigCreate(); - configFile += "/WebKitTools/DumpRenderTree/qt/fonts.conf"; - if (!FcConfigParseAndLoad (config, (FcChar8*) configFile.data(), true)) - qFatal("Couldn't load font configuration file"); - if (!FcConfigAppFontAddDir (config, (FcChar8*) fontDir.data())) - qFatal("Couldn't add font dir!"); - FcConfigSetCurrent(config); - - appFontSet = FcConfigGetFonts(config, FcSetApplication); - numFonts = appFontSet->nfont; -} -#endif - -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.h --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,224 +0,0 @@ -/* - * Copyright (C) 2006 Nikolas Zimmermann - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTreeQt_h -#define DumpRenderTreeQt_h - -#include -#include -#include -#include -#include - -#ifndef QT_NO_OPENSSL -#include -#endif - -#include "../../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" -#include -#include -#include -#include -#include -#include - -QT_BEGIN_NAMESPACE -class QUrl; -class QFile; -QT_END_NAMESPACE - -class QWebFrame; - -class LayoutTestController; -class DumpRenderTreeSupportQt; -class EventSender; -class TextInputController; -class GCController; - -namespace WebCore { - -class WebPage; -class NetworkAccessManager; - -class DumpRenderTree : public QObject { -Q_OBJECT - -public: - DumpRenderTree(); - virtual ~DumpRenderTree(); - - // Initialize in single-file mode. - void open(const QUrl& url); - - void setTextOutputEnabled(bool enable) { m_enableTextOutput = enable; } - bool isTextOutputEnabled() { return m_enableTextOutput; } - - void setSingleFileMode(bool flag) { m_singleFileMode = flag; } - bool isSingleFileMode() { return m_singleFileMode; } - - void setGraphicsBased(bool flag) { m_graphicsBased = flag; } - bool isGraphicsBased() { return m_graphicsBased; } - - void setDumpPixels(bool); - - void closeRemainingWindows(); - void resetToConsistentStateBeforeTesting(); - - LayoutTestController *layoutTestController() const { return m_controller; } - EventSender *eventSender() const { return m_eventSender; } - TextInputController *textInputController() const { return m_textInputController; } - QString persistentStoragePath() const { return m_persistentStoragePath; } - NetworkAccessManager *networkAccessManager() const { return m_networkAccessManager; } - - QWebPage *createWindow(); - int windowCount() const; - - void switchFocus(bool focused); - - WebPage *webPage() const { return m_page; } - -#if defined(Q_WS_X11) - static void initializeFonts(); -#endif - -public Q_SLOTS: - void initJSObjects(); - - void readLine(); - void processLine(const QString&); - - void dump(); - void titleChanged(const QString &s); - void connectFrame(QWebFrame *frame); - void dumpDatabaseQuota(QWebFrame* frame, const QString& dbName); - void statusBarMessage(const QString& message); - void windowCloseRequested(); - -Q_SIGNALS: - void quit(); - void ready(); - -private Q_SLOTS: - void showPage(); - void hidePage(); - void dryRunPrint(QWebFrame*); - -private: - QString dumpFramesAsText(QWebFrame* frame); - QString dumpBackForwardList(QWebPage* page); - QString dumpFrameScrollPosition(QWebFrame* frame); - LayoutTestController *m_controller; - - bool m_dumpPixels; - QString m_expectedHash; - - WebPage *m_page; - QWidget* m_mainView; - - EventSender *m_eventSender; - TextInputController *m_textInputController; - GCController* m_gcController; - NetworkAccessManager* m_networkAccessManager; - - QFile *m_stdin; - - QList windows; - bool m_enableTextOutput; - bool m_singleFileMode; - bool m_graphicsBased; - QString m_persistentStoragePath; -}; - -class NetworkAccessManager : public QNetworkAccessManager { - Q_OBJECT -public: - NetworkAccessManager(QObject* parent); - -private slots: -#ifndef QT_NO_OPENSSL - void sslErrorsEncountered(QNetworkReply*, const QList&); -#endif -}; - -class WebPage : public QWebPage { - Q_OBJECT -public: - WebPage(QObject* parent, DumpRenderTree*); - virtual ~WebPage(); - QWebInspector* webInspector(); - void closeWebInspector(); - - QWebPage *createWindow(QWebPage::WebWindowType); - - void javaScriptAlert(QWebFrame *frame, const QString& message); - void javaScriptConsoleMessage(const QString& message, int lineNumber, const QString& sourceID); - bool javaScriptConfirm(QWebFrame *frame, const QString& msg); - bool javaScriptPrompt(QWebFrame *frame, const QString& msg, const QString& defaultValue, QString* result); - - void resetSettings(); - - virtual bool supportsExtension(QWebPage::Extension extension) const; - virtual bool extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output); - - QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&); - -public slots: - bool shouldInterruptJavaScript() { return false; } - bool allowGeolocationRequest(QWebFrame *frame); - void requestPermission(QWebFrame* frame, QWebPage::PermissionDomain domain); - void checkPermission(QWebFrame* frame, QWebPage::PermissionDomain domain, QWebPage::PermissionPolicy& policy); - void cancelRequestsForPermission(QWebFrame* frame, QWebPage::PermissionDomain domain); - -protected: - bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type); - bool isTextOutputEnabled() { return m_drt->isTextOutputEnabled(); } - -private slots: - void setViewGeometry(const QRect&); - -private: - QWebInspector* m_webInspector; - DumpRenderTree *m_drt; -}; - -class WebViewGraphicsBased : public QGraphicsView { - Q_OBJECT - -public: - WebViewGraphicsBased(QWidget* parent); - QGraphicsWebView* graphicsView() const { return m_item; } - void setPage(QWebPage* page) { m_item->setPage(page); } - -private: - QGraphicsWebView* m_item; -}; - -} - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree_0xE51e95b3.mmp --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree_0xE51e95b3.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:29 -// This file is generated by qmake and should not be modified by the -// user. -// Name : DumpRenderTree.mmp -// ============================================================================== - -TARGET DumpRenderTree.exe -TARGETTYPE EXE - -UID 0x100039CE 0xE51e95b3 -SECUREID 0xE51e95b3 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE DumpRenderTree.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE DumpRenderTree_reg.rss -DEPENDS DumpRenderTree.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO USE_SYSTEM_MALLOC -MACRO QT_NO_DEBUG -MACRO QT_TESTLIB_LIB -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw/QtTest -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../../../include/QtWebKit -SYSTEMINCLUDE ../../../../usr/include/freetype2 -SYSTEMINCLUDE ../../.. -SYSTEMINCLUDE ../../../JavaScriptCore -SYSTEMINCLUDE ../../../JavaScriptCore/ForwardingHeaders -SYSTEMINCLUDE .. -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . -SYSTEMINCLUDE ../../../JavaScriptCore/wtf - -SOURCEPATH ../../../JavaScriptCore/wtf -SOURCE Assertions.cpp - -SOURCEPATH .. -SOURCE WorkQueue.cpp - -SOURCEPATH . -SOURCE DumpRenderTreeQt.cpp -SOURCE EventSenderQt.cpp -SOURCE TextInputControllerQt.cpp -SOURCE WorkQueueItemQt.cpp -SOURCE LayoutTestControllerQt.cpp -SOURCE GCControllerQt.cpp -SOURCE testplugin.cpp -SOURCE main.cpp -SOURCE moc_DumpRenderTreeQt.cpp -SOURCE moc_EventSenderQt.cpp -SOURCE moc_TextInputControllerQt.cpp -SOURCE moc_LayoutTestControllerQt.cpp -SOURCE moc_GCControllerQt.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtTest.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree_installer.pkg --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTree_installer.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"DumpRenderTree installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTree.sis" - "c:\private\2002CCCE\import\DumpRenderTree.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree_reg.rss --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xE8f89ed0 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="DumpRenderTree"; - localisable_resource_file="\\resource\\apps\\DumpRenderTree"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree_stub.pkg --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTree_stub.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"DumpRenderTree"},(0xE8f89ed0),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\DumpRenderTree.exe" -"" - "z:\resource\apps\DumpRenderTree.rsc" -"" - "z:\private\10003a3f\import\apps\DumpRenderTree_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/DumpRenderTree_template.pkg --- a/WebKitTools/DumpRenderTree/qt/DumpRenderTree_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTree_template.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"DumpRenderTree"},(0xE8f89ed0),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/DumpRenderTree.exe" - "!:\sys\bin\DumpRenderTree.exe" -"/epoc32/data/z/resource/apps/DumpRenderTree.rsc" - "!:\resource\apps\DumpRenderTree.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/DumpRenderTree_reg.rsc" - "!:\private\10003a3f\import\apps\DumpRenderTree_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/EventSenderQt.cpp --- a/WebKitTools/DumpRenderTree/qt/EventSenderQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,656 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include "config.h" -#include "EventSenderQt.h" - -#include -#include - -#define KEYCODE_DEL 127 -#define KEYCODE_BACKSPACE 8 -#define KEYCODE_LEFTARROW 0xf702 -#define KEYCODE_RIGHTARROW 0xf703 -#define KEYCODE_UPARROW 0xf700 -#define KEYCODE_DOWNARROW 0xf701 - -// Ports like Gtk and Windows expose a different approach for their zooming -// API if compared to Qt: they have specific methods for zooming in and out, -// as well as a settable zoom factor, while Qt has only a 'setZoomValue' method. -// Hence Qt DRT adopts a fixed zoom-factor (1.2) for compatibility. -#define ZOOM_STEP 1.2 - -#define DRT_MESSAGE_DONE (QEvent::User + 1) - -struct DRTEventQueue { - QEvent* m_event; - int m_delay; -}; - -static DRTEventQueue eventQueue[1024]; -static unsigned endOfQueue; -static unsigned startOfQueue; - -EventSender::EventSender(QWebPage* parent) - : QObject(parent) -{ - m_page = parent; - m_mouseButtonPressed = false; - m_drag = false; - memset(eventQueue, 0, sizeof(eventQueue)); - endOfQueue = 0; - startOfQueue = 0; - m_eventLoop = 0; - m_currentButton = 0; - resetClickCount(); - m_page->view()->installEventFilter(this); - // So that we can match Scrollbar::pixelsPerLineStep() in WheelEventQt.cpp and - // pass fast/events/platform-wheelevent-in-scrolling-div.html - QApplication::setWheelScrollLines(2); -} - -void EventSender::mouseDown(int button) -{ - Qt::MouseButton mouseButton; - switch (button) { - case 0: - mouseButton = Qt::LeftButton; - break; - case 1: - mouseButton = Qt::MidButton; - break; - case 2: - mouseButton = Qt::RightButton; - break; - case 3: - // fast/events/mouse-click-events expects the 4th button to be treated as the middle button - mouseButton = Qt::MidButton; - break; - default: - mouseButton = Qt::LeftButton; - break; - } - - // only consider a click to count, an event originated by the - // same previous button and at the same position. - if (m_currentButton == button - && m_mousePos == m_clickPos - && m_clickTimer.isActive()) - m_clickCount++; - else - m_clickCount = 1; - - m_currentButton = button; - m_clickPos = m_mousePos; - m_mouseButtons |= mouseButton; - -// qDebug() << "EventSender::mouseDown" << frame; - QEvent* event; - if (isGraphicsBased()) { - event = createGraphicsSceneMouseEvent((m_clickCount == 2) ? - QEvent::GraphicsSceneMouseDoubleClick : QEvent::GraphicsSceneMousePress, - m_mousePos, m_mousePos, mouseButton, m_mouseButtons, Qt::NoModifier); - } else { - event = new QMouseEvent((m_clickCount == 2) ? QEvent::MouseButtonDblClick : - QEvent::MouseButtonPress, m_mousePos, m_mousePos, - mouseButton, m_mouseButtons, Qt::NoModifier); - } - - sendOrQueueEvent(event); - - m_clickTimer.start(QApplication::doubleClickInterval(), this); -} - -void EventSender::mouseUp(int button) -{ - Qt::MouseButton mouseButton; - switch (button) { - case 0: - mouseButton = Qt::LeftButton; - break; - case 1: - mouseButton = Qt::MidButton; - break; - case 2: - mouseButton = Qt::RightButton; - break; - case 3: - // fast/events/mouse-click-events expects the 4th button to be treated as the middle button - mouseButton = Qt::MidButton; - break; - default: - mouseButton = Qt::LeftButton; - break; - } - - m_mouseButtons &= ~mouseButton; - -// qDebug() << "EventSender::mouseUp" << frame; - QEvent* event; - if (isGraphicsBased()) { - event = createGraphicsSceneMouseEvent(QEvent::GraphicsSceneMouseRelease, - m_mousePos, m_mousePos, mouseButton, m_mouseButtons, Qt::NoModifier); - } else { - event = new QMouseEvent(QEvent::MouseButtonRelease, - m_mousePos, m_mousePos, mouseButton, m_mouseButtons, Qt::NoModifier); - } - - sendOrQueueEvent(event); -} - -void EventSender::mouseMoveTo(int x, int y) -{ -// qDebug() << "EventSender::mouseMoveTo" << x << y; - m_mousePos = QPoint(x, y); - - QEvent* event; - if (isGraphicsBased()) { - event = createGraphicsSceneMouseEvent(QEvent::GraphicsSceneMouseMove, - m_mousePos, m_mousePos, Qt::NoButton, m_mouseButtons, Qt::NoModifier); - } else { - event = new QMouseEvent(QEvent::MouseMove, - m_mousePos, m_mousePos, Qt::NoButton, m_mouseButtons, Qt::NoModifier); - } - - sendOrQueueEvent(event); -} - -#ifndef QT_NO_WHEELEVENT -void EventSender::mouseScrollBy(int x, int y) -{ - continuousMouseScrollBy((x*120), (y*120)); -} - -void EventSender::continuousMouseScrollBy(int x, int y) -{ - // continuousMouseScrollBy() mimics devices that send fine-grained scroll events where the 'delta' specified is not the usual - // multiple of 120. See http://doc.qt.nokia.com/4.6/qwheelevent.html#delta for a good explanation of this. - if (x) { - QEvent* event; - if (isGraphicsBased()) { - event = createGraphicsSceneWheelEvent(QEvent::GraphicsSceneWheel, - m_mousePos, m_mousePos, x, Qt::NoModifier, Qt::Horizontal); - } else - event = new QWheelEvent(m_mousePos, m_mousePos, x, m_mouseButtons, Qt::NoModifier, Qt::Horizontal); - - sendOrQueueEvent(event); - } - if (y) { - QEvent* event; - if (isGraphicsBased()) { - event = createGraphicsSceneWheelEvent(QEvent::GraphicsSceneWheel, - m_mousePos, m_mousePos, y, Qt::NoModifier, Qt::Vertical); - } else - event = new QWheelEvent(m_mousePos, m_mousePos, y, m_mouseButtons, Qt::NoModifier, Qt::Vertical); - - sendOrQueueEvent(event); - } -} -#endif - -void EventSender::leapForward(int ms) -{ - eventQueue[endOfQueue].m_delay = ms; - //qDebug() << "EventSender::leapForward" << ms; -} - -void EventSender::keyDown(const QString& string, const QStringList& modifiers, unsigned int location) -{ - QString s = string; - Qt::KeyboardModifiers modifs = 0; - for (int i = 0; i < modifiers.size(); ++i) { - const QString& m = modifiers.at(i); - if (m == "ctrlKey") - modifs |= Qt::ControlModifier; - else if (m == "shiftKey") - modifs |= Qt::ShiftModifier; - else if (m == "altKey") - modifs |= Qt::AltModifier; - else if (m == "metaKey") - modifs |= Qt::MetaModifier; - } - if (location == 3) - modifs |= Qt::KeypadModifier; - int code = 0; - if (string.length() == 1) { - code = string.unicode()->unicode(); - //qDebug() << ">>>>>>>>> keyDown" << code << (char)code; - // map special keycodes used by the tests to something that works for Qt/X11 - if (code == '\r') { - code = Qt::Key_Return; - } else if (code == '\t') { - code = Qt::Key_Tab; - if (modifs == Qt::ShiftModifier) - code = Qt::Key_Backtab; - s = QString(); - } else if (code == KEYCODE_DEL || code == KEYCODE_BACKSPACE) { - code = Qt::Key_Backspace; - if (modifs == Qt::AltModifier) - modifs = Qt::ControlModifier; - s = QString(); - } else if (code == 'o' && modifs == Qt::ControlModifier) { - s = QLatin1String("\n"); - code = '\n'; - modifs = 0; - } else if (code == 'y' && modifs == Qt::ControlModifier) { - s = QLatin1String("c"); - code = 'c'; - } else if (code == 'k' && modifs == Qt::ControlModifier) { - s = QLatin1String("x"); - code = 'x'; - } else if (code == 'a' && modifs == Qt::ControlModifier) { - s = QString(); - code = Qt::Key_Home; - modifs = 0; - } else if (code == KEYCODE_LEFTARROW) { - s = QString(); - code = Qt::Key_Left; - if (modifs & Qt::MetaModifier) { - code = Qt::Key_Home; - modifs &= ~Qt::MetaModifier; - } - } else if (code == KEYCODE_RIGHTARROW) { - s = QString(); - code = Qt::Key_Right; - if (modifs & Qt::MetaModifier) { - code = Qt::Key_End; - modifs &= ~Qt::MetaModifier; - } - } else if (code == KEYCODE_UPARROW) { - s = QString(); - code = Qt::Key_Up; - if (modifs & Qt::MetaModifier) { - code = Qt::Key_PageUp; - modifs &= ~Qt::MetaModifier; - } - } else if (code == KEYCODE_DOWNARROW) { - s = QString(); - code = Qt::Key_Down; - if (modifs & Qt::MetaModifier) { - code = Qt::Key_PageDown; - modifs &= ~Qt::MetaModifier; - } - } else if (code == 'a' && modifs == Qt::ControlModifier) { - s = QString(); - code = Qt::Key_Home; - modifs = 0; - } else - code = string.unicode()->toUpper().unicode(); - } else { - //qDebug() << ">>>>>>>>> keyDown" << string; - - if (string.startsWith(QLatin1Char('F')) && string.count() <= 3) { - s = s.mid(1); - int functionKey = s.toInt(); - Q_ASSERT(functionKey >= 1 && functionKey <= 35); - code = Qt::Key_F1 + (functionKey - 1); - // map special keycode strings used by the tests to something that works for Qt/X11 - } else if (string == QLatin1String("leftArrow")) { - s = QString(); - code = Qt::Key_Left; - } else if (string == QLatin1String("rightArrow")) { - s = QString(); - code = Qt::Key_Right; - } else if (string == QLatin1String("upArrow")) { - s = QString(); - code = Qt::Key_Up; - } else if (string == QLatin1String("downArrow")) { - s = QString(); - code = Qt::Key_Down; - } else if (string == QLatin1String("pageUp")) { - s = QString(); - code = Qt::Key_PageUp; - } else if (string == QLatin1String("pageDown")) { - s = QString(); - code = Qt::Key_PageDown; - } else if (string == QLatin1String("home")) { - s = QString(); - code = Qt::Key_Home; - } else if (string == QLatin1String("end")) { - s = QString(); - code = Qt::Key_End; - } else if (string == QLatin1String("delete")) { - s = QString(); - code = Qt::Key_Delete; - } - } - QKeyEvent event(QEvent::KeyPress, code, modifs, s); - sendEvent(m_page, &event); - QKeyEvent event2(QEvent::KeyRelease, code, modifs, s); - sendEvent(m_page, &event2); -} - -void EventSender::contextClick() -{ - QMouseEvent event(QEvent::MouseButtonPress, m_mousePos, Qt::RightButton, Qt::RightButton, Qt::NoModifier); - sendEvent(m_page, &event); - QMouseEvent event2(QEvent::MouseButtonRelease, m_mousePos, Qt::RightButton, Qt::RightButton, Qt::NoModifier); - sendEvent(m_page, &event2); - - if (isGraphicsBased()) { - QGraphicsSceneContextMenuEvent ctxEvent(QEvent::GraphicsSceneContextMenu); - ctxEvent.setReason(QGraphicsSceneContextMenuEvent::Mouse); - ctxEvent.setPos(m_mousePos); - WebCore::WebViewGraphicsBased* view = qobject_cast(m_page->view()); - if (view) - sendEvent(view->graphicsView(), &ctxEvent); - } else { - QContextMenuEvent ctxEvent(QContextMenuEvent::Mouse, m_mousePos); - sendEvent(m_page->view(), &ctxEvent); - } -} - -void EventSender::scheduleAsynchronousClick() -{ - QMouseEvent* event = new QMouseEvent(QEvent::MouseButtonPress, m_mousePos, Qt::LeftButton, Qt::RightButton, Qt::NoModifier); - postEvent(m_page, event); - QMouseEvent* event2 = new QMouseEvent(QEvent::MouseButtonRelease, m_mousePos, Qt::LeftButton, Qt::RightButton, Qt::NoModifier); - postEvent(m_page, event2); -} - -void EventSender::addTouchPoint(int x, int y) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - // Use index to refer to the position in the vector that this touch - // is stored. We then create a unique id for the touch that will be - // passed into WebCore. - int index = m_touchPoints.count(); - int id = m_touchPoints.isEmpty() ? 0 : m_touchPoints.last().id() + 1; - QTouchEvent::TouchPoint point(id); - m_touchPoints.append(point); - updateTouchPoint(index, x, y); - m_touchPoints[index].setState(Qt::TouchPointPressed); -#endif -} - -void EventSender::updateTouchPoint(int index, int x, int y) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (index < 0 || index >= m_touchPoints.count()) - return; - - QTouchEvent::TouchPoint &p = m_touchPoints[index]; - p.setPos(QPointF(x, y)); - p.setState(Qt::TouchPointMoved); -#endif -} - -void EventSender::setTouchModifier(const QString &modifier, bool enable) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - Qt::KeyboardModifier mod = Qt::NoModifier; - if (!modifier.compare(QLatin1String("shift"), Qt::CaseInsensitive)) - mod = Qt::ShiftModifier; - else if (!modifier.compare(QLatin1String("alt"), Qt::CaseInsensitive)) - mod = Qt::AltModifier; - else if (!modifier.compare(QLatin1String("meta"), Qt::CaseInsensitive)) - mod = Qt::MetaModifier; - else if (!modifier.compare(QLatin1String("ctrl"), Qt::CaseInsensitive)) - mod = Qt::ControlModifier; - - if (enable) - m_touchModifiers |= mod; - else - m_touchModifiers &= ~mod; -#endif -} - -void EventSender::touchStart() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (!m_touchActive) { - sendTouchEvent(QEvent::TouchBegin); - m_touchActive = true; - } else - sendTouchEvent(QEvent::TouchUpdate); -#endif -} - -void EventSender::touchMove() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - sendTouchEvent(QEvent::TouchUpdate); -#endif -} - -void EventSender::touchEnd() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - for (int i = 0; i < m_touchPoints.count(); ++i) - if (m_touchPoints[i].state() != Qt::TouchPointReleased) { - sendTouchEvent(QEvent::TouchUpdate); - return; - } - sendTouchEvent(QEvent::TouchEnd); - m_touchActive = false; -#endif -} - -void EventSender::clearTouchPoints() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - m_touchPoints.clear(); - m_touchModifiers = Qt::KeyboardModifiers(); - m_touchActive = false; -#endif -} - -void EventSender::releaseTouchPoint(int index) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (index < 0 || index >= m_touchPoints.count()) - return; - - m_touchPoints[index].setState(Qt::TouchPointReleased); -#endif -} - -void EventSender::sendTouchEvent(QEvent::Type type) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QTouchEvent event(type, QTouchEvent::TouchScreen, m_touchModifiers); - event.setTouchPoints(m_touchPoints); - sendEvent(m_page, &event); - QList::Iterator it = m_touchPoints.begin(); - while (it != m_touchPoints.end()) { - if (it->state() == Qt::TouchPointReleased) - it = m_touchPoints.erase(it); - else { - it->setState(Qt::TouchPointStationary); - ++it; - } - } -#endif -} - -void EventSender::zoomPageIn() -{ - if (QWebFrame* frame = m_page->mainFrame()) - frame->setZoomFactor(frame->zoomFactor() * ZOOM_STEP); -} - -void EventSender::zoomPageOut() -{ - if (QWebFrame* frame = m_page->mainFrame()) - frame->setZoomFactor(frame->zoomFactor() / ZOOM_STEP); -} - -void EventSender::textZoomIn() -{ - if (QWebFrame* frame = m_page->mainFrame()) - frame->setTextSizeMultiplier(frame->textSizeMultiplier() * ZOOM_STEP); -} - -void EventSender::textZoomOut() -{ - if (QWebFrame* frame = m_page->mainFrame()) - frame->setTextSizeMultiplier(frame->textSizeMultiplier() / ZOOM_STEP); -} - -QWebFrame* EventSender::frameUnderMouse() const -{ - QWebFrame* frame = m_page->mainFrame(); - -redo: - QList children = frame->childFrames(); - for (int i = 0; i < children.size(); ++i) { - if (children.at(i)->geometry().contains(m_mousePos)) { - frame = children.at(i); - goto redo; - } - } - if (frame->geometry().contains(m_mousePos)) - return frame; - return 0; -} - -void EventSender::sendOrQueueEvent(QEvent* event) -{ - // Mouse move events are queued if - // 1. A previous event was queued. - // 2. A delay was set-up by leapForward(). - // 3. A call to mouseMoveTo while the mouse button is pressed could initiate a drag operation, and that does not return until mouseUp is processed. - // To be safe and avoid a deadlock, this event is queued. - if (endOfQueue == startOfQueue && !eventQueue[endOfQueue].m_delay && (!(m_mouseButtonPressed && (m_eventLoop && event->type() == QEvent::MouseButtonRelease)))) { - sendEvent(m_page->view(), event); - delete event; - return; - } - eventQueue[endOfQueue++].m_event = event; - eventQueue[endOfQueue].m_delay = 0; - replaySavedEvents(event->type() != QEvent::MouseMove); -} - -void EventSender::replaySavedEvents(bool flush) -{ - if (startOfQueue < endOfQueue) { - // First send all the events that are ready to be sent - while (!eventQueue[startOfQueue].m_delay && startOfQueue < endOfQueue) { - QEvent* ev = eventQueue[startOfQueue++].m_event; - postEvent(m_page->view(), ev); - } - if (startOfQueue == endOfQueue) { - // Reset the queue - startOfQueue = 0; - endOfQueue = 0; - } else { - QTest::qWait(eventQueue[startOfQueue].m_delay); - eventQueue[startOfQueue].m_delay = 0; - } - } - if (!flush) - return; - - // Send a marker event, it will tell us when it is safe to exit the new event loop - QEvent* drtEvent = new QEvent((QEvent::Type)DRT_MESSAGE_DONE); - QApplication::postEvent(m_page->view(), drtEvent); - - // Start an event loop for async handling of Drag & Drop - m_eventLoop = new QEventLoop; - m_eventLoop->exec(); - delete m_eventLoop; - m_eventLoop = 0; -} - -bool EventSender::eventFilter(QObject* watched, QEvent* event) -{ - if (watched != m_page->view()) - return false; - switch (event->type()) { - case QEvent::Leave: - return true; - case QEvent::MouseButtonPress: - case QEvent::GraphicsSceneMousePress: - m_mouseButtonPressed = true; - break; - case QEvent::MouseMove: - case QEvent::GraphicsSceneMouseMove: - if (m_mouseButtonPressed) - m_drag = true; - break; - case QEvent::MouseButtonRelease: - case QEvent::GraphicsSceneMouseRelease: - m_mouseButtonPressed = false; - m_drag = false; - break; - case DRT_MESSAGE_DONE: - m_eventLoop->exit(); - return true; - } - return false; -} - -void EventSender::timerEvent(QTimerEvent* ev) -{ - m_clickTimer.stop(); -} - -QGraphicsSceneMouseEvent* EventSender::createGraphicsSceneMouseEvent(QEvent::Type type, const QPoint& pos, const QPoint& screenPos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers) -{ - QGraphicsSceneMouseEvent* event; - event = new QGraphicsSceneMouseEvent(type); - event->setPos(pos); - event->setScreenPos(screenPos); - event->setButton(button); - event->setButtons(buttons); - event->setModifiers(modifiers); - - return event; -} - -QGraphicsSceneWheelEvent* EventSender::createGraphicsSceneWheelEvent(QEvent::Type type, const QPoint& pos, const QPoint& screenPos, int delta, Qt::KeyboardModifiers modifiers, Qt::Orientation orientation) -{ - QGraphicsSceneWheelEvent* event; - event = new QGraphicsSceneWheelEvent(type); - event->setPos(pos); - event->setScreenPos(screenPos); - event->setDelta(delta); - event->setModifiers(modifiers); - event->setOrientation(orientation); - - return event; -} - -void EventSender::sendEvent(QObject* receiver, QEvent* event) -{ - if (WebCore::WebViewGraphicsBased* view = qobject_cast(receiver)) - view->scene()->sendEvent(view->graphicsView(), event); - else - QApplication::sendEvent(receiver, event); -} - -void EventSender::postEvent(QObject* receiver, QEvent* event) -{ - // QGraphicsScene does not have a postEvent method, so send the event in this case - // and delete it after that. - if (WebCore::WebViewGraphicsBased* view = qobject_cast(receiver)) { - view->scene()->sendEvent(view->graphicsView(), event); - delete event; - } else - QApplication::postEvent(receiver, event); // event deleted by the system -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/EventSenderQt.h --- a/WebKitTools/DumpRenderTree/qt/EventSenderQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,116 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#ifndef EventSenderQt_h -#define EventSenderQt_h - - -#include "DumpRenderTreeQt.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) -#include -#endif - -class EventSender : public QObject { - Q_OBJECT -public: - EventSender(QWebPage* parent); - virtual bool eventFilter(QObject* watched, QEvent* event); - void resetClickCount() { m_clickCount = 0; } - -public slots: - void mouseDown(int button = 0); - void mouseUp(int button = 0); - void mouseMoveTo(int x, int y); -#ifndef QT_NO_WHEELEVENT - void mouseScrollBy(int x, int y); - void continuousMouseScrollBy(int x, int y); -#endif - void leapForward(int ms); - void keyDown(const QString& string, const QStringList& modifiers = QStringList(), unsigned int location = 0); - void clearKillRing() {} - void contextClick(); - void scheduleAsynchronousClick(); - void addTouchPoint(int x, int y); - void updateTouchPoint(int index, int x, int y); - void setTouchModifier(const QString &modifier, bool enable); - void touchStart(); - void touchMove(); - void touchEnd(); - void zoomPageIn(); - void zoomPageOut(); - void textZoomIn(); - void textZoomOut(); - void clearTouchPoints(); - void releaseTouchPoint(int index); - -protected: - void timerEvent(QTimerEvent*); - -private: - bool isGraphicsBased() const { return qobject_cast(m_page->view()); } - QGraphicsSceneMouseEvent* createGraphicsSceneMouseEvent(QEvent::Type, const QPoint& pos, const QPoint& screenPos, Qt::MouseButton, Qt::MouseButtons, Qt::KeyboardModifiers); - QGraphicsSceneWheelEvent* createGraphicsSceneWheelEvent(QEvent::Type, const QPoint& pos, const QPoint& screenPos, int delta, Qt::KeyboardModifiers, Qt::Orientation); - void sendEvent(QObject* receiver, QEvent* event); - void postEvent(QObject* receiver, QEvent* event); - -private: - void sendTouchEvent(QEvent::Type); - void sendOrQueueEvent(QEvent*); - void replaySavedEvents(bool flush); - QPoint m_mousePos; - QPoint m_clickPos; - Qt::MouseButtons m_mouseButtons; - QWebPage* m_page; - int m_clickCount; - int m_currentButton; - bool m_mouseButtonPressed; - bool m_drag; - QEventLoop* m_eventLoop; - QWebFrame* frameUnderMouse() const; - QBasicTimer m_clickTimer; -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QList m_touchPoints; - Qt::KeyboardModifiers m_touchModifiers; - bool m_touchActive; -#endif -}; -#endif // EventSenderQt_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/GCControllerQt.cpp --- a/WebKitTools/DumpRenderTree/qt/GCControllerQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "GCControllerQt.h" -#include "../../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" - -#include - -GCController::GCController(QWebPage* parent) - : QObject(parent) -{ -} - -void GCController::collect() const -{ - DumpRenderTreeSupportQt::garbageCollectorCollect(); -} - -void GCController::collectOnAlternateThread(bool waitUntilDone) const -{ - DumpRenderTreeSupportQt::garbageCollectorCollectOnAlternateThread(waitUntilDone); -} - -size_t GCController::getJSObjectCount() const -{ - return DumpRenderTreeSupportQt::javaScriptObjectsCount(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/GCControllerQt.h --- a/WebKitTools/DumpRenderTree/qt/GCControllerQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,50 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#ifndef GCControllerQt_h -#define GCControllerQt_h - -#include - -class QWebPage; -class DumpRenderTreeSupportQt; - -class GCController : public QObject -{ - Q_OBJECT -public: - GCController(QWebPage* parent); - -public slots: - void collect() const; - void collectOnAlternateThread(bool waitUntilDone) const; - size_t getJSObjectCount() const; - -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff.cpp --- a/WebKitTools/DumpRenderTree/qt/ImageDiff.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,146 +0,0 @@ -/* - Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public License - along with this library; see the file COPYING.LIB. If not, write to - the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - Boston, MA 02110-1301, USA. -*/ - -#include - -#include -#include -#include -#include -#include - -#include - -int main(int argc, char* argv[]) -{ - QCoreApplication app(argc, argv); - - qreal tolerance = 0; - - QStringList args = app.arguments(); - for (int i = 0; i < argc; ++i) - if (args[i] == "-t" || args[i] == "--tolerance") - tolerance = args[i + 1].toDouble(); - - char buffer[2048]; - QImage actualImage; - QImage baselineImage; - - while (fgets(buffer, sizeof(buffer), stdin)) { - // remove the CR - char* newLineCharacter = strchr(buffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (!strncmp("Content-Length: ", buffer, 16)) { - strtok(buffer, " "); - int imageSize = strtol(strtok(0, " "), 0, 10); - - if (imageSize <= 0) { - fputs("error, image size must be specified.\n", stdout); - } else { - unsigned char buffer[2048]; - QBuffer data; - - // Read all the incoming chunks - data.open(QBuffer::WriteOnly); - while (imageSize > 0) { - size_t bytesToRead = qMin(imageSize, 2048); - size_t bytesRead = fread(buffer, 1, bytesToRead, stdin); - data.write(reinterpret_cast(buffer), bytesRead); - imageSize -= static_cast(bytesRead); - } - - // Convert into QImage - QImage decodedImage; - decodedImage.loadFromData(data.data(), "PNG"); - decodedImage.convertToFormat(QImage::Format_ARGB32); - - // Place it in the right place - if (actualImage.isNull()) - actualImage = decodedImage; - else - baselineImage = decodedImage; - } - } - - if (!actualImage.isNull() && !baselineImage.isNull()) { - - if (actualImage.size() != baselineImage.size()) { - fprintf(stderr, "error, test and reference image have different properties.\n"); - fflush(stderr); - } else { - - int w = actualImage.width(); - int h = actualImage.height(); - QImage diffImage(w, h, QImage::Format_ARGB32); - - int count = 0; - qreal sum = 0; - qreal maxDistance = 0; - - for (int x = 0; x < w; ++x) - for (int y = 0; y < h; ++y) { - QRgb pixel = actualImage.pixel(x, y); - QRgb basePixel = baselineImage.pixel(x, y); - qreal red = (qRed(pixel) - qRed(basePixel)) / static_cast(qMax(255 - qRed(basePixel), qRed(basePixel))); - qreal green = (qGreen(pixel) - qGreen(basePixel)) / static_cast(qMax(255 - qGreen(basePixel), qGreen(basePixel))); - qreal blue = (qBlue(pixel) - qBlue(basePixel)) / static_cast(qMax(255 - qBlue(basePixel), qBlue(basePixel))); - qreal alpha = (qAlpha(pixel) - qAlpha(basePixel)) / static_cast(qMax(255 - qAlpha(basePixel), qAlpha(basePixel))); - qreal distance = qSqrt(red * red + green * green + blue * blue + alpha * alpha) / 2.0f; - int gray = distance * qreal(255); - diffImage.setPixel(x, y, qRgb(gray, gray, gray)); - if (distance >= 1 / qreal(255)) { - count++; - sum += distance; - maxDistance = qMax(maxDistance, distance); - } - } - - qreal difference = 0; - if (count) - difference = 100 * sum / static_cast(w * h); - if (difference <= tolerance) { - difference = 0; - } else { - difference = qRound(difference * 100) / 100; - difference = qMax(difference, qreal(0.01)); - } - - if (!count) { - fprintf(stdout, "diff: %01.2f%% passed\n", difference); - } else { - QBuffer buffer; - buffer.open(QBuffer::WriteOnly); - diffImage.save(&buffer, "PNG"); - buffer.close(); - const QByteArray &data = buffer.data(); - printf("Content-Length: %lu\n", static_cast(data.length())); - fwrite(data.constData(), 1, data.length(), stdout); - - fprintf(stdout, "diff: %01.2f%% failed\n", difference); - } - - fflush(stdout); - } - } - } - - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff.loc --- a/WebKitTools/DumpRenderTree/qt/ImageDiff.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "ImageDiff" -#define STRING_r_caption "ImageDiff" -#else -#define STRING_r_short_caption "ImageDiff" -#define STRING_r_caption "ImageDiff" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff.pro --- a/WebKitTools/DumpRenderTree/qt/ImageDiff.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,16 +0,0 @@ -TARGET = ImageDiff -CONFIG -= app_bundle - -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../.. -include(../../../WebKit.pri) -INCLUDEPATH += ../../../JavaScriptCore -DESTDIR = $$OUTPUT_DIR/bin - -QT = core gui - -SOURCES = ImageDiff.cpp - -unix:!mac { - QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff.rss --- a/WebKitTools/DumpRenderTree/qt/ImageDiff.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff_0xE82a5233.mmp --- a/WebKitTools/DumpRenderTree/qt/ImageDiff_0xE82a5233.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,99 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-13T12:03:30 -// This file is generated by qmake and should not be modified by the -// user. -// Name : ImageDiff.mmp -// ============================================================================== - -TARGET ImageDiff.exe -TARGETTYPE EXE - -UID 0x100039CE 0xE82a5233 -SECUREID 0xE82a5233 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE ImageDiff.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE ImageDiff_reg.rss -DEPENDS ImageDiff.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_GUI_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../../../include/QtWebKit -SYSTEMINCLUDE ../../../JavaScriptCore -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE ImageDiff.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY None - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff_installer.pkg --- a/WebKitTools/DumpRenderTree/qt/ImageDiff_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/ImageDiff_installer.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"ImageDiff installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/ImageDiff.sis" - "c:\private\2002CCCE\import\ImageDiff.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff_reg.rss --- a/WebKitTools/DumpRenderTree/qt/ImageDiff_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xEa6f93a7 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="ImageDiff"; - localisable_resource_file="\\resource\\apps\\ImageDiff"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff_stub.pkg --- a/WebKitTools/DumpRenderTree/qt/ImageDiff_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/ImageDiff_stub.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"ImageDiff"},(0xEa6f93a7),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\ImageDiff.exe" -"" - "z:\resource\apps\ImageDiff.rsc" -"" - "z:\private\10003a3f\import\apps\ImageDiff_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/ImageDiff_template.pkg --- a/WebKitTools/DumpRenderTree/qt/ImageDiff_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/ImageDiff_template.pkg generated by qmake at 2010-08-16T17:48:47 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"ImageDiff"},(0xEa6f93a7),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/ImageDiff.exe" - "!:\sys\bin\ImageDiff.exe" -"/epoc32/data/z/resource/apps/ImageDiff.rsc" - "!:\resource\apps\ImageDiff.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/ImageDiff_reg.rsc" - "!:\private\10003a3f\import\apps\ImageDiff_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.cpp --- a/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,729 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include "config.h" -#include "LayoutTestControllerQt.h" -#include "../../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" - -#include "DumpRenderTreeQt.h" -#include "WorkQueue.h" -#include "WorkQueueItemQt.h" -#include -#include -#include - -LayoutTestController::LayoutTestController(WebCore::DumpRenderTree* drt) - : QObject() - , m_drt(drt) -{ - qRegisterMetaType("QWebElement"); - reset(); - DumpRenderTreeSupportQt::dumpNotification(true); -} - -void LayoutTestController::reset() -{ - m_hasDumped = false; - m_loadFinished = false; - m_textDump = false; - m_dumpBackForwardList = false; - m_dumpChildrenAsText = false; - m_dumpChildFrameScrollPositions = false; - m_canOpenWindows = false; - m_waitForDone = false; - m_dumpTitleChanges = false; - m_dumpDatabaseCallbacks = false; - m_dumpStatusCallbacks = false; - m_timeoutTimer.stop(); - m_topLoadingFrame = 0; - m_waitForPolicy = false; - m_handleErrorPages = false; - m_webHistory = 0; - m_globalFlag = false; - m_userStyleSheetEnabled = false; - m_desktopNotificationAllowedOrigins.clear(); - m_ignoreDesktopNotification = false; - - DumpRenderTreeSupportQt::dumpEditingCallbacks(false); - DumpRenderTreeSupportQt::dumpFrameLoader(false); - DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(false); - DumpRenderTreeSupportQt::dumpResourceResponseMIMETypes(false); - DumpRenderTreeSupportQt::setDeferMainResourceDataLoad(true); - DumpRenderTreeSupportQt::setWillSendRequestReturnsNullOnRedirect(false); - DumpRenderTreeSupportQt::setWillSendRequestReturnsNull(false); - DumpRenderTreeSupportQt::setWillSendRequestClearHeaders(QStringList()); - DumpRenderTreeSupportQt::clearScriptWorlds(); - DumpRenderTreeSupportQt::setCustomPolicyDelegate(false, false); - setIconDatabaseEnabled(false); - - emit hidePage(); -} - -void LayoutTestController::processWork() -{ - // qDebug() << ">>>processWork"; - - // if we didn't start a new load, then we finished all the commands, so we're ready to dump state - if (WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) { - emit done(); - m_hasDumped = true; - } -} - -// Called on loadFinished on WebPage -void LayoutTestController::maybeDump(bool success) -{ - - // This can happen on any of the http/tests/security/window-events-*.html tests, where the test opens - // a new window, calls the unload and load event handlers on the window's page, and then immediately - // issues a notifyDone. Needs investigation. - if (!m_topLoadingFrame) - return; - - // It is possible that we get called by windows created from the main page that have finished - // loading, so we don't ASSERT here. At the moment we do not gather results from such windows, - // but may need to in future. - if (sender() != m_topLoadingFrame->page()) - return; - - m_loadFinished = true; - // as the function is called on loadFinished, the test might - // already have dumped and thus no longer be active, thus - // bail out here. - if (m_hasDumped) - return; - - WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test - if (WorkQueue::shared()->count()) - QTimer::singleShot(0, this, SLOT(processWork())); - else if (!shouldWaitUntilDone()) { - if (success) - emit done(); - m_hasDumped = true; - } -} - -void LayoutTestController::waitUntilDone() -{ - //qDebug() << ">>>>waitForDone"; - m_waitForDone = true; - m_timeoutTimer.start(30000, this); -} - -QString LayoutTestController::counterValueForElementById(const QString& id) -{ - return DumpRenderTreeSupportQt::counterValueForElementById(m_drt->webPage()->mainFrame(), id); -} - -void LayoutTestController::setViewModeMediaFeature(const QString& mode) -{ - m_drt->webPage()->setProperty("_q_viewMode", mode); -} - -int LayoutTestController::webHistoryItemCount() -{ - if (!m_webHistory) - return -1; - - // Subtract one here as our QWebHistory::count() includes the actual page, - // which is not considered in the DRT tests. - return m_webHistory->count() - 1; -} - -void LayoutTestController::keepWebHistory() -{ - m_webHistory = m_drt->webPage()->history(); -} - -void LayoutTestController::notifyDone() -{ - qDebug() << ">>>>notifyDone"; - - if (!m_timeoutTimer.isActive()) - return; - - m_timeoutTimer.stop(); - m_waitForDone = false; - - // If the page has not finished loading (i.e. loadFinished() has not been emitted) then - // content created by the likes of document.write() JS methods will not be available yet. - // When the page has finished loading, maybeDump above will dump the results now that we have - // just set shouldWaitUntilDone to false. - if (!m_loadFinished) - return; - - emit done(); - - // FIXME: investigate why always resetting these result in timeouts - m_hasDumped = true; - m_waitForPolicy = false; -} - -int LayoutTestController::windowCount() -{ - return m_drt->windowCount(); -} - -void LayoutTestController::grantDesktopNotificationPermission(const QString& origin) -{ - m_desktopNotificationAllowedOrigins.append(origin); -} - -void LayoutTestController::ignoreDesktopNotificationPermissionRequests() -{ - m_ignoreDesktopNotification = true; -} - -bool LayoutTestController::checkDesktopNotificationPermission(const QString& origin) -{ - return !m_ignoreDesktopNotification && m_desktopNotificationAllowedOrigins.contains(origin); -} - -void LayoutTestController::display() -{ - emit showPage(); -} - -void LayoutTestController::clearBackForwardList() -{ - m_drt->webPage()->history()->clear(); -} - -QString LayoutTestController::pathToLocalResource(const QString& url) -{ - // Function introduced in r28690. - return QDir::toNativeSeparators(url); -} - -void LayoutTestController::dumpEditingCallbacks() -{ - qDebug() << ">>>dumpEditingCallbacks"; - DumpRenderTreeSupportQt::dumpEditingCallbacks(true); -} - -void LayoutTestController::dumpFrameLoadCallbacks() -{ - DumpRenderTreeSupportQt::dumpFrameLoader(true); -} - -void LayoutTestController::dumpResourceLoadCallbacks() -{ - DumpRenderTreeSupportQt::dumpResourceLoadCallbacks(true); -} - -void LayoutTestController::dumpResourceResponseMIMETypes() -{ - DumpRenderTreeSupportQt::dumpResourceResponseMIMETypes(true); -} - -void LayoutTestController::setWillSendRequestReturnsNullOnRedirect(bool enabled) -{ - DumpRenderTreeSupportQt::setWillSendRequestReturnsNullOnRedirect(enabled); -} - -void LayoutTestController::setWillSendRequestReturnsNull(bool enabled) -{ - DumpRenderTreeSupportQt::setWillSendRequestReturnsNull(enabled); -} - -void LayoutTestController::setWillSendRequestClearHeader(const QStringList& headers) -{ - DumpRenderTreeSupportQt::setWillSendRequestClearHeaders(headers); -} - -void LayoutTestController::setDeferMainResourceDataLoad(bool defer) -{ - DumpRenderTreeSupportQt::setDeferMainResourceDataLoad(defer); -} - -void LayoutTestController::queueBackNavigation(int howFarBackward) -{ - //qDebug() << ">>>queueBackNavigation" << howFarBackward; - WorkQueue::shared()->queue(new BackItem(howFarBackward, m_drt->webPage())); -} - -void LayoutTestController::queueForwardNavigation(int howFarForward) -{ - //qDebug() << ">>>queueForwardNavigation" << howFarForward; - WorkQueue::shared()->queue(new ForwardItem(howFarForward, m_drt->webPage())); -} - -void LayoutTestController::queueLoad(const QString& url, const QString& target) -{ - //qDebug() << ">>>queueLoad" << url << target; - QUrl mainResourceUrl = m_drt->webPage()->mainFrame()->url(); - QString absoluteUrl = mainResourceUrl.resolved(QUrl(url)).toEncoded(); - WorkQueue::shared()->queue(new LoadItem(absoluteUrl, target, m_drt->webPage())); -} - -void LayoutTestController::queueLoadHTMLString(const QString& content, const QString& baseURL) -{ - WorkQueue::shared()->queue(new LoadHTMLStringItem(content, baseURL, m_drt->webPage())); -} - -void LayoutTestController::queueReload() -{ - //qDebug() << ">>>queueReload"; - WorkQueue::shared()->queue(new ReloadItem(m_drt->webPage())); -} - -void LayoutTestController::queueLoadingScript(const QString& script) -{ - //qDebug() << ">>>queueLoadingScript" << script; - WorkQueue::shared()->queue(new LoadingScriptItem(script, m_drt->webPage())); -} - -void LayoutTestController::queueNonLoadingScript(const QString& script) -{ - //qDebug() << ">>>queueNonLoadingScript" << script; - WorkQueue::shared()->queue(new NonLoadingScriptItem(script, m_drt->webPage())); -} - -void LayoutTestController::provisionalLoad() -{ - QWebFrame* frame = qobject_cast(sender()); - if (!m_topLoadingFrame && !m_hasDumped) - m_topLoadingFrame = frame; -} - -void LayoutTestController::timerEvent(QTimerEvent *ev) -{ - if (ev->timerId() == m_timeoutTimer.timerId()) { - const char* message = "FAIL: Timed out waiting for notifyDone to be called\n"; - fprintf(stderr, "%s", message); - fprintf(stdout, "%s", message); - notifyDone(); - } else - QObject::timerEvent(ev); -} - -QString LayoutTestController::encodeHostName(const QString& host) -{ - QString encoded = QString::fromLatin1(QUrl::toAce(host + QLatin1String(".no"))); - encoded.truncate(encoded.length() - 3); // strip .no - return encoded; -} - -QString LayoutTestController::decodeHostName(const QString& host) -{ - QString decoded = QUrl::fromAce(host.toLatin1() + QByteArray(".no")); - decoded.truncate(decoded.length() - 3); - return decoded; -} - -void LayoutTestController::setMediaType(const QString& type) -{ - DumpRenderTreeSupportQt::setMediaType(m_drt->webPage()->mainFrame(), type); -} - -void LayoutTestController::closeWebInspector() -{ - DumpRenderTreeSupportQt::webInspectorClose(m_drt->webPage()); - m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, false); -} - -void LayoutTestController::setDeveloperExtrasEnabled(bool enabled) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, enabled); -} - -void LayoutTestController::showWebInspector() -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true); - DumpRenderTreeSupportQt::webInspectorShow(m_drt->webPage()); -} - -void LayoutTestController::evaluateInWebInspector(long callId, const QString& script) -{ - DumpRenderTreeSupportQt::webInspectorExecuteScript(m_drt->webPage(), callId, script); -} - -void LayoutTestController::setFrameFlatteningEnabled(bool enabled) -{ - DumpRenderTreeSupportQt::setFrameFlatteningEnabled(m_drt->webPage(), enabled); -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(bool enabled) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::LocalContentCanAccessRemoteUrls, enabled); -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(bool enabled) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::LocalContentCanAccessFileUrls, enabled); -} - -void LayoutTestController::setAppCacheMaximumSize(unsigned long long quota) -{ - m_drt->webPage()->settings()->setOfflineWebApplicationCacheQuota(quota); -} - -void LayoutTestController::setJavaScriptProfilingEnabled(bool enable) -{ - setDeveloperExtrasEnabled(enable); - DumpRenderTreeSupportQt::setJavaScriptProfilingEnabled(m_topLoadingFrame, enable); -} - -void LayoutTestController::setTimelineProfilingEnabled(bool enable) -{ - DumpRenderTreeSupportQt::setTimelineProfilingEnabled(m_drt->webPage(), enable); -} - -void LayoutTestController::setFixedContentsSize(int width, int height) -{ - m_topLoadingFrame->page()->setPreferredContentsSize(QSize(width, height)); -} - -void LayoutTestController::setPrivateBrowsingEnabled(bool enable) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::PrivateBrowsingEnabled, enable); -} - -void LayoutTestController::setSpatialNavigationEnabled(bool enable) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::SpatialNavigationEnabled, enable); -} - -void LayoutTestController::setPopupBlockingEnabled(bool enable) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, !enable); -} - -void LayoutTestController::setPluginsEnabled(bool flag) -{ - // FIXME: Implement -} - -void LayoutTestController::setPOSIXLocale(const QString& locale) -{ - QLocale qlocale(locale); - QLocale::setDefault(qlocale); -} - -void LayoutTestController::setWindowIsKey(bool isKey) -{ - m_drt->switchFocus(isKey); -} - -void LayoutTestController::setMainFrameIsFirstResponder(bool isFirst) -{ - //FIXME: only need this for the moment: https://bugs.webkit.org/show_bug.cgi?id=32990 -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(bool enable) -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::JavascriptCanAccessClipboard, enable); -} - -void LayoutTestController::setXSSAuditorEnabled(bool enable) -{ - // Set XSSAuditingEnabled globally so that windows created by the test inherit it too. - // resetSettings() will call this to reset the page and global setting to false again. - // Needed by http/tests/security/xssAuditor/link-opens-new-window.html - QWebSettings* globalSettings = QWebSettings::globalSettings(); - globalSettings->setAttribute(QWebSettings::XSSAuditingEnabled, enable); - m_drt->webPage()->settings()->setAttribute(QWebSettings::XSSAuditingEnabled, enable); -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(const QString& animationName, - double time, - const QString& elementId) -{ - QWebFrame* frame = m_drt->webPage()->mainFrame(); - Q_ASSERT(frame); - return DumpRenderTreeSupportQt::pauseAnimation(frame, animationName, time, elementId); -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(const QString& propertyName, - double time, - const QString& elementId) -{ - QWebFrame* frame = m_drt->webPage()->mainFrame(); - Q_ASSERT(frame); - return DumpRenderTreeSupportQt::pauseTransitionOfProperty(frame, propertyName, time, elementId); -} - -bool LayoutTestController::sampleSVGAnimationForElementAtTime(const QString& animationId, - double time, - const QString& elementId) -{ - QWebFrame* frame = m_drt->webPage()->mainFrame(); - Q_ASSERT(frame); - return DumpRenderTreeSupportQt::pauseSVGAnimation(frame, animationId, time, elementId); -} - -unsigned LayoutTestController::numberOfActiveAnimations() const -{ - QWebFrame* frame = m_drt->webPage()->mainFrame(); - Q_ASSERT(frame); - return DumpRenderTreeSupportQt::numberOfActiveAnimations(frame); -} - -void LayoutTestController::disableImageLoading() -{ - m_drt->webPage()->settings()->setAttribute(QWebSettings::AutoLoadImages, false); -} - -void LayoutTestController::dispatchPendingLoadRequests() -{ - // FIXME: Implement for testing fix for 6727495 -} - -void LayoutTestController::setDatabaseQuota(int size) -{ - if (!m_topLoadingFrame) - return; - m_topLoadingFrame->securityOrigin().setDatabaseQuota(size); -} - -void LayoutTestController::clearAllDatabases() -{ - QWebDatabase::removeAllDatabases(); -} - -void LayoutTestController::addOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains) -{ - DumpRenderTreeSupportQt::whiteListAccessFromOrigin(sourceOrigin, destinationProtocol, destinationHost, allowDestinationSubdomains); -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains) -{ - DumpRenderTreeSupportQt::removeWhiteListAccessFromOrigin(sourceOrigin, destinationProtocol, destinationHost, allowDestinationSubdomains); -} - -void LayoutTestController::setCustomPolicyDelegate(bool enabled, bool permissive) -{ - DumpRenderTreeSupportQt::setCustomPolicyDelegate(enabled, permissive); -} - -void LayoutTestController::waitForPolicyDelegate() -{ - m_waitForPolicy = true; - waitUntilDone(); -} - -void LayoutTestController::overridePreference(const QString& name, const QVariant& value) -{ - QWebSettings* settings = m_topLoadingFrame->page()->settings(); - - if (name == "WebKitJavaScriptEnabled") - settings->setAttribute(QWebSettings::JavascriptEnabled, value.toBool()); - else if (name == "WebKitTabToLinksPreferenceKey") - settings->setAttribute(QWebSettings::LinksIncludedInFocusChain, value.toBool()); - else if (name == "WebKitOfflineWebApplicationCacheEnabled") - settings->setAttribute(QWebSettings::OfflineWebApplicationCacheEnabled, value.toBool()); - else if (name == "WebKitDefaultFontSize") - settings->setFontSize(QWebSettings::DefaultFontSize, value.toInt()); - else if (name == "WebKitUsesPageCachePreferenceKey") - QWebSettings::setMaximumPagesInCache(value.toInt()); - else if (name == "WebKitEnableCaretBrowsing") - setCaretBrowsingEnabled(value.toBool()); - else if (name == "WebKitPluginsEnabled") - settings->setAttribute(QWebSettings::PluginsEnabled, value.toBool()); - else if (name == "WebKitWebGLEnabled") - settings->setAttribute(QWebSettings::WebGLEnabled, value.toBool()); - else - printf("ERROR: LayoutTestController::overridePreference() does not support the '%s' preference\n", - name.toLatin1().data()); -} - -void LayoutTestController::setUserStyleSheetLocation(const QString& url) -{ - m_userStyleSheetLocation = QUrl(url); - - if (m_userStyleSheetEnabled) - setUserStyleSheetEnabled(true); -} - -void LayoutTestController::setCaretBrowsingEnabled(bool value) -{ - DumpRenderTreeSupportQt::setCaretBrowsingEnabled(m_drt->webPage(), value); -} - -void LayoutTestController::setUserStyleSheetEnabled(bool enabled) -{ - m_userStyleSheetEnabled = enabled; - - if (enabled) - m_drt->webPage()->settings()->setUserStyleSheetUrl(m_userStyleSheetLocation); - else - m_drt->webPage()->settings()->setUserStyleSheetUrl(QUrl()); -} - -void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme) -{ - DumpRenderTreeSupportQt::setDomainRelaxationForbiddenForURLScheme(forbidden, scheme); -} - -int LayoutTestController::workerThreadCount() -{ - return DumpRenderTreeSupportQt::workerThreadCount(); -} - -int LayoutTestController::pageNumberForElementById(const QString& id, float width, float height) -{ - // If no size specified, webpage viewport size is used - if (!width && !height) { - width = m_drt->webPage()->viewportSize().width(); - height = m_drt->webPage()->viewportSize().height(); - } - - return DumpRenderTreeSupportQt::pageNumberForElementById(m_drt->webPage()->mainFrame(), id, width, height); -} - -int LayoutTestController::numberOfPages(float width, float height) -{ - return DumpRenderTreeSupportQt::numberOfPages(m_drt->webPage()->mainFrame(), width, height); -} - -bool LayoutTestController::callShouldCloseOnWebView() -{ - return DumpRenderTreeSupportQt::shouldClose(m_drt->webPage()->mainFrame()); -} - -void LayoutTestController::setScrollbarPolicy(const QString& orientation, const QString& policy) -{ - Qt::Orientation o; - Qt::ScrollBarPolicy p; - - if (orientation == "vertical") - o = Qt::Vertical; - else if (orientation == "horizontal") - o = Qt::Horizontal; - else - return; - - if (policy == "on") - p = Qt::ScrollBarAlwaysOn; - else if (policy == "auto") - p = Qt::ScrollBarAsNeeded; - else if (policy == "off") - p = Qt::ScrollBarAlwaysOff; - else - return; - - m_drt->webPage()->mainFrame()->setScrollBarPolicy(o, p); -} - -void LayoutTestController::setSmartInsertDeleteEnabled(bool enable) -{ - DumpRenderTreeSupportQt::setSmartInsertDeleteEnabled(m_drt->webPage(), enable); -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(bool enable) -{ - DumpRenderTreeSupportQt::setSelectTrailingWhitespaceEnabled(m_drt->webPage(), enable); -} - -void LayoutTestController::execCommand(const QString& name, const QString& value) -{ - DumpRenderTreeSupportQt::executeCoreCommandByName(m_drt->webPage(), name, value); -} - -bool LayoutTestController::isCommandEnabled(const QString& name) const -{ - return DumpRenderTreeSupportQt::isCommandEnabled(m_drt->webPage(), name); -} - -QString LayoutTestController::markerTextForListItem(const QWebElement& listItem) -{ - return DumpRenderTreeSupportQt::markerTextForListItem(listItem); -} - -QVariantMap LayoutTestController::computedStyleIncludingVisitedInfo(const QWebElement& element) const -{ - return DumpRenderTreeSupportQt::computedStyleIncludingVisitedInfo(element); -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(const QString& elementId) -{ - return DumpRenderTreeSupportQt::elementDoesAutoCompleteForElementWithId(m_drt->webPage()->mainFrame(), elementId); -} - -void LayoutTestController::authenticateSession(const QString&, const QString&, const QString&) -{ - // FIXME: If there is a concept per-session (per-process) credential storage, the credentials should be added to it for later use. -} - -void LayoutTestController::setIconDatabaseEnabled(bool enable) -{ - if (enable && !m_drt->persistentStoragePath().isEmpty()) - QWebSettings::setIconDatabasePath(m_drt->persistentStoragePath()); - else - QWebSettings::setIconDatabasePath(QString()); -} - -void LayoutTestController::setEditingBehavior(const QString& editingBehavior) -{ - DumpRenderTreeSupportQt::setEditingBehavior(m_drt->webPage(), editingBehavior); -} - -void LayoutTestController::setGeolocationPermission(bool allow) -{ - m_isGeolocationPermissionSet = true; - m_geolocationPermission = allow; -} - -void LayoutTestController::setMockGeolocationError(int code, const QString& message) -{ - DumpRenderTreeSupportQt::setMockGeolocationError(code, message); -} - -void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) -{ - DumpRenderTreeSupportQt::setMockGeolocationPosition(latitude, longitude, accuracy); -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(int worldID, const QString& script) -{ - DumpRenderTreeSupportQt::evaluateScriptInIsolatedWorld(m_drt->webPage()->mainFrame(), worldID, script); -} - -bool LayoutTestController::isPageBoxVisible(int pageIndex) -{ - return DumpRenderTreeSupportQt::isPageBoxVisible(m_drt->webPage()->mainFrame(), pageIndex); -} - -QString LayoutTestController::pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) -{ - return DumpRenderTreeSupportQt::pageSizeAndMarginsInPixels(m_drt->webPage()->mainFrame(), pageIndex, - width, height, marginTop, marginRight, marginBottom, marginLeft); -} - -QString LayoutTestController::pageProperty(const QString& propertyName, int pageNumber) -{ - return DumpRenderTreeSupportQt::pageProperty(m_drt->webPage()->mainFrame(), propertyName, pageNumber); -} - -void LayoutTestController::addUserStyleSheet(const QString& sourceCode) -{ - DumpRenderTreeSupportQt::addUserStyleSheet(m_drt->webPage(), sourceCode); -} - -const unsigned LayoutTestController::maxViewWidth = 800; -const unsigned LayoutTestController::maxViewHeight = 600; diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h --- a/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,260 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef LayoutTestControllerQt_h -#define LayoutTestControllerQt_h - -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include -#include - -class QWebFrame; -class DumpRenderTreeSupportQt; -namespace WebCore { - class DumpRenderTree; -} -class LayoutTestController : public QObject { - Q_OBJECT - Q_PROPERTY(int webHistoryItemCount READ webHistoryItemCount) - Q_PROPERTY(int workerThreadCount READ workerThreadCount) - Q_PROPERTY(bool globalFlag READ globalFlag WRITE setGlobalFlag) -public: - LayoutTestController(WebCore::DumpRenderTree* drt); - - bool shouldDumpAsText() const { return m_textDump; } - bool shouldDumpBackForwardList() const { return m_dumpBackForwardList; } - bool shouldDumpChildrenAsText() const { return m_dumpChildrenAsText; } - bool shouldDumpChildFrameScrollPositions() const { return m_dumpChildFrameScrollPositions; } - bool shouldDumpDatabaseCallbacks() const { return m_dumpDatabaseCallbacks; } - bool shouldDumpStatusCallbacks() const { return m_dumpStatusCallbacks; } - bool shouldWaitUntilDone() const { return m_waitForDone; } - bool shouldHandleErrorPages() const { return m_handleErrorPages; } - bool canOpenWindows() const { return m_canOpenWindows; } - bool shouldDumpTitleChanges() const { return m_dumpTitleChanges; } - bool waitForPolicy() const { return m_waitForPolicy; } - bool ignoreReqestForPermission() const { return m_ignoreDesktopNotification; } - - void reset(); - - static const unsigned int maxViewWidth; - static const unsigned int maxViewHeight; - -protected: - void timerEvent(QTimerEvent*); - -signals: - void done(); - - void showPage(); - void hidePage(); - -public slots: - void maybeDump(bool ok); - void dumpAsText() { m_textDump = true; } - void dumpChildFramesAsText() { m_dumpChildrenAsText = true; } - void dumpChildFrameScrollPositions() { m_dumpChildFrameScrollPositions = true; } - void dumpDatabaseCallbacks() { m_dumpDatabaseCallbacks = true; } - void dumpStatusCallbacks() { m_dumpStatusCallbacks = true; } - void setCanOpenWindows() { m_canOpenWindows = true; } - void waitUntilDone(); - QString counterValueForElementById(const QString& id); - int webHistoryItemCount(); - void keepWebHistory(); - void notifyDone(); - void dumpBackForwardList() { m_dumpBackForwardList = true; } - bool globalFlag() const { return m_globalFlag; } - void setGlobalFlag(bool flag) { m_globalFlag = flag; } - void handleErrorPages() { m_handleErrorPages = true; } - void dumpEditingCallbacks(); - void dumpFrameLoadCallbacks(); - void dumpResourceLoadCallbacks(); - void dumpResourceResponseMIMETypes(); - void setWillSendRequestReturnsNullOnRedirect(bool enabled); - void setWillSendRequestReturnsNull(bool enabled); - void setWillSendRequestClearHeader(const QStringList& headers); - void queueBackNavigation(int howFarBackward); - void queueForwardNavigation(int howFarForward); - void queueLoad(const QString& url, const QString& target = QString()); - void queueLoadHTMLString(const QString& content, const QString& baseURL = QString()); - void queueReload(); - void queueLoadingScript(const QString& script); - void queueNonLoadingScript(const QString& script); - void provisionalLoad(); - void setCloseRemainingWindowsWhenComplete(bool = false) {} - int windowCount(); - void grantDesktopNotificationPermission(const QString& origin); - void ignoreDesktopNotificationPermissionRequests(); - bool checkDesktopNotificationPermission(const QString& origin); - void display(); - void clearBackForwardList(); - QString pathToLocalResource(const QString& url); - void dumpTitleChanges() { m_dumpTitleChanges = true; } - QString encodeHostName(const QString& host); - QString decodeHostName(const QString& host); - void dumpSelectionRect() const {} - void setDeveloperExtrasEnabled(bool); - void showWebInspector(); - void closeWebInspector(); - void evaluateInWebInspector(long callId, const QString& script); - - void setMediaType(const QString& type); - void setFrameFlatteningEnabled(bool enable); - void setAllowUniversalAccessFromFileURLs(bool enable); - void setAllowFileAccessFromFileURLs(bool enable); - void setAppCacheMaximumSize(unsigned long long quota); - void setJavaScriptProfilingEnabled(bool enable); - void setTimelineProfilingEnabled(bool enable); - void setFixedContentsSize(int width, int height); - void setPrivateBrowsingEnabled(bool enable); - void setSpatialNavigationEnabled(bool enabled); - void setPluginsEnabled(bool flag); - void setPopupBlockingEnabled(bool enable); - void setPOSIXLocale(const QString& locale); - void resetLoadFinished() { m_loadFinished = false; } - void setWindowIsKey(bool isKey); - void setMainFrameIsFirstResponder(bool isFirst); - void setDeferMainResourceDataLoad(bool); - void setJavaScriptCanAccessClipboard(bool enable); - void setXSSAuditorEnabled(bool enable); - void setCaretBrowsingEnabled(bool enable); - void setViewModeMediaFeature(const QString& mode); - void setSmartInsertDeleteEnabled(bool enable); - void setSelectTrailingWhitespaceEnabled(bool enable); - void execCommand(const QString& name, const QString& value = QString()); - bool isCommandEnabled(const QString& name) const; - - bool pauseAnimationAtTimeOnElementWithId(const QString& animationName, double time, const QString& elementId); - bool pauseTransitionAtTimeOnElementWithId(const QString& propertyName, double time, const QString& elementId); - bool sampleSVGAnimationForElementAtTime(const QString& animationId, double time, const QString& elementId); - bool elementDoesAutoCompleteForElementWithId(const QString& elementId); - - unsigned numberOfActiveAnimations() const; - - void addOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains); - void removeOriginAccessWhitelistEntry(const QString& sourceOrigin, const QString& destinationProtocol, const QString& destinationHost, bool allowDestinationSubdomains); - - void dispatchPendingLoadRequests(); - void disableImageLoading(); - - void setDatabaseQuota(int size); - void clearAllDatabases(); - void setIconDatabaseEnabled(bool enable); - - void setCustomPolicyDelegate(bool enabled, bool permissive = true); - void waitForPolicyDelegate(); - - void overridePreference(const QString& name, const QVariant& value); - void setUserStyleSheetLocation(const QString& url); - void setUserStyleSheetEnabled(bool enabled); - void setDomainRelaxationForbiddenForURLScheme(bool forbidden, const QString& scheme); - int workerThreadCount(); - int pageNumberForElementById(const QString& id, float width = 0, float height = 0); - int numberOfPages(float width = maxViewWidth, float height = maxViewHeight); - bool callShouldCloseOnWebView(); - // For now, this is a no-op. This may change depending on outcome of - // https://bugs.webkit.org/show_bug.cgi?id=33333 - void setCallCloseOnWebViews() {} - // This is a no-op - it allows us to pass - // plugins/get-url-that-the-resource-load-delegate-will-disallow.html - // which is a Mac-specific test. - void addDisallowedURL(const QString&) {} - - void setMockGeolocationError(int code, const QString& message); - void setMockGeolocationPosition(double latitude, double longitude, double accuracy); - void setGeolocationPermission(bool allow); - bool isGeolocationPermissionSet() const { return m_isGeolocationPermissionSet; } - bool geolocationPermission() const { return m_geolocationPermission; } - - // Empty stub method to keep parity with object model exposed by global LayoutTestController. - void abortModal() {} - - /* - Policy values: 'on', 'auto' or 'off'. - Orientation values: 'vertical' or 'horizontal'. - */ - void setScrollbarPolicy(const QString& orientation, const QString& policy); - - QString markerTextForListItem(const QWebElement& listItem); - QVariantMap computedStyleIncludingVisitedInfo(const QWebElement& element) const; - - // Simulate a request an embedding application could make, populating per-session credential storage. - void authenticateSession(const QString& url, const QString& username, const QString& password); - - void setEditingBehavior(const QString& editingBehavior); - - void evaluateScriptInIsolatedWorld(int worldID, const QString& script); - bool isPageBoxVisible(int pageIndex); - QString pageSizeAndMarginsInPixels(int pageIndex, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft); - QString pageProperty(const QString& propertyName, int pageNumber); - void addUserStyleSheet(const QString& sourceCode); - -private slots: - void processWork(); - -private: - bool m_hasDumped; - bool m_textDump; - bool m_dumpBackForwardList; - bool m_dumpChildrenAsText; - bool m_dumpChildFrameScrollPositions; - bool m_canOpenWindows; - bool m_waitForDone; - bool m_dumpTitleChanges; - bool m_dumpDatabaseCallbacks; - bool m_dumpStatusCallbacks; - bool m_waitForPolicy; - bool m_handleErrorPages; - bool m_loadFinished; - bool m_globalFlag; - bool m_userStyleSheetEnabled; - bool m_isGeolocationPermissionSet; - bool m_geolocationPermission; - - QUrl m_userStyleSheetLocation; - QBasicTimer m_timeoutTimer; - QWebFrame* m_topLoadingFrame; - WebCore::DumpRenderTree* m_drt; - QWebHistory* m_webHistory; - QStringList m_desktopNotificationAllowedOrigins; - bool m_ignoreDesktopNotification; -}; - -#endif // LayoutTestControllerQt_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/Makefile.DumpRenderTree --- a/WebKitTools/DumpRenderTree/qt/Makefile.DumpRenderTree Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1972 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:47 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/Makefile.DumpRenderTree -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.DumpRenderTree -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -first: default -default: debug-winscw -all: -check: first - -run: - call /epoc32/release/winscw/udeb/DumpRenderTree.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis DumpRenderTree.sis DumpRenderTree.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard DumpRenderTree_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) DumpRenderTree_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard DumpRenderTree_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o DumpRenderTree_template.pkg $(QT_SIS_TARGET) - -DumpRenderTree.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: DumpRenderTree.sis - $(if $(wildcard DumpRenderTree_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) DumpRenderTree_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard DumpRenderTree_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) DumpRenderTree_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call DumpRenderTree.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: moc_DumpRenderTreeQt.cpp moc_EventSenderQt.cpp moc_TextInputControllerQt.cpp moc_LayoutTestControllerQt.cpp moc_GCControllerQt.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_DumpRenderTreeQt.cpp moc_EventSenderQt.cpp moc_TextInputControllerQt.cpp moc_LayoutTestControllerQt.cpp moc_GCControllerQt.cpp -moc_DumpRenderTreeQt.cpp: ..\..\..\..\epoc32\include\mw\QtCore\QList \ - ..\..\..\..\epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\QTextStream \ - ..\..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QSocketNotifier \ - ..\..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\..\epoc32\include\mw\QtNetwork\QSslError \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qsslerror.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtNetwork\qsslcertificate.h \ - \epoc32\include\mw\QtCore\qcryptographichash.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtNetwork\qssl.h \ - ..\..\..\WebKit\qt\WebCoreSupport\DumpRenderTreeSupportQt.h \ - ..\..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QVariant \ - ..\..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\WebKit\qt\Api\qgraphicswebview.h \ - ..\..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - ..\..\..\WebKit\qt\Api\qwebinspector.h \ - ..\..\..\WebKit\qt\Api\qwebview.h \ - DumpRenderTreeQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTreeQt.h -o u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\moc_DumpRenderTreeQt.cpp - -moc_EventSenderQt.cpp: DumpRenderTreeQt.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QList \ - ..\..\..\..\epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\mw\QtNetwork\QNetworkAccessManager \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\QTextStream \ - ..\..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QSocketNotifier \ - ..\..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\..\epoc32\include\mw\QtNetwork\QSslError \ - ..\..\..\..\epoc32\include\mw\QtNetwork\qsslerror.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtNetwork\qsslcertificate.h \ - \epoc32\include\mw\QtCore\qcryptographichash.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtNetwork\qssl.h \ - ..\..\..\WebKit\qt\WebCoreSupport\DumpRenderTreeSupportQt.h \ - ..\..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QVariant \ - ..\..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpen.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\WebKit\qt\Api\qgraphicswebview.h \ - ..\..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - ..\..\..\WebKit\qt\Api\qwebinspector.h \ - ..\..\..\WebKit\qt\Api\qwebview.h \ - ..\..\..\..\epoc32\include\mw\QtGui\QApplication \ - ..\..\..\..\epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QBasicTimer \ - ..\..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QEvent \ - ..\..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QEventLoop \ - ..\..\..\..\epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\..\epoc32\include\mw\QtGui\QMouseEvent \ - ..\..\..\..\epoc32\include\mw\QtGui\qevent.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QPoint \ - ..\..\..\..\epoc32\include\mw\QtCore\QString \ - ..\..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QStringList \ - ..\..\..\..\epoc32\include\mw\QtCore\qstringlist.h \ - ..\..\..\..\epoc32\include\mw\QtGui\QTouchEvent \ - EventSenderQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\EventSenderQt.h -o u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\moc_EventSenderQt.cpp - -moc_TextInputControllerQt.cpp: ..\..\..\..\epoc32\include\mw\QtCore\QList \ - ..\..\..\..\epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QVariant \ - ..\..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QString \ - ..\..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\..\WebKit\qt\Api\qwebsettings.h \ - ..\..\..\WebKit\qt\Api\qwebkitglobal.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - TextInputControllerQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\TextInputControllerQt.h -o u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\moc_TextInputControllerQt.cpp - -moc_LayoutTestControllerQt.cpp: ..\..\..\..\epoc32\include\mw\QtCore\QBasicTimer \ - ..\..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QSize \ - ..\..\..\..\epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QString \ - ..\..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QtDebug \ - ..\..\..\..\epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QTimer \ - ..\..\..\..\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QTimerEvent \ - ..\..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\..\epoc32\include\mw\QtCore\QVariant \ - ..\..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\WebKit\qt\Api\qwebdatabase.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\..\WebKit\qt\Api\qwebelement.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\WebKit\qt\Api\qwebhistory.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\WebKit\qt\Api\qwebsecurityorigin.h \ - LayoutTestControllerQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\LayoutTestControllerQt.h -o u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\moc_LayoutTestControllerQt.cpp - -moc_GCControllerQt.cpp: ..\..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\..\epoc32\include\e32def.h \ - ..\..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\..\epoc32\include\e32std.h \ - ..\..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\..\epoc32\include\e32const.h \ - ..\..\..\..\epoc32\include\e32err.h \ - ..\..\..\..\epoc32\include\e32lang.h \ - ..\..\..\..\epoc32\include\e32reg.h \ - ..\..\..\..\epoc32\include\e32capability.h \ - ..\..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\..\epoc32\include\e32des8.h \ - ..\..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\..\epoc32\include\e32des16.h \ - ..\..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\..\epoc32\include\e32std.inl \ - ..\..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - GCControllerQt.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\GCControllerQt.h -o u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\moc_GCControllerQt.cpp - -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\Makefile.DumpRenderTree" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\Makefile.DumpRenderTree" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_0xE8f89ed0.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_0xE8f89ed0.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\DumpRenderTree.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\bld.inf.DumpRenderTree" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\bld.inf.DumpRenderTree" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/Makefile.ImageDiff --- a/WebKitTools/DumpRenderTree/qt/Makefile.ImageDiff Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:47 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/Makefile.ImageDiff -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile.ImageDiff -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -first: default -default: debug-winscw -all: -check: first - -run: - call /epoc32/release/winscw/udeb/ImageDiff.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis ImageDiff.sis ImageDiff.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard ImageDiff_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) ImageDiff_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard ImageDiff_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o ImageDiff_template.pkg $(QT_SIS_TARGET) - -ImageDiff.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: ImageDiff.sis - $(if $(wildcard ImageDiff_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) ImageDiff_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard ImageDiff_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) ImageDiff_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call ImageDiff.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: -compiler_moc_header_clean: -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\Makefile.ImageDiff" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\Makefile.ImageDiff" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_0xEa6f93a7.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_0xEa6f93a7.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\ImageDiff.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\bld.inf.ImageDiff" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\DumpRenderTree\qt\bld.inf.ImageDiff" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro --- a/WebKitTools/DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,37 +0,0 @@ -TEMPLATE = lib -TARGET = TestNetscapePlugIn - -VPATH = ../../unix/TestNetscapePlugin ../../TestNetscapePlugIn -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../../.. -include(../../../../WebKit.pri) - -DESTDIR = $$OUTPUT_DIR/lib/plugins - -mac { - CONFIG += plugin - CONFIG += plugin_bundle - QMAKE_INFO_PLIST = ../../TestNetscapePlugIn/mac/Info.plist - QMAKE_PLUGIN_BUNDLE_NAME = $$TARGET - QMAKE_BUNDLE_LOCATION += "Contents/MacOS" - - !build_pass:CONFIG += build_all - debug_and_release:TARGET = $$qtLibraryTarget($$TARGET) -} - -INCLUDEPATH += ../../../../JavaScriptCore \ - ../../unix/TestNetscapePlugin/ForwardingHeaders \ - ../../unix/TestNetscapePlugin/ForwardingHeaders/WebKit \ - ../../../../WebCore \ - ../../../../WebCore/bridge \ - ../../TestNetscapePlugIn - -SOURCES = PluginObject.cpp \ - TestObject.cpp - -mac { - SOURCES += ../../TestNetscapePlugIn/main.cpp - OBJECTIVE_SOURCES += PluginObjectMac.mm - LIBS += -framework Carbon -framework Cocoa -framework QuartzCore -} else { - SOURCES += ../../unix/TestNetscapePlugin/TestNetscapePlugin.cpp -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/TextInputControllerQt.cpp --- a/WebKitTools/DumpRenderTree/qt/TextInputControllerQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,160 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include "config.h" -#include "TextInputControllerQt.h" -#include "../../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" - -#include -#include -#include - -TextInputController::TextInputController(QWebPage* parent) - : QObject(parent) -{ -} - -void TextInputController::doCommand(const QString& command) -{ - Qt::KeyboardModifiers modifiers = Qt::NoModifier; - int keycode = 0; - if (command == "moveBackwardAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Left; - } else if (command =="moveDown:") { - keycode = Qt::Key_Down; - } else if (command =="moveDownAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Down; - } else if (command =="moveForward:") { - keycode = Qt::Key_Right; - } else if (command =="moveForwardAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Right; - } else if (command =="moveLeft:") { - keycode = Qt::Key_Left; - } else if (command =="moveLeftAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Left; - } else if (command =="moveRight:") { - keycode = Qt::Key_Right; - } else if (command =="moveRightAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Right; - } else if (command =="moveToBeginningOfDocument:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Home; - } else if (command =="moveToBeginningOfLine:") { - keycode = Qt::Key_Home; -// } else if (command =="moveToBeginningOfParagraph:") { - } else if (command =="moveToEndOfDocument:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_End; - } else if (command =="moveToEndOfLine:") { - keycode = Qt::Key_End; -// } else if (command =="moveToEndOfParagraph:") { - } else if (command =="moveUp:") { - keycode = Qt::Key_Up; - } else if (command =="moveUpAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Up; - } else if (command =="moveWordBackward:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Up; - } else if (command =="moveWordBackwardAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Left; - } else if (command =="moveWordForward:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Right; - } else if (command =="moveWordForwardAndModifySelection:") { - modifiers |= Qt::ControlModifier; - modifiers |= Qt::ShiftModifier; - keycode = Qt::Key_Right; - } else if (command =="moveWordLeft:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Left; - } else if (command =="moveWordRight:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Left; - } else if (command =="moveWordRightAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Right; - } else if (command =="moveWordLeftAndModifySelection:") { - modifiers |= Qt::ShiftModifier; - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Left; - } else if (command =="pageDown:") { - keycode = Qt::Key_PageDown; - } else if (command =="pageUp:") { - keycode = Qt::Key_PageUp; - } else if (command == "deleteWordBackward:") { - modifiers |= Qt::ControlModifier; - keycode = Qt::Key_Backspace; - } else if (command == "deleteBackward:") { - keycode = Qt::Key_Backspace; - } else if (command == "deleteForward:") { - keycode = Qt::Key_Delete; - } - - QKeyEvent event(QEvent::KeyPress, keycode, modifiers); - QApplication::sendEvent(parent(), &event); - QKeyEvent event2(QEvent::KeyRelease, keycode, modifiers); - QApplication::sendEvent(parent(), &event2); -} - -void TextInputController::setMarkedText(const QString& string, int start, int end) -{ - QList attributes; -#if QT_VERSION >= 0x040600 - QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant()); - attributes << selection; -#endif - QInputMethodEvent event(string, attributes); - QApplication::sendEvent(parent(), &event); -} - -void TextInputController::insertText(const QString& string) -{ - QList attributes; - QInputMethodEvent event(string, attributes); - event.setCommitString(string); - QApplication::sendEvent(parent(), &event); -} - -QVariantList TextInputController::selectedRange() -{ - return DumpRenderTreeSupportQt::selectedRange(qobject_cast(parent())); -} - -QVariantList TextInputController::firstRectForCharacterRange(int location, int length) -{ - return DumpRenderTreeSupportQt::firstRectForCharacterRange(qobject_cast(parent()), location, length); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/TextInputControllerQt.h --- a/WebKitTools/DumpRenderTree/qt/TextInputControllerQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,57 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#ifndef TextInputControllerQt_h -#define TextInputControllerQt_h - -#include -#include -#include -#include -#include "qwebpage.h" - -class TextInputController : public QObject { - Q_OBJECT -public: - TextInputController(QWebPage* parent); - -public slots: - void doCommand(const QString& command); - void setMarkedText(const QString& string, int start, int end); -// bool hasMarkedText(); -// void unmarkText(); -// QList markedRange(); - QVariantList selectedRange(); -// void validAttributesForMarkedText(); - void insertText(const QString& string); - QVariantList firstRectForCharacterRange(int location, int length); -// void characterIndexForPoint(int, int); -// void substringFromRange(int, int); -// void conversationIdentifier(); -}; -#endif // TextInputControllerQt_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/WorkQueueItemQt.cpp --- a/WebKitTools/DumpRenderTree/qt/WorkQueueItemQt.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,106 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include "config.h" -#include "WorkQueueItemQt.h" - -QWebFrame* findFrameNamed(const QString& frameName, QWebFrame* frame) -{ - if (frame->frameName() == frameName) - return frame; - - foreach (QWebFrame* childFrame, frame->childFrames()) - if (QWebFrame* f = findFrameNamed(frameName, childFrame)) - return f; - - return 0; -} - -bool LoadItem::invoke() const -{ - //qDebug() << ">>>LoadItem::invoke"; - Q_ASSERT(m_webPage); - - QWebFrame* frame = 0; - const QString t = target(); - if (t.isEmpty()) - frame = m_webPage->mainFrame(); - else - frame = findFrameNamed(t, m_webPage->mainFrame()); - - if (!frame) - return false; - - frame->load(url()); - return true; -} - -bool LoadHTMLStringItem::invoke() const -{ - Q_ASSERT(m_webPage); - - QWebFrame* frame = m_webPage->mainFrame(); - if (!frame) - return false; - - frame->setHtml(m_content, QUrl(m_baseURL)); - return true; -} - -bool ReloadItem::invoke() const -{ - //qDebug() << ">>>ReloadItem::invoke"; - Q_ASSERT(m_webPage); - m_webPage->triggerAction(QWebPage::Reload); - return true; -} - -bool ScriptItem::invoke() const -{ - //qDebug() << ">>>ScriptItem::invoke"; - Q_ASSERT(m_webPage); - m_webPage->mainFrame()->evaluateJavaScript(script()); - return true; -} - -bool BackForwardItem::invoke() const -{ - //qDebug() << ">>>BackForwardItem::invoke"; - Q_ASSERT(m_webPage); - if (!m_howFar) - return false; - - if (m_howFar > 0) { - for (int i = 0; i != m_howFar; ++i) - m_webPage->triggerAction(QWebPage::Forward); - } else { - for (int i = 0; i != m_howFar; --i) - m_webPage->triggerAction(QWebPage::Back); - } - return true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/WorkQueueItemQt.h --- a/WebKitTools/DumpRenderTree/qt/WorkQueueItemQt.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,159 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * Copyright (C) 2009 Torch Mobile Inc. http://www.torchmobile.com/ - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef WorkQueueItemQt_h -#define WorkQueueItemQt_h - -#include -#include -#include -#include - -class WorkQueueItem { -public: - WorkQueueItem(QWebPage *page) : m_webPage(page) {} - virtual ~WorkQueueItem() { } - virtual bool invoke() const = 0; - -protected: - QPointer m_webPage; -}; - -class LoadItem : public WorkQueueItem { -public: - LoadItem(const QString &url, const QString &target, QWebPage *page) - : WorkQueueItem(page) - , m_url(url) - , m_target(target) - { - } - - QString url() const { return m_url; } - QString target() const { return m_target; } - - virtual bool invoke() const; - -private: - QString m_url; - QString m_target; -}; - -class LoadHTMLStringItem : public WorkQueueItem { -public: - LoadHTMLStringItem(const QString& content, const QString &baseURL, QWebPage *page) - : WorkQueueItem(page) - , m_content(content) - , m_baseURL(baseURL) - { - } - -private: - virtual bool invoke() const; - - QString m_content; - QString m_baseURL; -}; - -class ReloadItem : public WorkQueueItem { -public: - ReloadItem(QWebPage *page) - : WorkQueueItem(page) - { - } - virtual bool invoke() const; -}; - -class ScriptItem : public WorkQueueItem { -public: - ScriptItem(const QString &script, QWebPage *page) - : WorkQueueItem(page) - , m_script(script) - { - } - - QString script() const { return m_script; } - - virtual bool invoke() const; - -private: - QString m_script; -}; - -class LoadingScriptItem : public ScriptItem { -public: - LoadingScriptItem(const QString& script, QWebPage* page) - : ScriptItem(script, page) - { - } - - virtual bool invoke() const { return ScriptItem::invoke(); } -}; - -class NonLoadingScriptItem : public ScriptItem { -public: - NonLoadingScriptItem(const QString& script, QWebPage* page) - : ScriptItem(script, page) - { - } - - virtual bool invoke() const { ScriptItem::invoke(); return false; } -}; - - -class BackForwardItem : public WorkQueueItem { -public: - virtual bool invoke() const; - -protected: - BackForwardItem(int howFar, QWebPage *page) - : WorkQueueItem(page) - , m_howFar(howFar) - { - } - - int m_howFar; -}; - -class BackItem : public BackForwardItem { -public: - BackItem(unsigned howFar, QWebPage *page) - : BackForwardItem(-howFar, page) - { - } -}; - -class ForwardItem : public BackForwardItem { -public: - ForwardItem(unsigned howFar, QWebPage *page) - : BackForwardItem(howFar, page) - { - } -}; - -#endif // !defined(WorkQueueItemQt_h) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/bld.inf.DumpRenderTree --- a/WebKitTools/DumpRenderTree/qt/bld.inf.DumpRenderTree Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -// ============================================================================ -// * Makefile for building: DumpRenderTree -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: DumpRenderTree.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_DUMPRENDERTREE_02759B74 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -DumpRenderTree_0xE8f89ed0.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_DumpRenderTreeQt.cpp -OPTION DEPS U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/mw/QtNetwork/QNetworkAccessManager U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/QTextStream U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/QSocketNotifier U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtNetwork/QSslError U:/epoc32/include/mw/QtNetwork/qsslerror.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtNetwork/qsslcertificate.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtNetwork/qssl.h U:/yaels-qtwebkit/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.h -o u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_DumpRenderTreeQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_EventSenderQt.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/DumpRenderTreeQt.h U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/mw/QtNetwork/QNetworkAccessManager U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/QTextStream U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/QSocketNotifier U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtNetwork/QSslError U:/epoc32/include/mw/QtNetwork/qsslerror.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtNetwork/qsslcertificate.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtNetwork/qssl.h U:/yaels-qtwebkit/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtGui/QApplication U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/QBasicTimer U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/QEvent U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/QEventLoop U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtGui/QMouseEvent U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/QStringList U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtGui/QTouchEvent U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/EventSenderQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/EventSenderQt.h -o u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_EventSenderQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_TextInputControllerQt.cpp -OPTION DEPS U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/qstring.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/TextInputControllerQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/TextInputControllerQt.h -o u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_TextInputControllerQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_LayoutTestControllerQt.cpp -OPTION DEPS U:/epoc32/include/mw/QtCore/QBasicTimer U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QSize U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/QtDebug U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/QTimer U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/QTimerEvent U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebdatabase.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qvariant.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebhistory.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsecurityorigin.h U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/LayoutTestControllerQt.h -o u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_LayoutTestControllerQt.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_GCControllerQt.cpp -OPTION DEPS U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/GCControllerQt.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DUSE_SYSTEM_MALLOC -DQT_NO_DEBUG -DQT_TESTLIB_LIB -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw/QtTest" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/usr/include/freetype2" -I"U:/yaels-qtwebkit" -I"U:/yaels-qtwebkit/JavaScriptCore" -I"U:/yaels-qtwebkit/JavaScriptCore/ForwardingHeaders" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt" -I"U:/yaels-qtwebkit/JavaScriptCore/wtf" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/GCControllerQt.h -o u:/yaels-qtwebkit/WebKitTools/DumpRenderTree/qt/moc_GCControllerQt.cpp -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/bld.inf.ImageDiff --- a/WebKitTools/DumpRenderTree/qt/bld.inf.ImageDiff Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -// ============================================================================ -// * Makefile for building: ImageDiff -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:47 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: ImageDiff.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_IMAGEDIFF_04E9BCED - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -ImageDiff_0xEa6f93a7.mmp - -prj_extensions - - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/fonts.conf --- a/WebKitTools/DumpRenderTree/qt/fonts.conf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,258 +0,0 @@ - - - - - - - - mono - - - monospace - - - - - - - sans serif - - - sans-serif - - - - - - - sans - - - sans-serif - - - - - - - - 0x0020 - 0x00A0 - 0x00AD - 0x034F - 0x0600 - 0x0601 - 0x0602 - 0x0603 - 0x06DD - 0x070F - 0x115F - 0x1160 - 0x1680 - 0x17B4 - 0x17B5 - 0x180E - 0x2000 - 0x2001 - 0x2002 - 0x2003 - 0x2004 - 0x2005 - 0x2006 - 0x2007 - 0x2008 - 0x2009 - 0x200A - 0x200B - 0x200C - 0x200D - 0x200E - 0x200F - 0x2028 - 0x2029 - 0x202A - 0x202B - 0x202C - 0x202D - 0x202E - 0x202F - 0x205F - 0x2060 - 0x2061 - 0x2062 - 0x2063 - 0x206A - 0x206B - 0x206C - 0x206D - 0x206E - 0x206F - 0x3000 - 0x3164 - 0xFEFF - 0xFFA0 - 0xFFF9 - 0xFFFA - 0xFFFB - - - - 30 - - - - - - - Avant Garde - - - true - - - URW Gothic L - - - - - Bookman - - - true - - - URW Bookman L - - - - - Courier - - - true - - - Nimbus Mono L - - - - - Helvetica - - - true - - - Nimbus Sans L - - - - - New Century Schoolbook - - - true - - - Century Schoolbook L - - - - - Palatino - - - true - - - URW Palladio L - - - - - Times - - - true - - - Nimbus Roman No9 L - - - - - Zapf Chancery - - - true - - - URW Chancery L - - - - - Zapf Dingbats - - - true - - - Dingbats - - - - - Symbol - - - true - - - Standard Symbols L - - - - - - Nimbus Roman No9 L - serif - - - - Nimbus Sans L - sans-serif - - - - Nimbus Mono L - monospace - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/fonts/AHEM____.TTF Binary file WebKitTools/DumpRenderTree/qt/fonts/AHEM____.TTF has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/main.cpp --- a/WebKitTools/DumpRenderTree/qt/main.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,179 +0,0 @@ -/* - * Copyright (C) 2006 Nikolas Zimmermann - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "DumpRenderTreeQt.h" - -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef Q_WS_X11 -#include -#include -#endif - -#ifdef Q_OS_WIN -#include -#include -#endif - -#include -#include - -#if defined(__GLIBC__) -#include -#endif - -void messageHandler(QtMsgType type, const char *message) -{ - if (type == QtCriticalMsg) { - fprintf(stderr, "%s\n", message); - return; - } - // do nothing -} - -QString get_backtrace() { - QString s; - -#if defined(__GLIBC__) - void* array[256]; - size_t size; /* number of stack frames */ - - size = backtrace(array, 256); - - if (!size) - return s; - - char** strings = backtrace_symbols(array, size); - for (int i = 0; i < int(size); ++i) { - s += QString::number(i) + - QLatin1String(": ") + - QLatin1String(strings[i]) + QLatin1String("\n"); - } - - if (strings) - free (strings); -#endif - - return s; -} - -#if HAVE(SIGNAL_H) -static NO_RETURN void crashHandler(int sig) -{ - fprintf(stderr, "%s\n", strsignal(sig)); - fprintf(stderr, "%s\n", get_backtrace().toLatin1().constData()); - exit(128 + sig); -} -#endif - -int main(int argc, char* argv[]) -{ -#ifdef Q_OS_WIN - _setmode(1, _O_BINARY); - _setmode(2, _O_BINARY); -#endif - -#ifdef Q_WS_X11 - FcInit(); - WebCore::DumpRenderTree::initializeFonts(); -#endif - - QApplication::setGraphicsSystem("raster"); - QApplication::setStyle(new QWindowsStyle); - - QFont f("Sans Serif"); - f.setPointSize(9); - f.setWeight(QFont::Normal); - f.setStyle(QFont::StyleNormal); - QApplication::setFont(f); - - QApplication app(argc, argv); -#ifdef Q_WS_X11 - QX11Info::setAppDpiY(0, 96); - QX11Info::setAppDpiX(0, 96); -#endif - -#if HAVE(SIGNAL_H) - signal(SIGILL, crashHandler); /* 4: illegal instruction (not reset when caught) */ - signal(SIGTRAP, crashHandler); /* 5: trace trap (not reset when caught) */ - signal(SIGFPE, crashHandler); /* 8: floating point exception */ - signal(SIGBUS, crashHandler); /* 10: bus error */ - signal(SIGSEGV, crashHandler); /* 11: segmentation violation */ - signal(SIGSYS, crashHandler); /* 12: bad argument to system call */ - signal(SIGPIPE, crashHandler); /* 13: write on a pipe with no reader */ - signal(SIGXCPU, crashHandler); /* 24: exceeded CPU time limit */ - signal(SIGXFSZ, crashHandler); /* 25: exceeded file size limit */ -#endif - - QStringList args = app.arguments(); - if (args.count() < 2) { - qDebug() << "Usage: DumpRenderTree [-v|--pixel-tests] filename"; - exit(0); - } - - // Suppress debug output from Qt if not started with -v - if (!args.contains(QLatin1String("-v"))) - qInstallMsgHandler(messageHandler); - - WebCore::DumpRenderTree dumper; - - if (args.contains(QLatin1String("--pixel-tests"))) - dumper.setDumpPixels(true); - - QWebDatabase::removeAllDatabases(); - - if (args.contains(QLatin1String("-"))) { - QObject::connect(&dumper, SIGNAL(ready()), &dumper, SLOT(readLine()), Qt::QueuedConnection); - QTimer::singleShot(0, &dumper, SLOT(readLine())); - } else { - dumper.setSingleFileMode(true); - for (int i = 1; i < args.size(); ++i) { - if (!args.at(i).startsWith('-')) { - dumper.processLine(args.at(i)); - break; - } - } - } - - return app.exec(); - -#ifdef Q_WS_X11 - FcConfigSetCurrent(0); -#endif -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/testplugin.cpp --- a/WebKitTools/DumpRenderTree/qt/testplugin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,67 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include "testplugin.h" - -TestPlugin::TestPlugin(QObject *parent) - : QWebPluginFactory(parent) -{ -} - -TestPlugin::~TestPlugin() -{ -} - -QList TestPlugin::plugins() const -{ - QWebPluginFactory::Plugin plugin; - - plugin.name = "testplugin"; - plugin.description = "testdescription"; - MimeType mimeType; - mimeType.name = "testtype"; - mimeType.fileExtensions.append("testsuffixes"); - plugin.mimeTypes.append(mimeType); - - plugin.name = "testplugin2"; - plugin.description = "testdescription2"; - mimeType.name = "testtype2"; - mimeType.fileExtensions.append("testsuffixes2"); - mimeType.fileExtensions.append("testsuffixes3"); - plugin.mimeTypes.append(mimeType); - - return QList() << plugin; -} - -QObject *TestPlugin::create(const QString&, - const QUrl&, - const QStringList&, - const QStringList&) const -{ - return 0; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/qt/testplugin.h --- a/WebKitTools/DumpRenderTree/qt/testplugin.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ -#include - - -class TestPlugin : public QWebPluginFactory -{ -public: - explicit TestPlugin(QObject *parent = 0); - virtual ~TestPlugin(); - - virtual QList plugins() const; - - virtual QObject *create(const QString &mimeType, - const QUrl &url, - const QStringList &argumentNames, - const QStringList &argumentValues) const; - -}; - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h --- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npapi.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npfunctions.h --- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npfunctions.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h --- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/npruntime.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -#include diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp --- a/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/TestNetscapePlugin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,384 +0,0 @@ -/* - * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. - * Copyright (C) 2008 Zan Dobersek - * Copyright (C) 2009 Holger Hans Peter Freyther - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PluginObject.h" - -#include "npapi.h" -#include "npruntime.h" -#include "npfunctions.h" - -#include -#include -#include -#include -#include - -extern "C" { - NPError NP_Initialize (NPNetscapeFuncs *aMozillaVTable, NPPluginFuncs *aPluginVTable); - NPError NP_Shutdown(void); - NPError NP_GetValue(void *future, NPPVariable variable, void *value); - char* NP_GetMIMEDescription(void); -} - -static void executeScript(const PluginObject* obj, const char* script); - -static NPError -webkit_test_plugin_new_instance(NPMIMEType /*mimetype*/, - NPP instance, - uint16_t /*mode*/, - int16_t argc, - char *argn[], - char *argv[], - NPSavedData* /*savedData*/) -{ - if (browser->version >= 14) { - PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass()); - instance->pdata = obj; - - for (int i = 0; i < argc; i++) { - if (strcasecmp(argn[i], "onstreamload") == 0 && !obj->onStreamLoad) - obj->onStreamLoad = strdup(argv[i]); - else if (strcasecmp(argn[i], "onStreamDestroy") == 0 && !obj->onStreamDestroy) - obj->onStreamDestroy = strdup(argv[i]); - else if (strcasecmp(argn[i], "onURLNotify") == 0 && !obj->onURLNotify) - obj->onURLNotify = strdup(argv[i]); - else if (strcasecmp(argn[i], "src") == 0 && - strcasecmp(argv[i], "data:application/x-webkit-test-netscape,returnerrorfromnewstream") == 0) - obj->returnErrorFromNewStream = TRUE; - else if (strcasecmp(argn[i], "logfirstsetwindow") == 0) - obj->logSetWindow = TRUE; - else if (strcasecmp(argn[i], "testnpruntime") == 0) - testNPRuntime(instance); - else if (strcasecmp(argn[i], "logSrc") == 0) { - for (int i = 0; i < argc; i++) - if (strcasecmp(argn[i], "src") == 0) - pluginLog(instance, "src: %s", argv[i]); - } else if (strcasecmp(argn[i], "cleardocumentduringnew") == 0) - executeScript(obj, "document.body.innerHTML = ''"); - else if (!strcasecmp(argn[i], "ondestroy")) - obj->onDestroy = strdup(argv[i]); - else if (strcasecmp(argn[i], "testdocumentopenindestroystream") == 0) - obj->testDocumentOpenInDestroyStream = TRUE; - else if (strcasecmp(argn[i], "testwindowopen") == 0) - obj->testWindowOpen = TRUE; - else if (strcasecmp(argn[i], "onSetWindow") == 0 && !obj->onSetWindow) - obj->onSetWindow = strdup(argv[i]); - } - - browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode); - } - - return NPERR_NO_ERROR; -} - -static NPError -webkit_test_plugin_destroy_instance(NPP instance, NPSavedData** /*save*/) -{ - PluginObject* obj = static_cast(instance->pdata); - if (obj) { - if (obj->onDestroy) { - executeScript(obj, obj->onDestroy); - free(obj->onDestroy); - } - - if (obj->onStreamLoad) - free(obj->onStreamLoad); - - if (obj->onStreamDestroy) - free(obj->onStreamDestroy); - - if (obj->onURLNotify) - free(obj->onURLNotify); - - if (obj->logDestroy) - pluginLog(instance, "NPP_Destroy"); - - if (obj->onSetWindow) - free(obj->onSetWindow); - - browser->releaseobject(&obj->header); - } - - return NPERR_NO_ERROR; -} - -static NPError -webkit_test_plugin_set_window(NPP instance, NPWindow *window) -{ - PluginObject* obj = static_cast(instance->pdata); - - if (obj) { - obj->lastWindow = *window; - - if (obj->logSetWindow) { - pluginLog(instance, "NPP_SetWindow: %d %d", (int)window->width, (int)window->height); - obj->logSetWindow = false; - } - if (obj->onSetWindow) - executeScript(obj, obj->onSetWindow); - - if (obj->testWindowOpen) { - testWindowOpen(instance); - obj->testWindowOpen = FALSE; - } - - } - - return NPERR_NO_ERROR; -} - -static void executeScript(const PluginObject* obj, const char* script) -{ - NPObject *windowScriptObject; - browser->getvalue(obj->npp, NPNVWindowNPObject, &windowScriptObject); - - NPString npScript; - npScript.UTF8Characters = script; - npScript.UTF8Length = strlen(script); - - NPVariant browserResult; - browser->evaluate(obj->npp, windowScriptObject, &npScript, &browserResult); - browser->releasevariantvalue(&browserResult); -} - -static NPError -webkit_test_plugin_new_stream(NPP instance, - NPMIMEType /*type*/, - NPStream *stream, - NPBool /*seekable*/, - uint16_t* stype) -{ - PluginObject* obj = static_cast(instance->pdata); - obj->stream = stream; - *stype = NP_NORMAL; - - if (obj->returnErrorFromNewStream) - return NPERR_GENERIC_ERROR; - - if (browser->version >= NPVERS_HAS_RESPONSE_HEADERS) - notifyStream(obj, stream->url, stream->headers); - - if (obj->onStreamLoad) - executeScript(obj, obj->onStreamLoad); - - return NPERR_NO_ERROR; -} - -static NPError -webkit_test_plugin_destroy_stream(NPP instance, NPStream* /*stream*/, NPError reason) -{ - PluginObject* obj = (PluginObject*)instance->pdata; - - if (obj->onStreamDestroy) { - NPObject* windowObject = 0; - NPError error = browser->getvalue(instance, NPNVWindowNPObject, &windowObject); - - if (error == NPERR_NO_ERROR) { - NPVariant onStreamDestroyVariant; - if (browser->getproperty(instance, windowObject, browser->getstringidentifier(obj->onStreamDestroy), &onStreamDestroyVariant)) { - if (NPVARIANT_IS_OBJECT(onStreamDestroyVariant)) { - NPObject* onStreamDestroyFunction = NPVARIANT_TO_OBJECT(onStreamDestroyVariant); - - NPVariant reasonVariant; - INT32_TO_NPVARIANT(reason, reasonVariant); - - NPVariant result; - browser->invokeDefault(instance, onStreamDestroyFunction, &reasonVariant, 1, &result); - browser->releasevariantvalue(&result); - } - browser->releasevariantvalue(&onStreamDestroyVariant); - } - browser->releaseobject(windowObject); - } - } - - if (obj->testDocumentOpenInDestroyStream) { - testDocumentOpen(instance); - obj->testDocumentOpenInDestroyStream = FALSE; - } - - return NPERR_NO_ERROR; -} - -static void -webkit_test_plugin_stream_as_file(NPP /*instance*/, NPStream* /*stream*/, const char* /*fname*/) -{ -} - -static int32_t -webkit_test_plugin_write_ready(NPP /*instance*/, NPStream* /*stream*/) -{ - return 4096; -} - -static int32_t -webkit_test_plugin_write(NPP instance, - NPStream* /*stream*/, - int32_t /*offset*/, - int32_t len, - void* /*buffer*/) -{ - PluginObject* obj = (PluginObject*)instance->pdata; - - if (obj->returnNegativeOneFromWrite) - return -1; - - return len; -} - -static void -webkit_test_plugin_print(NPP /*instance*/, NPPrint* /*platformPrint*/) -{ -} - -static int16_t -webkit_test_plugin_handle_event(NPP instance, void* event) -{ - PluginObject* obj = static_cast(instance->pdata); - if (!obj->eventLogging) - return 0; - - XEvent* evt = static_cast(event); - pluginLog(instance, "event %d", evt->type); - - return 0; -} - -static void -webkit_test_plugin_url_notify(NPP instance, const char* url, NPReason reason, void* notifyData) -{ - PluginObject* obj = static_cast(instance->pdata); - - if (obj->onURLNotify) - executeScript(obj, obj->onURLNotify); - - handleCallback(obj, url, reason, notifyData); -} - -static NPError -webkit_test_plugin_get_value(NPP instance, NPPVariable variable, void *value) -{ - NPError err = NPERR_NO_ERROR; - - switch (variable) { - case NPPVpluginNameString: - *((char **)value) = const_cast("WebKit Test PlugIn"); - break; - case NPPVpluginDescriptionString: - *((char **)value) = const_cast("Simple Netscape plug-in that handles test content for WebKit"); - break; - case NPPVpluginNeedsXEmbed: - *((NPBool *)value) = TRUE; - break; - case NPPVpluginScriptableIID: - case NPPVpluginScriptableInstance: - case NPPVpluginScriptableNPObject: - err = NPERR_GENERIC_ERROR; - break; - default: - fprintf(stderr, "Unhandled variable\n"); - err = NPERR_GENERIC_ERROR; - break; - } - - if (variable == NPPVpluginScriptableNPObject) { - void **v = (void **)value; - PluginObject* obj = static_cast(instance->pdata); - browser->retainobject((NPObject *)obj); - *v = obj; - err = NPERR_NO_ERROR; - } - - return err; -} - -static NPError -webkit_test_plugin_set_value(NPP instance, NPNVariable variable, void* value) -{ - PluginObject* obj = static_cast(instance->pdata); - - switch (variable) { - case NPNVprivateModeBool: - obj->cachedPrivateBrowsingMode = *(NPBool*)value; - return NPERR_NO_ERROR; - default: - return NPERR_GENERIC_ERROR; - } -} - -char * -NP_GetMIMEDescription(void) -{ - return const_cast("application/x-webkit-test-netscape:testnetscape:test netscape content"); -} - -NPError -NP_Initialize (NPNetscapeFuncs *aMozillaVTable, NPPluginFuncs *aPluginVTable) -{ - if (aMozillaVTable == NULL || aPluginVTable == NULL) - return NPERR_INVALID_FUNCTABLE_ERROR; - - if ((aMozillaVTable->version >> 8) > NP_VERSION_MAJOR) - return NPERR_INCOMPATIBLE_VERSION_ERROR; - - if (aPluginVTable->size < sizeof (NPPluginFuncs)) - return NPERR_INVALID_FUNCTABLE_ERROR; - - browser = aMozillaVTable; - - aPluginVTable->size = sizeof (NPPluginFuncs); - aPluginVTable->version = (NP_VERSION_MAJOR << 8) + NP_VERSION_MINOR; - aPluginVTable->newp = webkit_test_plugin_new_instance; - aPluginVTable->destroy = webkit_test_plugin_destroy_instance; - aPluginVTable->setwindow = webkit_test_plugin_set_window; - aPluginVTable->newstream = webkit_test_plugin_new_stream; - aPluginVTable->destroystream = webkit_test_plugin_destroy_stream; - aPluginVTable->asfile = webkit_test_plugin_stream_as_file; - aPluginVTable->writeready = webkit_test_plugin_write_ready; - aPluginVTable->write = webkit_test_plugin_write; - aPluginVTable->print = webkit_test_plugin_print; - aPluginVTable->event = webkit_test_plugin_handle_event; - aPluginVTable->urlnotify = webkit_test_plugin_url_notify; - aPluginVTable->javaClass = NULL; - aPluginVTable->getvalue = webkit_test_plugin_get_value; - aPluginVTable->setvalue = webkit_test_plugin_set_value; - - return NPERR_NO_ERROR; -} - -NPError -NP_Shutdown(void) -{ - return NPERR_NO_ERROR; -} - -NPError -NP_GetValue(void* /*future*/, NPPVariable variable, void *value) -{ - return webkit_test_plugin_get_value(NULL, variable, value); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/AccessibilityControllerWin.cpp --- a/WebKitTools/DumpRenderTree/win/AccessibilityControllerWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,294 +0,0 @@ -/* - * Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityController.h" - -#include "AccessibilityUIElement.h" -#include "DumpRenderTree.h" -#include "FrameLoadDelegate.h" -#include -#include -#include -#include -#include -#include -#include - -using namespace std; - -AccessibilityController::AccessibilityController() - : m_focusEventHook(0) - , m_scrollingStartEventHook(0) - , m_valueChangeEventHook(0) - , m_allEventsHook(0) -{ -} - -AccessibilityController::~AccessibilityController() -{ - setLogFocusEvents(false); - setLogValueChangeEvents(false); - - if (m_allEventsHook) - UnhookWinEvent(m_allEventsHook); - - for (HashMap::iterator it = m_notificationListeners.begin(); it != m_notificationListeners.end(); ++it) - JSValueUnprotect(frame->globalContext(), it->second); -} - -AccessibilityUIElement AccessibilityController::elementAtPoint(int x, int y) -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityController::focusedElement() -{ - COMPtr rootAccessible = rootElement().platformUIElement(); - - VARIANT vFocus; - if (FAILED(rootAccessible->get_accFocus(&vFocus))) - return 0; - - if (V_VT(&vFocus) == VT_I4) { - ASSERT(V_I4(&vFocus) == CHILDID_SELF); - // The root accessible object is the focused object. - return rootAccessible; - } - - ASSERT(V_VT(&vFocus) == VT_DISPATCH); - // We have an IDispatch; query for IAccessible. - return COMPtr(Query, V_DISPATCH(&vFocus)); -} - -AccessibilityUIElement AccessibilityController::rootElement() -{ - COMPtr view; - if (FAILED(frame->webView(&view))) - return 0; - - COMPtr viewPrivate(Query, view); - if (!viewPrivate) - return 0; - - HWND webViewWindow; - if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow))) - return 0; - - // Get the root accessible object by querying for the accessible object for the - // WebView's window. - COMPtr rootAccessible; - if (FAILED(AccessibleObjectFromWindow(webViewWindow, static_cast(OBJID_CLIENT), __uuidof(IAccessible), reinterpret_cast(&rootAccessible)))) - return 0; - - return rootAccessible; -} - -static void CALLBACK logEventProc(HWINEVENTHOOK, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD, DWORD) -{ - // Get the accessible object for this event. - COMPtr parentObject; - - VARIANT vChild; - VariantInit(&vChild); - - HRESULT hr = AccessibleObjectFromEvent(hwnd, idObject, idChild, &parentObject, &vChild); - ASSERT(SUCCEEDED(hr)); - - // Get the name of the focused element, and log it to stdout. - BSTR nameBSTR; - hr = parentObject->get_accName(vChild, &nameBSTR); - ASSERT(SUCCEEDED(hr)); - wstring name(nameBSTR, ::SysStringLen(nameBSTR)); - SysFreeString(nameBSTR); - - switch (event) { - case EVENT_OBJECT_FOCUS: - printf("Received focus event for object '%S'.\n", name.c_str()); - break; - - case EVENT_OBJECT_VALUECHANGE: { - BSTR valueBSTR; - hr = parentObject->get_accValue(vChild, &valueBSTR); - ASSERT(SUCCEEDED(hr)); - wstring value(valueBSTR, ::SysStringLen(valueBSTR)); - SysFreeString(valueBSTR); - - printf("Received value change event for object '%S', value '%S'.\n", name.c_str(), value.c_str()); - break; - } - - case EVENT_SYSTEM_SCROLLINGSTART: - printf("Received scrolling start event for object '%S'.\n", name.c_str()); - break; - - default: - printf("Received unknown event for object '%S'.\n", name.c_str()); - break; - } - - VariantClear(&vChild); -} - -void AccessibilityController::setLogFocusEvents(bool logFocusEvents) -{ - if (!!m_focusEventHook == logFocusEvents) - return; - - if (!logFocusEvents) { - UnhookWinEvent(m_focusEventHook); - m_focusEventHook = 0; - return; - } - - // Ensure that accessibility is initialized for the WebView by querying for - // the root accessible object. - rootElement(); - - m_focusEventHook = SetWinEventHook(EVENT_OBJECT_FOCUS, EVENT_OBJECT_FOCUS, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT); - - ASSERT(m_focusEventHook); -} - -void AccessibilityController::setLogValueChangeEvents(bool logValueChangeEvents) -{ - if (!!m_valueChangeEventHook == logValueChangeEvents) - return; - - if (!logValueChangeEvents) { - UnhookWinEvent(m_valueChangeEventHook); - m_valueChangeEventHook = 0; - return; - } - - // Ensure that accessibility is initialized for the WebView by querying for - // the root accessible object. - rootElement(); - - m_valueChangeEventHook = SetWinEventHook(EVENT_OBJECT_VALUECHANGE, EVENT_OBJECT_VALUECHANGE, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT); - - ASSERT(m_valueChangeEventHook); -} - -void AccessibilityController::setLogScrollingStartEvents(bool logScrollingStartEvents) -{ - if (!!m_scrollingStartEventHook == logScrollingStartEvents) - return; - - if (!logScrollingStartEvents) { - UnhookWinEvent(m_scrollingStartEventHook); - m_scrollingStartEventHook = 0; - return; - } - - // Ensure that accessibility is initialized for the WebView by querying for - // the root accessible object. - rootElement(); - - m_scrollingStartEventHook = SetWinEventHook(EVENT_SYSTEM_SCROLLINGSTART, EVENT_SYSTEM_SCROLLINGSTART, GetModuleHandle(0), logEventProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT); - - ASSERT(m_scrollingStartEventHook); -} - -static string stringEvent(DWORD event) -{ - switch(event) { - case EVENT_OBJECT_VALUECHANGE: - return "value change event"; - default: - return "unknown event"; - } -} - -static void CALLBACK notificationListenerProc(HWINEVENTHOOK, DWORD event, HWND hwnd, LONG idObject, LONG idChild, DWORD, DWORD) -{ - // Get the accessible object for this event. - COMPtr parentObject; - - VARIANT vChild; - VariantInit(&vChild); - - HRESULT hr = AccessibleObjectFromEvent(hwnd, idObject, idChild, &parentObject, &vChild); - ASSERT(SUCCEEDED(hr)); - - COMPtr childDispatch; - if (FAILED(parentObject->get_accChild(vChild, &childDispatch))) { - VariantClear(&vChild); - return; - } - - COMPtr childAccessible(Query, childDispatch); - - sharedFrameLoadDelegate->accessibilityController()->notificationReceived(childAccessible, stringEvent(event)); - - VariantClear(&vChild); -} - -static COMPtr comparableObject(const COMPtr& serviceProvider) -{ - COMPtr comparable; - serviceProvider->QueryService(SID_AccessibleComparable, __uuidof(IAccessibleComparable), reinterpret_cast(&comparable)); - return comparable; -} - -void AccessibilityController::notificationReceived(PlatformUIElement element, const string& eventName) -{ - for (HashMap::iterator it = m_notificationListeners.begin(); it != m_notificationListeners.end(); ++it) { - COMPtr thisServiceProvider(Query, it->first); - if (!thisServiceProvider) - continue; - - COMPtr thisComparable = comparableObject(thisServiceProvider); - if (!thisComparable) - continue; - - COMPtr elementServiceProvider(Query, element); - if (!elementServiceProvider) - continue; - - COMPtr elementComparable = comparableObject(elementServiceProvider); - if (!elementComparable) - continue; - - BOOL isSame = FALSE; - thisComparable->isSameObject(elementComparable.get(), &isSame); - if (!isSame) - continue; - - JSRetainPtr jsNotification(Adopt, JSStringCreateWithUTF8CString(eventName.c_str())); - JSValueRef argument = JSValueMakeString(frame->globalContext(), jsNotification.get()); - JSObjectCallAsFunction(frame->globalContext(), it->second, NULL, 1, &argument, NULL); - } -} - -void AccessibilityController::addNotificationListener(PlatformUIElement element, JSObjectRef functionCallback) -{ - if (!m_allEventsHook) - m_allEventsHook = SetWinEventHook(EVENT_MIN, EVENT_MAX, GetModuleHandle(0), notificationListenerProc, GetCurrentProcessId(), 0, WINEVENT_INCONTEXT); - - JSValueProtect(frame->globalContext(), functionCallback); - m_notificationListeners.add(element, functionCallback); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp --- a/WebKitTools/DumpRenderTree/win/AccessibilityUIElementWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,631 +0,0 @@ -/* - * Copyright (C) 2008 Apple Inc. All Rights Reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "AccessibilityUIElement.h" - -#include "AccessibilityController.h" -#include "DumpRenderTree.h" -#include "FrameLoadDelegate.h" -#include -#include -#include - -using std::wstring; - -AccessibilityUIElement::AccessibilityUIElement(PlatformUIElement element) - : m_element(element) -{ -} - -AccessibilityUIElement::AccessibilityUIElement(const AccessibilityUIElement& other) - : m_element(other.m_element) -{ -} - -AccessibilityUIElement::~AccessibilityUIElement() -{ -} - -void AccessibilityUIElement::getLinkedUIElements(Vector&) -{ -} - -void AccessibilityUIElement::getDocumentLinks(Vector&) -{ -} - -void AccessibilityUIElement::getChildren(Vector& children) -{ - long childCount; - if (FAILED(m_element->get_accChildCount(&childCount))) - return; - for (long i = 0; i < childCount; ++i) - children.append(getChildAtIndex(i)); -} - -void AccessibilityUIElement::getChildrenWithRange(Vector& elementVector, unsigned location, unsigned length) -{ - long childCount; - unsigned appendedCount = 0; - if (FAILED(m_element->get_accChildCount(&childCount))) - return; - for (long i = location; i < childCount && appendedCount < length; ++i, ++appendedCount) - elementVector.append(getChildAtIndex(i)); -} - -int AccessibilityUIElement::childrenCount() -{ - long childCount; - m_element->get_accChildCount(&childCount); - return childCount; -} - -int AccessibilityUIElement::rowCount() -{ - // FIXME: implement - return 0; -} - -int AccessibilityUIElement::columnCount() -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::elementAtPoint(int x, int y) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::linkedUIElementAtIndex(unsigned index) -{ - // FIXME: implement - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::getChildAtIndex(unsigned index) -{ - COMPtr child; - VARIANT vChild; - ::VariantInit(&vChild); - V_VT(&vChild) = VT_I4; - // In MSAA, index 0 is the object itself. - V_I4(&vChild) = index + 1; - if (FAILED(m_element->get_accChild(vChild, &child))) - return 0; - return COMPtr(Query, child); -} - -unsigned AccessibilityUIElement::indexOfChild(AccessibilityUIElement* element) -{ - // FIXME: implement - return 0; -} - -JSStringRef AccessibilityUIElement::allAttributes() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfLinkedUIElements() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfDocumentLinks() -{ - return JSStringCreateWithCharacters(0, 0); -} - -AccessibilityUIElement AccessibilityUIElement::titleUIElement() -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::parentElement() -{ - COMPtr parent; - m_element->get_accParent(&parent); - - COMPtr parentAccessible(Query, parent); - return parentAccessible; -} - -JSStringRef AccessibilityUIElement::attributesOfChildren() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::parameterizedAttributeNames() -{ - return JSStringCreateWithCharacters(0, 0); -} - -static VARIANT& self() -{ - static VARIANT vSelf; - static bool haveInitialized; - - if (!haveInitialized) { - ::VariantInit(&vSelf); - V_VT(&vSelf) = VT_I4; - V_I4(&vSelf) = CHILDID_SELF; - } - return vSelf; -} - -JSStringRef AccessibilityUIElement::role() -{ - VARIANT vRole; - if (FAILED(m_element->get_accRole(self(), &vRole))) - return JSStringCreateWithCharacters(0, 0); - - ASSERT(V_VT(&vRole) == VT_I4 || V_VT(&vRole) == VT_BSTR); - - wstring result; - if (V_VT(&vRole) == VT_I4) { - unsigned roleTextLength = ::GetRoleText(V_I4(&vRole), 0, 0) + 1; - - Vector roleText(roleTextLength); - - ::GetRoleText(V_I4(&vRole), roleText.data(), roleTextLength); - - result = roleText.data(); - } else if (V_VT(&vRole) == VT_BSTR) - result = wstring(V_BSTR(&vRole), ::SysStringLen(V_BSTR(&vRole))); - - ::VariantClear(&vRole); - - return JSStringCreateWithCharacters(result.data(), result.length()); -} - -JSStringRef AccessibilityUIElement::subrole() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::roleDescription() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::title() -{ - BSTR titleBSTR; - if (FAILED(m_element->get_accName(self(), &titleBSTR)) || !titleBSTR) - return JSStringCreateWithCharacters(0, 0); - wstring title(titleBSTR, SysStringLen(titleBSTR)); - ::SysFreeString(titleBSTR); - return JSStringCreateWithCharacters(title.data(), title.length()); -} - -JSStringRef AccessibilityUIElement::description() -{ - BSTR descriptionBSTR; - if (FAILED(m_element->get_accDescription(self(), &descriptionBSTR)) || !descriptionBSTR) - return JSStringCreateWithCharacters(0, 0); - wstring description(descriptionBSTR, SysStringLen(descriptionBSTR)); - ::SysFreeString(descriptionBSTR); - return JSStringCreateWithCharacters(description.data(), description.length()); -} - -JSStringRef AccessibilityUIElement::stringValue() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::language() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::helpText() const -{ - return 0; -} - -double AccessibilityUIElement::x() -{ - long x, y, width, height; - if (FAILED(m_element->accLocation(&x, &y, &width, &height, self()))) - return 0; - return x; -} - -double AccessibilityUIElement::y() -{ - long x, y, width, height; - if (FAILED(m_element->accLocation(&x, &y, &width, &height, self()))) - return 0; - return y; -} - -double AccessibilityUIElement::width() -{ - long x, y, width, height; - if (FAILED(m_element->accLocation(&x, &y, &width, &height, self()))) - return 0; - return width; -} - -double AccessibilityUIElement::height() -{ - long x, y, width, height; - if (FAILED(m_element->accLocation(&x, &y, &width, &height, self()))) - return 0; - return height; -} - -double AccessibilityUIElement::clickPointX() -{ - return 0; -} - -double AccessibilityUIElement::clickPointY() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::valueDescription() -{ - return 0; -} - -static DWORD accessibilityState(COMPtr element) -{ - VARIANT state; - element->get_accState(self(), &state); - - ASSERT(V_VT(&state) == VT_I4); - - DWORD result = state.lVal; - VariantClear(&state); - - return result; -} - -bool AccessibilityUIElement::isSelected() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_SELECTED) == STATE_SYSTEM_SELECTED; -} - -int AccessibilityUIElement::hierarchicalLevel() const -{ - return 0; -} - -bool AccessibilityUIElement::ariaIsGrabbed() const -{ - return false; -} - -JSStringRef AccessibilityUIElement::ariaDropEffects() const -{ - return 0; -} - -bool AccessibilityUIElement::isExpanded() const -{ - return false; -} - -bool AccessibilityUIElement::isChecked() const -{ - VARIANT vState; - if (FAILED(m_element->get_accState(self(), &vState))) - return false; - - return vState.lVal & STATE_SYSTEM_CHECKED; -} - -JSStringRef AccessibilityUIElement::orientation() const -{ - return 0; -} - -double AccessibilityUIElement::intValue() const -{ - BSTR valueBSTR; - if (FAILED(m_element->get_accValue(self(), &valueBSTR)) || !valueBSTR) - return 0; - wstring value(valueBSTR, SysStringLen(valueBSTR)); - ::SysFreeString(valueBSTR); - TCHAR* ignored; - return _tcstod(value.data(), &ignored); -} - -double AccessibilityUIElement::minValue() -{ - return 0; -} - -double AccessibilityUIElement::maxValue() -{ - return 0; -} - -bool AccessibilityUIElement::isActionSupported(JSStringRef action) -{ - return false; -} - -bool AccessibilityUIElement::isEnabled() -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_UNAVAILABLE) != STATE_SYSTEM_UNAVAILABLE; -} - -bool AccessibilityUIElement::isRequired() const -{ - return false; -} - - -int AccessibilityUIElement::insertionPointLineNumber() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::attributesOfColumnHeaders() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfRowHeaders() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfColumns() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfRows() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfVisibleCells() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::attributesOfHeader() -{ - return JSStringCreateWithCharacters(0, 0); -} - -int AccessibilityUIElement::indexInTable() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::rowIndexRange() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::columnIndexRange() -{ - return JSStringCreateWithCharacters(0, 0); -} - -int AccessibilityUIElement::lineForIndex(int) -{ - return 0; -} - -JSStringRef AccessibilityUIElement::boundsForRange(unsigned location, unsigned length) -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::stringForRange(unsigned, unsigned) -{ - return JSStringCreateWithCharacters(0, 0); -} - -AccessibilityUIElement AccessibilityUIElement::cellForColumnAndRow(unsigned column, unsigned row) -{ - return 0; -} - -JSStringRef AccessibilityUIElement::selectedTextRange() -{ - return JSStringCreateWithCharacters(0, 0); -} - -void AccessibilityUIElement::setSelectedTextRange(unsigned location, unsigned length) -{ -} - -JSStringRef AccessibilityUIElement::stringAttributeValue(JSStringRef attribute) -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -bool AccessibilityUIElement::boolAttributeValue(JSStringRef attribute) -{ - // FIXME: implement - return false; -} - -bool AccessibilityUIElement::isAttributeSettable(JSStringRef attribute) -{ - return false; -} - -bool AccessibilityUIElement::isAttributeSupported(JSStringRef attribute) -{ - return false; -} - -void AccessibilityUIElement::increment() -{ -} - -void AccessibilityUIElement::decrement() -{ -} - -void AccessibilityUIElement::showMenu() -{ - ASSERT(hasPopup()); - m_element->accDoDefaultAction(self()); -} - -void AccessibilityUIElement::press() -{ - // FIXME: implement -} - -AccessibilityUIElement AccessibilityUIElement::disclosedRowAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaOwnsElementAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::ariaFlowToElementAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::selectedRowAtIndex(unsigned index) -{ - return 0; -} - -AccessibilityUIElement AccessibilityUIElement::disclosedByRow() -{ - return 0; -} - -JSStringRef AccessibilityUIElement::accessibilityValue() const -{ - BSTR valueBSTR; - if (FAILED(m_element->get_accValue(self(), &valueBSTR)) || !valueBSTR) - return JSStringCreateWithCharacters(0, 0); - - wstring value(valueBSTR, SysStringLen(valueBSTR)); - ::SysFreeString(valueBSTR); - - return JSStringCreateWithCharacters(value.data(), value.length()); -} - - -JSStringRef AccessibilityUIElement::documentEncoding() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::documentURI() -{ - return JSStringCreateWithCharacters(0, 0); -} - -JSStringRef AccessibilityUIElement::url() -{ - // FIXME: implement - return JSStringCreateWithCharacters(0, 0); -} - -bool AccessibilityUIElement::addNotificationListener(JSObjectRef functionCallback) -{ - if (!functionCallback) - return false; - - sharedFrameLoadDelegate->accessibilityController()->addNotificationListener(m_element, functionCallback); - return true; -} - -void AccessibilityUIElement::removeNotificationListener() -{ - // FIXME: implement -} - -bool AccessibilityUIElement::isSelectable() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_SELECTABLE) == STATE_SYSTEM_SELECTABLE; -} - -bool AccessibilityUIElement::isMultiSelectable() const -{ - DWORD multiSelectable = STATE_SYSTEM_EXTSELECTABLE | STATE_SYSTEM_MULTISELECTABLE; - DWORD state = accessibilityState(m_element); - return (state & multiSelectable) == multiSelectable; -} - -bool AccessibilityUIElement::isVisible() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_INVISIBLE) != STATE_SYSTEM_INVISIBLE; -} - -bool AccessibilityUIElement::isOffScreen() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_OFFSCREEN) == STATE_SYSTEM_OFFSCREEN; -} - -bool AccessibilityUIElement::isCollapsed() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_COLLAPSED) == STATE_SYSTEM_COLLAPSED; -} - -bool AccessibilityUIElement::hasPopup() const -{ - DWORD state = accessibilityState(m_element); - return (state & STATE_SYSTEM_HASPOPUP) == STATE_SYSTEM_HASPOPUP; -} - -void AccessibilityUIElement::takeFocus() -{ - m_element->accSelect(SELFLAG_TAKEFOCUS, self()); -} - -void AccessibilityUIElement::takeSelection() -{ - m_element->accSelect(SELFLAG_TAKESELECTION, self()); -} - -void AccessibilityUIElement::addSelection() -{ - m_element->accSelect(SELFLAG_ADDSELECTION, self()); -} - -void AccessibilityUIElement::removeSelection() -{ - m_element->accSelect(SELFLAG_REMOVESELECTION, self()); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp --- a/WebKitTools/DumpRenderTree/win/DRTDesktopNotificationPresenter.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,145 +0,0 @@ -/* - * Copyright (C) 2009 Google Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions are - * met: - * - * * Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * * Redistributions in binary form must reproduce the above - * copyright notice, this list of conditions and the following disclaimer - * in the documentation and/or other materials provided with the - * distribution. - * * Neither the name of Google Inc. nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT - * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, - * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DRTDesktopNotificationPresenter.h" - -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include -#include -#include - -DRTDesktopNotificationPresenter::DRTDesktopNotificationPresenter() - : m_refCount(1) {} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebDesktopNotificationsDelegate)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE DRTDesktopNotificationPresenter::AddRef() -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE DRTDesktopNotificationPresenter::Release() -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete(this); - - return newRef; -} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::showDesktopNotification( - /* [in] */ IWebDesktopNotification* notification) -{ - BSTR title, text, url; - BOOL html; - - if (!notification->isHTML(&html) && html) { - notification->contentsURL(&url); - printf("DESKTOP NOTIFICATION: contents at %S\n", url ? url : L""); - } else { - notification->iconURL(&url); - notification->title(&title); - notification->text(&text); - printf("DESKTOP NOTIFICATION: icon %S, title %S, text %S\n", - url ? url : L"", - title ? title : L"", - text ? text : L""); - } - - // In this stub implementation, the notification is displayed immediately; - // we dispatch the display event to mimic that. - notification->notifyDisplay(); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::cancelDesktopNotification( - /* [in] */ IWebDesktopNotification* notification) -{ - BSTR identifier; - BOOL html; - notification->isHTML(&html); - if (html) - notification->contentsURL(&identifier); - else - notification->title(&identifier); - - printf("DESKTOP NOTIFICATION CLOSED: %S\n", identifier ? identifier : L""); - notification->notifyClose(false); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::notificationDestroyed( - /* [in] */ IWebDesktopNotification* notification) -{ - // Since in these tests events happen immediately, we don't hold on to - // Notification pointers. So there's no cleanup to do. - return S_OK; -} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::checkNotificationPermission( - /* [in] */ BSTR origin, - /* [out, retval] */ int* result) -{ -#if ENABLE(NOTIFICATIONS) - JSStringRef jsOrigin = JSStringCreateWithBSTR(origin); - bool allowed = ::gLayoutTestController->checkDesktopNotificationPermission(jsOrigin); - - if (allowed) - *result = WebCore::NotificationPresenter::PermissionAllowed; - else - *result = WebCore::NotificationPresenter::PermissionDenied; - - JSStringRelease(jsOrigin); -#endif - return S_OK; -} - -HRESULT STDMETHODCALLTYPE DRTDesktopNotificationPresenter::requestNotificationPermission( - /* [in] */ BSTR origin) -{ - printf("DESKTOP NOTIFICATION PERMISSION REQUESTED: %S\n", origin ? origin : L""); - return S_OK; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DRTDesktopNotificationPresenter.h --- a/WebKitTools/DumpRenderTree/win/DRTDesktopNotificationPresenter.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,66 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DRTDesktopNotificationPresenter_h -#define DRTDesktopNotificationPresenter_h - -#include -#include -#include - -class DRTDesktopNotificationPresenter : public IWebDesktopNotificationsDelegate { -public: - DRTDesktopNotificationPresenter(); - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebDesktopNotificationsDelegate - virtual HRESULT STDMETHODCALLTYPE showDesktopNotification( - /* [in] */ IWebDesktopNotification* notification); - - virtual HRESULT STDMETHODCALLTYPE cancelDesktopNotification( - /* [in] */ IWebDesktopNotification* notification); - - virtual HRESULT STDMETHODCALLTYPE notificationDestroyed( - /* [in] */ IWebDesktopNotification* notification); - - virtual HRESULT STDMETHODCALLTYPE checkNotificationPermission( - /* [in] */ BSTR origin, - /* [out, retval] */ int* result); - - virtual HRESULT STDMETHODCALLTYPE requestNotificationPermission( - /* [in] */ BSTR origin); - -private: - ULONG m_refCount; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DraggingInfo.h --- a/WebKitTools/DumpRenderTree/win/DraggingInfo.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,67 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DraggingInfo_h -#define DraggingInfo_h - -#include - -class DraggingInfo { -public: - DraggingInfo(IDataObject* object, IDropSource* source) - : m_object(object) - , m_source(source) - , m_performedDropEffect(DROPEFFECT_NONE) - { - m_object->AddRef(); - m_source->AddRef(); - } - - ~DraggingInfo() - { - if (m_object) - m_object->Release(); - m_object = 0; - if (m_source) - m_source->Release(); - m_source = 0; - } - - IDataObject* dataObject() const { return m_object; } - IDropSource* dropSource() const { return m_source; } - - DWORD performedDropEffect() const { return m_performedDropEffect; } - void setPerformedDropEffect(DWORD effect) { m_performedDropEffect = effect; } - -private: - IDataObject* m_object; - IDropSource* m_source; - DWORD m_performedDropEffect; -}; - -#endif // !defined(DraggingInfo_h) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DumpRenderTree.cpp --- a/WebKitTools/DumpRenderTree/win/DumpRenderTree.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1376 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DumpRenderTree.h" - -#include "EditingDelegate.h" -#include "FrameLoadDelegate.h" -#include "HistoryDelegate.h" -#include "LayoutTestController.h" -#include "PixelDumpSupport.h" -#include "PolicyDelegate.h" -#include "ResourceLoadDelegate.h" -#include "UIDelegate.h" -#include "WorkQueueItem.h" -#include "WorkQueue.h" - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if USE(CFNETWORK) -#include -#endif - -#if USE(CFNETWORK) -#include -#endif - -using namespace std; - -#if !defined(NDEBUG) && (!defined(DEBUG_INTERNAL) || defined(DEBUG_ALL)) -const LPWSTR TestPluginDir = L"TestNetscapePlugin_Debug"; -#else -const LPWSTR TestPluginDir = L"TestNetscapePlugin"; -#endif - -static LPCWSTR fontsEnvironmentVariable = L"WEBKIT_TESTFONTS"; -#define USE_MAC_FONTS - -const LPCWSTR kDumpRenderTreeClassName = L"DumpRenderTreeWindow"; - -static bool dumpTree = true; -static bool dumpPixels; -static bool dumpAllPixels; -static bool printSeparators; -static bool leakChecking = false; -static bool threaded = false; -static bool forceComplexText = false; -static bool printSupportedFeatures = false; -static RetainPtr persistentUserStyleSheetLocation; - -volatile bool done; -// This is the topmost frame that is loading, during a given load, or nil when no load is -// in progress. Usually this is the same as the main frame, but not always. In the case -// where a frameset is loaded, and then new content is loaded into one of the child frames, -// that child frame is the "topmost frame that is loading". -IWebFrame* topLoadingFrame; // !nil iff a load is in progress -static COMPtr prevTestBFItem; // current b/f item at the end of the previous test -PolicyDelegate* policyDelegate; -COMPtr sharedFrameLoadDelegate; -COMPtr sharedUIDelegate; -COMPtr sharedEditingDelegate; -COMPtr sharedResourceLoadDelegate; -COMPtr sharedHistoryDelegate; - -IWebFrame* frame; -HWND webViewWindow; - -RefPtr gLayoutTestController; - -UINT_PTR waitToDumpWatchdog = 0; - -void setPersistentUserStyleSheetLocation(CFStringRef url) -{ - persistentUserStyleSheetLocation = url; -} - -bool setAlwaysAcceptCookies(bool alwaysAcceptCookies) -{ -#if USE(CFNETWORK) - COMPtr cookieManager; - if (FAILED(WebKitCreateInstance(CLSID_WebCookieManager, 0, IID_IWebCookieManager, reinterpret_cast(&cookieManager)))) - return false; - CFHTTPCookieStorageRef cookieStorage = 0; - if (FAILED(cookieManager->cookieStorage(&cookieStorage)) || !cookieStorage) - return false; - - WebKitCookieStorageAcceptPolicy cookieAcceptPolicy = alwaysAcceptCookies ? WebKitCookieStorageAcceptPolicyAlways : WebKitCookieStorageAcceptPolicyOnlyFromMainDocumentDomain; - CFHTTPCookieStorageSetCookieAcceptPolicy(cookieStorage, cookieAcceptPolicy); - return true; -#else - // FIXME: Implement! - return false; -#endif -} - -wstring urlSuitableForTestResult(const wstring& url) -{ - if (url.find(L"file://") == wstring::npos) - return url; - - return lastPathComponent(url); -} - -wstring lastPathComponent(const wstring& url) -{ - if (url.empty()) - return url; - - return PathFindFileNameW(url.c_str()); -} - -static string toUTF8(const wchar_t* wideString, size_t length) -{ - int result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, 0, 0, 0, 0); - Vector utf8Vector(result); - result = WideCharToMultiByte(CP_UTF8, 0, wideString, length + 1, utf8Vector.data(), result, 0, 0); - if (!result) - return string(); - - return string(utf8Vector.data(), utf8Vector.size() - 1); -} - -string toUTF8(BSTR bstr) -{ - return toUTF8(bstr, SysStringLen(bstr)); -} - -string toUTF8(const wstring& wideString) -{ - return toUTF8(wideString.c_str(), wideString.length()); -} - -static LRESULT CALLBACK DumpRenderTreeWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) -{ - switch (msg) { - case WM_DESTROY: - for (unsigned i = openWindows().size() - 1; i >= 0; --i) { - if (openWindows()[i] == hWnd) { - openWindows().remove(i); - windowToWebViewMap().remove(hWnd); - break; - } - } - return 0; - break; - default: - return DefWindowProc(hWnd, msg, wParam, lParam); - } -} - -static const wstring& exePath() -{ - static wstring path; - static bool initialized; - - if (initialized) - return path; - initialized = true; - - TCHAR buffer[MAX_PATH]; - GetModuleFileName(GetModuleHandle(0), buffer, ARRAYSIZE(buffer)); - path = buffer; - int lastSlash = path.rfind('\\'); - if (lastSlash != -1 && lastSlash + 1 < path.length()) - path = path.substr(0, lastSlash + 1); - - return path; -} - -static const wstring& fontsPath() -{ - static wstring path; - static bool initialized; - - if (initialized) - return path; - initialized = true; - - DWORD size = GetEnvironmentVariable(fontsEnvironmentVariable, 0, 0); - Vector buffer(size); - if (GetEnvironmentVariable(fontsEnvironmentVariable, buffer.data(), buffer.size())) { - path = buffer.data(); - if (path[path.length() - 1] != '\\') - path.append(L"\\"); - return path; - } - - path = exePath() + TEXT("DumpRenderTree.resources\\"); - return path; -} - -static void addQTDirToPATH() -{ - static LPCWSTR pathEnvironmentVariable = L"PATH"; - static LPCWSTR quickTimeKeyName = L"Software\\Apple Computer, Inc.\\QuickTime"; - static LPCWSTR quickTimeSysDir = L"QTSysDir"; - static bool initialized; - - if (initialized) - return; - initialized = true; - - // Get the QuickTime dll directory from the registry. The key can be in either HKLM or HKCU. - WCHAR qtPath[MAX_PATH]; - DWORD qtPathBufferLen = sizeof(qtPath); - DWORD keyType; - HRESULT result = SHGetValue(HKEY_LOCAL_MACHINE, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen); - if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ) { - qtPathBufferLen = sizeof(qtPath); - result = SHGetValue(HKEY_CURRENT_USER, quickTimeKeyName, quickTimeSysDir, &keyType, (LPVOID)qtPath, &qtPathBufferLen); - if (result != ERROR_SUCCESS || !qtPathBufferLen || keyType != REG_SZ) - return; - } - - // Read the current PATH. - DWORD pathSize = GetEnvironmentVariableW(pathEnvironmentVariable, 0, 0); - Vector oldPath(pathSize); - if (!GetEnvironmentVariableW(pathEnvironmentVariable, oldPath.data(), oldPath.size())) - return; - - // And add the QuickTime dll. - wstring newPath; - newPath.append(qtPath); - newPath.append(L";"); - newPath.append(oldPath.data(), oldPath.size()); - SetEnvironmentVariableW(pathEnvironmentVariable, newPath.data()); -} - -#ifdef DEBUG_ALL -#define WEBKITDLL TEXT("WebKit_debug.dll") -#else -#define WEBKITDLL TEXT("WebKit.dll") -#endif - -static void initialize() -{ - if (HMODULE webKitModule = LoadLibrary(WEBKITDLL)) - if (FARPROC dllRegisterServer = GetProcAddress(webKitModule, "DllRegisterServer")) - dllRegisterServer(); - - // Init COM - OleInitialize(0); - - static LPCTSTR fontsToInstall[] = { - TEXT("AHEM____.ttf"), - TEXT("Apple Chancery.ttf"), - TEXT("Courier Bold.ttf"), - TEXT("Courier.ttf"), - TEXT("Helvetica Bold Oblique.ttf"), - TEXT("Helvetica Bold.ttf"), - TEXT("Helvetica Oblique.ttf"), - TEXT("Helvetica.ttf"), - TEXT("Helvetica Neue Bold Italic.ttf"), - TEXT("Helvetica Neue Bold.ttf"), - TEXT("Helvetica Neue Condensed Black.ttf"), - TEXT("Helvetica Neue Condensed Bold.ttf"), - TEXT("Helvetica Neue Italic.ttf"), - TEXT("Helvetica Neue Light Italic.ttf"), - TEXT("Helvetica Neue Light.ttf"), - TEXT("Helvetica Neue UltraLight Italic.ttf"), - TEXT("Helvetica Neue UltraLight.ttf"), - TEXT("Helvetica Neue.ttf"), - TEXT("Lucida Grande.ttf"), - TEXT("Lucida Grande Bold.ttf"), - TEXT("Monaco.ttf"), - TEXT("Papyrus.ttf"), - TEXT("Times Bold Italic.ttf"), - TEXT("Times Bold.ttf"), - TEXT("Times Italic.ttf"), - TEXT("Times Roman.ttf"), - TEXT("WebKit Layout Tests 2.ttf"), - TEXT("WebKit Layout Tests.ttf"), - TEXT("WebKitWeightWatcher100.ttf"), - TEXT("WebKitWeightWatcher200.ttf"), - TEXT("WebKitWeightWatcher300.ttf"), - TEXT("WebKitWeightWatcher400.ttf"), - TEXT("WebKitWeightWatcher500.ttf"), - TEXT("WebKitWeightWatcher600.ttf"), - TEXT("WebKitWeightWatcher700.ttf"), - TEXT("WebKitWeightWatcher800.ttf"), - TEXT("WebKitWeightWatcher900.ttf") - }; - - wstring resourcesPath = fontsPath(); - - COMPtr textRenderer; - if (SUCCEEDED(WebKitCreateInstance(CLSID_WebTextRenderer, 0, IID_IWebTextRenderer, (void**)&textRenderer))) - for (int i = 0; i < ARRAYSIZE(fontsToInstall); ++i) - textRenderer->registerPrivateFont(wstring(resourcesPath + fontsToInstall[i]).c_str()); - - // Add the QuickTime dll directory to PATH or QT 7.6 will fail to initialize on systems - // linked with older versions of qtmlclientlib.dll. - addQTDirToPATH(); - - // Register a host window - WNDCLASSEX wcex; - - wcex.cbSize = sizeof(WNDCLASSEX); - - wcex.style = CS_HREDRAW | CS_VREDRAW; - wcex.lpfnWndProc = DumpRenderTreeWndProc; - wcex.cbClsExtra = 0; - wcex.cbWndExtra = 0; - wcex.hInstance = GetModuleHandle(0); - wcex.hIcon = 0; - wcex.hCursor = LoadCursor(0, IDC_ARROW); - wcex.hbrBackground = 0; - wcex.lpszMenuName = 0; - wcex.lpszClassName = kDumpRenderTreeClassName; - wcex.hIconSm = 0; - - RegisterClassEx(&wcex); -} - -void displayWebView() -{ - ::InvalidateRect(webViewWindow, 0, TRUE); - ::SendMessage(webViewWindow, WM_PAINT, 0, 0); -} - -void dumpFrameScrollPosition(IWebFrame* frame) -{ - if (!frame) - return; - - COMPtr framePrivate; - if (FAILED(frame->QueryInterface(&framePrivate))) - return; - - SIZE scrollPosition; - if (FAILED(framePrivate->scrollOffset(&scrollPosition))) - return; - - if (abs(scrollPosition.cx) > 0.00000001 || abs(scrollPosition.cy) > 0.00000001) { - COMPtr parent; - if (FAILED(frame->parentFrame(&parent))) - return; - if (parent) { - BSTR name; - if (FAILED(frame->name(&name))) - return; - printf("frame '%S' ", name ? name : L""); - SysFreeString(name); - } - printf("scrolled to %.f,%.f\n", (double)scrollPosition.cx, (double)scrollPosition.cy); - } - - if (::gLayoutTestController->dumpChildFrameScrollPositions()) { - COMPtr enumKids; - if (FAILED(frame->childFrames(&enumKids))) - return; - VARIANT var; - VariantInit(&var); - while (enumKids->Next(1, &var, 0) == S_OK) { - ASSERT(V_VT(&var) == VT_UNKNOWN); - COMPtr framePtr; - V_UNKNOWN(&var)->QueryInterface(IID_IWebFrame, (void**)&framePtr); - dumpFrameScrollPosition(framePtr.get()); - VariantClear(&var); - } - } -} - -static wstring dumpFramesAsText(IWebFrame* frame) -{ - if (!frame) - return L""; - - COMPtr document; - if (FAILED(frame->DOMDocument(&document))) - return L""; - - COMPtr documentElement; - if (FAILED(document->documentElement(&documentElement))) - return L""; - - wstring result; - - // Add header for all but the main frame. - COMPtr parent; - if (FAILED(frame->parentFrame(&parent))) - return L""; - if (parent) { - BSTR name = L""; - if (FAILED(frame->name(&name))) - return L""; - - result.append(L"\n--------\nFrame: '"); - result.append(name ? name : L"", SysStringLen(name)); - result.append(L"'\n--------\n"); - - SysFreeString(name); - } - - BSTR innerText = 0; - COMPtr docPrivate; - if (SUCCEEDED(documentElement->QueryInterface(&docPrivate))) - docPrivate->innerText(&innerText); - - result.append(innerText ? innerText : L"", SysStringLen(innerText)); - result.append(L"\n"); - - SysFreeString(innerText); - - if (::gLayoutTestController->dumpChildFramesAsText()) { - COMPtr enumKids; - if (FAILED(frame->childFrames(&enumKids))) - return L""; - VARIANT var; - VariantInit(&var); - while (enumKids->Next(1, &var, 0) == S_OK) { - ASSERT(V_VT(&var) == VT_UNKNOWN); - COMPtr framePtr; - V_UNKNOWN(&var)->QueryInterface(IID_IWebFrame, (void**)&framePtr); - result.append(dumpFramesAsText(framePtr.get())); - VariantClear(&var); - } - } - - return result; -} - -static int compareHistoryItems(const void* item1, const void* item2) -{ - COMPtr itemA; - if (FAILED((*(COMPtr*)item1)->QueryInterface(&itemA))) - return 0; - - COMPtr itemB; - if (FAILED((*(COMPtr*)item2)->QueryInterface(&itemB))) - return 0; - - BSTR targetA; - if (FAILED(itemA->target(&targetA))) - return 0; - - BSTR targetB; - if (FAILED(itemB->target(&targetB))) { - SysFreeString(targetA); - return 0; - } - - int result = wcsicmp(wstring(targetA, SysStringLen(targetA)).c_str(), wstring(targetB, SysStringLen(targetB)).c_str()); - SysFreeString(targetA); - SysFreeString(targetB); - return result; -} - -static void dumpHistoryItem(IWebHistoryItem* item, int indent, bool current) -{ - assert(item); - - int start = 0; - if (current) { - printf("curr->"); - start = 6; - } - for (int i = start; i < indent; i++) - putchar(' '); - - BSTR url; - if (FAILED(item->URLString(&url))) - return; - - if (wcsstr(url, L"file:/") == url) { - static wchar_t* layoutTestsString = L"/LayoutTests/"; - static wchar_t* fileTestString = L"(file test):"; - - wchar_t* result = wcsstr(url, layoutTestsString); - if (result == NULL) - return; - wchar_t* start = result + wcslen(layoutTestsString); - - BSTR newURL = SysAllocStringLen(NULL, SysStringLen(url)); - wcscpy(newURL, fileTestString); - wcscpy(newURL + wcslen(fileTestString), start); - - SysFreeString(url); - url = newURL; - } - - printf("%S", url ? url : L""); - SysFreeString(url); - - COMPtr itemPrivate; - if (FAILED(item->QueryInterface(&itemPrivate))) - return; - - BSTR target; - if (FAILED(itemPrivate->target(&target))) - return; - if (SysStringLen(target)) - printf(" (in frame \"%S\")", target); - SysFreeString(target); - BOOL isTargetItem = FALSE; - if (FAILED(itemPrivate->isTargetItem(&isTargetItem))) - return; - if (isTargetItem) - printf(" **nav target**"); - putchar('\n'); - - unsigned kidsCount; - SAFEARRAY* arrPtr; - if (FAILED(itemPrivate->children(&kidsCount, &arrPtr)) || !kidsCount) - return; - - Vector > kidsVector; - - LONG lowerBound; - if (FAILED(::SafeArrayGetLBound(arrPtr, 1, &lowerBound))) - goto exit; - - LONG upperBound; - if (FAILED(::SafeArrayGetUBound(arrPtr, 1, &upperBound))) - goto exit; - - LONG length = upperBound - lowerBound + 1; - if (!length) - goto exit; - ASSERT(length == kidsCount); - - IUnknown** safeArrayData; - if (FAILED(::SafeArrayAccessData(arrPtr, (void**)&safeArrayData))) - goto exit; - - for (int i = 0; i < length; ++i) - kidsVector.append(safeArrayData[i]); - ::SafeArrayUnaccessData(arrPtr); - - // must sort to eliminate arbitrary result ordering which defeats reproducible testing - qsort(kidsVector.data(), kidsCount, sizeof(kidsVector[0]), compareHistoryItems); - - for (unsigned i = 0; i < kidsCount; ++i) { - COMPtr item; - kidsVector[i]->QueryInterface(&item); - dumpHistoryItem(item.get(), indent + 4, false); - } - -exit: - if (arrPtr && SUCCEEDED(::SafeArrayUnlock(arrPtr))) - ::SafeArrayDestroy(arrPtr); -} - -static void dumpBackForwardList(IWebView* webView) -{ - ASSERT(webView); - - printf("\n============== Back Forward List ==============\n"); - - COMPtr bfList; - if (FAILED(webView->backForwardList(&bfList))) - return; - - // Print out all items in the list after prevTestBFItem, which was from the previous test - // Gather items from the end of the list, the print them out from oldest to newest - - Vector > itemsToPrint; - - int forwardListCount; - if (FAILED(bfList->forwardListCount(&forwardListCount))) - return; - - for (int i = forwardListCount; i > 0; --i) { - COMPtr item; - if (FAILED(bfList->itemAtIndex(i, &item))) - return; - // something is wrong if the item from the last test is in the forward part of the b/f list - assert(item != prevTestBFItem); - COMPtr itemUnknown; - item->QueryInterface(&itemUnknown); - itemsToPrint.append(itemUnknown); - } - - COMPtr currentItem; - if (FAILED(bfList->currentItem(¤tItem))) - return; - - assert(currentItem != prevTestBFItem); - COMPtr currentItemUnknown; - currentItem->QueryInterface(¤tItemUnknown); - itemsToPrint.append(currentItemUnknown); - int currentItemIndex = itemsToPrint.size() - 1; - - int backListCount; - if (FAILED(bfList->backListCount(&backListCount))) - return; - - for (int i = -1; i >= -backListCount; --i) { - COMPtr item; - if (FAILED(bfList->itemAtIndex(i, &item))) - return; - if (item == prevTestBFItem) - break; - COMPtr itemUnknown; - item->QueryInterface(&itemUnknown); - itemsToPrint.append(itemUnknown); - } - - for (int i = itemsToPrint.size() - 1; i >= 0; --i) { - COMPtr historyItemToPrint; - itemsToPrint[i]->QueryInterface(&historyItemToPrint); - dumpHistoryItem(historyItemToPrint.get(), 8, i == currentItemIndex); - } - - printf("===============================================\n"); -} - -static void dumpBackForwardListForAllWindows() -{ - unsigned count = openWindows().size(); - for (unsigned i = 0; i < count; i++) { - HWND window = openWindows()[i]; - IWebView* webView = windowToWebViewMap().get(window).get(); - dumpBackForwardList(webView); - } -} - -static void invalidateAnyPreviousWaitToDumpWatchdog() -{ - if (!waitToDumpWatchdog) - return; - - KillTimer(0, waitToDumpWatchdog); - waitToDumpWatchdog = 0; -} - -void dump() -{ - invalidateAnyPreviousWaitToDumpWatchdog(); - - COMPtr dataSource; - if (SUCCEEDED(frame->dataSource(&dataSource))) { - COMPtr response; - if (SUCCEEDED(dataSource->response(&response)) && response) { - BSTR mimeType; - if (SUCCEEDED(response->MIMEType(&mimeType))) - ::gLayoutTestController->setDumpAsText(::gLayoutTestController->dumpAsText() | !_tcscmp(mimeType, TEXT("text/plain"))); - SysFreeString(mimeType); - } - } - - BSTR resultString = 0; - - if (dumpTree) { - if (::gLayoutTestController->dumpAsText()) { - ::InvalidateRect(webViewWindow, 0, TRUE); - ::SendMessage(webViewWindow, WM_PAINT, 0, 0); - wstring result = dumpFramesAsText(frame); - resultString = SysAllocStringLen(result.data(), result.size()); - } else { - bool isSVGW3CTest = (gLayoutTestController->testPathOrURL().find("svg\\W3C-SVG-1.1") != string::npos); - unsigned width; - unsigned height; - if (isSVGW3CTest) { - width = 480; - height = 360; - } else { - width = LayoutTestController::maxViewWidth; - height = LayoutTestController::maxViewHeight; - } - - ::SetWindowPos(webViewWindow, 0, 0, 0, width, height, SWP_NOMOVE); - ::InvalidateRect(webViewWindow, 0, TRUE); - ::SendMessage(webViewWindow, WM_PAINT, 0, 0); - - COMPtr framePrivate; - if (FAILED(frame->QueryInterface(&framePrivate))) - goto fail; - framePrivate->renderTreeAsExternalRepresentation(gLayoutTestController->isPrinting(), &resultString); - } - - if (!resultString) - printf("ERROR: nil result from %s", ::gLayoutTestController->dumpAsText() ? "IDOMElement::innerText" : "IFrameViewPrivate::renderTreeAsExternalRepresentation"); - else { - unsigned stringLength = SysStringLen(resultString); - int bufferSize = ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, 0, 0, 0, 0); - char* buffer = (char*)malloc(bufferSize + 1); - ::WideCharToMultiByte(CP_UTF8, 0, resultString, stringLength, buffer, bufferSize + 1, 0, 0); - fwrite(buffer, 1, bufferSize, stdout); - free(buffer); - if (!::gLayoutTestController->dumpAsText()) - dumpFrameScrollPosition(frame); - } - if (::gLayoutTestController->dumpBackForwardList()) - dumpBackForwardListForAllWindows(); - } - - if (printSeparators) { - puts("#EOF"); // terminate the content block - fputs("#EOF\n", stderr); - fflush(stdout); - fflush(stderr); - } - - if (dumpPixels - && gLayoutTestController->generatePixelResults() - && !gLayoutTestController->dumpDOMAsWebArchive() - && !gLayoutTestController->dumpSourceAsWebArchive()) - dumpWebViewAsPixelsAndCompareWithExpected(gLayoutTestController->expectedPixelHash()); - - printf("#EOF\n"); // terminate the (possibly empty) pixels block - fflush(stdout); - -fail: - SysFreeString(resultString); - // This will exit from our message loop. - PostQuitMessage(0); - done = true; -} - -static bool shouldLogFrameLoadDelegates(const char* pathOrURL) -{ - return strstr(pathOrURL, "/loading/") || strstr(pathOrURL, "\\loading\\"); -} - -static bool shouldLogHistoryDelegates(const char* pathOrURL) -{ - return strstr(pathOrURL, "/globalhistory/") || strstr(pathOrURL, "\\globalhistory\\"); -} - -static bool shouldOpenWebInspector(const char* pathOrURL) -{ - return strstr(pathOrURL, "/inspector/") || strstr(pathOrURL, "\\inspector\\"); -} - -static bool shouldEnableDeveloperExtras(const char* pathOrURL) -{ - return shouldOpenWebInspector(pathOrURL) || strstr(pathOrURL, "/inspector-enabled/") || strstr(pathOrURL, "\\inspector-enabled\\"); -} - -static void resetDefaultsToConsistentValues(IWebPreferences* preferences) -{ -#ifdef USE_MAC_FONTS - static BSTR standardFamily = SysAllocString(TEXT("Times")); - static BSTR fixedFamily = SysAllocString(TEXT("Courier")); - static BSTR sansSerifFamily = SysAllocString(TEXT("Helvetica")); - static BSTR cursiveFamily = SysAllocString(TEXT("Apple Chancery")); - static BSTR fantasyFamily = SysAllocString(TEXT("Papyrus")); -#else - static BSTR standardFamily = SysAllocString(TEXT("Times New Roman")); - static BSTR fixedFamily = SysAllocString(TEXT("Courier New")); - static BSTR sansSerifFamily = SysAllocString(TEXT("Arial")); - static BSTR cursiveFamily = SysAllocString(TEXT("Comic Sans MS")); // Not actually cursive, but it's what IE and Firefox use. - static BSTR fantasyFamily = SysAllocString(TEXT("Times New Roman")); -#endif - - preferences->setStandardFontFamily(standardFamily); - preferences->setFixedFontFamily(fixedFamily); - preferences->setSerifFontFamily(standardFamily); - preferences->setSansSerifFontFamily(sansSerifFamily); - preferences->setCursiveFontFamily(cursiveFamily); - preferences->setFantasyFontFamily(fantasyFamily); - - preferences->setAutosaves(FALSE); - preferences->setDefaultFontSize(16); - preferences->setDefaultFixedFontSize(13); - preferences->setMinimumFontSize(1); - preferences->setJavaEnabled(FALSE); - preferences->setPlugInsEnabled(TRUE); - preferences->setDOMPasteAllowed(TRUE); - preferences->setEditableLinkBehavior(WebKitEditableLinkOnlyLiveWithShiftKey); - preferences->setFontSmoothing(FontSmoothingTypeStandard); - preferences->setUsesPageCache(FALSE); - preferences->setPrivateBrowsingEnabled(FALSE); - preferences->setJavaScriptCanOpenWindowsAutomatically(TRUE); - preferences->setJavaScriptEnabled(TRUE); - preferences->setTabsToLinks(FALSE); - preferences->setShouldPrintBackgrounds(TRUE); - preferences->setLoadsImagesAutomatically(TRUE); - preferences->setEditingBehavior(WebKitEditingWinBehavior); - - if (persistentUserStyleSheetLocation) { - Vector urlCharacters(CFStringGetLength(persistentUserStyleSheetLocation.get())); - CFStringGetCharacters(persistentUserStyleSheetLocation.get(), CFRangeMake(0, CFStringGetLength(persistentUserStyleSheetLocation.get())), (UniChar *)urlCharacters.data()); - BSTR url = SysAllocStringLen(urlCharacters.data(), urlCharacters.size()); - preferences->setUserStyleSheetLocation(url); - SysFreeString(url); - preferences->setUserStyleSheetEnabled(TRUE); - } else - preferences->setUserStyleSheetEnabled(FALSE); - - COMPtr prefsPrivate(Query, preferences); - if (prefsPrivate) { - prefsPrivate->setAllowUniversalAccessFromFileURLs(TRUE); - prefsPrivate->setAllowFileAccessFromFileURLs(TRUE); - prefsPrivate->setAuthorAndUserStylesEnabled(TRUE); - prefsPrivate->setDeveloperExtrasEnabled(FALSE); - prefsPrivate->setExperimentalNotificationsEnabled(TRUE); - prefsPrivate->setShouldPaintNativeControls(FALSE); // FIXME - need to make DRT pass with Windows native controls - prefsPrivate->setJavaScriptCanAccessClipboard(TRUE); - prefsPrivate->setXSSAuditorEnabled(FALSE); - prefsPrivate->setFrameFlatteningEnabled(FALSE); - prefsPrivate->setOfflineWebApplicationCacheEnabled(TRUE); - } - setAlwaysAcceptCookies(false); - - setlocale(LC_ALL, ""); -} - -static void resetWebViewToConsistentStateBeforeTesting() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - webView->setPolicyDelegate(0); - policyDelegate->setPermissive(false); - policyDelegate->setControllerToNotifyDone(0); - - COMPtr webIBActions(Query, webView); - if (webIBActions) { - webIBActions->makeTextStandardSize(0); - webIBActions->resetPageZoom(0); - } - - - COMPtr preferences; - if (SUCCEEDED(webView->preferences(&preferences))) - resetDefaultsToConsistentValues(preferences.get()); - - COMPtr viewEditing; - if (SUCCEEDED(webView->QueryInterface(&viewEditing))) - viewEditing->setSmartInsertDeleteEnabled(TRUE); - - COMPtr webViewPrivate(Query, webView); - if (!webViewPrivate) - return; - - COMPtr inspector; - if (SUCCEEDED(webViewPrivate->inspector(&inspector))) - inspector->setJavaScriptProfilingEnabled(FALSE); - - HWND viewWindow; - if (SUCCEEDED(webViewPrivate->viewWindow(reinterpret_cast(&viewWindow))) && viewWindow) - SetFocus(viewWindow); - - webViewPrivate->clearMainFrameName(); - webViewPrivate->resetOriginAccessWhitelists(); - - BSTR groupName; - if (SUCCEEDED(webView->groupName(&groupName))) { - webViewPrivate->removeAllUserContentFromGroup(groupName); - SysFreeString(groupName); - } - - sharedUIDelegate->resetUndoManager(); - - sharedFrameLoadDelegate->resetToConsistentState(); -} - -static void runTest(const string& testPathOrURL) -{ - static BSTR methodBStr = SysAllocString(TEXT("GET")); - - // Look for "'" as a separator between the path or URL, and the pixel dump hash that follows. - string pathOrURL(testPathOrURL); - string expectedPixelHash; - - size_t separatorPos = pathOrURL.find("'"); - if (separatorPos != string::npos) { - pathOrURL = string(testPathOrURL, 0, separatorPos); - expectedPixelHash = string(testPathOrURL, separatorPos + 1); - } - - BSTR urlBStr; - - CFStringRef str = CFStringCreateWithCString(0, pathOrURL.c_str(), kCFStringEncodingWindowsLatin1); - CFURLRef url = CFURLCreateWithString(0, str, 0); - - if (!url) - url = CFURLCreateWithFileSystemPath(0, str, kCFURLWindowsPathStyle, false); - - CFRelease(str); - - str = CFURLGetString(url); - - CFIndex length = CFStringGetLength(str); - UniChar* buffer = new UniChar[length]; - - CFStringGetCharacters(str, CFRangeMake(0, length), buffer); - urlBStr = SysAllocStringLen((OLECHAR*)buffer, length); - delete[] buffer; - - CFRelease(url); - - ::gLayoutTestController = LayoutTestController::create(pathOrURL, expectedPixelHash); - done = false; - topLoadingFrame = 0; - - gLayoutTestController->setIconDatabaseEnabled(false); - - if (shouldLogFrameLoadDelegates(pathOrURL.c_str())) - gLayoutTestController->setDumpFrameLoadCallbacks(true); - - COMPtr webView; - if (SUCCEEDED(frame->webView(&webView))) { - COMPtr viewPrivate; - if (SUCCEEDED(webView->QueryInterface(&viewPrivate))) { - if (shouldLogHistoryDelegates(pathOrURL.c_str())) { - gLayoutTestController->setDumpHistoryDelegateCallbacks(true); - viewPrivate->setHistoryDelegate(sharedHistoryDelegate.get()); - } else - viewPrivate->setHistoryDelegate(0); - } - } - COMPtr history; - if (SUCCEEDED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast(&history)))) - history->setOptionalSharedHistory(0); - - resetWebViewToConsistentStateBeforeTesting(); - - if (shouldEnableDeveloperExtras(pathOrURL.c_str())) { - gLayoutTestController->setDeveloperExtrasEnabled(true); - if (shouldOpenWebInspector(pathOrURL.c_str())) - gLayoutTestController->showWebInspector(); - } - - prevTestBFItem = 0; - if (webView) { - COMPtr bfList; - if (SUCCEEDED(webView->backForwardList(&bfList))) - bfList->currentItem(&prevTestBFItem); - } - - WorkQueue::shared()->clear(); - WorkQueue::shared()->setFrozen(false); - - HWND hostWindow; - webView->hostWindow(reinterpret_cast(&hostWindow)); - - COMPtr request; - HRESULT hr = WebKitCreateInstance(CLSID_WebMutableURLRequest, 0, IID_IWebMutableURLRequest, (void**)&request); - if (FAILED(hr)) - goto exit; - - request->initWithURL(urlBStr, WebURLRequestUseProtocolCachePolicy, 60); - - request->setHTTPMethod(methodBStr); - frame->loadRequest(request.get()); - - MSG msg; - while (GetMessage(&msg, 0, 0, 0)) { - // We get spurious WM_MOUSELEAVE events which make event handling machinery think that mouse button - // is released during dragging (see e.g. fast\dynamic\layer-hit-test-crash.html). - // Mouse can never leave WebView during normal DumpRenderTree operation, so we just ignore all such events. - if (msg.message == WM_MOUSELEAVE) - continue; - TranslateMessage(&msg); - DispatchMessage(&msg); - } - - if (shouldEnableDeveloperExtras(pathOrURL.c_str())) { - gLayoutTestController->closeWebInspector(); - gLayoutTestController->setDeveloperExtrasEnabled(false); - } - - resetWebViewToConsistentStateBeforeTesting(); - - frame->stopLoading(); - - if (::gLayoutTestController->closeRemainingWindowsWhenComplete()) { - Vector windows = openWindows(); - unsigned size = windows.size(); - for (unsigned i = 0; i < size; i++) { - HWND window = windows[i]; - - // Don't try to close the main window - if (window == hostWindow) - continue; - - DestroyWindow(window); - } - } - -exit: - SysFreeString(urlBStr); - ::gLayoutTestController.clear(); - - return; -} - -static Boolean pthreadEqualCallback(const void* value1, const void* value2) -{ - return (Boolean)pthread_equal(*(pthread_t*)value1, *(pthread_t*)value2); -} - -static CFDictionaryKeyCallBacks pthreadKeyCallbacks = { 0, 0, 0, 0, pthreadEqualCallback, 0 }; - -static pthread_mutex_t javaScriptThreadsMutex = PTHREAD_MUTEX_INITIALIZER; -static bool javaScriptThreadsShouldTerminate; - -static const int javaScriptThreadsCount = 4; -static CFMutableDictionaryRef javaScriptThreads() -{ - assert(pthread_mutex_trylock(&javaScriptThreadsMutex) == EBUSY); - static CFMutableDictionaryRef staticJavaScriptThreads; - if (!staticJavaScriptThreads) - staticJavaScriptThreads = CFDictionaryCreateMutable(0, 0, &pthreadKeyCallbacks, 0); - return staticJavaScriptThreads; -} - -// Loops forever, running a script and randomly respawning, until -// javaScriptThreadsShouldTerminate becomes true. -void* runJavaScriptThread(void* arg) -{ - const char* const script = - " \ - var array = []; \ - for (var i = 0; i < 10; i++) { \ - array.push(String(i)); \ - } \ - "; - - while (true) { - JSGlobalContextRef ctx = JSGlobalContextCreate(0); - JSStringRef scriptRef = JSStringCreateWithUTF8CString(script); - - JSValueRef exception = 0; - JSEvaluateScript(ctx, scriptRef, 0, 0, 1, &exception); - assert(!exception); - - JSGlobalContextRelease(ctx); - JSStringRelease(scriptRef); - - JSGarbageCollect(ctx); - - pthread_mutex_lock(&javaScriptThreadsMutex); - - // Check for cancellation. - if (javaScriptThreadsShouldTerminate) { - pthread_mutex_unlock(&javaScriptThreadsMutex); - return 0; - } - - // Respawn probabilistically. - if (rand() % 5 == 0) { - pthread_t pthread; - pthread_create(&pthread, 0, &runJavaScriptThread, 0); - pthread_detach(pthread); - - pthread_t self = pthread_self(); - CFDictionaryRemoveValue(javaScriptThreads(), self.p); - CFDictionaryAddValue(javaScriptThreads(), pthread.p, 0); - - pthread_mutex_unlock(&javaScriptThreadsMutex); - return 0; - } - - pthread_mutex_unlock(&javaScriptThreadsMutex); - } -} - -static void startJavaScriptThreads(void) -{ - pthread_mutex_lock(&javaScriptThreadsMutex); - - for (int i = 0; i < javaScriptThreadsCount; i++) { - pthread_t pthread; - pthread_create(&pthread, 0, &runJavaScriptThread, 0); - pthread_detach(pthread); - CFDictionaryAddValue(javaScriptThreads(), pthread.p, 0); - } - - pthread_mutex_unlock(&javaScriptThreadsMutex); -} - -static void stopJavaScriptThreads(void) -{ - pthread_mutex_lock(&javaScriptThreadsMutex); - - javaScriptThreadsShouldTerminate = true; - - pthread_t* pthreads[javaScriptThreadsCount] = {0}; - int threadDictCount = CFDictionaryGetCount(javaScriptThreads()); - assert(threadDictCount == javaScriptThreadsCount); - CFDictionaryGetKeysAndValues(javaScriptThreads(), (const void**)pthreads, 0); - - pthread_mutex_unlock(&javaScriptThreadsMutex); - - for (int i = 0; i < javaScriptThreadsCount; i++) { - pthread_t* pthread = pthreads[i]; - pthread_join(*pthread, 0); - free(pthread); - } -} - -Vector& openWindows() -{ - static Vector vector; - return vector; -} - -WindowToWebViewMap& windowToWebViewMap() -{ - static WindowToWebViewMap map; - return map; -} - -IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow) -{ - unsigned maxViewWidth = LayoutTestController::maxViewWidth; - unsigned maxViewHeight = LayoutTestController::maxViewHeight; - HWND hostWindow = CreateWindowEx(WS_EX_TOOLWINDOW, kDumpRenderTreeClassName, TEXT("DumpRenderTree"), WS_POPUP, - -maxViewWidth, -maxViewHeight, maxViewWidth, maxViewHeight, 0, 0, GetModuleHandle(0), 0); - - IWebView* webView; - - HRESULT hr = WebKitCreateInstance(CLSID_WebView, 0, IID_IWebView, (void**)&webView); - if (FAILED(hr)) { - fprintf(stderr, "Failed to create CLSID_WebView instance, error 0x%x\n", hr); - return 0; - } - - if (FAILED(webView->setHostWindow((OLE_HANDLE)(ULONG64)hostWindow))) - return 0; - - RECT clientRect; - clientRect.bottom = clientRect.left = clientRect.top = clientRect.right = 0; - BSTR groupName = SysAllocString(L"org.webkit.DumpRenderTree"); - bool failed = FAILED(webView->initWithFrame(clientRect, 0, groupName)); - SysFreeString(groupName); - if (failed) - return 0; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return 0; - - viewPrivate->setShouldApplyMacFontAscentHack(TRUE); - viewPrivate->setAlwaysUsesComplexTextCodePath(forceComplexText); - - BSTR pluginPath = SysAllocStringLen(0, exePath().length() + _tcslen(TestPluginDir)); - _tcscpy(pluginPath, exePath().c_str()); - _tcscat(pluginPath, TestPluginDir); - failed = FAILED(viewPrivate->addAdditionalPluginDirectory(pluginPath)); - SysFreeString(pluginPath); - if (failed) - return 0; - - HWND viewWindow; - if (FAILED(viewPrivate->viewWindow(reinterpret_cast(&viewWindow)))) - return 0; - if (webViewWindow) - *webViewWindow = viewWindow; - - SetWindowPos(viewWindow, 0, 0, 0, maxViewWidth, maxViewHeight, 0); - ShowWindow(hostWindow, SW_SHOW); - - if (FAILED(webView->setFrameLoadDelegate(sharedFrameLoadDelegate.get()))) - return 0; - - if (FAILED(viewPrivate->setFrameLoadDelegatePrivate(sharedFrameLoadDelegate.get()))) - return 0; - - if (FAILED(webView->setUIDelegate(sharedUIDelegate.get()))) - return 0; - - COMPtr viewEditing; - if (FAILED(webView->QueryInterface(&viewEditing))) - return 0; - - if (FAILED(viewEditing->setEditingDelegate(sharedEditingDelegate.get()))) - return 0; - - if (FAILED(webView->setResourceLoadDelegate(sharedResourceLoadDelegate.get()))) - return 0; - - openWindows().append(hostWindow); - windowToWebViewMap().set(hostWindow, webView); - return webView; -} - -#if USE(CFNETWORK) -RetainPtr sharedCFURLCache() -{ -#ifndef DEBUG_ALL - HMODULE module = GetModuleHandle(TEXT("CFNetwork.dll")); -#else - HMODULE module = GetModuleHandle(TEXT("CFNetwork_debug.dll")); -#endif - if (!module) - return 0; - - typedef CFURLCacheRef (*CFURLCacheCopySharedURLCacheProcPtr)(void); - if (CFURLCacheCopySharedURLCacheProcPtr copyCache = reinterpret_cast(GetProcAddress(module, "CFURLCacheCopySharedURLCache"))) - return RetainPtr(AdoptCF, copyCache()); - - typedef CFURLCacheRef (*CFURLCacheSharedURLCacheProcPtr)(void); - if (CFURLCacheSharedURLCacheProcPtr sharedCache = reinterpret_cast(GetProcAddress(module, "CFURLCacheSharedURLCache"))) - return sharedCache(); - - return 0; -} -#endif - -int main(int argc, char* argv[]) -{ - leakChecking = false; - - _setmode(1, _O_BINARY); - _setmode(2, _O_BINARY); - - initialize(); - - Vector tests; - - for (int i = 1; i < argc; ++i) { - if (!stricmp(argv[i], "--threaded")) { - threaded = true; - continue; - } - - if (!stricmp(argv[i], "--dump-all-pixels")) { - dumpAllPixels = true; - continue; - } - - if (!stricmp(argv[i], "--pixel-tests")) { - dumpPixels = true; - continue; - } - - if (!stricmp(argv[i], "--complex-text")) { - forceComplexText = true; - continue; - } - - if (!stricmp(argv[i], "--print-supported-features")) { - printSupportedFeatures = true; - continue; - } - - tests.append(argv[i]); - } - - policyDelegate = new PolicyDelegate(); - sharedFrameLoadDelegate.adoptRef(new FrameLoadDelegate); - sharedUIDelegate.adoptRef(new UIDelegate); - sharedEditingDelegate.adoptRef(new EditingDelegate); - sharedResourceLoadDelegate.adoptRef(new ResourceLoadDelegate); - sharedHistoryDelegate.adoptRef(new HistoryDelegate); - - // FIXME - need to make DRT pass with Windows native controls - COMPtr tmpPreferences; - if (FAILED(WebKitCreateInstance(CLSID_WebPreferences, 0, IID_IWebPreferences, reinterpret_cast(&tmpPreferences)))) - return -1; - COMPtr standardPreferences; - if (FAILED(tmpPreferences->standardPreferences(&standardPreferences))) - return -1; - COMPtr standardPreferencesPrivate; - if (FAILED(standardPreferences->QueryInterface(&standardPreferencesPrivate))) - return -1; - standardPreferencesPrivate->setShouldPaintNativeControls(FALSE); - standardPreferences->setJavaScriptEnabled(TRUE); - standardPreferences->setDefaultFontSize(16); - standardPreferences->setAcceleratedCompositingEnabled(true); - - if (printSupportedFeatures) { - BOOL acceleratedCompositingAvailable; - standardPreferences->acceleratedCompositingEnabled(&acceleratedCompositingAvailable); - BOOL threeDRenderingAvailable = -#if ENABLE(3D_RENDERING) - true; -#else - false; -#endif - - printf("SupportedFeatures:%s %s\n", acceleratedCompositingAvailable ? "AcceleratedCompositing" : "", threeDRenderingAvailable ? "3DRendering" : ""); - return 0; - } - - COMPtr webView(AdoptCOM, createWebViewAndOffscreenWindow(&webViewWindow)); - if (!webView) - return -1; - - COMPtr iconDatabase; - COMPtr tmpIconDatabase; - if (FAILED(WebKitCreateInstance(CLSID_WebIconDatabase, 0, IID_IWebIconDatabase, (void**)&tmpIconDatabase))) - return -1; - if (FAILED(tmpIconDatabase->sharedIconDatabase(&iconDatabase))) - return -1; - - if (FAILED(webView->mainFrame(&frame))) - return -1; - -#if USE(CFNETWORK) - RetainPtr urlCache = sharedCFURLCache(); - CFURLCacheRemoveAllCachedResponses(urlCache.get()); -#endif - -#ifdef _DEBUG - _CrtMemState entryToMainMemCheckpoint; - if (leakChecking) - _CrtMemCheckpoint(&entryToMainMemCheckpoint); -#endif - - if (threaded) - startJavaScriptThreads(); - - if (tests.size() == 1 && !strcmp(tests[0], "-")) { - char filenameBuffer[2048]; - printSeparators = true; - while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) { - char* newLineCharacter = strchr(filenameBuffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (strlen(filenameBuffer) == 0) - continue; - - runTest(filenameBuffer); - } - } else { - printSeparators = tests.size() > 1; - for (int i = 0; i < tests.size(); i++) - runTest(tests[i]); - } - - if (threaded) - stopJavaScriptThreads(); - - delete policyDelegate; - frame->Release(); - -#ifdef _DEBUG - if (leakChecking) { - // dump leaks to stderr - _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE); - _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR); - _CrtMemDumpAllObjectsSince(&entryToMainMemCheckpoint); - } -#endif - - shutDownWebKit(); - - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DumpRenderTree.vcproj --- a/WebKitTools/DumpRenderTree/win/DumpRenderTree.vcproj Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,751 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/DumpRenderTreeWin.h --- a/WebKitTools/DumpRenderTree/win/DumpRenderTreeWin.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,69 +0,0 @@ -/* - * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTreeWin_h -#define DumpRenderTreeWin_h - -struct IWebFrame; -struct IWebScriptWorld; -struct IWebView; -struct FrameLoadDelegate; -struct PolicyDelegate; -typedef const struct __CFString* CFStringRef; -typedef struct HWND__* HWND; - -extern IWebFrame* topLoadingFrame; -extern IWebFrame* frame; -extern PolicyDelegate* policyDelegate; - -extern HWND webViewWindow; - -#include -#include -#include -#include - -std::wstring urlSuitableForTestResult(const std::wstring& url); -std::wstring lastPathComponent(const std::wstring&); -std::string toUTF8(BSTR); -std::string toUTF8(const std::wstring&); -IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow = 0); -Vector& openWindows(); -typedef HashMap > WindowToWebViewMap; -WindowToWebViewMap& windowToWebViewMap(); - -void setPersistentUserStyleSheetLocation(CFStringRef); -bool setAlwaysAcceptCookies(bool alwaysAcceptCookies); - -unsigned worldIDForWorld(IWebScriptWorld*); - -extern UINT_PTR waitToDumpWatchdog; - -extern COMPtr sharedFrameLoadDelegate; - -#endif // DumpRenderTreeWin_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/EditingDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/EditingDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,355 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "EditingDelegate.h" - -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include -#include -#include -#include -#include - -using std::wstring; - -EditingDelegate::EditingDelegate() - : m_refCount(1) - , m_acceptsEditing(true) -{ -} - -// IUnknown -HRESULT STDMETHODCALLTYPE EditingDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebEditingDelegate)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE EditingDelegate::AddRef(void) -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE EditingDelegate::Release(void) -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete this; - - return newRef; -} - -static wstring dumpPath(IDOMNode* node) -{ - ASSERT(node); - - wstring result; - - BSTR name; - if (FAILED(node->nodeName(&name))) - return result; - result.assign(name, SysStringLen(name)); - SysFreeString(name); - - COMPtr parent; - if (SUCCEEDED(node->parentNode(&parent))) - result += TEXT(" > ") + dumpPath(parent.get()); - - return result; -} - -static wstring dump(IDOMRange* range) -{ - ASSERT(range); - - int startOffset; - if (FAILED(range->startOffset(&startOffset))) - return 0; - - int endOffset; - if (FAILED(range->endOffset(&endOffset))) - return 0; - - COMPtr startContainer; - if (FAILED(range->startContainer(&startContainer))) - return 0; - - COMPtr endContainer; - if (FAILED(range->endContainer(&endContainer))) - return 0; - - wchar_t buffer[1024]; - _snwprintf(buffer, ARRAYSIZE(buffer), L"range from %ld of %s to %ld of %s", startOffset, dumpPath(startContainer.get()), endOffset, dumpPath(endContainer.get())); - return buffer; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldBeginEditingInDOMRange( - /* [in] */ IWebView* webView, - /* [in] */ IDOMRange* range, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n"), dump(range)); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldEndEditingInDOMRange( - /* [in] */ IWebView* webView, - /* [in] */ IDOMRange* range, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n"), dump(range)); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertNode( - /* [in] */ IWebView* webView, - /* [in] */ IDOMNode* node, - /* [in] */ IDOMRange* range, - /* [in] */ WebViewInsertAction action) -{ - static LPCTSTR insertactionstring[] = { - TEXT("WebViewInsertActionTyped"), - TEXT("WebViewInsertActionPasted"), - TEXT("WebViewInsertActionDropped"), - }; - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n"), dumpPath(node), dump(range), insertactionstring[action]); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldInsertText( - /* [in] */ IWebView* webView, - /* [in] */ BSTR text, - /* [in] */ IDOMRange* range, - /* [in] */ WebViewInsertAction action, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - static LPCTSTR insertactionstring[] = { - TEXT("WebViewInsertActionTyped"), - TEXT("WebViewInsertActionPasted"), - TEXT("WebViewInsertActionDropped"), - }; - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n"), text ? text : TEXT(""), dump(range), insertactionstring[action]); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldDeleteDOMRange( - /* [in] */ IWebView* webView, - /* [in] */ IDOMRange* range, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldDeleteDOMRange:%s\n"), dump(range)); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldChangeSelectedDOMRange( - /* [in] */ IWebView* webView, - /* [in] */ IDOMRange* currentRange, - /* [in] */ IDOMRange* proposedRange, - /* [in] */ WebSelectionAffinity selectionAffinity, - /* [in] */ BOOL stillSelecting, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - static LPCTSTR affinitystring[] = { - TEXT("NSSelectionAffinityUpstream"), - TEXT("NSSelectionAffinityDownstream") - }; - static LPCTSTR boolstring[] = { - TEXT("FALSE"), - TEXT("TRUE") - }; - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n"), dump(currentRange), dump(proposedRange), affinitystring[selectionAffinity], boolstring[stillSelecting]); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldApplyStyle( - /* [in] */ IWebView* webView, - /* [in] */ IDOMCSSStyleDeclaration* style, - /* [in] */ IDOMRange* range, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n"), TEXT("'style description'")/*[[style description] UTF8String]*/, dump(range)); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::shouldChangeTypingStyle( - /* [in] */ IWebView* webView, - /* [in] */ IDOMCSSStyleDeclaration* currentStyle, - /* [in] */ IDOMCSSStyleDeclaration* proposedStyle, - /* [retval][out] */ BOOL* result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: shouldChangeTypingStyle:%s toStyle:%s\n"), TEXT("'currentStyle description'"), TEXT("'proposedStyle description'")); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::doPlatformCommand( - /* [in] */ IWebView *webView, - /* [in] */ BSTR command, - /* [retval][out] */ BOOL *result) -{ - if (!result) { - ASSERT_NOT_REACHED(); - return E_POINTER; - } - - if (::gLayoutTestController->dumpEditingCallbacks() && !done) - _tprintf(TEXT("EDITING DELEGATE: doPlatformCommand:%s\n"), command ? command : TEXT("")); - - *result = m_acceptsEditing; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidBeginEditing( - /* [in] */ IWebNotification* notification) -{ - if (::gLayoutTestController->dumpEditingCallbacks() && !done) { - BSTR name; - notification->name(&name); - _tprintf(TEXT("EDITING DELEGATE: webViewDidBeginEditing:%s\n"), name ? name : TEXT("")); - SysFreeString(name); - } - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChange( - /* [in] */ IWebNotification *notification) -{ - if (::gLayoutTestController->dumpEditingCallbacks() && !done) { - BSTR name; - notification->name(&name); - _tprintf(TEXT("EDITING DELEGATE: webViewDidBeginEditing:%s\n"), name ? name : TEXT("")); - SysFreeString(name); - } - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidEndEditing( - /* [in] */ IWebNotification *notification) -{ - if (::gLayoutTestController->dumpEditingCallbacks() && !done) { - BSTR name; - notification->name(&name); - _tprintf(TEXT("EDITING DELEGATE: webViewDidEndEditing:%s\n"), name ? name : TEXT("")); - SysFreeString(name); - } - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChangeTypingStyle( - /* [in] */ IWebNotification *notification) -{ - if (::gLayoutTestController->dumpEditingCallbacks() && !done) { - BSTR name; - notification->name(&name); - _tprintf(TEXT("EDITING DELEGATE: webViewDidChangeTypingStyle:%s\n"), name ? name : TEXT("")); - SysFreeString(name); - } - return S_OK; -} - -HRESULT STDMETHODCALLTYPE EditingDelegate::webViewDidChangeSelection( - /* [in] */ IWebNotification *notification) -{ - if (::gLayoutTestController->dumpEditingCallbacks() && !done) { - BSTR name; - notification->name(&name); - _tprintf(TEXT("EDITING DELEGATE: webViewDidChangeSelection:%s\n"), name ? name : TEXT("")); - SysFreeString(name); - } - return S_OK; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/EditingDelegate.h --- a/WebKitTools/DumpRenderTree/win/EditingDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,176 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef EditingDelegate_h -#define EditingDelegate_h - -#include - -class __declspec(uuid("265DCD4B-79C3-44a2-84BC-511C3EDABD6F")) EditingDelegate : public IWebEditingDelegate { -public: - EditingDelegate(); - - void setAcceptsEditing(bool b) { m_acceptsEditing = b; } - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebEditingDelegate - virtual HRESULT STDMETHODCALLTYPE shouldBeginEditingInDOMRange( - /* [in] */ IWebView *webView, - /* [in] */ IDOMRange *range, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldEndEditingInDOMRange( - /* [in] */ IWebView *webView, - /* [in] */ IDOMRange *range, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldInsertNode( - /* [in] */ IWebView *webView, - /* [in] */ IDOMNode *node, - /* [in] */ IDOMRange *range, - /* [in] */ WebViewInsertAction action); - - virtual HRESULT STDMETHODCALLTYPE shouldInsertText( - /* [in] */ IWebView *webView, - /* [in] */ BSTR text, - /* [in] */ IDOMRange *range, - /* [in] */ WebViewInsertAction action, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldDeleteDOMRange( - /* [in] */ IWebView *webView, - /* [in] */ IDOMRange *range, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldChangeSelectedDOMRange( - /* [in] */ IWebView *webView, - /* [in] */ IDOMRange *currentRange, - /* [in] */ IDOMRange *proposedRange, - /* [in] */ WebSelectionAffinity selectionAffinity, - /* [in] */ BOOL stillSelecting, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldApplyStyle( - /* [in] */ IWebView *webView, - /* [in] */ IDOMCSSStyleDeclaration *style, - /* [in] */ IDOMRange *range, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE shouldChangeTypingStyle( - /* [in] */ IWebView *webView, - /* [in] */ IDOMCSSStyleDeclaration *currentStyle, - /* [in] */ IDOMCSSStyleDeclaration *proposedStyle, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE doPlatformCommand( - /* [in] */ IWebView *webView, - /* [in] */ BSTR command, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE webViewDidBeginEditing( - /* [in] */ IWebNotification *notification); - - virtual HRESULT STDMETHODCALLTYPE webViewDidChange( - /* [in] */ IWebNotification *notification); - - virtual HRESULT STDMETHODCALLTYPE webViewDidEndEditing( - /* [in] */ IWebNotification *notification); - - virtual HRESULT STDMETHODCALLTYPE webViewDidChangeTypingStyle( - /* [in] */ IWebNotification *notification); - - virtual HRESULT STDMETHODCALLTYPE webViewDidChangeSelection( - /* [in] */ IWebNotification *notification); - - virtual HRESULT STDMETHODCALLTYPE undoManagerForWebView( - /* [in] */ IWebView *webView, - /* [retval][out] */ IWebUndoManager **undoManager) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE ignoreWordInSpellDocument( - /* [in] */ IWebView *view, - /* [in] */ BSTR word) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE learnWord( - /* [in] */ BSTR word) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE checkSpellingOfString( - /* [in] */ IWebView *view, - /* [in] */ LPCTSTR text, - /* [in] */ int length, - /* [out] */ int *misspellingLocation, - /* [out] */ int *misspellingLength) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE checkGrammarOfString( - /* [in] */ IWebView *view, - /* [in] */ LPCTSTR text, - /* [in] */ int length, - /* [out] */ IEnumWebGrammarDetails **grammarDetails, - /* [out] */ int *badGrammarLocation, - /* [out] */ int *badGrammarLength) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE updateSpellingUIWithGrammarString( - /* [in] */ BSTR string, - /* [in] */ int location, - /* [in] */ int length, - /* [in] */ BSTR userDescription, - /* [in] */ BSTR *guesses, - /* [in] */ int guessesCount) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE updateSpellingUIWithMisspelledWord( - /* [in] */ BSTR word) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE showSpellingUI( - /* [in] */ BOOL show) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE spellingUIIsShowing( - /* [retval][out] */ BOOL *result) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE guessesForWord( - /* [in] */ BSTR word, - /* [retval][out] */ IEnumSpellingGuesses **guesses) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE closeSpellDocument( - /* [in] */ IWebView *view) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE sharedSpellCheckerExists( - /* [retval][out] */ BOOL *exists) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE preflightChosenSpellServer( void) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE updateGrammar( void) { return E_NOTIMPL; } - -private: - bool m_acceptsEditing; - ULONG m_refCount; -}; - -#endif // !defined(EditingDelegate_h) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/EventSender.cpp --- a/WebKitTools/DumpRenderTree/win/EventSender.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,687 +0,0 @@ -/* - * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "EventSender.h" - -#include "DraggingInfo.h" -#include "DumpRenderTree.h" - -#include -#include -#include -#include -#include -#include -#include - -#define WM_DRT_SEND_QUEUED_EVENT (WM_APP+1) - -static bool down; -static bool dragMode = true; -static bool replayingSavedEvents; -static int timeOffset; -static POINT lastMousePosition; - -struct DelayedMessage { - MSG msg; - unsigned delay; -}; - -static DelayedMessage msgQueue[1024]; -static unsigned endOfQueue; -static unsigned startOfQueue; - -static bool didDragEnter; -DraggingInfo* draggingInfo = 0; - -static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) -{ - return JSValueMakeBoolean(context, dragMode); -} - -static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) -{ - dragMode = JSValueToBoolean(context, value); - return true; -} - -static JSValueRef getConstantCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) -{ - if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYDOWN")) - return JSValueMakeNumber(context, WM_KEYDOWN); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYUP")) - return JSValueMakeNumber(context, WM_KEYUP); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_CHAR")) - return JSValueMakeNumber(context, WM_CHAR); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_DEADCHAR")) - return JSValueMakeNumber(context, WM_DEADCHAR); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYDOWN")) - return JSValueMakeNumber(context, WM_SYSKEYDOWN); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYUP")) - return JSValueMakeNumber(context, WM_SYSKEYUP); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSCHAR")) - return JSValueMakeNumber(context, WM_SYSCHAR); - if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSDEADCHAR")) - return JSValueMakeNumber(context, WM_SYSDEADCHAR); - ASSERT_NOT_REACHED(); - return JSValueMakeUndefined(context); -} - -static JSValueRef leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount > 0) { - msgQueue[endOfQueue].delay = JSValueToNumber(context, arguments[0], exception); - ASSERT(!exception || !*exception); - } - - return JSValueMakeUndefined(context); -} - -static DWORD currentEventTime() -{ - return ::GetTickCount() + timeOffset; -} - -static MSG makeMsg(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) -{ - MSG result = {0}; - result.hwnd = hwnd; - result.message = message; - result.wParam = wParam; - result.lParam = lParam; - result.time = currentEventTime(); - result.pt = lastMousePosition; - - return result; -} - -static LRESULT dispatchMessage(const MSG* msg) -{ - ASSERT(msg); - ::TranslateMessage(msg); - return ::DispatchMessage(msg); -} - -static JSValueRef contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - down = true; - MSG msg = makeMsg(webViewWindow, WM_RBUTTONDOWN, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); - dispatchMessage(&msg); - down = false; - msg = makeMsg(webViewWindow, WM_RBUTTONUP, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); - dispatchMessage(&msg); - - return JSValueMakeUndefined(context); -} - -static WPARAM buildModifierFlags(JSContextRef context, const JSValueRef modifiers) -{ - JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0); - if (!modifiersArray) - return 0; - - WPARAM flags = 0; - int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, JSStringCreateWithUTF8CString("length"), 0), 0); - for (int i = 0; i < modifiersCount; ++i) { - JSValueRef value = JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0); - JSStringRef string = JSValueToStringCopy(context, value, 0); - if (JSStringIsEqualToUTF8CString(string, "ctrlKey") - || JSStringIsEqualToUTF8CString(string, "addSelectionKey")) - flags |= MK_CONTROL; - else if (JSStringIsEqualToUTF8CString(string, "shiftKey") - || JSStringIsEqualToUTF8CString(string, "rangeSelectionKey")) - flags |= MK_SHIFT; - // No way to specifiy altKey in a MSG. - - JSStringRelease(string); - } - return flags; -} - -static JSValueRef mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - down = true; - int mouseType = WM_LBUTTONDOWN; - if (argumentCount >= 1) { - int mouseNumber = JSValueToNumber(context, arguments[0], exception); - switch (mouseNumber) { - case 0: - mouseType = WM_LBUTTONDOWN; - break; - case 1: - mouseType = WM_MBUTTONDOWN; - break; - case 2: - mouseType = WM_RBUTTONDOWN; - break; - case 3: - // fast/events/mouse-click-events expects the 4th button has event.button = 1, so send an WM_BUTTONDOWN - mouseType = WM_MBUTTONDOWN; - break; - default: - mouseType = WM_LBUTTONDOWN; - break; - } - } - - WPARAM wparam = 0; - if (argumentCount >= 2) - wparam |= buildModifierFlags(context, arguments[1]); - - MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); - if (!msgQueue[endOfQueue].delay) - dispatchMessage(&msg); - else { - // replaySavedEvents has the required logic to make leapForward delays work - msgQueue[endOfQueue++].msg = msg; - replaySavedEvents(); - } - - return JSValueMakeUndefined(context); -} - -static inline POINTL pointl(const POINT& point) -{ - POINTL result; - result.x = point.x; - result.y = point.y; - return result; -} - -static void doMouseUp(MSG msg, HRESULT* oleDragAndDropReturnValue = 0) -{ - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - dispatchMessage(&msg); - down = false; - - if (draggingInfo) { - COMPtr webView; - COMPtr webViewDropTarget; - if (SUCCEEDED(frame->webView(&webView)) && SUCCEEDED(webView->QueryInterface(IID_IDropTarget, (void**)&webViewDropTarget))) { - POINT screenPoint = msg.pt; - DWORD effect = 0; - ::ClientToScreen(webViewWindow, &screenPoint); - if (!didDragEnter) { - webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect); - didDragEnter = true; - } - HRESULT hr = draggingInfo->dropSource()->QueryContinueDrag(0, 0); - if (oleDragAndDropReturnValue) - *oleDragAndDropReturnValue = hr; - webViewDropTarget->DragOver(0, pointl(screenPoint), &effect); - if (hr == DRAGDROP_S_DROP && effect != DROPEFFECT_NONE) { - DWORD effect = 0; - webViewDropTarget->Drop(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect); - draggingInfo->setPerformedDropEffect(effect); - } else - webViewDropTarget->DragLeave(); - - // Reset didDragEnter so that another drag started within the same frame works properly. - didDragEnter = false; - } - } -} - -static JSValueRef mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - int mouseType = WM_LBUTTONUP; - if (argumentCount >= 1) { - int mouseNumber = JSValueToNumber(context, arguments[0], exception); - switch (mouseNumber) { - case 0: - mouseType = WM_LBUTTONUP; - break; - case 1: - mouseType = WM_MBUTTONUP; - break; - case 2: - mouseType = WM_RBUTTONUP; - break; - case 3: - // fast/events/mouse-click-events expects the 4th button has event.button = 1, so send an WM_MBUTTONUP - mouseType = WM_MBUTTONUP; - break; - default: - mouseType = WM_LBUTTONUP; - break; - } - } - - WPARAM wparam = 0; - if (argumentCount >= 2) - wparam |= buildModifierFlags(context, arguments[1]); - - MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); - - if ((dragMode && !replayingSavedEvents) || msgQueue[endOfQueue].delay) { - msgQueue[endOfQueue++].msg = msg; - replaySavedEvents(); - } else - doMouseUp(msg); - - return JSValueMakeUndefined(context); -} - -static void doMouseMove(MSG msg) -{ - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - dispatchMessage(&msg); - - if (down && draggingInfo) { - POINT screenPoint = msg.pt; - ::ClientToScreen(webViewWindow, &screenPoint); - - IWebView* webView; - COMPtr webViewDropTarget; - if (SUCCEEDED(frame->webView(&webView)) && SUCCEEDED(webView->QueryInterface(IID_IDropTarget, (void**)&webViewDropTarget))) { - DWORD effect = 0; - if (didDragEnter) - webViewDropTarget->DragOver(MK_LBUTTON, pointl(screenPoint), &effect); - else { - webViewDropTarget->DragEnter(draggingInfo->dataObject(), 0, pointl(screenPoint), &effect); - didDragEnter = true; - } - draggingInfo->dropSource()->GiveFeedback(effect); - } - } -} - -static JSValueRef mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 2) - return JSValueMakeUndefined(context); - - lastMousePosition.x = (int)JSValueToNumber(context, arguments[0], exception); - ASSERT(!exception || !*exception); - lastMousePosition.y = (int)JSValueToNumber(context, arguments[1], exception); - ASSERT(!exception || !*exception); - - MSG msg = makeMsg(webViewWindow, WM_MOUSEMOVE, down ? MK_LBUTTON : 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)); - - if (dragMode && down && !replayingSavedEvents) { - msgQueue[endOfQueue++].msg = msg; - return JSValueMakeUndefined(context); - } - - doMouseMove(msg); - - return JSValueMakeUndefined(context); -} - -void replaySavedEvents(HRESULT* oleDragAndDropReturnValue) -{ - replayingSavedEvents = true; - - MSG msg = { 0 }; - - while (startOfQueue < endOfQueue && !msgQueue[startOfQueue].delay) { - msg = msgQueue[startOfQueue++].msg; - switch (msg.message) { - case WM_LBUTTONUP: - case WM_RBUTTONUP: - case WM_MBUTTONUP: - doMouseUp(msg, oleDragAndDropReturnValue); - break; - case WM_MOUSEMOVE: - doMouseMove(msg); - break; - case WM_LBUTTONDOWN: - case WM_RBUTTONDOWN: - case WM_MBUTTONDOWN: - dispatchMessage(&msg); - break; - default: - // Not reached - break; - } - } - - int numQueuedMessages = endOfQueue - startOfQueue; - if (!numQueuedMessages) { - startOfQueue = 0; - endOfQueue = 0; - replayingSavedEvents = false; - ASSERT(!down); - return; - } - - if (msgQueue[startOfQueue].delay) { - ::Sleep(msgQueue[startOfQueue].delay); - msgQueue[startOfQueue].delay = 0; - } - - ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0); - while (::GetMessage(&msg, webViewWindow, 0, 0)) { - // FIXME: Why do we get a WM_MOUSELEAVE? it breaks tests - if (msg.message == WM_MOUSELEAVE) - continue; - if (msg.message != WM_DRT_SEND_QUEUED_EVENT) { - dispatchMessage(&msg); - continue; - } - msg = msgQueue[startOfQueue++].msg; - switch (msg.message) { - case WM_LBUTTONUP: - case WM_RBUTTONUP: - case WM_MBUTTONUP: - doMouseUp(msg, oleDragAndDropReturnValue); - break; - case WM_MOUSEMOVE: - doMouseMove(msg); - break; - case WM_LBUTTONDOWN: - case WM_RBUTTONDOWN: - case WM_MBUTTONDOWN: - dispatchMessage(&msg); - break; - default: - // Not reached - break; - } - if (startOfQueue >= endOfQueue) - break; - ::Sleep(msgQueue[startOfQueue].delay); - msgQueue[startOfQueue].delay = 0; - ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0); - } - startOfQueue = 0; - endOfQueue = 0; - - replayingSavedEvents = false; -} - -static JSValueRef keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 1) - return JSValueMakeUndefined(context); - - static const JSStringRef lengthProperty = JSStringCreateWithUTF8CString("length"); - - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - JSStringRef character = JSValueToStringCopy(context, arguments[0], exception); - ASSERT(!*exception); - int virtualKeyCode; - int charCode = 0; - int keyData = 1; - bool needsShiftKeyModifier = false; - if (JSStringIsEqualToUTF8CString(character, "leftArrow")) { - virtualKeyCode = VK_LEFT; - keyData += KF_EXTENDED << 16; // In this case, extended means "not keypad". - } else if (JSStringIsEqualToUTF8CString(character, "rightArrow")) { - virtualKeyCode = VK_RIGHT; - keyData += KF_EXTENDED << 16; - } else if (JSStringIsEqualToUTF8CString(character, "upArrow")) { - virtualKeyCode = VK_UP; - keyData += KF_EXTENDED << 16; - } else if (JSStringIsEqualToUTF8CString(character, "downArrow")) { - virtualKeyCode = VK_DOWN; - keyData += KF_EXTENDED << 16; - } else if (JSStringIsEqualToUTF8CString(character, "pageUp")) - virtualKeyCode = VK_PRIOR; - else if (JSStringIsEqualToUTF8CString(character, "pageDown")) - virtualKeyCode = VK_NEXT; - else if (JSStringIsEqualToUTF8CString(character, "home")) - virtualKeyCode = VK_HOME; - else if (JSStringIsEqualToUTF8CString(character, "end")) - virtualKeyCode = VK_END; - else if (JSStringIsEqualToUTF8CString(character, "delete")) - virtualKeyCode = VK_DELETE; - else { - charCode = JSStringGetCharactersPtr(character)[0]; - virtualKeyCode = LOBYTE(VkKeyScan(charCode)); - if (WTF::isASCIIUpper(charCode)) - needsShiftKeyModifier = true; - } - JSStringRelease(character); - - BYTE keyState[256]; - if (argumentCount > 1 || needsShiftKeyModifier) { - ::GetKeyboardState(keyState); - - BYTE newKeyState[256]; - memcpy(newKeyState, keyState, sizeof(keyState)); - - if (needsShiftKeyModifier) - newKeyState[VK_SHIFT] = 0x80; - - if (argumentCount > 1) { - JSObjectRef modifiersArray = JSValueToObject(context, arguments[1], 0); - if (modifiersArray) { - int modifiersCount = JSValueToNumber(context, JSObjectGetProperty(context, modifiersArray, lengthProperty, 0), 0); - for (int i = 0; i < modifiersCount; ++i) { - JSValueRef value = JSObjectGetPropertyAtIndex(context, modifiersArray, i, 0); - JSStringRef string = JSValueToStringCopy(context, value, 0); - if (JSStringIsEqualToUTF8CString(string, "ctrlKey") || JSStringIsEqualToUTF8CString(string, "addSelectionKey")) - newKeyState[VK_CONTROL] = 0x80; - else if (JSStringIsEqualToUTF8CString(string, "shiftKey") || JSStringIsEqualToUTF8CString(string, "rangeSelectionKey")) - newKeyState[VK_SHIFT] = 0x80; - else if (JSStringIsEqualToUTF8CString(string, "altKey")) - newKeyState[VK_MENU] = 0x80; - - JSStringRelease(string); - } - } - } - - ::SetKeyboardState(newKeyState); - } - - MSG msg = makeMsg(webViewWindow, (::GetKeyState(VK_MENU) & 0x8000) ? WM_SYSKEYDOWN : WM_KEYDOWN, virtualKeyCode, keyData); - if (virtualKeyCode != 255) - dispatchMessage(&msg); - else { - // For characters that do not exist in the active keyboard layout, - // ::Translate will not work, so we post an WM_CHAR event ourselves. - ::PostMessage(webViewWindow, WM_CHAR, charCode, 0); - } - - // Tests expect that all messages are processed by the time keyDown() returns. - if (::PeekMessage(&msg, webViewWindow, WM_CHAR, WM_CHAR, PM_REMOVE) || ::PeekMessage(&msg, webViewWindow, WM_SYSCHAR, WM_SYSCHAR, PM_REMOVE)) - ::DispatchMessage(&msg); - - MSG msgUp = makeMsg(webViewWindow, (::GetKeyState(VK_MENU) & 0x8000) ? WM_SYSKEYUP : WM_KEYUP, virtualKeyCode, keyData); - ::DispatchMessage(&msgUp); - - if (argumentCount > 1 || needsShiftKeyModifier) - ::SetKeyboardState(keyState); - - return JSValueMakeUndefined(context); -} - -// eventSender.dispatchMessage(message, wParam, lParam, time = currentEventTime(), x = lastMousePosition.x, y = lastMousePosition.y) -static JSValueRef dispatchMessageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - if (argumentCount < 3) - return JSValueMakeUndefined(context); - - COMPtr framePrivate; - if (SUCCEEDED(frame->QueryInterface(&framePrivate))) - framePrivate->layout(); - - MSG msg = {}; - msg.hwnd = webViewWindow; - msg.message = JSValueToNumber(context, arguments[0], exception); - ASSERT(!*exception); - msg.wParam = JSValueToNumber(context, arguments[1], exception); - ASSERT(!*exception); - msg.lParam = static_cast(JSValueToNumber(context, arguments[2], exception)); - ASSERT(!*exception); - if (argumentCount >= 4) { - msg.time = JSValueToNumber(context, arguments[3], exception); - ASSERT(!*exception); - } - if (!msg.time) - msg.time = currentEventTime(); - if (argumentCount >= 6) { - msg.pt.x = JSValueToNumber(context, arguments[4], exception); - ASSERT(!*exception); - msg.pt.y = JSValueToNumber(context, arguments[5], exception); - ASSERT(!*exception); - } else - msg.pt = lastMousePosition; - - ::DispatchMessage(&msg); - - return JSValueMakeUndefined(context); -} - -static JSValueRef textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return JSValueMakeUndefined(context); - - COMPtr webIBActions(Query, webView); - if (!webIBActions) - return JSValueMakeUndefined(context); - - webIBActions->makeTextLarger(0); - return JSValueMakeUndefined(context); -} - -static JSValueRef textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return JSValueMakeUndefined(context); - - COMPtr webIBActions(Query, webView); - if (!webIBActions) - return JSValueMakeUndefined(context); - - webIBActions->makeTextSmaller(0); - return JSValueMakeUndefined(context); -} - -static JSValueRef zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return JSValueMakeUndefined(context); - - COMPtr webIBActions(Query, webView); - if (!webIBActions) - return JSValueMakeUndefined(context); - - webIBActions->zoomPageIn(0); - return JSValueMakeUndefined(context); -} - -static JSValueRef zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return JSValueMakeUndefined(context); - - COMPtr webIBActions(Query, webView); - if (!webIBActions) - return JSValueMakeUndefined(context); - - webIBActions->zoomPageOut(0); - return JSValueMakeUndefined(context); -} - -static JSStaticFunction staticFunctions[] = { - { "contextClick", contextClickCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseDown", mouseDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseUp", mouseUpCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "mouseMoveTo", mouseMoveToCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "leapForward", leapForwardCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "keyDown", keyDownCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "dispatchMessage", dispatchMessageCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "textZoomIn", textZoomInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "textZoomOut", textZoomOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "zoomPageIn", zoomPageInCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { "zoomPageOut", zoomPageOutCallback, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete }, - { 0, 0, 0 } -}; - -static JSStaticValue staticValues[] = { - { "dragMode", getDragModeCallback, setDragModeCallback, kJSPropertyAttributeNone }, - { "WM_KEYDOWN", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_KEYUP", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_CHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_DEADCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_SYSKEYDOWN", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_SYSKEYUP", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_SYSCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { "WM_SYSDEADCHAR", getConstantCallback, 0, kJSPropertyAttributeReadOnly | kJSPropertyAttributeNone }, - { 0, 0, 0, 0 } -}; - -static JSClassRef getClass(JSContextRef context) -{ - static JSClassRef eventSenderClass = 0; - - if (!eventSenderClass) { - JSClassDefinition classDefinition = {0}; - classDefinition.staticFunctions = staticFunctions; - classDefinition.staticValues = staticValues; - - eventSenderClass = JSClassCreate(&classDefinition); - } - - return eventSenderClass; -} - -JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame) -{ - if (isTopFrame) { - down = false; - dragMode = true; - replayingSavedEvents = false; - timeOffset = 0; - lastMousePosition.x = 0; - lastMousePosition.y = 0; - - endOfQueue = 0; - startOfQueue = 0; - - didDragEnter = false; - draggingInfo = 0; - } - return JSObjectMake(context, getClass(context), 0); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/EventSender.h --- a/WebKitTools/DumpRenderTree/win/EventSender.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef EventSender_h -#define EventSender_h - -class DraggingInfo; - -typedef long HRESULT; -typedef const struct OpaqueJSContext* JSContextRef; -typedef struct OpaqueJSValue* JSObjectRef; - -JSObjectRef makeEventSender(JSContextRef context, bool isTopFrame); -void replaySavedEvents(HRESULT* oleDragAndDropReturnValue = 0); - -extern DraggingInfo* draggingInfo; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/FrameLoadDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/FrameLoadDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,420 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2009 Apple Inc. All rights reserved. - * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "FrameLoadDelegate.h" - -#include "AccessibilityController.h" -#include "DumpRenderTree.h" -#include "EventSender.h" -#include "GCController.h" -#include "LayoutTestController.h" -#include "WorkQueueItem.h" -#include "WorkQueue.h" -#include -#include -#include -#include -#include -#include -#include - -using std::string; - -static FrameLoadDelegate* g_delegateWaitingOnTimer; - -string descriptionSuitableForTestResult(IWebFrame* webFrame) -{ - COMPtr webView; - if (FAILED(webFrame->webView(&webView))) - return string(); - - COMPtr mainFrame; - if (FAILED(webView->mainFrame(&mainFrame))) - return string(); - - BSTR frameNameBSTR; - if (FAILED(webFrame->name(&frameNameBSTR)) || toUTF8(frameNameBSTR).empty()) - return (webFrame == mainFrame) ? "main frame" : string(); - - string frameName = (webFrame == mainFrame) ? "main frame" : "frame"; - frameName += " \"" + toUTF8(frameNameBSTR) + "\""; - - SysFreeString(frameNameBSTR); - return frameName; -} - -FrameLoadDelegate::FrameLoadDelegate() - : m_refCount(1) - , m_gcController(new GCController) - , m_accessibilityController(new AccessibilityController) -{ -} - -FrameLoadDelegate::~FrameLoadDelegate() -{ -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegate)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegatePrivate)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebFrameLoadDelegatePrivate2)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE FrameLoadDelegate::AddRef(void) -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE FrameLoadDelegate::Release(void) -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete(this); - - return newRef; -} - - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didStartProvisionalLoadForFrame( - /* [in] */ IWebView* webView, - /* [in] */ IWebFrame* frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didStartProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str()); - - // Make sure we only set this once per test. If it gets cleared, and then set again, we might - // end up doing two dumps for one test. - if (!topLoadingFrame && !done) - topLoadingFrame = frame; - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didReceiveServerRedirectForProvisionalLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didReceiveServerRedirectForProvisionalLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str()); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFailProvisionalLoadWithError( - /* [in] */ IWebView *webView, - /* [in] */ IWebError *error, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didFailProvisionalLoadWithError\n", descriptionSuitableForTestResult(frame).c_str()); - - locationChangeDone(error, frame); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didCommitLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didCommitLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str()); - - COMPtr webViewPrivate; - HRESULT hr = webView->QueryInterface(&webViewPrivate); - if (FAILED(hr)) - return hr; - webViewPrivate->updateFocusedAndActiveState(); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didReceiveTitle( - /* [in] */ IWebView *webView, - /* [in] */ BSTR title, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didReceiveTitle: %S\n", descriptionSuitableForTestResult(frame).c_str(), title); - - if (::gLayoutTestController->dumpTitleChanges() && !done) - printf("TITLE CHANGED: %S\n", title ? title : L""); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didChangeIcons( - /* [in] */ IWebView* webView, - /* [in] */ IWebFrame* frame) -{ - if (!done && gLayoutTestController->dumpIconChanges()) - printf("%s - didChangeIcons\n", descriptionSuitableForTestResult(frame).c_str()); - - return S_OK; -} - -void FrameLoadDelegate::processWork() -{ - // if another load started, then wait for it to complete. - if (topLoadingFrame) - return; - - // if we finish all the commands, we're ready to dump state - if (WorkQueue::shared()->processWork() && !::gLayoutTestController->waitToDump()) - dump(); -} - -void FrameLoadDelegate::resetToConsistentState() -{ - m_accessibilityController->resetToConsistentState(); -} - -static void CALLBACK processWorkTimer(HWND, UINT, UINT_PTR id, DWORD) -{ - ::KillTimer(0, id); - FrameLoadDelegate* d = g_delegateWaitingOnTimer; - g_delegateWaitingOnTimer = 0; - d->processWork(); -} - -void FrameLoadDelegate::locationChangeDone(IWebError*, IWebFrame* frame) -{ - if (frame != topLoadingFrame) - return; - - topLoadingFrame = 0; - WorkQueue::shared()->setFrozen(true); - - if (::gLayoutTestController->waitToDump()) - return; - - if (WorkQueue::shared()->count()) { - ASSERT(!g_delegateWaitingOnTimer); - g_delegateWaitingOnTimer = this; - ::SetTimer(0, 0, 0, processWorkTimer); - return; - } - - dump(); -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFinishLoadForFrame( - /* [in] */ IWebView* webView, - /* [in] */ IWebFrame* frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didFinishLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str()); - - locationChangeDone(0, frame); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFailLoadWithError( - /* [in] */ IWebView* webView, - /* [in] */ IWebError* error, - /* [in] */ IWebFrame* frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didFailLoadWithError\n", descriptionSuitableForTestResult(frame).c_str()); - - locationChangeDone(error, frame); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::willPerformClientRedirectToURL( - /* [in] */ IWebView *webView, - /* [in] */ BSTR url, - /* [in] */ double delaySeconds, - /* [in] */ DATE fireDate, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - willPerformClientRedirectToURL: %S \n", descriptionSuitableForTestResult(frame).c_str(), - urlSuitableForTestResult(std::wstring(url, ::SysStringLen(url))).c_str()); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didCancelClientRedirectForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didCancelClientRedirectForFrame\n", descriptionSuitableForTestResult(frame).c_str()); - - return S_OK; -} - - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::willCloseFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) -{ - return E_NOTIMPL; -} - -HRESULT FrameLoadDelegate::didClearWindowObject(IWebView*, JSContextRef, JSObjectRef, IWebFrame*) -{ - return E_NOTIMPL; -} - -HRESULT FrameLoadDelegate::didClearWindowObjectForFrameInScriptWorld(IWebView* webView, IWebFrame* frame, IWebScriptWorld* world) -{ - ASSERT_ARG(webView, webView); - ASSERT_ARG(frame, frame); - ASSERT_ARG(world, world); - if (!webView || !frame || !world) - return E_POINTER; - - COMPtr standardWorld; - if (FAILED(world->standardWorld(&standardWorld))) - return S_OK; - - if (world == standardWorld) - didClearWindowObjectForFrameInStandardWorld(frame); - else - didClearWindowObjectForFrameInIsolatedWorld(frame, world); - return S_OK; -} - -void FrameLoadDelegate::didClearWindowObjectForFrameInIsolatedWorld(IWebFrame* frame, IWebScriptWorld* world) -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return; - - JSGlobalContextRef ctx = framePrivate->globalContextForScriptWorld(world); - if (!ctx) - return; - - JSObjectRef globalObject = JSContextGetGlobalObject(ctx); - if (!globalObject) - return; - - JSObjectSetProperty(ctx, globalObject, JSRetainPtr(Adopt, JSStringCreateWithUTF8CString("__worldID")).get(), JSValueMakeNumber(ctx, worldIDForWorld(world)), kJSPropertyAttributeReadOnly, 0); - return; -} - -void FrameLoadDelegate::didClearWindowObjectForFrameInStandardWorld(IWebFrame* frame) -{ - JSGlobalContextRef context = frame->globalContext(); - JSObjectRef windowObject = JSContextGetGlobalObject(context); - - IWebFrame* parentFrame = 0; - frame->parentFrame(&parentFrame); - - JSValueRef exception = 0; - - ::gLayoutTestController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - m_gcController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - m_accessibilityController->makeWindowObject(context, windowObject, &exception); - ASSERT(!exception); - - JSStringRef eventSenderStr = JSStringCreateWithUTF8CString("eventSender"); - JSValueRef eventSender = makeEventSender(context, !parentFrame); - JSObjectSetProperty(context, windowObject, eventSenderStr, eventSender, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete, 0); - JSStringRelease(eventSenderStr); -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFinishDocumentLoadForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didFinishDocumentLoadForFrame\n", - descriptionSuitableForTestResult(frame).c_str()); - if (!done) { - COMPtr webFramePrivate; - HRESULT hr = frame->QueryInterface(&webFramePrivate); - if (FAILED(hr)) - return hr; - unsigned pendingFrameUnloadEvents; - hr = webFramePrivate->pendingFrameUnloadEventCount(&pendingFrameUnloadEvents); - if (FAILED(hr)) - return hr; - if (pendingFrameUnloadEvents) - printf("%s - has %u onunload handler(s)\n", - descriptionSuitableForTestResult(frame).c_str(), pendingFrameUnloadEvents); - } - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didHandleOnloadEventsForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("%s - didHandleOnloadEventsForFrame\n", - descriptionSuitableForTestResult(frame).c_str()); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didFirstVisuallyNonEmptyLayoutInFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) -{ - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didDisplayInsecureContent( - /* [in] */ IWebView *sender) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("didDisplayInsecureContent\n"); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didRunInsecureContent( - /* [in] */ IWebView *sender, - /* [in] */ IWebSecurityOrigin *origin) -{ - if (!done && gLayoutTestController->dumpFrameLoadCallbacks()) - printf("didRunInsecureContent\n"); - - return S_OK; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/FrameLoadDelegate.h --- a/WebKitTools/DumpRenderTree/win/FrameLoadDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,175 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef FrameLoadDelegate_h -#define FrameLoadDelegate_h - -#include -#include - -class AccessibilityController; -class GCController; - -class FrameLoadDelegate : public IWebFrameLoadDelegate, public IWebFrameLoadDelegatePrivate2 { -public: - FrameLoadDelegate(); - virtual ~FrameLoadDelegate(); - - void processWork(); - - void resetToConsistentState(); - - AccessibilityController* accessibilityController() const { return m_accessibilityController.get(); } - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebFrameLoadDelegate - virtual HRESULT STDMETHODCALLTYPE didStartProvisionalLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didReceiveServerRedirectForProvisionalLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didFailProvisionalLoadWithError( - /* [in] */ IWebView *webView, - /* [in] */ IWebError *error, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didCommitLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didReceiveTitle( - /* [in] */ IWebView *webView, - /* [in] */ BSTR title, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didChangeIcons( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didReceiveIcon( - /* [in] */ IWebView *webView, - /* [in] */ OLE_HANDLE image, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didFinishLoadForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didFailLoadWithError( - /* [in] */ IWebView *webView, - /* [in] */ IWebError *error, - /* [in] */ IWebFrame *forFrame); - - virtual HRESULT STDMETHODCALLTYPE didChangeLocationWithinPageForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE willPerformClientRedirectToURL( - /* [in] */ IWebView *webView, - /* [in] */ BSTR url, - /* [in] */ double delaySeconds, - /* [in] */ DATE fireDate, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didCancelClientRedirectForFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE willCloseFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE windowScriptObjectAvailable( - /* [in] */ IWebView *sender, - /* [in] */ JSContextRef context, - /* [in] */ JSObjectRef windowObject) { return E_NOTIMPL; } - - virtual /* [local] */ HRESULT STDMETHODCALLTYPE didClearWindowObject( - /* [in] */ IWebView* webView, - /* [in] */ JSContextRef context, - /* [in] */ JSObjectRef windowObject, - /* [in] */ IWebFrame* frame); - - // IWebFrameLoadDelegatePrivate - virtual HRESULT STDMETHODCALLTYPE didFinishDocumentLoadForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didFirstLayoutInFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didHandleOnloadEventsForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE didFirstVisuallyNonEmptyLayoutInFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame); - - // IWebFrameLoadDelegatePrivate2 - virtual HRESULT STDMETHODCALLTYPE didDisplayInsecureContent( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE didRunInsecureContent( - /* [in] */ IWebView *sender, - /* [in] */ IWebSecurityOrigin *origin); - - virtual HRESULT STDMETHODCALLTYPE didClearWindowObjectForFrameInScriptWorld(IWebView*, IWebFrame*, IWebScriptWorld*); - - virtual HRESULT STDMETHODCALLTYPE didPushStateWithinPageForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didReplaceStateWithinPageForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didPopStateWithinPageForFrame( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } - -private: - void didClearWindowObjectForFrameInIsolatedWorld(IWebFrame*, IWebScriptWorld*); - void didClearWindowObjectForFrameInStandardWorld(IWebFrame*); - - void locationChangeDone(IWebError*, IWebFrame*); - - ULONG m_refCount; - OwnPtr m_gcController; - OwnPtr m_accessibilityController; -}; - -#endif // FrameLoadDelegate_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/GCControllerWin.cpp --- a/WebKitTools/DumpRenderTree/win/GCControllerWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,61 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "GCController.h" - -#include "DumpRenderTree.h" -#include -#include -#include - -void GCController::collect() const -{ - COMPtr collector; - if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) - return; - collector->collect(); -} - -void GCController::collectOnAlternateThread(bool waitUntilDone) const -{ - COMPtr collector; - if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) - return; - collector->collectOnAlternateThread(waitUntilDone ? TRUE : FALSE); -} - -size_t GCController::getJSObjectCount() const -{ - COMPtr collector; - if (FAILED(WebKitCreateInstance(CLSID_WebJavaScriptCollector, 0, IID_IWebJavaScriptCollector, (void**)&collector))) - return 0; - UINT objects = 0; - collector->objectCount(&objects); - return objects; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/HistoryDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/HistoryDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,221 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "HistoryDelegate.h" - -#include "DumpRenderTree.h" -#include "DumpRenderTreeWin.h" -#include "LayoutTestController.h" -#include -#include - -using std::wstring; - -static inline wstring wstringFromBSTR(BSTR str) -{ - return wstring(str, ::SysStringLen(str)); -} - -HistoryDelegate::HistoryDelegate() - : m_refCount(1) -{ -} - -HistoryDelegate::~HistoryDelegate() -{ -} - - // IUnknown -HRESULT HistoryDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebHistoryDelegate)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG HistoryDelegate::AddRef(void) -{ - return ++m_refCount; -} - -ULONG HistoryDelegate::Release(void) -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete(this); - - return newRef; -} - -// IWebHistoryDelegate -HRESULT HistoryDelegate::didNavigateWithNavigationData(IWebView* webView, IWebNavigationData* navigationData, IWebFrame* webFrame) -{ - if (!gLayoutTestController->dumpHistoryDelegateCallbacks()) - return S_OK; - - BSTR urlBSTR; - if (FAILED(navigationData->url(&urlBSTR))) - return E_FAIL; - wstring url; - if (urlBSTR) - url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR)); - SysFreeString(urlBSTR); - - BSTR titleBSTR; - if (FAILED(navigationData->title(&titleBSTR))) - return E_FAIL; - wstring title; - if (titleBSTR) - title = wstringFromBSTR(titleBSTR); - SysFreeString(titleBSTR); - - COMPtr request; - if (FAILED(navigationData->originalRequest(&request))) - return E_FAIL; - - BSTR httpMethodBSTR; - if (FAILED(request->HTTPMethod(&httpMethodBSTR))) - return E_FAIL; - wstring httpMethod; - if (httpMethodBSTR) - httpMethod = wstringFromBSTR(httpMethodBSTR); - SysFreeString(httpMethodBSTR); - - COMPtr response; - if (FAILED(navigationData->response(&response))) - return E_FAIL; - - COMPtr httpResponse; - if (FAILED(response->QueryInterface(&httpResponse))) - return E_FAIL; - - int statusCode = 0; - if (FAILED(httpResponse->statusCode(&statusCode))) - return E_FAIL; - - BOOL hasSubstituteData; - if (FAILED(navigationData->hasSubstituteData(&hasSubstituteData))) - return E_FAIL; - - BSTR clientRedirectSourceBSTR; - if (FAILED(navigationData->clientRedirectSource(&clientRedirectSourceBSTR))) - return E_FAIL; - bool hasClientRedirect = clientRedirectSourceBSTR && SysStringLen(clientRedirectSourceBSTR); - wstring redirectSource; - if (clientRedirectSourceBSTR) - redirectSource = urlSuitableForTestResult(wstringFromBSTR(clientRedirectSourceBSTR)); - SysFreeString(clientRedirectSourceBSTR); - - bool wasFailure = hasSubstituteData || (httpResponse && statusCode >= 400); - - printf("WebView navigated to url \"%S\" with title \"%S\" with HTTP equivalent method \"%S\". The navigation was %s and was %s%S.\n", - url.c_str(), - title.c_str(), - httpMethod.c_str(), - wasFailure ? "a failure" : "successful", - hasClientRedirect ? "a client redirect from " : "not a client redirect", - redirectSource.c_str()); - - return S_OK; -} - -HRESULT HistoryDelegate::didPerformClientRedirectFromURL(IWebView*, BSTR sourceURL, BSTR destinationURL, IWebFrame*) -{ - if (!gLayoutTestController->dumpHistoryDelegateCallbacks()) - return S_OK; - - wstring source; - if (sourceURL) - source = urlSuitableForTestResult(wstringFromBSTR(sourceURL)); - - wstring destination; - if (destinationURL) - destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL)); - - printf("WebView performed a client redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str()); - return S_OK; -} - -HRESULT HistoryDelegate::didPerformServerRedirectFromURL(IWebView* webView, BSTR sourceURL, BSTR destinationURL, IWebFrame* webFrame) -{ - if (!gLayoutTestController->dumpHistoryDelegateCallbacks()) - return S_OK; - - wstring source; - if (sourceURL) - source = urlSuitableForTestResult(wstringFromBSTR(sourceURL)); - - wstring destination; - if (destinationURL) - destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL)); - - printf("WebView performed a server redirect from \"%S\" to \"%S\".\n", source.c_str(), destination.c_str()); - return S_OK; -} - -HRESULT HistoryDelegate::updateHistoryTitle(IWebView* webView, BSTR titleBSTR, BSTR urlBSTR) -{ - if (!gLayoutTestController->dumpHistoryDelegateCallbacks()) - return S_OK; - - wstring url; - if (urlBSTR) - url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR)); - - wstring title; - if (titleBSTR) - title = wstringFromBSTR(titleBSTR); - - printf("WebView updated the title for history URL \"%S\" to \"%S\".\n", url.c_str(), title.c_str()); - return S_OK; -} - -HRESULT HistoryDelegate::populateVisitedLinksForWebView(IWebView* webView) -{ - if (!gLayoutTestController->dumpHistoryDelegateCallbacks()) - return S_OK; - - BSTR urlBSTR; - if (FAILED(webView->mainFrameURL(&urlBSTR))) - return E_FAIL; - - wstring url; - if (urlBSTR) - url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR)); - SysFreeString(urlBSTR); - - if (gLayoutTestController->dumpVisitedLinksCallback()) - printf("Asked to populate visited links for WebView \"%S\"\n", url.c_str()); - - return S_OK; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/HistoryDelegate.h --- a/WebKitTools/DumpRenderTree/win/HistoryDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef HistoryDelegate_h -#define HistoryDelegate_h - -#include -#include - -class HistoryDelegate : public IWebHistoryDelegate { -public: - HistoryDelegate(); - virtual ~HistoryDelegate(); - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebHistoryDelegate - virtual HRESULT STDMETHODCALLTYPE didNavigateWithNavigationData( - /* [in] */ IWebView* webView, - /* [in] */ IWebNavigationData* navigationData, - /* [in] */ IWebFrame* webFrame); - - virtual HRESULT STDMETHODCALLTYPE didPerformClientRedirectFromURL( - /* [in] */ IWebView* webView, - /* [in] */ BSTR sourceURL, - /* [in] */ BSTR destinationURL, - /* [in] */ IWebFrame* webFrame); - - virtual HRESULT STDMETHODCALLTYPE didPerformServerRedirectFromURL( - /* [in] */ IWebView* webView, - /* [in] */ BSTR sourceURL, - /* [in] */ BSTR destinationURL, - /* [in] */ IWebFrame* webFrame); - - virtual HRESULT STDMETHODCALLTYPE updateHistoryTitle( - /* [in] */ IWebView* webView, - /* [in] */ BSTR title, - /* [in] */ BSTR url); - - virtual HRESULT STDMETHODCALLTYPE populateVisitedLinksForWebView( - /* [in] */ IWebView* webView); - -private: - ULONG m_refCount; -}; - -#endif // HistoryDelegate_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/ImageDiff.vcproj --- a/WebKitTools/DumpRenderTree/win/ImageDiff.vcproj Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,301 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp --- a/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1335 +0,0 @@ -/* - * Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "LayoutTestController.h" - -#include "DumpRenderTree.h" -#include "EditingDelegate.h" -#include "PolicyDelegate.h" -#include "WorkQueue.h" -#include "WorkQueueItem.h" -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -using std::string; -using std::wstring; - -static bool resolveCygwinPath(const wstring& cygwinPath, wstring& windowsPath); - -LayoutTestController::~LayoutTestController() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - // reset webview-related states back to default values in preparation for next test - - COMPtr viewPrivate; - if (SUCCEEDED(webView->QueryInterface(&viewPrivate))) - viewPrivate->setTabKeyCyclesThroughElements(TRUE); - - COMPtr viewEditing; - if (FAILED(webView->QueryInterface(&viewEditing))) - return; - COMPtr delegate; - if (FAILED(viewEditing->editingDelegate(&delegate))) - return; - COMPtr editingDelegate(Query, viewEditing.get()); - if (editingDelegate) - editingDelegate->setAcceptsEditing(TRUE); -} - -void LayoutTestController::addDisallowedURL(JSStringRef url) -{ - // FIXME: Implement! -} - -void LayoutTestController::clearBackForwardList() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr backForwardList; - if (FAILED(webView->backForwardList(&backForwardList))) - return; - - COMPtr item; - if (FAILED(backForwardList->currentItem(&item))) - return; - - // We clear the history by setting the back/forward list's capacity to 0 - // then restoring it back and adding back the current item. - int capacity; - if (FAILED(backForwardList->capacity(&capacity))) - return; - - backForwardList->setCapacity(0); - backForwardList->setCapacity(capacity); - backForwardList->addItem(item.get()); - backForwardList->goToItem(item.get()); -} - -bool LayoutTestController::callShouldCloseOnWebView() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return false; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return false; - - BOOL result; - viewPrivate->shouldClose(&result); - return result; -} - -JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name) -{ - // FIXME: Implement! - return 0; -} - -JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name) -{ - // FIXME: Implement! - return 0; -} - -void LayoutTestController::disableImageLoading() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - preferences->setLoadsImagesAutomatically(FALSE); -} - -void LayoutTestController::dispatchPendingLoadRequests() -{ - // FIXME: Implement for testing fix for 6727495 -} - -void LayoutTestController::display() -{ - displayWebView(); -} - -void LayoutTestController::keepWebHistory() -{ - COMPtr history; - if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast(&history)))) - return; - - COMPtr sharedHistory; - if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(sharedHistory), reinterpret_cast(&sharedHistory)))) - return; - - history->setOptionalSharedHistory(sharedHistory.get()); -} - -JSValueRef LayoutTestController::computedStyleIncludingVisitedInfo(JSContextRef context, JSValueRef value) -{ - // FIXME: Implement this. - return JSValueMakeUndefined(context); -} - -JSRetainPtr LayoutTestController::layerTreeAsText() const -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return false; - - BSTR textBSTR = 0; - HRESULT hr = framePrivate->layerTreeAsText(&textBSTR); - - wstring text(textBSTR, SysStringLen(textBSTR)); - SysFreeString(textBSTR); - JSRetainPtr textValueJS(Adopt, JSStringCreateWithCharacters(text.data(), text.length())); - return textValueJS; -} - -JSRetainPtr LayoutTestController::markerTextForListItem(JSContextRef context, JSValueRef nodeObject) const -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return 0; - - COMPtr webViewPrivate(Query, webView); - if (!webViewPrivate) - return 0; - - COMPtr element; - if (FAILED(webViewPrivate->elementFromJS(context, nodeObject, &element))) - return 0; - - COMPtr elementPrivate(Query, element); - if (!elementPrivate) - return 0; - - BSTR textBSTR = 0; - if (FAILED(elementPrivate->markerTextForListItem(&textBSTR))) - return 0; - - JSRetainPtr markerText(Adopt, JSStringCreateWithBSTR(textBSTR)); - SysFreeString(textBSTR); - return markerText; -} - -void LayoutTestController::waitForPolicyDelegate() -{ - // FIXME: Implement this. -} - -size_t LayoutTestController::webHistoryItemCount() -{ - COMPtr history; - if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast(&history)))) - return 0; - - COMPtr sharedHistory; - if (FAILED(history->optionalSharedHistory(&sharedHistory)) || !sharedHistory) - return 0; - - COMPtr sharedHistoryPrivate; - if (FAILED(sharedHistory->QueryInterface(&sharedHistoryPrivate))) - return 0; - - int count; - if (FAILED(sharedHistoryPrivate->allItems(&count, 0))) - return 0; - - return count; -} - -unsigned LayoutTestController::workerThreadCount() const -{ - COMPtr workers; - if (FAILED(WebKitCreateInstance(CLSID_WebWorkersPrivate, 0, __uuidof(workers), reinterpret_cast(&workers)))) - return 0; - unsigned count; - if (FAILED(workers->workerThreadCount(&count))) - return 0; - return count; -} - -void LayoutTestController::notifyDone() -{ - // Same as on mac. This can be shared. - if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) - dump(); - m_waitToDump = false; -} - -JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url) -{ - wstring input(JSStringGetCharactersPtr(url), JSStringGetLength(url)); - - wstring localPath; - if (!resolveCygwinPath(input, localPath)) { - printf("ERROR: Failed to resolve Cygwin path %S\n", input.c_str()); - return 0; - } - - return JSStringCreateWithCharacters(localPath.c_str(), localPath.length()); -} - -static wstring jsStringRefToWString(JSStringRef jsStr) -{ - size_t length = JSStringGetLength(jsStr); - Vector buffer(length + 1); - memcpy(buffer.data(), JSStringGetCharactersPtr(jsStr), length * sizeof(WCHAR)); - buffer[length] = '\0'; - - return buffer.data(); -} - -void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target) -{ - COMPtr dataSource; - if (FAILED(frame->dataSource(&dataSource))) - return; - - COMPtr response; - if (FAILED(dataSource->response(&response)) || !response) - return; - - BSTR responseURLBSTR; - if (FAILED(response->URL(&responseURLBSTR))) - return; - wstring responseURL(responseURLBSTR, SysStringLen(responseURLBSTR)); - SysFreeString(responseURLBSTR); - - // FIXME: We should do real relative URL resolution here. - int lastSlash = responseURL.rfind('/'); - if (lastSlash != -1) - responseURL = responseURL.substr(0, lastSlash); - - wstring wURL = jsStringRefToWString(url); - wstring wAbsoluteURL = responseURL + TEXT("/") + wURL; - JSRetainPtr jsAbsoluteURL(Adopt, JSStringCreateWithCharacters(wAbsoluteURL.data(), wAbsoluteURL.length())); - - WorkQueue::shared()->queue(new LoadItem(jsAbsoluteURL.get(), target)); -} - -void LayoutTestController::setAcceptsEditing(bool acceptsEditing) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewEditing; - if (FAILED(webView->QueryInterface(&viewEditing))) - return; - - COMPtr delegate; - if (FAILED(viewEditing->editingDelegate(&delegate))) - return; - - EditingDelegate* editingDelegate = (EditingDelegate*)(IWebEditingDelegate*)delegate.get(); - editingDelegate->setAcceptsEditing(acceptsEditing); -} - -void LayoutTestController::setAlwaysAcceptCookies(bool alwaysAcceptCookies) -{ - if (alwaysAcceptCookies == m_alwaysAcceptCookies) - return; - - if (!::setAlwaysAcceptCookies(alwaysAcceptCookies)) - return; - m_alwaysAcceptCookies = alwaysAcceptCookies; -} - -void LayoutTestController::setAuthorAndUserStylesEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setAuthorAndUserStylesEnabled(flag); -} - -void LayoutTestController::setCustomPolicyDelegate(bool setDelegate, bool permissive) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - if (setDelegate) { - policyDelegate->setPermissive(permissive); - webView->setPolicyDelegate(policyDelegate); - } else - webView->setPolicyDelegate(0); -} - -void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setMockGeolocationError(int code, JSStringRef message) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setIconDatabaseEnabled(bool iconDatabaseEnabled) -{ - // See also - COMPtr iconDatabase; - COMPtr tmpIconDatabase; - if (FAILED(WebKitCreateInstance(CLSID_WebIconDatabase, 0, IID_IWebIconDatabase, (void**)&tmpIconDatabase))) - return; - if (FAILED(tmpIconDatabase->sharedIconDatabase(&iconDatabase))) - return; - - iconDatabase->setEnabled(iconDatabaseEnabled); -} - -void LayoutTestController::setMainFrameIsFirstResponder(bool flag) -{ - // FIXME: Implement! -} - -void LayoutTestController::setPrivateBrowsingEnabled(bool privateBrowsingEnabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - preferences->setPrivateBrowsingEnabled(privateBrowsingEnabled); -} - -void LayoutTestController::setXSSAuditorEnabled(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setXSSAuditorEnabled(enabled); -} - -void LayoutTestController::setFrameFlatteningEnabled(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setFrameFlatteningEnabled(enabled); -} - -void LayoutTestController::setSpatialNavigationEnabled(bool enabled) -{ - // FIXME: Implement for SpatialNavigation layout tests. -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setAllowUniversalAccessFromFileURLs(enabled); -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setAllowFileAccessFromFileURLs(enabled); -} - -void LayoutTestController::setPopupBlockingEnabled(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - preferences->setJavaScriptCanOpenWindowsAutomatically(!enabled); -} - -void LayoutTestController::setPluginsEnabled(bool flag) -{ - // FIXME: Implement -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setJavaScriptCanAccessClipboard(enabled); -} - -void LayoutTestController::setTabKeyCyclesThroughElements(bool shouldCycle) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return; - - viewPrivate->setTabKeyCyclesThroughElements(shouldCycle ? TRUE : FALSE); -} - -void LayoutTestController::setTimelineProfilingEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return; - - COMPtr inspector; - if (FAILED(viewPrivate->inspector(&inspector))) - return; - - inspector->setTimelineProfilingEnabled(flag); -} - -void LayoutTestController::setUseDashboardCompatibilityMode(bool flag) -{ - // FIXME: Implement! -} - -void LayoutTestController::setUserStyleSheetEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - preferences->setUserStyleSheetEnabled(flag); -} - -bool appendComponentToPath(wstring& path, const wstring& component) -{ - WCHAR buffer[MAX_PATH]; - - if (path.size() + 1 > MAX_PATH) - return false; - - memcpy(buffer, path.data(), path.size() * sizeof(WCHAR)); - buffer[path.size()] = '\0'; - - if (!PathAppendW(buffer, component.c_str())) - return false; - - path = wstring(buffer); - return true; -} - -static bool followShortcuts(wstring& path) -{ - if (PathFileExists(path.c_str())) - return true; - - // Do we have a shortcut? - wstring linkPath = path; - linkPath.append(TEXT(".lnk")); - if (!PathFileExists(linkPath.c_str())) - return true; - - // We have a shortcut, find its target. - COMPtr shortcut(Create, CLSID_ShellLink); - if (!shortcut) - return false; - COMPtr persistFile(Query, shortcut); - if (!shortcut) - return false; - if (FAILED(persistFile->Load(linkPath.c_str(), STGM_READ))) - return false; - if (FAILED(shortcut->Resolve(0, 0))) - return false; - WCHAR targetPath[MAX_PATH]; - DWORD targetPathLen = _countof(targetPath); - if (FAILED(shortcut->GetPath(targetPath, targetPathLen, 0, 0))) - return false; - if (!PathFileExists(targetPath)) - return false; - // Use the target path as the result path instead. - path = wstring(targetPath); - - return true; -} - -static bool resolveCygwinPath(const wstring& cygwinPath, wstring& windowsPath) -{ - wstring fileProtocol = L"file://"; - bool isFileProtocol = cygwinPath.find(fileProtocol) != string::npos; - if (cygwinPath[isFileProtocol ? 7 : 0] != '/') // ensure path is absolute - return false; - - // Get the Root path. - WCHAR rootPath[MAX_PATH]; - DWORD rootPathSize = _countof(rootPath); - DWORD keyType; - DWORD result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygnus Solutions\\Cygwin\\mounts v2\\/"), TEXT("native"), &keyType, &rootPath, &rootPathSize); - - if (result != ERROR_SUCCESS || keyType != REG_SZ) { - // Cygwin 1.7 doesn't store Cygwin's root as a mount point anymore, because mount points are now stored in /etc/fstab. - // However, /etc/fstab doesn't contain any information about where / is located as a Windows path, so we need to use Cygwin's - // new registry key that has the root. - result = ::SHGetValueW(HKEY_LOCAL_MACHINE, TEXT("SOFTWARE\\Cygwin\\setup"), TEXT("rootdir"), &keyType, &rootPath, &rootPathSize); - if (result != ERROR_SUCCESS || keyType != REG_SZ) - return false; - } - - windowsPath = wstring(rootPath, rootPathSize); - - int oldPos = isFileProtocol ? 8 : 1; - while (1) { - int newPos = cygwinPath.find('/', oldPos); - - if (newPos == -1) { - wstring pathComponent = cygwinPath.substr(oldPos); - - if (!appendComponentToPath(windowsPath, pathComponent)) - return false; - - if (!followShortcuts(windowsPath)) - return false; - - break; - } - - wstring pathComponent = cygwinPath.substr(oldPos, newPos - oldPos); - if (!appendComponentToPath(windowsPath, pathComponent)) - return false; - - if (!followShortcuts(windowsPath)) - return false; - - oldPos = newPos + 1; - } - - if (isFileProtocol) - windowsPath = fileProtocol + windowsPath; - - return true; -} - -static wstring cfStringRefToWString(CFStringRef cfStr) -{ - Vector v(CFStringGetLength(cfStr)); - CFStringGetCharacters(cfStr, CFRangeMake(0, CFStringGetLength(cfStr)), (UniChar *)v.data()); - - return wstring(v.data(), v.size()); -} - -void LayoutTestController::setUserStyleSheetLocation(JSStringRef jsURL) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - RetainPtr urlString(AdoptCF, JSStringCopyCFString(0, jsURL)); - RetainPtr url(AdoptCF, CFURLCreateWithString(0, urlString.get(), 0)); - if (!url) - return; - - // Now copy the file system path, POSIX style. - RetainPtr pathCF(AdoptCF, CFURLCopyFileSystemPath(url.get(), kCFURLPOSIXPathStyle)); - if (!pathCF) - return; - - wstring path = cfStringRefToWString(pathCF.get()); - - wstring resultPath; - if (!resolveCygwinPath(path, resultPath)) - return; - - // The path has been resolved, now convert it back to a CFURL. - int result = WideCharToMultiByte(CP_UTF8, 0, resultPath.c_str(), resultPath.size() + 1, 0, 0, 0, 0); - Vector utf8Vector(result); - result = WideCharToMultiByte(CP_UTF8, 0, resultPath.c_str(), resultPath.size() + 1, utf8Vector.data(), result, 0, 0); - if (!result) - return; - - url = CFURLCreateFromFileSystemRepresentation(0, (const UInt8*)utf8Vector.data(), utf8Vector.size() - 1, false); - if (!url) - return; - - resultPath = cfStringRefToWString(CFURLGetString(url.get())); - - BSTR resultPathBSTR = SysAllocStringLen(resultPath.data(), resultPath.size()); - preferences->setUserStyleSheetLocation(resultPathBSTR); - SysFreeString(resultPathBSTR); -} - -void LayoutTestController::setPersistentUserStyleSheetLocation(JSStringRef jsURL) -{ - RetainPtr urlString(AdoptCF, JSStringCopyCFString(0, jsURL)); - ::setPersistentUserStyleSheetLocation(urlString.get()); -} - -void LayoutTestController::clearPersistentUserStyleSheet() -{ - ::setPersistentUserStyleSheetLocation(0); -} - -void LayoutTestController::setWindowIsKey(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return; - - HWND webViewWindow; - if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow))) - return; - - ::SendMessage(webViewWindow, flag ? WM_SETFOCUS : WM_KILLFOCUS, (WPARAM)::GetDesktopWindow(), 0); -} - -void LayoutTestController::setSmartInsertDeleteEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewEditing; - if (FAILED(webView->QueryInterface(&viewEditing))) - return; - - viewEditing->setSmartInsertDeleteEnabled(flag ? TRUE : FALSE); -} - -void LayoutTestController::setJavaScriptProfilingEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return; - - COMPtr inspector; - if (FAILED(viewPrivate->inspector(&inspector))) - return; - - setDeveloperExtrasEnabled(flag); - inspector->setJavaScriptProfilingEnabled(flag); -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(bool flag) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewEditing; - if (FAILED(webView->QueryInterface(&viewEditing))) - return; - - viewEditing->setSelectTrailingWhitespaceEnabled(flag ? TRUE : FALSE); -} - -static const CFTimeInterval waitToDumpWatchdogInterval = 30.0; - -static void CALLBACK waitUntilDoneWatchdogFired(HWND, UINT, UINT_PTR, DWORD) -{ - gLayoutTestController->waitToDumpWatchdogTimerFired(); -} - -void LayoutTestController::setWaitToDump(bool waitUntilDone) -{ - m_waitToDump = waitUntilDone; - if (m_waitToDump && !waitToDumpWatchdog) - waitToDumpWatchdog = SetTimer(0, 0, waitToDumpWatchdogInterval * 1000, waitUntilDoneWatchdogFired); -} - -int LayoutTestController::windowCount() -{ - return openWindows().size(); -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(JSStringRef id) -{ - COMPtr document; - if (FAILED(frame->DOMDocument(&document))) - return false; - - wstring idWstring = jsStringRefToWString(id); - BSTR idBSTR = SysAllocStringLen((OLECHAR*)idWstring.c_str(), idWstring.length()); - COMPtr element; - HRESULT result = document->getElementById(idBSTR, &element); - SysFreeString(idBSTR); - - if (FAILED(result)) - return false; - - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return false; - - BOOL autoCompletes; - if (FAILED(framePrivate->elementDoesAutoComplete(element.get(), &autoCompletes))) - return false; - - return autoCompletes; -} - -void LayoutTestController::execCommand(JSStringRef name, JSStringRef value) -{ - wstring wName = jsStringRefToWString(name); - wstring wValue = jsStringRefToWString(value); - - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate; - if (FAILED(webView->QueryInterface(&viewPrivate))) - return; - - BSTR nameBSTR = SysAllocStringLen((OLECHAR*)wName.c_str(), wName.length()); - BSTR valueBSTR = SysAllocStringLen((OLECHAR*)wValue.c_str(), wValue.length()); - viewPrivate->executeCoreCommandByName(nameBSTR, valueBSTR); - - SysFreeString(nameBSTR); - SysFreeString(valueBSTR); -} - -void LayoutTestController::setCacheModel(int) -{ - // FIXME: Implement -} - -bool LayoutTestController::isCommandEnabled(JSStringRef /*name*/) -{ - printf("ERROR: LayoutTestController::isCommandEnabled() not implemented\n"); - return false; -} - -void LayoutTestController::clearAllDatabases() -{ - COMPtr databaseManager; - COMPtr tmpDatabaseManager; - if (FAILED(WebKitCreateInstance(CLSID_WebDatabaseManager, 0, IID_IWebDatabaseManager, (void**)&tmpDatabaseManager))) - return; - if (FAILED(tmpDatabaseManager->sharedWebDatabaseManager(&databaseManager))) - return; - - databaseManager->deleteAllDatabases(); -} - -void LayoutTestController::overridePreference(JSStringRef key, JSStringRef value) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - BSTR keyBSTR = JSStringCopyBSTR(key); - BSTR valueBSTR = JSStringCopyBSTR(value); - prefsPrivate->setPreferenceForTest(keyBSTR, valueBSTR); - SysFreeString(keyBSTR); - SysFreeString(valueBSTR); -} - -void LayoutTestController::setDatabaseQuota(unsigned long long quota) -{ - COMPtr databaseManager; - COMPtr tmpDatabaseManager; - - if (FAILED(WebKitCreateInstance(CLSID_WebDatabaseManager, 0, IID_IWebDatabaseManager, (void**)&tmpDatabaseManager))) - return; - if (FAILED(tmpDatabaseManager->sharedWebDatabaseManager(&databaseManager))) - return; - - databaseManager->setQuota(TEXT("file:///"), quota); -} - -void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool forbidden, JSStringRef scheme) -{ - COMPtr webView; - if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast(&webView)))) - return; - - BSTR schemeBSTR = JSStringCopyBSTR(scheme); - webView->setDomainRelaxationForbiddenForURLScheme(forbidden, schemeBSTR); - SysFreeString(schemeBSTR); -} - -void LayoutTestController::setAppCacheMaximumSize(unsigned long long size) -{ - printf("ERROR: LayoutTestController::setAppCacheMaximumSize() not implemented\n"); -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) -{ - COMPtr document; - if (FAILED(frame->DOMDocument(&document))) - return false; - - BSTR idBSTR = JSStringCopyBSTR(elementId); - COMPtr element; - HRESULT hr = document->getElementById(idBSTR, &element); - SysFreeString(idBSTR); - if (FAILED(hr)) - return false; - - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return false; - - BSTR nameBSTR = JSStringCopyBSTR(animationName); - BOOL wasRunning = FALSE; - hr = framePrivate->pauseAnimation(nameBSTR, element.get(), time, &wasRunning); - SysFreeString(nameBSTR); - - return SUCCEEDED(hr) && wasRunning; -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) -{ - COMPtr document; - if (FAILED(frame->DOMDocument(&document))) - return false; - - BSTR idBSTR = JSStringCopyBSTR(elementId); - COMPtr element; - HRESULT hr = document->getElementById(idBSTR, &element); - SysFreeString(idBSTR); - if (FAILED(hr)) - return false; - - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return false; - - BSTR nameBSTR = JSStringCopyBSTR(propertyName); - BOOL wasRunning = FALSE; - hr = framePrivate->pauseTransition(nameBSTR, element.get(), time, &wasRunning); - SysFreeString(nameBSTR); - - return SUCCEEDED(hr) && wasRunning; -} - -bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) -{ - COMPtr document; - if (FAILED(frame->DOMDocument(&document))) - return false; - - BSTR idBSTR = JSStringCopyBSTR(animationId); - COMPtr element; - HRESULT hr = document->getElementById(idBSTR, &element); - SysFreeString(idBSTR); - if (FAILED(hr)) - return false; - - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return false; - - BSTR elementIdBSTR = JSStringCopyBSTR(elementId); - BOOL wasRunning = FALSE; - hr = framePrivate->pauseSVGAnimation(elementIdBSTR, element.get(), time, &wasRunning); - SysFreeString(elementIdBSTR); - - return SUCCEEDED(hr) && wasRunning; -} - -unsigned LayoutTestController::numberOfActiveAnimations() const -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return 0; - - UINT number = 0; - if (FAILED(framePrivate->numberOfActiveAnimations(&number))) - return 0; - - return number; -} - -static _bstr_t bstrT(JSStringRef jsString) -{ - // The false parameter tells the _bstr_t constructor to adopt the BSTR we pass it. - return _bstr_t(JSStringCopyBSTR(jsString), false); -} - -void LayoutTestController::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - COMPtr webView; - if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast(&webView)))) - return; - - webView->addOriginAccessWhitelistEntry(bstrT(sourceOrigin).GetBSTR(), bstrT(destinationProtocol).GetBSTR(), bstrT(destinationHost).GetBSTR(), allowDestinationSubdomains); -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - COMPtr webView; - if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast(&webView)))) - return; - - webView->removeOriginAccessWhitelistEntry(bstrT(sourceOrigin).GetBSTR(), bstrT(destinationProtocol).GetBSTR(), bstrT(destinationHost).GetBSTR(), allowDestinationSubdomains); -} - -void LayoutTestController::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy) -{ - // FIXME: implement -} - -void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) -{ - COMPtr webView; - if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast(&webView)))) - return; - - COMPtr world; - if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast(&world)))) - return; - - webView->addUserScriptToGroup(_bstr_t(L"org.webkit.DumpRenderTree").GetBSTR(), world.get(), bstrT(source).GetBSTR(), 0, 0, 0, 0, 0, runAtStart ? WebInjectAtDocumentStart : WebInjectAtDocumentEnd); -} - - -void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) -{ - COMPtr webView; - if (FAILED(WebKitCreateInstance(__uuidof(WebView), 0, __uuidof(webView), reinterpret_cast(&webView)))) - return; - - COMPtr world; - if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast(&world)))) - return; - - webView->addUserStyleSheetToGroup(_bstr_t(L"org.webkit.DumpRenderTree").GetBSTR(), world.get(), bstrT(source).GetBSTR(), 0, 0, 0, 0, 0); -} - -void LayoutTestController::setDeveloperExtrasEnabled(bool enabled) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - COMPtr prefsPrivate(Query, preferences); - if (!prefsPrivate) - return; - - prefsPrivate->setDeveloperExtrasEnabled(enabled); -} - -void LayoutTestController::showWebInspector() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate(Query, webView); - if (!viewPrivate) - return; - - COMPtr inspector; - if (SUCCEEDED(viewPrivate->inspector(&inspector))) - inspector->show(); -} - -void LayoutTestController::closeWebInspector() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate(Query, webView); - if (!viewPrivate) - return; - - COMPtr inspector; - if (FAILED(viewPrivate->inspector(&inspector))) - return; - - inspector->close(); -} - -void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr viewPrivate(Query, webView); - if (!viewPrivate) - return; - - COMPtr inspector; - if (FAILED(viewPrivate->inspector(&inspector))) - return; - - COMPtr inspectorPrivate(Query, inspector); - if (!inspectorPrivate) - return; - - inspectorPrivate->evaluateInFrontend(callId, bstrT(script).GetBSTR()); -} - -typedef HashMap > WorldMap; -static WorldMap& worldMap() -{ - static WorldMap& map = *new WorldMap; - return map; -} - -unsigned worldIDForWorld(IWebScriptWorld* world) -{ - WorldMap::const_iterator end = worldMap().end(); - for (WorldMap::const_iterator it = worldMap().begin(); it != end; ++it) { - if (it->second == world) - return it->first; - } - - return 0; -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldID, JSObjectRef globalObject, JSStringRef script) -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return; - - // A worldID of 0 always corresponds to a new world. Any other worldID corresponds to a world - // that is created once and cached forever. - COMPtr world; - if (!worldID) { - if (FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(world), reinterpret_cast(&world)))) - return; - } else { - COMPtr& worldSlot = worldMap().add(worldID, 0).first->second; - if (!worldSlot && FAILED(WebKitCreateInstance(__uuidof(WebScriptWorld), 0, __uuidof(worldSlot), reinterpret_cast(&worldSlot)))) - return; - world = worldSlot; - } - - BSTR result; - if (FAILED(framePrivate->stringByEvaluatingJavaScriptInScriptWorld(world.get(), globalObject, bstrT(script).GetBSTR(), &result))) - return; - SysFreeString(result); -} - -void LayoutTestController::removeAllVisitedLinks() -{ - COMPtr history; - if (FAILED(WebKitCreateInstance(CLSID_WebHistory, 0, __uuidof(history), reinterpret_cast(&history)))) - return; - - COMPtr sharedHistory; - if (FAILED(history->optionalSharedHistory(&sharedHistory)) || !sharedHistory) - return; - - COMPtr sharedHistoryPrivate; - if (FAILED(sharedHistory->QueryInterface(&sharedHistoryPrivate))) - return; - - sharedHistoryPrivate->removeAllVisitedLinks(); -} - -JSRetainPtr LayoutTestController::counterValueForElementById(JSStringRef id) -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return 0; - - wstring idWstring = jsStringRefToWString(id); - BSTR idBSTR = SysAllocStringLen((OLECHAR*)idWstring.c_str(), idWstring.length()); - BSTR counterValueBSTR; - if (FAILED(framePrivate->counterValueForElementById(idBSTR, &counterValueBSTR))) - return 0; - - wstring counterValue(counterValueBSTR, SysStringLen(counterValueBSTR)); - SysFreeString(idBSTR); - SysFreeString(counterValueBSTR); - JSRetainPtr counterValueJS(Adopt, JSStringCreateWithCharacters(counterValue.data(), counterValue.length())); - return counterValueJS; -} - -int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels) -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return 0; - - wstring idWstring = jsStringRefToWString(id); - BSTR idBSTR = SysAllocStringLen((OLECHAR*)idWstring.c_str(), idWstring.length()); - int pageNumber = -1; - if (FAILED(framePrivate->pageNumberForElementById(idBSTR, pageWidthInPixels, pageHeightInPixels, &pageNumber))) - pageNumber = -1; - SysFreeString(idBSTR); - return pageNumber; -} - -int LayoutTestController::numberOfPages(float pageWidthInPixels, float pageHeightInPixels) -{ - COMPtr framePrivate(Query, frame); - if (!framePrivate) - return 0; - - int pageNumber = -1; - if (FAILED(framePrivate->numberOfPages(pageWidthInPixels, pageHeightInPixels, &pageNumber))) - pageNumber = -1; - return pageNumber; -} - -JSRetainPtr LayoutTestController::pageProperty(const char* propertyName, int pageNumber) const -{ - // FIXME: Implement this. - return JSRetainPtr(); -} - -void LayoutTestController::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL) -{ - -} - -bool LayoutTestController::isPageBoxVisible(int pageNumber) const -{ - // FIXME: implement - return false; -} - -JSRetainPtr LayoutTestController::pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const -{ - // FIXME: implement - return JSRetainPtr(); -} - -void LayoutTestController::apiTestGoToCurrentBackForwardItem() -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr backForwardList; - if (FAILED(webView->backForwardList(&backForwardList))) - return; - - COMPtr item; - if (FAILED(backForwardList->currentItem(&item))) - return; - - BOOL success; - webView->goToBackForwardItem(item.get(), &success); -} - -void LayoutTestController::setWebViewEditable(bool) -{ -} - -void LayoutTestController::authenticateSession(JSStringRef, JSStringRef, JSStringRef) -{ -} - -void LayoutTestController::setEditingBehavior(const char* editingBehavior) -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return; - - COMPtr preferences; - if (FAILED(webView->preferences(&preferences))) - return; - - string behaviorString(editingBehavior); - if (behaviorString == "mac") - preferences->setEditingBehavior(WebKitEditingMacBehavior); - if (behaviorString == "win") - preferences->setEditingBehavior(WebKitEditingWinBehavior); -} - -void LayoutTestController::abortModal() -{ -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/MD5.cpp --- a/WebKitTools/DumpRenderTree/win/MD5.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ -/* - * Copyright (C) 2007 Apple, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "MD5.h" - -#include - -typedef void (WINAPI*initPtr)(MD5_CTX*); -typedef void (WINAPI*updatePtr)(MD5_CTX*, unsigned char*, unsigned); -typedef void (WINAPI*finalPtr)(MD5_CTX*); - -static HMODULE cryptDLL() -{ - static HMODULE module = LoadLibraryW(L"Cryptdll.dll"); - return module; -} - -static initPtr init() -{ - static initPtr ptr = reinterpret_cast(GetProcAddress(cryptDLL(), "MD5Init")); - return ptr; -} - -static updatePtr update() -{ - static updatePtr ptr = reinterpret_cast(GetProcAddress(cryptDLL(), "MD5Update")); - return ptr; -} - -static finalPtr final() -{ - static finalPtr ptr = reinterpret_cast(GetProcAddress(cryptDLL(), "MD5Final")); - return ptr; -} - -void MD5_Init(MD5_CTX* context) -{ - init()(context); -} - -void MD5_Update(MD5_CTX* context, unsigned char* input, unsigned length) -{ - update()(context, input, length); -} - -void MD5_Final(unsigned char hash[16], MD5_CTX* context) -{ - final()(context); - - for (int i = 0; i < 16; ++i) - hash[i] = context->digest[i]; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/MD5.h --- a/WebKitTools/DumpRenderTree/win/MD5.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,45 +0,0 @@ -/* - * Copyright (C) 2007 Apple, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef MD5_h -#define MD5_h - -typedef unsigned long ULONG; - -struct MD5_CTX { - ULONG i[2]; - ULONG buf[4]; - unsigned char in[64]; - unsigned char digest[16]; -}; - -void MD5_Init(MD5_CTX*); -void MD5_Update(MD5_CTX*, unsigned char* input, unsigned length); -void MD5_Final(unsigned char hash[16], MD5_CTX*); - -#endif // MD5_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/PixelDumpSupportWin.cpp --- a/WebKitTools/DumpRenderTree/win/PixelDumpSupportWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,85 +0,0 @@ -/* - * Copyright (C) 2007 Apple, Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" - -#if PLATFORM(CG) -#include "PixelDumpSupportCG.h" -#elif PLATFORM(CAIRO) -#include "PixelDumpSupportCairo.h" -#endif - -#include "DumpRenderTree.h" - -#if PLATFORM(CG) -// Note: Must be included *after* DumpRenderTree.h to avoid compile error. -#include -#endif - -#include -#include - -PassRefPtr createBitmapContextFromWebView(bool onscreen, bool incrementalRepaint, bool sweepHorizontally, bool drawSelectionRect) -{ - RECT frame; - if (!GetWindowRect(webViewWindow, &frame)) - return 0; - - BITMAPINFO bmp = {0}; - bmp.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); - bmp.bmiHeader.biWidth = frame.right - frame.left; - bmp.bmiHeader.biHeight = -(frame.bottom - frame.top); - bmp.bmiHeader.biPlanes = 1; - bmp.bmiHeader.biBitCount = 32; - bmp.bmiHeader.biCompression = BI_RGB; - - void* bits = 0; - HBITMAP bitmap = CreateDIBSection(0, &bmp, DIB_RGB_COLORS, &bits, 0, 0); - - HDC memoryDC = CreateCompatibleDC(0); - SelectObject(memoryDC, bitmap); - SendMessage(webViewWindow, WM_PRINTCLIENT, reinterpret_cast(memoryDC), PRF_CLIENT | PRF_CHILDREN | PRF_OWNED); - DeleteDC(memoryDC); - - BITMAP info = {0}; - GetObject(bitmap, sizeof(info), &info); - ASSERT(info.bmBitsPixel == 32); - -#if PLATFORM(CG) - RetainPtr colorSpace(AdoptCF, CGColorSpaceCreateDeviceRGB()); - CGContextRef context = CGBitmapContextCreate(info.bmBits, info.bmWidth, info.bmHeight, 8, - info.bmWidthBytes, colorSpace.get(), kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst); -#elif PLATFORM(CAIRO) - cairo_surface_t* image = cairo_image_surface_create_for_data((unsigned char*)info.bmBits, CAIRO_FORMAT_ARGB32, - info.bmWidth, info.bmHeight, info.bmWidthBytes); - cairo_t* context = cairo_create(image); - cairo_surface_destroy(image); -#endif - - return BitmapContext::createByAdoptingBitmapAndContext(bitmap, context); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/PolicyDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/PolicyDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,187 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "PolicyDelegate.h" - -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include - -using std::wstring; - -static wstring dumpPath(IDOMNode* node) -{ - ASSERT(node); - - wstring result; - - BSTR name; - if (FAILED(node->nodeName(&name))) - return result; - result.assign(name, SysStringLen(name)); - SysFreeString(name); - - COMPtr parent; - if (SUCCEEDED(node->parentNode(&parent))) - result += TEXT(" > ") + dumpPath(parent.get()); - - return result; -} - -PolicyDelegate::PolicyDelegate() - : m_refCount(1) - , m_permissiveDelegate(false) - , m_controllerToNotifyDone(0) -{ -} - -// IUnknown -HRESULT STDMETHODCALLTYPE PolicyDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebPolicyDelegate)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE PolicyDelegate::AddRef(void) -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE PolicyDelegate::Release(void) -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete this; - - return newRef; -} - -HRESULT STDMETHODCALLTYPE PolicyDelegate::decidePolicyForNavigationAction( - /*[in]*/ IWebView* /*webView*/, - /*[in]*/ IPropertyBag* actionInformation, - /*[in]*/ IWebURLRequest* request, - /*[in]*/ IWebFrame* frame, - /*[in]*/ IWebPolicyDecisionListener* listener) -{ - BSTR url; - request->URL(&url); - wstring wurl = urlSuitableForTestResult(wstring(url, SysStringLen(url))); - - int navType = 0; - VARIANT var; - if (SUCCEEDED(actionInformation->Read(WebActionNavigationTypeKey, &var, 0))) { - V_VT(&var) = VT_I4; - navType = V_I4(&var); - } - - LPCTSTR typeDescription; - switch (navType) { - case WebNavigationTypeLinkClicked: - typeDescription = TEXT("link clicked"); - break; - case WebNavigationTypeFormSubmitted: - typeDescription = TEXT("form submitted"); - break; - case WebNavigationTypeBackForward: - typeDescription = TEXT("back/forward"); - break; - case WebNavigationTypeReload: - typeDescription = TEXT("reload"); - break; - case WebNavigationTypeFormResubmitted: - typeDescription = TEXT("form resubmitted"); - break; - case WebNavigationTypeOther: - typeDescription = TEXT("other"); - break; - default: - typeDescription = TEXT("illegal value"); - } - - wstring message = TEXT("Policy delegate: attempt to load ") + wurl + TEXT(" with navigation type '") + typeDescription + TEXT("'"); - - VARIANT actionElementVar; - if (SUCCEEDED(actionInformation->Read(WebActionElementKey, &actionElementVar, 0))) { - COMPtr actionElement(Query, V_UNKNOWN(&actionElementVar)); - VARIANT originatingNodeVar; - if (SUCCEEDED(actionElement->Read(WebElementDOMNodeKey, &originatingNodeVar, 0))) { - COMPtr originatingNode(Query, V_UNKNOWN(&originatingNodeVar)); - message += TEXT(" originating from ") + dumpPath(originatingNode.get()); - } - } - - printf("%S\n", message.c_str()); - - SysFreeString(url); - - if (m_permissiveDelegate) - listener->use(); - else - listener->ignore(); - - if (m_controllerToNotifyDone) { - m_controllerToNotifyDone->notifyDone(); - m_controllerToNotifyDone = 0; - } - - return S_OK; -} - - -HRESULT STDMETHODCALLTYPE PolicyDelegate::unableToImplementPolicyWithError( - /*[in]*/ IWebView* /*webView*/, - /*[in]*/ IWebError* error, - /*[in]*/ IWebFrame* frame) -{ - BSTR domainStr; - error->domain(&domainStr); - wstring domainMessage = domainStr; - - int code; - error->code(&code); - - BSTR frameName; - frame->name(&frameName); - wstring frameNameMessage = frameName; - - printf("Policy delegate: unable to implement policy with error domain '%S', error code %d, in frame '%S'", domainMessage.c_str(), code, frameNameMessage.c_str()); - - SysFreeString(domainStr); - SysFreeString(frameName); - - return S_OK; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/PolicyDelegate.h --- a/WebKitTools/DumpRenderTree/win/PolicyDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,82 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef PolicyDelegate_h -#define PolicyDelegate_h - -#include - -class LayoutTestController; - -class PolicyDelegate : public IWebPolicyDelegate { -public: - PolicyDelegate(); - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebPolicyDelegate - virtual HRESULT STDMETHODCALLTYPE decidePolicyForNavigationAction( - /* [in] */ IWebView *webView, - /* [in] */ IPropertyBag *actionInformation, - /* [in] */ IWebURLRequest *request, - /* [in] */ IWebFrame *frame, - /* [in] */ IWebPolicyDecisionListener *listener); - - virtual HRESULT STDMETHODCALLTYPE decidePolicyForNewWindowAction( - /* [in] */ IWebView *webView, - /* [in] */ IPropertyBag *actionInformation, - /* [in] */ IWebURLRequest *request, - /* [in] */ BSTR frameName, - /* [in] */ IWebPolicyDecisionListener *listener){ return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE decidePolicyForMIMEType( - /* [in] */ IWebView *webView, - /* [in] */ BSTR type, - /* [in] */ IWebURLRequest *request, - /* [in] */ IWebFrame *frame, - /* [in] */ IWebPolicyDecisionListener *listener){ return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE unableToImplementPolicyWithError( - /* [in] */ IWebView *webView, - /* [in] */ IWebError *error, - /* [in] */ IWebFrame *frame); - - // PolicyDelegate - void setPermissive(bool permissive) { m_permissiveDelegate = permissive; } - void setControllerToNotifyDone(LayoutTestController* controller) { m_controllerToNotifyDone = controller; } - -private: - ULONG m_refCount; - bool m_permissiveDelegate; - LayoutTestController* m_controllerToNotifyDone; -}; - -#endif // PolicyDelegate_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/ResourceLoadDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/ResourceLoadDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,375 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "ResourceLoadDelegate.h" - -#include "DumpRenderTree.h" -#include "LayoutTestController.h" -#include -#include -#include -#include -#include -#include - -using namespace std; - -static inline wstring wstringFromBSTR(BSTR str) -{ - return wstring(str, ::SysStringLen(str)); -} - -static inline wstring wstringFromInt(int i) -{ - wostringstream ss; - ss << i; - return ss.str(); -} - -static inline BSTR BSTRFromString(const string& str) -{ - int length = ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), 0, 0); - BSTR result = ::SysAllocStringLen(0, length); - ::MultiByteToWideChar(CP_UTF8, 0, str.c_str(), str.length(), result, length); - return result; -} - -typedef HashMap IdentifierMap; - -IdentifierMap& urlMap() -{ - static IdentifierMap urlMap; - - return urlMap; -} - -static wstring descriptionSuitableForTestResult(unsigned long identifier) -{ - IdentifierMap::iterator it = urlMap().find(identifier); - - if (it == urlMap().end()) - return L""; - - return urlSuitableForTestResult(it->second); -} - -static wstring descriptionSuitableForTestResult(IWebURLRequest* request) -{ - if (!request) - return L"(null)"; - - BSTR urlBSTR; - if (FAILED(request->URL(&urlBSTR))) - return wstring(); - - wstring url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR)); - ::SysFreeString(urlBSTR); - - BSTR mainDocumentURLBSTR; - if (FAILED(request->mainDocumentURL(&mainDocumentURLBSTR))) - return wstring(); - - wstring mainDocumentURL = urlSuitableForTestResult(wstringFromBSTR(mainDocumentURLBSTR)); - ::SysFreeString(mainDocumentURLBSTR); - - BSTR httpMethodBSTR; - if (FAILED(request->HTTPMethod(&httpMethodBSTR))) - return wstring(); - - wstring httpMethod = wstringFromBSTR(httpMethodBSTR); - ::SysFreeString(httpMethodBSTR); - - return L""; -} - -static wstring descriptionSuitableForTestResult(IWebURLResponse* response) -{ - if (!response) - return L"(null)"; - - BSTR urlBSTR; - if (FAILED(response->URL(&urlBSTR))) - return wstring(); - - wstring url = urlSuitableForTestResult(wstringFromBSTR(urlBSTR)); - ::SysFreeString(urlBSTR); - - int statusCode = 0; - COMPtr httpResponse; - if (response && SUCCEEDED(response->QueryInterface(&httpResponse))) - httpResponse->statusCode(&statusCode); - - return L""; -} - -static wstring descriptionSuitableForTestResult(IWebError* error, unsigned long identifier) -{ - wstring result = L"domain(&domainSTR))) - return wstring(); - - wstring domain = wstringFromBSTR(domainSTR); - ::SysFreeString(domainSTR); - - int code; - if (FAILED(error->code(&code))) - return wstring(); - - if (domain == L"CFURLErrorDomain") { - domain = L"NSURLErrorDomain"; - - // Convert kCFURLErrorUnknown to NSURLErrorUnknown - if (code == -998) - code = -1; - } else if (domain == L"kCFErrorDomainWinSock") { - domain = L"NSURLErrorDomain"; - - // Convert the winsock error code to an NSURLError code. - if (code == WSAEADDRNOTAVAIL) - code = -1004; // NSURLErrorCannotConnectToHose; - } - - result += L"domain " + domain; - result += L", code " + wstringFromInt(code); - - BSTR failingURLSTR; - if (FAILED(error->failingURL(&failingURLSTR))) - return wstring(); - - wstring failingURL; - - // If the error doesn't have a failing URL, we fake one by using the URL the resource had - // at creation time. This seems to work fine for now. - // See CFErrors should have failingURL key. - if (failingURLSTR) - failingURL = wstringFromBSTR(failingURLSTR); - else - failingURL = descriptionSuitableForTestResult(identifier); - - ::SysFreeString(failingURLSTR); - - result += L", failing URL \"" + urlSuitableForTestResult(failingURL) + L"\">"; - - return result; -} - -ResourceLoadDelegate::ResourceLoadDelegate() - : m_refCount(1) -{ -} - -ResourceLoadDelegate::~ResourceLoadDelegate() -{ -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebResourceLoadDelegate)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE ResourceLoadDelegate::AddRef(void) -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE ResourceLoadDelegate::Release(void) -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete(this); - - return newRef; -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::identifierForInitialRequest( - /* [in] */ IWebView* webView, - /* [in] */ IWebURLRequest* request, - /* [in] */ IWebDataSource* dataSource, - /* [in] */ unsigned long identifier) -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - BSTR urlStr; - if (FAILED(request->URL(&urlStr))) - return E_FAIL; - - urlMap().set(identifier, wstringFromBSTR(urlStr)); - } - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::willSendRequest( - /* [in] */ IWebView* webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLRequest* request, - /* [in] */ IWebURLResponse* redirectResponse, - /* [in] */ IWebDataSource* dataSource, - /* [retval][out] */ IWebURLRequest **newRequest) -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - printf("%S - willSendRequest %S redirectResponse %S\n", - descriptionSuitableForTestResult(identifier).c_str(), - descriptionSuitableForTestResult(request).c_str(), - descriptionSuitableForTestResult(redirectResponse).c_str()); - } - - if (!done && !gLayoutTestController->deferMainResourceDataLoad()) { - COMPtr dataSourcePrivate(Query, dataSource); - if (!dataSourcePrivate) - return E_FAIL; - dataSourcePrivate->setDeferMainResourceDataLoad(FALSE); - } - - if (!done && gLayoutTestController->willSendRequestReturnsNull()) { - *newRequest = 0; - return S_OK; - } - - if (!done && gLayoutTestController->willSendRequestReturnsNullOnRedirect() && redirectResponse) { - printf("Returning null for this redirect\n"); - *newRequest = 0; - return S_OK; - } - - IWebMutableURLRequest* requestCopy = 0; - request->mutableCopy(&requestCopy); - const set& clearHeaders = gLayoutTestController->willSendRequestClearHeaders(); - for (set::const_iterator header = clearHeaders.begin(); header != clearHeaders.end(); ++header) { - BSTR bstrHeader = BSTRFromString(*header); - requestCopy->setValue(0, bstrHeader); - SysFreeString(bstrHeader); - } - - *newRequest = requestCopy; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didReceiveAuthenticationChallenge( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLAuthenticationChallenge *challenge, - /* [in] */ IWebDataSource *dataSource) -{ - COMPtr sender; - if (!challenge || FAILED(challenge->sender(&sender))) - return E_FAIL; - - if (!gLayoutTestController->handlesAuthenticationChallenges()) { - printf("%S - didReceiveAuthenticationChallenge - Simulating cancelled authentication sheet\n", descriptionSuitableForTestResult(identifier).c_str()); - sender->continueWithoutCredentialForAuthenticationChallenge(challenge); - return S_OK; - } - - const char* user = gLayoutTestController->authenticationUsername().c_str(); - const char* password = gLayoutTestController->authenticationPassword().c_str(); - - printf("%S - didReceiveAuthenticationChallenge - Responding with %s:%s\n", descriptionSuitableForTestResult(identifier).c_str(), user, password); - - COMPtr credential; - if (FAILED(WebKitCreateInstance(CLSID_WebURLCredential, 0, IID_IWebURLCredential, (void**)&credential))) - return E_FAIL; - credential->initWithUser(_bstr_t(user), _bstr_t(password), WebURLCredentialPersistenceForSession); - - sender->useCredential(credential.get(), challenge); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didReceiveResponse( - /* [in] */ IWebView* webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLResponse* response, - /* [in] */ IWebDataSource* dataSource) -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - printf("%S - didReceiveResponse %S\n", - descriptionSuitableForTestResult(identifier).c_str(), - descriptionSuitableForTestResult(response).c_str()); - } - if (!done && gLayoutTestController->dumpResourceResponseMIMETypes()) { - BSTR mimeTypeBSTR; - if (FAILED(response->MIMEType(&mimeTypeBSTR))) - E_FAIL; - - wstring mimeType = wstringFromBSTR(mimeTypeBSTR); - ::SysFreeString(mimeTypeBSTR); - - BSTR urlBSTR; - if (FAILED(response->URL(&urlBSTR))) - E_FAIL; - - wstring url = wstringFromBSTR(urlBSTR); - ::SysFreeString(urlBSTR); - - printf("%S has MIME type %S\n", lastPathComponent(url).c_str(), mimeType.c_str()); - } - - return S_OK; -} - - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didFinishLoadingFromDataSource( - /* [in] */ IWebView* webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebDataSource* dataSource) -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - printf("%S - didFinishLoading\n", - descriptionSuitableForTestResult(identifier).c_str()), - urlMap().remove(identifier); - } - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE ResourceLoadDelegate::didFailLoadingWithError( - /* [in] */ IWebView* webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebError* error, - /* [in] */ IWebDataSource* dataSource) -{ - if (!done && gLayoutTestController->dumpResourceLoadCallbacks()) { - printf("%S - didFailLoadingWithError: %S\n", - descriptionSuitableForTestResult(identifier).c_str(), - descriptionSuitableForTestResult(error, identifier).c_str()); - urlMap().remove(identifier); - } - - return S_OK; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/ResourceLoadDelegate.h --- a/WebKitTools/DumpRenderTree/win/ResourceLoadDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,103 +0,0 @@ -/* - * Copyright (C) 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef ResourceLoadDelegate_h -#define ResourceLoadDelegate_h - -#include - -class ResourceLoadDelegate : public IWebResourceLoadDelegate { -public: - ResourceLoadDelegate(); - virtual ~ResourceLoadDelegate(); - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebResourceLoadDelegate - virtual HRESULT STDMETHODCALLTYPE identifierForInitialRequest( - /* [in] */ IWebView *webView, - /* [in] */ IWebURLRequest *request, - /* [in] */ IWebDataSource *dataSource, - /* [in] */ unsigned long identifier); - - virtual HRESULT STDMETHODCALLTYPE willSendRequest( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLRequest *request, - /* [in] */ IWebURLResponse *redirectResponse, - /* [in] */ IWebDataSource *dataSource, - /* [retval][out] */ IWebURLRequest **newRequest); - - virtual HRESULT STDMETHODCALLTYPE didReceiveAuthenticationChallenge( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLAuthenticationChallenge *challenge, - /* [in] */ IWebDataSource *dataSource); - - virtual HRESULT STDMETHODCALLTYPE didCancelAuthenticationChallenge( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLAuthenticationChallenge *challenge, - /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didReceiveResponse( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebURLResponse *response, - /* [in] */ IWebDataSource *dataSource); - - virtual HRESULT STDMETHODCALLTYPE didReceiveContentLength( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ UINT length, - /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE didFinishLoadingFromDataSource( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebDataSource *dataSource); - - virtual HRESULT STDMETHODCALLTYPE didFailLoadingWithError( - /* [in] */ IWebView *webView, - /* [in] */ unsigned long identifier, - /* [in] */ IWebError *error, - /* [in] */ IWebDataSource *dataSource); - - virtual HRESULT STDMETHODCALLTYPE plugInFailedWithError( - /* [in] */ IWebView *webView, - /* [in] */ IWebError *error, - /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; } - -protected: - ULONG m_refCount; -}; - -#endif // ResourceLoadDelegate_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/UIDelegate.cpp --- a/WebKitTools/DumpRenderTree/win/UIDelegate.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,662 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "UIDelegate.h" - -#include "DumpRenderTree.h" -#include "DraggingInfo.h" -#include "EventSender.h" -#include "LayoutTestController.h" -#include "DRTDesktopNotificationPresenter.h" - -#include -#include -#include -#include -#include -#include -#include - -using std::wstring; - -class DRTUndoObject { -public: - DRTUndoObject(IWebUndoTarget* target, BSTR actionName, IUnknown* obj) - : m_target(target) - , m_actionName(SysAllocString(actionName)) - , m_obj(obj) - { - } - - ~DRTUndoObject() - { - SysFreeString(m_actionName); - } - - void invoke() - { - m_target->invoke(m_actionName, m_obj.get()); - } - -private: - IWebUndoTarget* m_target; - BSTR m_actionName; - COMPtr m_obj; -}; - -class DRTUndoStack { -public: - ~DRTUndoStack() { deleteAllValues(m_undoVector); } - - bool isEmpty() const { return m_undoVector.isEmpty(); } - void clear() { deleteAllValues(m_undoVector); m_undoVector.clear(); } - - void push(DRTUndoObject* undoObject) { m_undoVector.append(undoObject); } - DRTUndoObject* pop() { DRTUndoObject* top = m_undoVector.last(); m_undoVector.removeLast(); return top; } - -private: - Vector m_undoVector; -}; - -class DRTUndoManager { -public: - DRTUndoManager(); - - void removeAllActions(); - void registerUndoWithTarget(IWebUndoTarget* target, BSTR actionName, IUnknown* obj); - void redo(); - void undo(); - bool canRedo() { return !m_redoStack->isEmpty(); } - bool canUndo() { return !m_undoStack->isEmpty(); } - -private: - OwnPtr m_redoStack; - OwnPtr m_undoStack; - bool m_isRedoing; - bool m_isUndoing; -}; - -DRTUndoManager::DRTUndoManager() - : m_redoStack(new DRTUndoStack) - , m_undoStack(new DRTUndoStack) - , m_isRedoing(false) - , m_isUndoing(false) -{ -} - -void DRTUndoManager::removeAllActions() -{ - m_redoStack->clear(); - m_undoStack->clear(); -} - -void DRTUndoManager::registerUndoWithTarget(IWebUndoTarget* target, BSTR actionName, IUnknown* obj) -{ - if (!m_isUndoing && !m_isRedoing) - m_redoStack->clear(); - - DRTUndoStack* stack = m_isUndoing ? m_redoStack.get() : m_undoStack.get(); - stack->push(new DRTUndoObject(target, actionName, obj)); -} - -void DRTUndoManager::redo() -{ - if (!canRedo()) - return; - - m_isRedoing = true; - - DRTUndoObject* redoObject = m_redoStack->pop(); - redoObject->invoke(); - delete redoObject; - - m_isRedoing = false; -} - -void DRTUndoManager::undo() -{ - if (!canUndo()) - return; - - m_isUndoing = true; - - DRTUndoObject* undoObject = m_undoStack->pop(); - undoObject->invoke(); - delete undoObject; - - m_isUndoing = false; -} - -UIDelegate::UIDelegate() - : m_refCount(1) - , m_undoManager(new DRTUndoManager) - , m_desktopNotifications(new DRTDesktopNotificationPresenter) -{ - m_frame.bottom = 0; - m_frame.top = 0; - m_frame.left = 0; - m_frame.right = 0; -} - -void UIDelegate::resetUndoManager() -{ - m_undoManager.set(new DRTUndoManager); -} - -HRESULT STDMETHODCALLTYPE UIDelegate::QueryInterface(REFIID riid, void** ppvObject) -{ - *ppvObject = 0; - if (IsEqualGUID(riid, IID_IUnknown)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebUIDelegate)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebUIDelegate2)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate2)) - *ppvObject = static_cast(this); - else if (IsEqualGUID(riid, IID_IWebUIDelegatePrivate3)) - *ppvObject = static_cast(this); - else - return E_NOINTERFACE; - - AddRef(); - return S_OK; -} - -ULONG STDMETHODCALLTYPE UIDelegate::AddRef() -{ - return ++m_refCount; -} - -ULONG STDMETHODCALLTYPE UIDelegate::Release() -{ - ULONG newRef = --m_refCount; - if (!newRef) - delete(this); - - return newRef; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::hasCustomMenuImplementation( - /* [retval][out] */ BOOL *hasCustomMenus) -{ - *hasCustomMenus = TRUE; - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::trackCustomPopupMenu( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE menu, - /* [in] */ LPPOINT point) -{ - // Do nothing - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::registerUndoWithTarget( - /* [in] */ IWebUndoTarget* target, - /* [in] */ BSTR actionName, - /* [in] */ IUnknown* actionArg) -{ - m_undoManager->registerUndoWithTarget(target, actionName, actionArg); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::removeAllActionsWithTarget( - /* [in] */ IWebUndoTarget*) -{ - m_undoManager->removeAllActions(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::setActionTitle( - /* [in] */ BSTR actionTitle) -{ - // It is not neccessary to implement this for DRT because there is - // menu to write out the title to. - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::undo() -{ - m_undoManager->undo(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::redo() -{ - m_undoManager->redo(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::canUndo( - /* [retval][out] */ BOOL* result) -{ - if (!result) - return E_POINTER; - - *result = m_undoManager->canUndo(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::canRedo( - /* [retval][out] */ BOOL* result) -{ - if (!result) - return E_POINTER; - - *result = m_undoManager->canRedo(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::printFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::ftpDirectoryTemplatePath( - /* [in] */ IWebView *webView, - /* [retval][out] */ BSTR *path) -{ - if (!path) - return E_POINTER; - *path = 0; - return E_NOTIMPL; -} - - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewHeaderHeight( - /* [in] */ IWebView *webView, - /* [retval][out] */ float *result) -{ - if (!result) - return E_POINTER; - *result = 0; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewFooterHeight( - /* [in] */ IWebView *webView, - /* [retval][out] */ float *result) -{ - if (!result) - return E_POINTER; - *result = 0; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::drawHeaderInRect( - /* [in] */ IWebView *webView, - /* [in] */ RECT *rect, - /* [in] */ OLE_HANDLE drawingContext) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::drawFooterInRect( - /* [in] */ IWebView *webView, - /* [in] */ RECT *rect, - /* [in] */ OLE_HANDLE drawingContext, - /* [in] */ UINT pageIndex, - /* [in] */ UINT pageCount) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewPrintingMarginRect( - /* [in] */ IWebView *webView, - /* [retval][out] */ RECT *rect) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::canRunModal( - /* [in] */ IWebView *webView, - /* [retval][out] */ BOOL *canRunBoolean) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::createModalDialog( - /* [in] */ IWebView *sender, - /* [in] */ IWebURLRequest *request, - /* [retval][out] */ IWebView **newWebView) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runModal( - /* [in] */ IWebView *webView) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::isMenuBarVisible( - /* [in] */ IWebView *webView, - /* [retval][out] */ BOOL *visible) -{ - if (!visible) - return E_POINTER; - *visible = false; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::setMenuBarVisible( - /* [in] */ IWebView *webView, - /* [in] */ BOOL visible) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runDatabaseSizeLimitPrompt( - /* [in] */ IWebView *webView, - /* [in] */ BSTR displayName, - /* [in] */ IWebFrame *initiatedByFrame, - /* [retval][out] */ BOOL *allowed) -{ - if (!allowed) - return E_POINTER; - *allowed = false; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::paintCustomScrollbar( - /* [in] */ IWebView *webView, - /* [in] */ HDC hDC, - /* [in] */ RECT rect, - /* [in] */ WebScrollBarControlSize size, - /* [in] */ WebScrollbarControlState state, - /* [in] */ WebScrollbarControlPart pressedPart, - /* [in] */ BOOL vertical, - /* [in] */ float value, - /* [in] */ float proportion, - /* [in] */ WebScrollbarControlPartMask parts) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::paintCustomScrollCorner( - /* [in] */ IWebView *webView, - /* [in] */ HDC hDC, - /* [in] */ RECT rect) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::setFrame( - /* [in] */ IWebView* /*sender*/, - /* [in] */ RECT* frame) -{ - m_frame = *frame; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewFrame( - /* [in] */ IWebView* /*sender*/, - /* [retval][out] */ RECT* frame) -{ - *frame = m_frame; - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptAlertPanelWithMessage( - /* [in] */ IWebView* /*sender*/, - /* [in] */ BSTR message) -{ - printf("ALERT: %S\n", message ? message : L""); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptConfirmPanelWithMessage( - /* [in] */ IWebView* sender, - /* [in] */ BSTR message, - /* [retval][out] */ BOOL* result) -{ - printf("CONFIRM: %S\n", message ? message : L""); - *result = TRUE; - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runJavaScriptTextInputPanelWithPrompt( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message, - /* [in] */ BSTR defaultText, - /* [retval][out] */ BSTR *result) -{ - printf("PROMPT: %S, default text: %S\n", message ? message : L"", defaultText ? defaultText : L""); - *result = SysAllocString(defaultText); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::runBeforeUnloadConfirmPanelWithMessage( - /* [in] */ IWebView* /*sender*/, - /* [in] */ BSTR /*message*/, - /* [in] */ IWebFrame* /*initiatedByFrame*/, - /* [retval][out] */ BOOL* result) -{ - if (!result) - return E_POINTER; - *result = TRUE; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewAddMessageToConsole( - /* [in] */ IWebView* sender, - /* [in] */ BSTR message, - /* [in] */ int lineNumber, - /* [in] */ BSTR url, - /* [in] */ BOOL isError) -{ - wstring newMessage; - if (message) { - newMessage = message; - size_t fileProtocol = newMessage.find(L"file://"); - if (fileProtocol != wstring::npos) - newMessage = newMessage.substr(0, fileProtocol) + urlSuitableForTestResult(newMessage.substr(fileProtocol)); - } - - printf("CONSOLE MESSAGE: line %d: %s\n", lineNumber, toUTF8(newMessage).c_str()); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::doDragDrop( - /* [in] */ IWebView* sender, - /* [in] */ IDataObject* object, - /* [in] */ IDropSource* source, - /* [in] */ DWORD okEffect, - /* [retval][out] */ DWORD* performedEffect) -{ - if (!performedEffect) - return E_POINTER; - - *performedEffect = 0; - - draggingInfo = new DraggingInfo(object, source); - HRESULT oleDragAndDropReturnValue = DRAGDROP_S_CANCEL; - replaySavedEvents(&oleDragAndDropReturnValue); - if (draggingInfo) { - *performedEffect = draggingInfo->performedDropEffect(); - delete draggingInfo; - draggingInfo = 0; - } - return oleDragAndDropReturnValue; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewGetDlgCode( - /* [in] */ IWebView* /*sender*/, - /* [in] */ UINT /*keyCode*/, - /* [retval][out] */ LONG_PTR *code) -{ - if (!code) - return E_POINTER; - *code = 0; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::createWebViewWithRequest( - /* [in] */ IWebView *sender, - /* [in] */ IWebURLRequest *request, - /* [retval][out] */ IWebView **newWebView) -{ - if (!::gLayoutTestController->canOpenWindows()) - return E_FAIL; - *newWebView = createWebViewAndOffscreenWindow(); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewClose( - /* [in] */ IWebView *sender) -{ - HWND hostWindow; - sender->hostWindow(reinterpret_cast(&hostWindow)); - DestroyWindow(hostWindow); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewFocus( - /* [in] */ IWebView *sender) -{ - HWND hostWindow; - sender->hostWindow(reinterpret_cast(&hostWindow)); - SetForegroundWindow(hostWindow); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewUnfocus( - /* [in] */ IWebView *sender) -{ - SetForegroundWindow(GetDesktopWindow()); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewPainted( - /* [in] */ IWebView *sender) -{ - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::exceededDatabaseQuota( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame, - /* [in] */ IWebSecurityOrigin *origin, - /* [in] */ BSTR databaseIdentifier) -{ - BSTR protocol; - BSTR host; - unsigned short port; - - origin->protocol(&protocol); - origin->host(&host); - origin->port(&port); - - if (!done && gLayoutTestController->dumpDatabaseCallbacks()) - printf("UI DELEGATE DATABASE CALLBACK: exceededDatabaseQuotaForSecurityOrigin:{%S, %S, %i} database:%S\n", protocol, host, port, databaseIdentifier); - - SysFreeString(protocol); - SysFreeString(host); - - static const unsigned long long defaultQuota = 5 * 1024 * 1024; - origin->setQuota(defaultQuota); - - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::embeddedViewWithArguments( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame, - /* [in] */ IPropertyBag *arguments, - /* [retval][out] */ IWebEmbeddedView **view) -{ - if (!view) - return E_POINTER; - *view = 0; - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewClosing( - /* [in] */ IWebView *sender) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewSetCursor( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE cursor) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::webViewDidInvalidate( - /* [in] */ IWebView *sender) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::setStatusText(IWebView*, BSTR text) -{ - if (gLayoutTestController->dumpStatusCallbacks()) - printf("UI DELEGATE STATUS CALLBACK: setStatusText:%s\n", text ? toUTF8(text).c_str() : ""); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::desktopNotificationsDelegate(IWebDesktopNotificationsDelegate** result) -{ - m_desktopNotifications.copyRefTo(result); - return S_OK; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::decidePolicyForGeolocationRequest(IWebView* sender, IWebFrame* frame, IWebSecurityOrigin* origin, IWebGeolocationPolicyListener* listener) -{ - return E_NOTIMPL; -} - -HRESULT STDMETHODCALLTYPE UIDelegate::didPressMissingPluginButton(IDOMElement* element) -{ - printf("MISSING PLUGIN BUTTON PRESSED\n"); - return S_OK; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/UIDelegate.h --- a/WebKitTools/DumpRenderTree/win/UIDelegate.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,415 +0,0 @@ -/* - * Copyright (C) 2005, 2006, 2007 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef UIDelegate_h -#define UIDelegate_h - -#include -#include -#include -#include - -class DRTUndoManager; -class DRTDesktopNotificationPresenter; - -class UIDelegate : public IWebUIDelegate2, IWebUIDelegatePrivate3 { -public: - UIDelegate(); - - void resetUndoManager(); - - // IUnknown - virtual HRESULT STDMETHODCALLTYPE QueryInterface(REFIID riid, void** ppvObject); - virtual ULONG STDMETHODCALLTYPE AddRef(void); - virtual ULONG STDMETHODCALLTYPE Release(void); - - // IWebUIDelegate - virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest( - /* [in] */ IWebView *sender, - /* [in] */ IWebURLRequest *request, - /* [retval][out] */ IWebView **newWebView); - - virtual HRESULT STDMETHODCALLTYPE webViewShow( - /* [in] */ IWebView *sender) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewClose( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE webViewFocus( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE webViewUnfocus( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE webViewFirstResponder( - /* [in] */ IWebView *sender, - /* [retval][out] */ OLE_HANDLE *responder) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE makeFirstResponder( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE responder) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE setStatusText( - /* [in] */ IWebView *sender, - /* [in] */ BSTR text); - - virtual HRESULT STDMETHODCALLTYPE webViewStatusText( - /* [in] */ IWebView *sender, - /* [retval][out] */ BSTR *text) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewAreToolbarsVisible( - /* [in] */ IWebView *sender, - /* [retval][out] */ BOOL *visible) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE setToolbarsVisible( - /* [in] */ IWebView *sender, - /* [in] */ BOOL visible) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewIsStatusBarVisible( - /* [in] */ IWebView *sender, - /* [retval][out] */ BOOL *visible) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE setStatusBarVisible( - /* [in] */ IWebView *sender, - /* [in] */ BOOL visible) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewIsResizable( - /* [in] */ IWebView *sender, - /* [retval][out] */ BOOL *resizable) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE setResizable( - /* [in] */ IWebView *sender, - /* [in] */ BOOL resizable) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE setFrame( - /* [in] */ IWebView *sender, - /* [in] */ RECT *frame); - - virtual HRESULT STDMETHODCALLTYPE webViewFrame( - /* [in] */ IWebView *sender, - /* [retval][out] */ RECT *frame); - - virtual HRESULT STDMETHODCALLTYPE setContentRect( - /* [in] */ IWebView *sender, - /* [in] */ RECT *contentRect) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewContentRect( - /* [in] */ IWebView *sender, - /* [retval][out] */ RECT *contentRect) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE runJavaScriptAlertPanelWithMessage( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message); - - virtual HRESULT STDMETHODCALLTYPE runJavaScriptConfirmPanelWithMessage( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE runJavaScriptTextInputPanelWithPrompt( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message, - /* [in] */ BSTR defaultText, - /* [retval][out] */ BSTR *result); - - virtual HRESULT STDMETHODCALLTYPE runBeforeUnloadConfirmPanelWithMessage( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message, - /* [in] */ IWebFrame *initiatedByFrame, - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE runOpenPanelForFileButtonWithResultListener( - /* [in] */ IWebView *sender, - /* [in] */ IWebOpenPanelResultListener *resultListener) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE mouseDidMoveOverElement( - /* [in] */ IWebView *sender, - /* [in] */ IPropertyBag *elementInformation, - /* [in] */ UINT modifierFlags) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE contextMenuItemsForElement( - /* [in] */ IWebView *sender, - /* [in] */ IPropertyBag *element, - /* [in] */ OLE_HANDLE defaultItems, - /* [retval][out] */ OLE_HANDLE *resultMenu) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE validateUserInterfaceItem( - /* [in] */ IWebView *webView, - /* [in] */ UINT itemCommandID, - /* [in] */ BOOL defaultValidation, - /* [retval][out] */ BOOL *isValid) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE shouldPerformAction( - /* [in] */ IWebView *webView, - /* [in] */ UINT itemCommandID, - /* [in] */ UINT sender) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE dragDestinationActionMaskForDraggingInfo( - /* [in] */ IWebView *webView, - /* [in] */ IDataObject *draggingInfo, - /* [retval][out] */ WebDragDestinationAction *action) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE willPerformDragDestinationAction( - /* [in] */ IWebView *webView, - /* [in] */ WebDragDestinationAction action, - /* [in] */ IDataObject *draggingInfo) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE dragSourceActionMaskForPoint( - /* [in] */ IWebView *webView, - /* [in] */ LPPOINT point, - /* [retval][out] */ WebDragSourceAction *action) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE willPerformDragSourceAction( - /* [in] */ IWebView *webView, - /* [in] */ WebDragSourceAction action, - /* [in] */ LPPOINT point, - /* [in] */ IDataObject *pasteboard, - /* [retval][out] */ IDataObject **newPasteboard) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE contextMenuItemSelected( - /* [in] */ IWebView *sender, - /* [in] */ void *item, - /* [in] */ IPropertyBag *element) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE hasCustomMenuImplementation( - /* [retval][out] */ BOOL *hasCustomMenus); - - virtual HRESULT STDMETHODCALLTYPE trackCustomPopupMenu( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE menu, - /* [in] */ LPPOINT point); - - virtual HRESULT STDMETHODCALLTYPE measureCustomMenuItem( - /* [in] */ IWebView *sender, - /* [in] */ void *measureItem) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE drawCustomMenuItem( - /* [in] */ IWebView *sender, - /* [in] */ void *drawItem) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE addCustomMenuDrawingData( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE menu) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE cleanUpCustomMenuDrawingData( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE menu) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE canTakeFocus( - /* [in] */ IWebView *sender, - /* [in] */ BOOL forward, - /* [out] */ BOOL *result) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE takeFocus( - /* [in] */ IWebView *sender, - /* [in] */ BOOL forward) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE registerUndoWithTarget( - /* [in] */ IWebUndoTarget *target, - /* [in] */ BSTR actionName, - /* [in] */ IUnknown *actionArg); - - virtual HRESULT STDMETHODCALLTYPE removeAllActionsWithTarget( - /* [in] */ IWebUndoTarget *target); - - virtual HRESULT STDMETHODCALLTYPE setActionTitle( - /* [in] */ BSTR actionTitle); - - virtual HRESULT STDMETHODCALLTYPE undo(); - - virtual HRESULT STDMETHODCALLTYPE redo(); - - virtual HRESULT STDMETHODCALLTYPE canUndo( - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE canRedo( - /* [retval][out] */ BOOL *result); - - virtual HRESULT STDMETHODCALLTYPE printFrame( - /* [in] */ IWebView *webView, - /* [in] */ IWebFrame *frame); - - virtual HRESULT STDMETHODCALLTYPE ftpDirectoryTemplatePath( - /* [in] */ IWebView *webView, - /* [retval][out] */ BSTR *path); - - virtual HRESULT STDMETHODCALLTYPE webViewHeaderHeight( - /* [in] */ IWebView *webView, - /* [retval][out] */ float *result); - - virtual HRESULT STDMETHODCALLTYPE webViewFooterHeight( - /* [in] */ IWebView *webView, - /* [retval][out] */ float *result); - - virtual HRESULT STDMETHODCALLTYPE drawHeaderInRect( - /* [in] */ IWebView *webView, - /* [in] */ RECT *rect, - /* [in] */ OLE_HANDLE drawingContext); - - virtual HRESULT STDMETHODCALLTYPE drawFooterInRect( - /* [in] */ IWebView *webView, - /* [in] */ RECT *rect, - /* [in] */ OLE_HANDLE drawingContext, - /* [in] */ UINT pageIndex, - /* [in] */ UINT pageCount); - - virtual HRESULT STDMETHODCALLTYPE webViewPrintingMarginRect( - /* [in] */ IWebView *webView, - /* [retval][out] */ RECT *rect); - - virtual HRESULT STDMETHODCALLTYPE canRunModal( - /* [in] */ IWebView *webView, - /* [retval][out] */ BOOL *canRunBoolean); - - virtual HRESULT STDMETHODCALLTYPE createModalDialog( - /* [in] */ IWebView *sender, - /* [in] */ IWebURLRequest *request, - /* [retval][out] */ IWebView **newWebView); - - virtual HRESULT STDMETHODCALLTYPE runModal( - /* [in] */ IWebView *webView); - - virtual HRESULT STDMETHODCALLTYPE isMenuBarVisible( - /* [in] */ IWebView *webView, - /* [retval][out] */ BOOL *visible); - - virtual HRESULT STDMETHODCALLTYPE setMenuBarVisible( - /* [in] */ IWebView *webView, - /* [in] */ BOOL visible); - - virtual HRESULT STDMETHODCALLTYPE runDatabaseSizeLimitPrompt( - /* [in] */ IWebView *webView, - /* [in] */ BSTR displayName, - /* [in] */ IWebFrame *initiatedByFrame, - /* [retval][out] */ BOOL *allowed); - - virtual HRESULT STDMETHODCALLTYPE paintCustomScrollbar( - /* [in] */ IWebView *webView, - /* [in] */ HDC hDC, - /* [in] */ RECT rect, - /* [in] */ WebScrollBarControlSize size, - /* [in] */ WebScrollbarControlState state, - /* [in] */ WebScrollbarControlPart pressedPart, - /* [in] */ BOOL vertical, - /* [in] */ float value, - /* [in] */ float proportion, - /* [in] */ WebScrollbarControlPartMask parts); - - virtual HRESULT STDMETHODCALLTYPE paintCustomScrollCorner( - /* [in] */ IWebView *webView, - /* [in] */ HDC hDC, - /* [in] */ RECT rect); - - virtual HRESULT STDMETHODCALLTYPE createWebViewWithRequest(IWebView* sender, IWebURLRequest* request, IPropertyBag* windowFeatures, IWebView** newWebView); - - virtual HRESULT STDMETHODCALLTYPE drawBackground(IWebView* sender, OLE_HANDLE hdc, const RECT* dirtyRect); - - virtual HRESULT STDMETHODCALLTYPE decidePolicyForGeolocationRequest(IWebView* sender, IWebFrame* frame, IWebSecurityOrigin* origin, IWebGeolocationPolicyListener* listener); - - virtual HRESULT STDMETHODCALLTYPE didPressMissingPluginButton(IDOMElement*); - -protected: - // IWebUIDelegatePrivate - - virtual HRESULT STDMETHODCALLTYPE unused1() { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE unused2() { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE unused3() { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewScrolled( - /* [in] */ IWebView *sender) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewAddMessageToConsole( - /* [in] */ IWebView *sender, - /* [in] */ BSTR message, - /* [in] */ int lineNumber, - /* [in] */ BSTR url, - /* [in] */ BOOL isError); - - virtual HRESULT STDMETHODCALLTYPE webViewShouldInterruptJavaScript( - /* [in] */ IWebView *sender, - /* [retval][out] */ BOOL *result) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewReceivedFocus( - /* [in] */ IWebView *sender) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE webViewLostFocus( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE loseFocusTo) { return E_NOTIMPL; } - - virtual HRESULT STDMETHODCALLTYPE doDragDrop( - /* [in] */ IWebView *sender, - /* [in] */ IDataObject *dataObject, - /* [in] */ IDropSource *dropSource, - /* [in] */ DWORD okEffect, - /* [retval][out] */ DWORD *performedEffect); - - virtual HRESULT STDMETHODCALLTYPE webViewGetDlgCode( - /* [in] */ IWebView *sender, - /* [in] */ UINT keyCode, - /* [retval][out] */ LONG_PTR *code); - - virtual HRESULT STDMETHODCALLTYPE webViewPainted( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE exceededDatabaseQuota( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame, - /* [in] */ IWebSecurityOrigin *origin, - /* [in] */ BSTR databaseIdentifier); - - virtual HRESULT STDMETHODCALLTYPE embeddedViewWithArguments( - /* [in] */ IWebView *sender, - /* [in] */ IWebFrame *frame, - /* [in] */ IPropertyBag *arguments, - /* [retval][out] */ IWebEmbeddedView **view); - - virtual HRESULT STDMETHODCALLTYPE webViewClosing( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE webViewSetCursor( - /* [in] */ IWebView *sender, - /* [in] */ OLE_HANDLE cursor); - - virtual HRESULT STDMETHODCALLTYPE webViewDidInvalidate( - /* [in] */ IWebView *sender); - - virtual HRESULT STDMETHODCALLTYPE desktopNotificationsDelegate( - /* [out] */ IWebDesktopNotificationsDelegate** result); - - ULONG m_refCount; - -private: - RECT m_frame; - OwnPtr m_undoManager; - - COMPtr m_desktopNotifications; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/win/WorkQueueItemWin.cpp --- a/WebKitTools/DumpRenderTree/win/WorkQueueItemWin.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,158 +0,0 @@ -/* - * Copyright (C) 2007, 2009 Apple Inc. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "WorkQueueItem.h" - -#include "DumpRenderTree.h" -#include -#include -#include -#include -#include -#include -#include -#include - -using std::wstring; - -static wstring jsStringRefToWString(JSStringRef jsStr) -{ - size_t length = JSStringGetLength(jsStr); - Vector buffer(length + 1); - memcpy(buffer.data(), JSStringGetCharactersPtr(jsStr), length * sizeof(WCHAR)); - buffer[length] = '\0'; - - return buffer.data(); -} - -bool LoadItem::invoke() const -{ - wstring targetString = jsStringRefToWString(m_target.get()); - - COMPtr targetFrame; - if (targetString.empty()) - targetFrame = frame; - else { - BSTR targetBSTR = SysAllocString(targetString.c_str()); - bool failed = FAILED(frame->findFrameNamed(targetBSTR, &targetFrame)); - SysFreeString(targetBSTR); - if (failed) - return false; - } - - COMPtr request; - if (FAILED(WebKitCreateInstance(CLSID_WebURLRequest, 0, IID_IWebURLRequest, (void**)&request))) - return false; - - wstring urlString = jsStringRefToWString(m_url.get()); - BSTR urlBSTR = SysAllocString(urlString.c_str()); - bool failed = FAILED(request->initWithURL(urlBSTR, WebURLRequestUseProtocolCachePolicy, 60)); - SysFreeString(urlBSTR); - if (failed) - return false; - - targetFrame->loadRequest(request.get()); - return true; -} - -bool LoadHTMLStringItem::invoke() const -{ - wstring content = jsStringRefToWString(m_content.get()); - wstring baseURL = jsStringRefToWString(m_baseURL.get()); - - BSTR contentBSTR = SysAllocString(content.c_str()); - BSTR baseURLBSTR = SysAllocString(baseURL.c_str()); - - frame->loadHTMLString(contentBSTR, baseURLBSTR); - - SysFreeString(contentBSTR); - SysFreeString(baseURLBSTR); - - return true; -} - -bool ReloadItem::invoke() const -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return false; - - COMPtr webActions; - if (FAILED(webView->QueryInterface(&webActions))) - return false; - - webActions->reload(0); - return true; -} - -bool ScriptItem::invoke() const -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return false; - - wstring scriptString = jsStringRefToWString(m_script.get()); - - BSTR result; - BSTR scriptBSTR = SysAllocString(scriptString.c_str()); - webView->stringByEvaluatingJavaScriptFromString(scriptBSTR, &result); - SysFreeString(result); - SysFreeString(scriptBSTR); - - return true; -} - -bool BackForwardItem::invoke() const -{ - COMPtr webView; - if (FAILED(frame->webView(&webView))) - return false; - - BOOL result; - if (m_howFar == 1) { - webView->goForward(&result); - return true; - } - - if (m_howFar == -1) { - webView->goBack(&result); - return true; - } - - COMPtr bfList; - if (FAILED(webView->backForwardList(&bfList))) - return false; - - COMPtr item; - if (FAILED(bfList->itemAtIndex(m_howFar, &item))) - return false; - - webView->goToBackForwardItem(item.get(), &result); - return true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wscript --- a/WebKitTools/DumpRenderTree/wscript Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,64 +0,0 @@ -#! /usr/bin/env python - -# Copyright (C) 2009 Kevin Ollivier All rights reserved. -# -# Redistribution and use in source and binary forms, with or without -# modification, are permitted provided that the following conditions -# are met: -# 1. Redistributions of source code must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# 2. Redistributions in binary form must reproduce the above copyright -# notice, this list of conditions and the following disclaimer in the -# documentation and/or other materials provided with the distribution. -# -# THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY -# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR -# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY -# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# -# wxBrowser sample app build script for the waf build system - -import sys - -from settings import * - -include_paths = [ - os.path.join(output_dir), - os.path.join(wk_root, 'JavaScriptCore'), - os.path.join(wk_root, 'WebCore'), - os.path.join(wk_root, 'WebKit', 'wx'), - '.', - 'wx' - ] -sources = [ - 'LayoutTestController.cpp', - 'WorkQueue.cpp', - 'wx/DumpRenderTreeWx.cpp', - 'wx/LayoutTestControllerWx.cpp', - 'wx/WorkQueueItemWx.cpp' - ] - -def set_options(opt): - common_set_options(opt) - -def configure(conf): - common_configure(conf) - -def build(bld): - obj = bld.new_task_gen( - features = 'cxx cprogram', - includes = ' '.join(include_paths), - source = sources, - target = 'DumpRenderTree', - uselib = 'JSCORE ICU WXWEBKIT WX ' + get_config(), - libpath = [output_dir], - uselib_local = '', - install_path = output_dir) - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/DumpRenderTree.bkl diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/DumpRenderTreeWx.cpp --- a/WebKitTools/DumpRenderTree/wx/DumpRenderTreeWx.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,339 +0,0 @@ -/* - * Copyright (C) 2008 Kevin Ollivier - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "DumpRenderTree.h" - -#include "LayoutTestController.h" -#include "WorkQueue.h" -#include "WorkQueueItem.h" - -#include - -#include -#include "WebView.h" -#include "WebFrame.h" -#include "WebBrowserShell.h" - -#include - -#include -#include -#include -#include - -volatile bool done = true; -volatile bool notified = false; -static bool printSeparators = true; -static int dumpPixels; -static int dumpTree = 1; -time_t startTime; // to detect timeouts / failed tests - -using namespace std; - -FILE* logOutput; - -RefPtr gLayoutTestController; -static wxWebView* webView; -static wxTimer* idleTimer; - -const unsigned timeOut = 10; -const unsigned maxViewHeight = 600; -const unsigned maxViewWidth = 800; - -class LayoutWebViewEventHandler : public wxEvtHandler { - -public: - LayoutWebViewEventHandler(wxWebView* webView) - : m_webView(webView) - { - } - - void bindEvents() - { - m_webView->Connect(wxEVT_WEBVIEW_LOAD, wxWebViewLoadEventHandler(LayoutWebViewEventHandler::OnLoadEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_JS_ALERT, wxWebViewAlertEventHandler(LayoutWebViewEventHandler::OnAlertEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_JS_CONFIRM, wxWebViewConfirmEventHandler(LayoutWebViewEventHandler::OnConfirmEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_JS_PROMPT, wxWebViewPromptEventHandler(LayoutWebViewEventHandler::OnPromptEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_CONSOLE_MESSAGE, wxWebViewConsoleMessageEventHandler(LayoutWebViewEventHandler::OnConsoleMessageEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_RECEIVED_TITLE, wxWebViewReceivedTitleEventHandler(LayoutWebViewEventHandler::OnReceivedTitleEvent), NULL, this); - m_webView->Connect(wxEVT_WEBVIEW_WINDOW_OBJECT_CLEARED, wxWebViewWindowObjectClearedEventHandler(LayoutWebViewEventHandler::OnWindowObjectClearedEvent), NULL, this); - } - - void OnLoadEvent(wxWebViewLoadEvent& event) - { - - if (event.GetState() == wxWEBVIEW_LOAD_FAILED || event.GetState() == wxWEBVIEW_LOAD_STOPPED) - done = true; - - if (event.GetState() == wxWEBVIEW_LOAD_ONLOAD_HANDLED) { - done = true; - - if (!gLayoutTestController->waitToDump() || notified) { - dump(); - } - } - } - - void OnAlertEvent(wxWebViewAlertEvent& event) - { - fprintf(stdout, "ALERT: %S\n", event.GetMessage().c_str()); - } - - void OnConfirmEvent(wxWebViewConfirmEvent& event) - { - fprintf(stdout, "CONFIRM: %S\n", event.GetMessage().c_str()); - event.SetReturnCode(1); - } - - void OnPromptEvent(wxWebViewPromptEvent& event) - { - fprintf(stdout, "PROMPT: %S, default text: %S\n", event.GetMessage().c_str(), event.GetResponse().c_str()); - event.SetReturnCode(1); - } - - void OnConsoleMessageEvent(wxWebViewConsoleMessageEvent& event) - { - fprintf(stdout, "CONSOLE MESSAGE: line %d: %S\n", event.GetLineNumber(), event.GetMessage().c_str()); - } - - void OnReceivedTitleEvent(wxWebViewReceivedTitleEvent& event) - { - if (gLayoutTestController->dumpTitleChanges() && !done) { - const char* title = event.GetTitle().mb_str(wxConvUTF8); - printf("TITLE CHANGED: %S\n", title ? title : ""); - } - } - - void OnWindowObjectClearedEvent(wxWebViewWindowObjectClearedEvent& event) - { - JSValueRef exception = 0; - gLayoutTestController->makeWindowObject(event.GetJSContext(), event.GetWindowObject(), &exception); - } - -private: - wxWebView* m_webView; - -}; - -void notifyDoneFired() -{ - notified = true; - if (done) - dump(); -} - -LayoutWebViewEventHandler* eventHandler = NULL; - -static wxString dumpFramesAsText(wxWebFrame* frame) -{ - // TODO: implement this. leaving this here so we don't forget this case. - if (gLayoutTestController->dumpChildFramesAsText()) { - } - - return frame->GetInnerText(); -} - -void dump() -{ - if (!done) - return; - - if (gLayoutTestController->waitToDump() && !notified) - return; - - if (dumpTree) { - const char* result = 0; - - bool dumpAsText = gLayoutTestController->dumpAsText(); - wxString str; - if (gLayoutTestController->dumpAsText()) - str = dumpFramesAsText(webView->GetMainFrame()); - else - str = webView->GetMainFrame()->GetExternalRepresentation(); - - result = str.ToUTF8(); - if (!result) { - const char* errorMessage; - if (gLayoutTestController->dumpAsText()) - errorMessage = "WebFrame::GetInnerText"; - else - errorMessage = "WebFrame::GetExternalRepresentation"; - printf("ERROR: NULL result from %s", errorMessage); - } else { - printf("%s\n", result); - } - - if (gLayoutTestController->dumpBackForwardList()) { - // FIXME: not implemented - } - - if (printSeparators) { - puts("#EOF"); - fputs("#EOF\n", stderr); - fflush(stdout); - fflush(stderr); - } - } - - if (dumpPixels - && gLayoutTestController->generatePixelResults() - && !gLayoutTestController->dumpDOMAsWebArchive() - && !gLayoutTestController->dumpSourceAsWebArchive()) { - // FIXME: Add support for dumping pixels - fflush(stdout); - } - - puts("#EOF"); - fflush(stdout); - fflush(stderr); - - gLayoutTestController.clear(); -} - -static void runTest(const wxString testPathOrURL) -{ - done = false; - time(&startTime); - string pathOrURLString(testPathOrURL.char_str()); - string pathOrURL(pathOrURLString); - string expectedPixelHash; - - size_t separatorPos = pathOrURL.find("'"); - if (separatorPos != string::npos) { - pathOrURL = string(pathOrURLString, 0, separatorPos); - expectedPixelHash = string(pathOrURLString, separatorPos + 1); - } - - // CURL isn't happy if we don't have a protocol. - size_t http = pathOrURL.find("http://"); - if (http == string::npos) - pathOrURL.insert(0, "file://"); - - gLayoutTestController = LayoutTestController::create(pathOrURL, expectedPixelHash); - if (!gLayoutTestController) { - wxTheApp->ExitMainLoop(); - } - - WorkQueue::shared()->clear(); - WorkQueue::shared()->setFrozen(false); - - webView->LoadURL(wxString(pathOrURL.c_str(), wxConvUTF8)); - - // wait until load completes and the results are dumped - while (!done) - wxSafeYield(); -} - -class MyApp : public wxApp -{ -public: - - virtual bool OnInit(); - -private: - wxLog* logger; -}; - - -IMPLEMENT_APP(MyApp) - -bool MyApp::OnInit() -{ - logOutput = fopen("output.txt", "ab"); - if (logOutput) { - logger = new wxLogStderr(logOutput); - wxLog::SetActiveTarget(logger); - } - - wxLogMessage(wxT("Starting DumpRenderTool, %d args.\n"), argc); - - for (int i = 1; i < argc; ++i) { - wxString option = wxString(argv[i]); - if (!option.CmpNoCase(_T("--notree"))) { - dumpTree = false; - continue; - } - - if (!option.CmpNoCase(_T("--pixel-tests"))) { - dumpPixels = true; - continue; - } - - if (!option.CmpNoCase(_T("--tree"))) { - dumpTree = true; - continue; - } - } - wxInitAllImageHandlers(); - - // create the main application window - wxWebBrowserShell* webFrame = new wxWebBrowserShell(_T("wxWebKit DumpRenderTree App")); - SetTopWindow(webFrame); - webView = webFrame->webview; - webView->SetSize(wxSize(maxViewWidth, maxViewHeight)); - - if (!eventHandler) { - eventHandler = new LayoutWebViewEventHandler(webView); - eventHandler->bindEvents(); - } - - int optind = 1; - time(&startTime); - wxString option_str = wxString(argv[optind]); - if (argc == optind+1 && option_str.Find(_T("-")) == 0) { - char filenameBuffer[2048]; - while (fgets(filenameBuffer, sizeof(filenameBuffer), stdin)) { - wxString filename = wxString::FromUTF8(filenameBuffer); - char* newLineCharacter = strchr(filenameBuffer, '\n'); - if (newLineCharacter) - *newLineCharacter = '\0'; - - if (strlen(filenameBuffer) == 0) - return 0; - wxLogMessage(wxT("Running test %S.\n"), filenameBuffer); - runTest(filename); - } - - } else { - printSeparators = (optind < argc-1 || (dumpPixels && dumpTree)); - for (int i = optind; i != argc; ++i) { - runTest(wxTheApp->argv[1]); - } - } - - webFrame->Close(); - delete eventHandler; - - wxLog::SetActiveTarget(NULL); - delete logger; - fclose(logOutput); - - // returning false shuts the app down - return false; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/DumpRenderTreeWx.h --- a/WebKitTools/DumpRenderTree/wx/DumpRenderTreeWx.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -/* - * Copyright (C) 2008 Kevin Ollivier - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef DumpRenderTreeWx_h -#define DumpRenderTreeWx_h - -extern void notifyDoneFired(); - -#endif // DumpRenderTreeWx_h diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/GCControllerWx.cpp --- a/WebKitTools/DumpRenderTree/wx/GCControllerWx.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2008 Kevin Ollivier - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "GCController.h" - -void GCController::collect() const -{ -} - -void GCController::collectOnAlternateThread(bool waitUntilDone) const -{ -} - -size_t GCController::getJSObjectCount() const -{ - return 0; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/LayoutTestControllerWx.cpp --- a/WebKitTools/DumpRenderTree/wx/LayoutTestControllerWx.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,476 +0,0 @@ -/* - * Copyright (C) 2008 Kevin Ollivier - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "LayoutTestController.h" - -#include "DumpRenderTree.h" -#include "WorkQueue.h" -#include "WorkQueueItem.h" -#include -#include - -#include - - - -LayoutTestController::~LayoutTestController() -{ - // FIXME: implement -} - -void LayoutTestController::addDisallowedURL(JSStringRef url) -{ - // FIXME: implement -} - -void LayoutTestController::clearBackForwardList() -{ -} - -JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name) -{ - // FIXME: implement - return 0; -} - -JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name) -{ - // FIXME: implement - return 0; -} - -void LayoutTestController::dispatchPendingLoadRequests() -{ - // FIXME: Implement for testing fix for 6727495 -} - -void LayoutTestController::display() -{ -} - -void LayoutTestController::keepWebHistory() -{ - // FIXME: implement -} - -void LayoutTestController::notifyDone() -{ - if (m_waitToDump && !WorkQueue::shared()->count()) - notifyDoneFired(); - m_waitToDump = false; -} - -JSStringRef LayoutTestController::pathToLocalResource(JSContextRef context, JSStringRef url) -{ - // Function introduced in r28690. This may need special-casing on Windows. - return JSStringRetain(url); // Do nothing on Unix. -} - -void LayoutTestController::queueLoad(JSStringRef url, JSStringRef target) -{ - // FIXME: We need to resolve relative URLs here - WorkQueue::shared()->queue(new LoadItem(url, target)); -} - -void LayoutTestController::setAcceptsEditing(bool acceptsEditing) -{ -} - -void LayoutTestController::setAlwaysAcceptCookies(bool alwaysAcceptCookies) -{ - // FIXME: Implement this (and restore the default value before running each test in DumpRenderTree.cpp). -} - -void LayoutTestController::setCustomPolicyDelegate(bool, bool) -{ - // FIXME: implement -} - -void LayoutTestController::setMainFrameIsFirstResponder(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setTabKeyCyclesThroughElements(bool cycles) -{ - // FIXME: implement -} - -void LayoutTestController::setUseDashboardCompatibilityMode(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setUserStyleSheetEnabled(bool flag) -{ -} - -void LayoutTestController::setUserStyleSheetLocation(JSStringRef path) -{ -} - -void LayoutTestController::setWindowIsKey(bool windowIsKey) -{ - // FIXME: implement -} - -void LayoutTestController::setSmartInsertDeleteEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setJavaScriptProfilingEnabled(bool flag) -{ -} - -void LayoutTestController::setWaitToDump(bool waitUntilDone) -{ - static const int timeoutSeconds = 10; - - m_waitToDump = waitUntilDone; -} - -int LayoutTestController::windowCount() -{ - // FIXME: implement - return 1; -} - -void LayoutTestController::setPrivateBrowsingEnabled(bool privateBrowsingEnabled) -{ - // FIXME: implement -} - -void LayoutTestController::setJavaScriptCanAccessClipboard(bool enabled) -{ - // FIXME: implement -} - -void LayoutTestController::setXSSAuditorEnabled(bool enabled) -{ - // FIXME: implement -} - -void LayoutTestController::setFrameFlatteningEnabled(bool enabled) -{ - // FIXME: implement -} - -void LayoutTestController::setAllowUniversalAccessFromFileURLs(bool enabled) -{ - // FIXME: implement -} - -void LayoutTestController::setAllowFileAccessFromFileURLs(bool enabled) -{ - // FIXME: implement -} - -void LayoutTestController::setAuthorAndUserStylesEnabled(bool flag) -{ - // FIXME: implement -} - -void LayoutTestController::setPopupBlockingEnabled(bool popupBlockingEnabled) -{ - // FIXME: implement -} - -void LayoutTestController::setPluginsEnabled(bool flag) -{ - // FIXME: Implement -} - -bool LayoutTestController::elementDoesAutoCompleteForElementWithId(JSStringRef id) -{ - // FIXME: implement - return false; -} - -void LayoutTestController::execCommand(JSStringRef name, JSStringRef value) -{ - // FIXME: implement -} - -void LayoutTestController::setPersistentUserStyleSheetLocation(JSStringRef jsURL) -{ - // FIXME: implement -} - -void LayoutTestController::clearPersistentUserStyleSheet() -{ - // FIXME: implement -} - -void LayoutTestController::clearAllDatabases() -{ - // FIXME: implement -} - -void LayoutTestController::setDatabaseQuota(unsigned long long quota) -{ - // FIXME: implement -} - -void LayoutTestController::setDomainRelaxationForbiddenForURLScheme(bool, JSStringRef) -{ - // FIXME: implement -} - -void LayoutTestController::setAppCacheMaximumSize(unsigned long long size) -{ - // FIXME: implement -} - -unsigned LayoutTestController::numberOfActiveAnimations() const -{ - // FIXME: implement - return 0; -} - -unsigned LayoutTestController::workerThreadCount() const -{ - // FIXME: implement - return 0; -} - -void LayoutTestController::setSelectTrailingWhitespaceEnabled(bool flag) -{ - // FIXME: implement -} - -bool LayoutTestController::pauseTransitionAtTimeOnElementWithId(JSStringRef propertyName, double time, JSStringRef elementId) -{ - // FIXME: implement - return false; -} - -void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setMockGeolocationError(int code, JSStringRef message) -{ - // FIXME: Implement for Geolocation layout tests. - // See https://bugs.webkit.org/show_bug.cgi?id=28264. -} - -void LayoutTestController::setIconDatabaseEnabled(bool iconDatabaseEnabled) -{ - // FIXME: implement -} - -bool LayoutTestController::pauseAnimationAtTimeOnElementWithId(JSStringRef animationName, double time, JSStringRef elementId) -{ - // FIXME: implement - return false; -} - -bool LayoutTestController::sampleSVGAnimationForElementAtTime(JSStringRef animationId, double time, JSStringRef elementId) -{ - // FIXME: implement - return false; -} - -void LayoutTestController::setCacheModel(int) -{ - // FIXME: implement -} - -bool LayoutTestController::isCommandEnabled(JSStringRef /*name*/) -{ - // FIXME: implement - return false; -} - -size_t LayoutTestController::webHistoryItemCount() -{ - // FIXME: implement - return 0; -} - -void LayoutTestController::waitForPolicyDelegate() -{ - // FIXME: Implement this. -} - -void LayoutTestController::overridePreference(JSStringRef /* key */, JSStringRef /* value */) -{ - // FIXME: implement -} - -void LayoutTestController::addUserScript(JSStringRef source, bool runAtStart, bool allFrames) -{ - printf("LayoutTestController::addUserScript not implemented.\n"); -} - -void LayoutTestController::addUserStyleSheet(JSStringRef source, bool allFrames) -{ - printf("LayoutTestController::addUserStyleSheet not implemented.\n"); -} - -void LayoutTestController::showWebInspector() -{ - // FIXME: Implement this. -} - -void LayoutTestController::closeWebInspector() -{ - // FIXME: Implement this. -} - -void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script) -{ - // FIXME: Implement this. -} - -void LayoutTestController::removeAllVisitedLinks() -{ - // FIXME: Implement this. -} - -void LayoutTestController::setTimelineProfilingEnabled(bool enabled) -{ - -} - -void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldId, JSObjectRef globalObject, JSStringRef script) -{ - -} - -void LayoutTestController::disableImageLoading() -{ - -} - -void LayoutTestController::addOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - // FIXME: implement -} - -void LayoutTestController::removeOriginAccessWhitelistEntry(JSStringRef sourceOrigin, JSStringRef destinationProtocol, JSStringRef destinationHost, bool allowDestinationSubdomains) -{ - // FIXME: implement -} - -void LayoutTestController::setScrollbarPolicy(JSStringRef orientation, JSStringRef policy) -{ - // FIXME: implement -} - -JSRetainPtr LayoutTestController::counterValueForElementById(JSStringRef id) -{ - return 0; -} - -int LayoutTestController::pageNumberForElementById(JSStringRef, float, float) -{ - // FIXME: implement - return -1; -} - -int LayoutTestController::numberOfPages(float, float) -{ - // FIXME: implement - return -1; -} - -void LayoutTestController::apiTestNewWindowDataLoadBaseURL(JSStringRef utf8Data, JSStringRef baseURL) -{ - -} - -void LayoutTestController::apiTestGoToCurrentBackForwardItem() -{ - -} - -void LayoutTestController::setSpatialNavigationEnabled(bool) -{ - -} - -void LayoutTestController::setWebViewEditable(bool) -{ -} - -bool LayoutTestController::callShouldCloseOnWebView() -{ - return false; -} - -JSRetainPtr LayoutTestController::layerTreeAsText() const -{ - return 0; -} - -JSRetainPtr LayoutTestController::markerTextForListItem(JSContextRef context, JSValueRef nodeObject) const -{ - return 0; -} - -JSValueRef LayoutTestController::computedStyleIncludingVisitedInfo(JSContextRef, JSValueRef) -{ - return 0; -} - -void LayoutTestController::authenticateSession(JSStringRef, JSStringRef, JSStringRef) -{ -} - -void LayoutTestController::setEditingBehavior(const char* editingBehavior) -{ - // FIXME: Implement -} - -void LayoutTestController::abortModal() -{ -} - -JSRetainPtr LayoutTestController::pageProperty(const char* propertyName, int pageNumber) const -{ - // FIXME: Implement - return 0; -} - -bool LayoutTestController::isPageBoxVisible(int pageNumber) const -{ - // FIXME: Implement - return true; -} - -JSRetainPtr LayoutTestController::pageSizeAndMarginsInPixels(int pageNumber, int width, int height, int marginTop, int marginRight, int marginBottom, int marginLeft) const -{ - // FIXME: Implement - return 0; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/DumpRenderTree/wx/WorkQueueItemWx.cpp --- a/WebKitTools/DumpRenderTree/wx/WorkQueueItemWx.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,57 +0,0 @@ -/* - * Copyright (C) 2008 Kevin Ollivier - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of - * its contributors may be used to endorse or promote products derived - * from this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY - * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES - * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; - * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF - * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "WorkQueueItem.h" - -#include "DumpRenderTree.h" - -bool LoadItem::invoke() const -{ - return false; -} - -bool LoadHTMLStringItem::invoke() const -{ - return false; -} - -bool ReloadItem::invoke() const -{ - return false; -} - -bool ScriptItem::invoke() const -{ - return false; -} - -bool BackForwardItem::invoke() const -{ - return false; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/Makefile --- a/WebKitTools/QtTestBrowser/Makefile Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5852 +0,0 @@ -# ============================================================================== -# Generated by qmake (2.01a) (Qt 4.7.0) on: Mon Aug 16 17:48:37 2010 -# This file is generated by qmake and should not be modified by the -# user. -# Name : U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/Makefile -# Description : Wrapper Makefile for calling Symbian build tools -# -# ============================================================================== - - -MAKEFILE = Makefile -QMAKE = \epoc32\tools\qmake.exe -DEL_FILE = del 2> NUL -DEL_DIR = rmdir -CHK_DIR_EXISTS = if not exist -MKDIR = mkdir -MOVE = move -DEBUG_PLATFORMS = winscw gcce armv5 armv6 -RELEASE_PLATFORMS = gcce armv5 armv6 -MAKE = make -SBS = sbs - -DEFINES = -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -INCPATH = -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -first: default -default: debug-winscw -all: debug release - -qmake: - $(QMAKE) -spec symbian-sbsv2 -o "bld.inf" "U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser.pro" - -bld.inf: - $(QMAKE) - -debug: bld.inf - $(SBS) -c winscw_udeb.mwccinc -c gcce_udeb -c armv5_udeb -c armv6_udeb -release: bld.inf - $(SBS) -c gcce_urel -c armv5_urel -c armv6_urel -debug-winscw: bld.inf - $(SBS) -c winscw_udeb.mwccinc -debug-gcce: bld.inf - $(SBS) -c gcce_udeb -debug-armv5: bld.inf - $(SBS) -c armv5_udeb -debug-armv6: bld.inf - $(SBS) -c armv6_udeb -release-gcce: bld.inf - $(SBS) -c gcce_urel -release-armv5: bld.inf - $(SBS) -c armv5_urel -release-armv6: bld.inf - $(SBS) -c armv6_urel - -export: bld.inf - $(SBS) export - -cleanexport: bld.inf - $(SBS) cleanexport - -check: first - -run: - call /epoc32/release/winscw/udeb/QtTestBrowser.exe $(QT_RUN_OPTIONS) - -runonphone: sis - runonphone $(QT_RUN_ON_PHONE_OPTIONS) --sis QtTestBrowser.sis QtTestBrowser.exe $(QT_RUN_OPTIONS) - -sis: - $(if $(wildcard QtTestBrowser_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_sis: - createpackage.bat $(QT_SIS_OPTIONS) QtTestBrowser_template.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -unsigned_sis: - $(if $(wildcard QtTestBrowser_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_unsigned_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_unsigned_sis: - createpackage.bat $(QT_SIS_OPTIONS) -o QtTestBrowser_template.pkg $(QT_SIS_TARGET) - -QtTestBrowser.sis: - $(MAKE) -f $(MAKEFILE) sis - -installer_sis: QtTestBrowser.sis - $(if $(wildcard QtTestBrowser_installer.pkg), $(MAKE) -f $(MAKEFILE) ok_installer_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_installer_sis: - createpackage.bat $(QT_SIS_OPTIONS) QtTestBrowser_installer.pkg - $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -fail_sis_nopkg: - $(error PKG file does not exist, 'sis' and 'installer_sis' target are only supported for executables or projects with DEPLOYMENT statement) - -fail_sis_nocache: - $(error Project has to be built or QT_SIS_TARGET environment variable has to be set before calling 'SIS' target) - -stub_sis: - $(if $(wildcard QtTestBrowser_template.pkg), $(if $(wildcard .make.cache), $(MAKE) -f $(MAKEFILE) ok_stub_sis MAKEFILES=.make.cache , $(if $(QT_SIS_TARGET), $(MAKE) -f $(MAKEFILE) ok_stub_sis , $(MAKE) -f $(MAKEFILE) fail_sis_nocache ) ) , $(MAKE) -f $(MAKEFILE) fail_sis_nopkg ) - -ok_stub_sis: - createpackage.bat -s $(QT_SIS_OPTIONS) QtTestBrowser_stub.pkg $(QT_SIS_TARGET) $(QT_SIS_CERTIFICATE) $(QT_SIS_KEY) $(QT_SIS_PASSPHRASE) - -deploy: sis - call QtTestBrowser.sis - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: moc_locationedit.cpp moc_mainwindow.cpp moc_urlloader.cpp moc_webinspector.cpp moc_webpage.cpp moc_webview.cpp moc_fpstimer.cpp -compiler_moc_header_clean: - -$(DEL_FILE) moc_locationedit.cpp moc_mainwindow.cpp moc_urlloader.cpp moc_webinspector.cpp moc_webpage.cpp moc_webview.cpp moc_fpstimer.cpp -moc_locationedit.cpp: ..\..\..\epoc32\include\mw\QtGui\QtGui \ - \epoc32\include\mw\QtCore\QtCore \ - ..\..\..\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\quuid.h \ - ..\..\..\epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qchar.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\..\epoc32\include\mw\QtCore\qcryptographichash.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\..\epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qelapsedtimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qhash.h \ - ..\..\..\epoc32\include\mw\QtCore\qiterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlocale.h \ - ..\..\..\epoc32\include\mw\QtCore\qmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qmargins.h \ - ..\..\..\epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qqueue.h \ - ..\..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qregexp.h \ - ..\..\..\epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - ..\..\..\epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - ..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringbuilder.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringmatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\mw\QtCore\qxmlstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qhistorystate.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignaltransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qfutureinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturewatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qrunnable.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadpool.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qpauseanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatastream.h \ - ..\..\..\epoc32\include\mw\QtCore\qdebug.h \ - ..\..\..\epoc32\include\mw\QtCore\qdir.h \ - ..\..\..\epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qfileinfo.h \ - ..\..\..\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qiodevice.h \ - ..\..\..\epoc32\include\mw\QtCore\qprocess.h \ - ..\..\..\epoc32\include\mw\QtCore\qresource.h \ - ..\..\..\epoc32\include\mw\QtCore\qsettings.h \ - ..\..\..\epoc32\include\mw\QtCore\qtemporaryfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtCore\qatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasicatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qmutex.h \ - ..\..\..\epoc32\include\mw\QtCore\qreadwritelock.h \ - ..\..\..\epoc32\include\mw\QtCore\qsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qthread.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - ..\..\..\epoc32\include\mw\QtCore\qwaitcondition.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qmath.h \ - ..\..\..\epoc32\include\e32math.h \ - ..\..\..\epoc32\include\e32math.inl \ - ..\..\..\epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qmimedata.h \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectdefs.h \ - ..\..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedmemory.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignalmapper.h \ - ..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qtranslator.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\epoc32\include\mw\QtCore\qendian.h \ - ..\..\..\epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\..\epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - ..\..\..\epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\epoc32\include\mw\QtCore\qnumeric.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainapplication.h \ - ..\..\..\epoc32\include\platform\mw\aknapp.h \ - ..\..\..\epoc32\include\mw\eikapp.h \ - ..\..\..\epoc32\include\mw\apparc.h \ - ..\..\..\epoc32\include\e32base.h \ - ..\..\..\epoc32\include\e32base.inl \ - ..\..\..\epoc32\include\platform\e32base_private.h \ - ..\..\..\epoc32\include\f32file.h \ - ..\..\..\epoc32\include\platform\e32svr.h \ - ..\..\..\epoc32\include\platform\e32hal.h \ - ..\..\..\epoc32\include\platform\d32locd.h \ - ..\..\..\epoc32\include\platform\partitions.h \ - ..\..\..\epoc32\include\platform\d32locd.inl \ - ..\..\..\epoc32\include\platform\e32notif.h \ - ..\..\..\epoc32\include\e32ldr.h \ - ..\..\..\epoc32\include\platform\e32ldr_private.h \ - ..\..\..\epoc32\include\e32event.h \ - ..\..\..\epoc32\include\platform\e32btrace.h \ - ..\..\..\epoc32\include\platform\e32event_private.h \ - ..\..\..\epoc32\include\platform\e32ktran.h \ - ..\..\..\epoc32\include\e32keys.h \ - ..\..\..\epoc32\include\e32debug.h \ - ..\..\..\epoc32\include\platform\e32lmsg.h \ - ..\..\..\epoc32\include\f32file64.h \ - ..\..\..\epoc32\include\f32file64.inl \ - ..\..\..\epoc32\include\f32file.inl \ - ..\..\..\epoc32\include\platform\f32file_private.h \ - ..\..\..\epoc32\include\gdi.h \ - ..\..\..\epoc32\include\s32std.h \ - ..\..\..\epoc32\include\s32strm.h \ - ..\..\..\epoc32\include\s32strm.inl \ - ..\..\..\epoc32\include\s32std.inl \ - ..\..\..\epoc32\include\displaymode.h \ - \epoc32\include\platform\graphics\gdi\glyphsample.h \ - \epoc32\include\platform\graphics\gdi\gdiconsts.h \ - \epoc32\include\platform\graphics\gdi\gdistructs.h \ - \epoc32\include\platform\graphics\gdi\gdiinline.inl \ - ..\..\..\epoc32\include\gdi.inl \ - ..\..\..\epoc32\include\mw\apadef.h \ - ..\..\..\epoc32\include\mw\apaid.h \ - ..\..\..\epoc32\include\apmstd.h \ - ..\..\..\epoc32\include\mw\apaapp.h \ - ..\..\..\epoc32\include\mw\apadoc.h \ - ..\..\..\epoc32\include\mw\apaproc.h \ - ..\..\..\epoc32\include\mw\apaflrec.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainappui.h \ - ..\..\..\epoc32\include\platform\mw\aknappui.h \ - ..\..\..\epoc32\include\mw\eikappui.h \ - ..\..\..\epoc32\include\mw\coeaui.h \ - ..\..\..\epoc32\include\w32std.h \ - ..\..\..\epoc32\include\fntstore.h \ - ..\..\..\epoc32\include\openfont.h \ - \epoc32\include\ecom\ecom.h \ - \epoc32\include\ecom\ecomerrorcodes.h \ - \epoc32\include\platform\ecom\ecomextendedinterfaceerrorcodes.h \ - \epoc32\include\ecom\ecomresolverparams.h \ - \epoc32\include\ecom\ecomresolverparams.inl \ - \epoc32\include\ecom\implementationinformation.h \ - \epoc32\include\ecom\implementationinformation.inl \ - ..\..\..\epoc32\include\linkedfonts.h \ - \epoc32\include\platform\graphics\openfontconstants.h \ - \epoc32\include\platform\graphics\openfontrasterizer.h \ - ..\..\..\epoc32\include\openfontlinkedtypefaceelementspec.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefacespecification.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefaceextension.h \ - ..\..\..\epoc32\include\bitdev.h \ - ..\..\..\epoc32\include\fbs.h \ - ..\..\..\epoc32\include\bitmap.h \ - \epoc32\include\platform\graphics\bitmapuid.h \ - \epoc32\include\graphics\fbsdefs.h \ - ..\..\..\epoc32\include\bitbase.h \ - ..\..\..\epoc32\include\bitstd.h \ - ..\..\..\epoc32\include\graphicsaccelerator.h \ - ..\..\..\epoc32\include\bitdev.inl \ - ..\..\..\epoc32\include\textcursor.h \ - ..\..\..\epoc32\include\pointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.inl \ - ..\..\..\epoc32\include\sizemode.h \ - ..\..\..\epoc32\include\babitflags.h \ - ..\..\..\epoc32\include\wspublishandsubscribedata.h \ - \epoc32\include\platform\graphics\pointereventdata.h \ - ..\..\..\epoc32\include\mw\coedef.h \ - ..\..\..\epoc32\include\mw\guldef.h \ - \epoc32\include\platform\mw\graphics\cone\coedefkeys.h \ - ..\..\..\epoc32\include\mw\coehelp.h \ - ..\..\..\epoc32\include\mw\coeview.h \ - ..\..\..\epoc32\include\mw\vwsdef.h \ - ..\..\..\epoc32\include\mw\coemain.h \ - ..\..\..\epoc32\include\barsc.h \ - ..\..\..\epoc32\include\badesca.h \ - ..\..\..\epoc32\include\bamdesca.h \ - ..\..\..\epoc32\include\basched.h \ - ..\..\..\epoc32\include\mw\coemop.h \ - ..\..\..\epoc32\include\mw\coetextdrawer.h \ - ..\..\..\epoc32\include\mw\gulutil.h \ - ..\..\..\epoc32\include\mw\gulbordr.h \ - \epoc32\include\platform\mw\graphics\uigraphicsutils\gullogicalborder.h \ - ..\..\..\epoc32\include\gulftflg.hrh \ - ..\..\..\epoc32\include\mw\gulalign.h \ - ..\..\..\epoc32\include\biditext.h \ - ..\..\..\epoc32\include\bidi.h \ - ..\..\..\epoc32\include\txtfrmat.h \ - ..\..\..\epoc32\include\txtfrmat.inl \ - \epoc32\include\platform\systemmonitor\raiseevent.h \ - \epoc32\include\systemmonitor\instrumentationhandler.h \ - \epoc32\include\systemmonitor\configuration.h \ - \epoc32\include\systemmonitor\systemmonitorerrors.h \ - \epoc32\include\systemmonitor\recordtypes.h \ - \epoc32\include\systemmonitor\systemmonitor.h \ - \epoc32\include\systemmonitor\eventlog.h \ - \epoc32\include\systemmonitor\locking.h \ - \epoc32\include\platform\mw\graphics\cone\coescheduler.h \ - ..\..\..\epoc32\include\mw\coemain.inl \ - ..\..\..\epoc32\include\mw\coeinput.h \ - ..\..\..\epoc32\include\mw\eikmobs.h \ - ..\..\..\epoc32\include\mw\eikcmobs.h \ - ..\..\..\epoc32\include\mw\eikdef.h \ - \epoc32\include\platform\mw\uikon\eikdefconst.h \ - \epoc32\include\platform\mw\uikon\eikdefmacros.h \ - ..\..\..\epoc32\include\baerrhan.h \ - ..\..\..\epoc32\include\mw\eikaufty.h \ - ..\..\..\epoc32\include\platform\mw\eikspane.h \ - ..\..\..\epoc32\include\platform\mw\eikspmod.h \ - ..\..\..\epoc32\include\uikon.hrh \ - \epoc32\include\uiklaf\private\pluginuid.hrh \ - ..\..\..\epoc32\include\platform\mw\eiksrvc.h \ - ..\..\..\epoc32\include\platform\mw\eiksrvs.h \ - ..\..\..\epoc32\include\mw\eikenv.h \ - ..\..\..\epoc32\include\mw\apacmdln.h \ - ..\..\..\epoc32\include\mw\gulcolor.h \ - ..\..\..\epoc32\include\mw\eikamnt.h \ - \epoc32\include\platform\mw\uikon\eikautomenutitlearray.h \ - ..\..\..\epoc32\include\platform\mw\lafmain.h \ - ..\..\..\epoc32\include\frmtlay.h \ - ..\..\..\epoc32\include\txtetext.h \ - ..\..\..\epoc32\include\platform\fldset.h \ - ..\..\..\epoc32\include\fldinfo.h \ - ..\..\..\epoc32\include\fldbase.h \ - ..\..\..\epoc32\include\s32stor.h \ - ..\..\..\epoc32\include\s32share.h \ - ..\..\..\epoc32\include\s32buf.h \ - ..\..\..\epoc32\include\s32buf.inl \ - ..\..\..\epoc32\include\s32share.inl \ - ..\..\..\epoc32\include\s32page.h \ - ..\..\..\epoc32\include\s32page.inl \ - ..\..\..\epoc32\include\s32stor.inl \ - ..\..\..\epoc32\include\fldbltin.h \ - ..\..\..\epoc32\include\platform\txtetext_internal.h \ - ..\..\..\epoc32\include\platform\txtclipboard.h \ - ..\..\..\epoc32\include\txtetext.inl \ - ..\..\..\epoc32\include\frmlaydt.h \ - ..\..\..\epoc32\include\frmparam.h \ - ..\..\..\epoc32\include\frmvis.h \ - ..\..\..\epoc32\include\tagma.h \ - ..\..\..\epoc32\include\txtstyle.h \ - ..\..\..\epoc32\include\txtfmlyr.h \ - ..\..\..\epoc32\include\txtfmstm.h \ - ..\..\..\epoc32\include\platform\txtfmlyr_internal.h \ - ..\..\..\epoc32\include\txtfmlyr.inl \ - ..\..\..\epoc32\include\txtstyle.inl \ - ..\..\..\epoc32\include\linebreak.h \ - ..\..\..\epoc32\include\platform\tagma_internal.h \ - ..\..\..\epoc32\include\platform\tagmalayoutandsource.h \ - ..\..\..\epoc32\include\mw\eikvcurs.h \ - ..\..\..\epoc32\include\platform\mw\eikpicturefactory.h \ - ..\..\..\epoc32\include\platform\mw\eikdgfty.h \ - ..\..\..\epoc32\include\platform\mw\eiklibry.h \ - ..\..\..\epoc32\include\mw\eikfctry.h \ - \epoc32\include\platform\mw\uikon\eikctrlstatus.h \ - ..\..\..\epoc32\include\mw\eikenv.inl \ - \epoc32\include\platform\mw\uikon\eikenvinterface.h \ - \epoc32\include\platform\mw\uikon\eikenvinterface.inl \ - ..\..\..\epoc32\include\platform\mw\eiksrv.pan \ - ..\..\..\epoc32\include\mw\apgtask.h \ - ..\..\..\epoc32\include\platform\mw\eiksrv.h \ - ..\..\..\epoc32\include\platform\mw\vwsappst.h \ - ..\..\..\epoc32\include\mw\eikunder.h \ - ..\..\..\epoc32\include\platform\mw\eikcycledef.h \ - ..\..\..\epoc32\include\mw\coecntrl.h \ - ..\..\..\epoc32\include\mw\coecobs.h \ - ..\..\..\epoc32\include\mw\coefont.h \ - ..\..\..\epoc32\include\mw\coecontrolarray.h \ - ..\..\..\epoc32\include\mw\coecoloruse.h \ - ..\..\..\epoc32\include\platform\mw\eikcba.h \ - ..\..\..\epoc32\include\platform\mw\eikctgrp.h \ - ..\..\..\epoc32\include\platform\mw\eikbctrl.h \ - ..\..\..\epoc32\include\platform\mw\AknControl.h \ - ..\..\..\epoc32\include\platform\mw\lafpublc.h \ - ..\..\..\epoc32\include\platform\mw\eikbtgrp.h \ - ..\..\..\epoc32\include\platform\mw\eiksbobs.h \ - ..\..\..\epoc32\include\platform\mw\eiksbfrm.h \ - ..\..\..\epoc32\include\platform\mw\aknscrlb.h \ - ..\..\..\epoc32\include\platform\mw\eikscrlb.h \ - ..\..\..\epoc32\include\platform\mw\aknscbut.h \ - ..\..\..\epoc32\include\platform\mw\eikimage.h \ - ..\..\..\epoc32\include\platform\mw\eikalign.h \ - ..\..\..\epoc32\include\mw\AknsItemData.h \ - ..\..\..\epoc32\include\mw\AknsItemID.h \ - ..\..\..\epoc32\include\mw\AknsItemID.inl \ - ..\..\..\epoc32\include\mw\AknsRlEffect.h \ - ..\..\..\epoc32\include\mw\AknsRlEffectContext.h \ - ..\..\..\epoc32\include\mw\AknsRlParameter.h \ - ..\..\..\epoc32\include\platform\mw\avkon.hrh \ - ..\..\..\epoc32\include\platform\mw\eikon.hrh \ - ..\..\..\epoc32\include\platform\mw\lafpublc.hrh \ - ..\..\..\epoc32\include\eikcolor.hrh \ - ..\..\..\epoc32\include\mw\AknFontCategory.hrh \ - ..\..\..\epoc32\include\mw\AknFontIdOffsets.hrh \ - ..\..\..\epoc32\include\platform\mw\AknDef.h \ - ..\..\..\epoc32\include\platform\mw\AknDef.hrh \ - ..\..\..\epoc32\include\mw\akntouchpaneobserver.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60maindocument.h \ - ..\..\..\epoc32\include\platform\mw\AknDoc.h \ - ..\..\..\epoc32\include\mw\eikdoc.h \ - ..\..\..\epoc32\include\platform\savenotf.h \ - \epoc32\include\platform\mw\uikon\eikdefaulticondefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible2.h \ - \epoc32\include\mw\QtGui\qaccessible.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblebridge.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblewidget.h \ - \epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qcompleter.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopservices.h \ - ..\..\..\epoc32\include\mw\QtGui\qsystemtrayicon.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qundogroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qundostack.h \ - ..\..\..\epoc32\include\mw\QtGui\qundoview.h \ - \epoc32\include\mw\QtGui\qlistview.h \ - \epoc32\include\mw\QtGui\qabstractitemview.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qitemselectionmodel.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsanchorlayout.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qgraphicslayout.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitemanimation.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslinearlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsproxywidget.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsscene.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtCore\QObject \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qcdestyle.h \ - \epoc32\include\mw\QtGui\qmotifstyle.h \ - \epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcleanlooksstyle.h \ - \epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qgtkstyle.h \ - \epoc32\include\mw\QtGui\QCleanlooksStyle \ - \epoc32\include\mw\QtGui\QPalette \ - ..\..\..\epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\QFont \ - ..\..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\QFileDialog \ - ..\..\..\epoc32\include\mw\QtGui\qfiledialog.h \ - \epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qmotifstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qplastiquestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxystyle.h \ - \epoc32\include\mw\QtGui\QCommonStyle \ - ..\..\..\epoc32\include\mw\QtGui\qs60style.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylefactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowscestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsmobilestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsvistastyle.h \ - \epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qvfbhdr.h \ - ..\..\..\epoc32\include\mw\QtGui\qwsembedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontext.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextfactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicseffect.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qbuttongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qcalendarwidget.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\..\..\epoc32\include\mw\QtGui\qcheckbox.h \ - \epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qcombobox.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommandlinkbutton.h \ - \epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatetimeedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qdial.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialogbuttonbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qdockwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qfocusframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontcombobox.h \ - \epoc32\include\mw\QtGui\qcombobox.h \ - \epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qgroupbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qlabel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlcdnumber.h \ - \epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmainwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdiarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdisubwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenubar.h \ - \epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenudata.h \ - ..\..\..\epoc32\include\mw\QtGui\qplaintextedit.h \ - \epoc32\include\mw\QtGui\qtextedit.h \ - \epoc32\include\mw\QtGui\qtextdocument.h \ - \epoc32\include\mw\QtGui\qtextcursor.h \ - \epoc32\include\mw\QtGui\qtextformat.h \ - \epoc32\include\mw\QtGui\qtextobject.h \ - \epoc32\include\mw\QtGui\qtextlayout.h \ - \epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewwidget.h \ - \epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qradiobutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizegrip.h \ - ..\..\..\epoc32\include\mw\QtGui\qslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplashscreen.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplitter.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatusbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextbrowser.h \ - \epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qvalidator.h \ - ..\..\..\epoc32\include\mw\QtGui\qworkspace.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeyeventtransition.h \ - \epoc32\include\mw\QtCore\qeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qmouseeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemview.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolumnview.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatawidgetmapper.h \ - ..\..\..\epoc32\include\mw\QtGui\qdirmodel.h \ - \epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qheaderview.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemeditorfactory.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemselectionmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistview.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qsortfilterproxymodel.h \ - \epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstandarditemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstringlistmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleditemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtablewidget.h \ - \epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreeview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidget.h \ - \epoc32\include\mw\QtGui\qtreeview.h \ - \epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontinfo.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontmetrics.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatictext.h \ - ..\..\..\epoc32\include\mw\QtGui\qsyntaxhighlighter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocument.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentfragment.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentwriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextformat.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlist.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qtexttable.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolordialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qerrormessage.h \ - ..\..\..\epoc32\include\mw\QtGui\qfilesystemmodel.h \ - \epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputdialog.h \ - \epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmessagebox.h \ - ..\..\..\epoc32\include\mw\QtGui\qpagesetupdialog.h \ - \epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintdialog.h \ - \epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qwizard.h \ - ..\..\..\epoc32\include\mw\QtGui\qbitmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qicon.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengineplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qimage.h \ - ..\..\..\epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagereader.h \ - \epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagewriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qmovie.h \ - \epoc32\include\mw\QtGui\qimagereader.h \ - ..\..\..\epoc32\include\mw\QtGui\qpicture.h \ - ..\..\..\epoc32\include\mw\QtGui\qpictureformatplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmapcache.h \ - ..\..\..\epoc32\include\mw\QtGui\qsymbianevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qbrush.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolor.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolormap.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrawutil.h \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintdevice.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qpolygon.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinterinfo.h \ - \epoc32\include\mw\QtGui\QPrinter \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\epoc32\include\mw\QtGui\qregion.h \ - ..\..\..\epoc32\include\mw\QtGui\qrgb.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylepainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qwmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qlayout.h \ - \epoc32\include\mw\QtGui\qlayoutitem.h \ - \epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qclipboard.h \ - ..\..\..\epoc32\include\mw\QtGui\qcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qformlayout.h \ - \epoc32\include\mw\QtGui\QLayout \ - ..\..\..\epoc32\include\mw\QtGui\qlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesture.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesturerecognizer.h \ - ..\..\..\epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeysequence.h \ - ..\..\..\epoc32\include\mw\QtGui\qlayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qmime.h \ - ..\..\..\epoc32\include\mw\QtGui\qsessionmanager.h \ - ..\..\..\epoc32\include\mw\QtGui\qshortcut.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizepolicy.h \ - ..\..\..\epoc32\include\mw\QtGui\qsound.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtooltip.h \ - ..\..\..\epoc32\include\mw\QtGui\qwhatsthis.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidgetaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowdefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qquaternion.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector2d.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector4d.h \ - locationedit.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\locationedit.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_locationedit.cpp - -moc_mainwindow.cpp: ..\..\..\epoc32\include\mw\QtGui\QtGui \ - \epoc32\include\mw\QtCore\QtCore \ - ..\..\..\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\quuid.h \ - ..\..\..\epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qchar.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\..\epoc32\include\mw\QtCore\qcryptographichash.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\..\epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qelapsedtimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qhash.h \ - ..\..\..\epoc32\include\mw\QtCore\qiterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlocale.h \ - ..\..\..\epoc32\include\mw\QtCore\qmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qmargins.h \ - ..\..\..\epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qqueue.h \ - ..\..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qregexp.h \ - ..\..\..\epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - ..\..\..\epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - ..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringbuilder.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringmatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\mw\QtCore\qxmlstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qhistorystate.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignaltransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qfutureinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturewatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qrunnable.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadpool.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qpauseanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatastream.h \ - ..\..\..\epoc32\include\mw\QtCore\qdebug.h \ - ..\..\..\epoc32\include\mw\QtCore\qdir.h \ - ..\..\..\epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qfileinfo.h \ - ..\..\..\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qiodevice.h \ - ..\..\..\epoc32\include\mw\QtCore\qprocess.h \ - ..\..\..\epoc32\include\mw\QtCore\qresource.h \ - ..\..\..\epoc32\include\mw\QtCore\qsettings.h \ - ..\..\..\epoc32\include\mw\QtCore\qtemporaryfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtCore\qatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasicatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qmutex.h \ - ..\..\..\epoc32\include\mw\QtCore\qreadwritelock.h \ - ..\..\..\epoc32\include\mw\QtCore\qsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qthread.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - ..\..\..\epoc32\include\mw\QtCore\qwaitcondition.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qmath.h \ - ..\..\..\epoc32\include\e32math.h \ - ..\..\..\epoc32\include\e32math.inl \ - ..\..\..\epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qmimedata.h \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectdefs.h \ - ..\..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedmemory.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignalmapper.h \ - ..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qtranslator.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\epoc32\include\mw\QtCore\qendian.h \ - ..\..\..\epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\..\epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - ..\..\..\epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\epoc32\include\mw\QtCore\qnumeric.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainapplication.h \ - ..\..\..\epoc32\include\platform\mw\aknapp.h \ - ..\..\..\epoc32\include\mw\eikapp.h \ - ..\..\..\epoc32\include\mw\apparc.h \ - ..\..\..\epoc32\include\e32base.h \ - ..\..\..\epoc32\include\e32base.inl \ - ..\..\..\epoc32\include\platform\e32base_private.h \ - ..\..\..\epoc32\include\f32file.h \ - ..\..\..\epoc32\include\platform\e32svr.h \ - ..\..\..\epoc32\include\platform\e32hal.h \ - ..\..\..\epoc32\include\platform\d32locd.h \ - ..\..\..\epoc32\include\platform\partitions.h \ - ..\..\..\epoc32\include\platform\d32locd.inl \ - ..\..\..\epoc32\include\platform\e32notif.h \ - ..\..\..\epoc32\include\e32ldr.h \ - ..\..\..\epoc32\include\platform\e32ldr_private.h \ - ..\..\..\epoc32\include\e32event.h \ - ..\..\..\epoc32\include\platform\e32btrace.h \ - ..\..\..\epoc32\include\platform\e32event_private.h \ - ..\..\..\epoc32\include\platform\e32ktran.h \ - ..\..\..\epoc32\include\e32keys.h \ - ..\..\..\epoc32\include\e32debug.h \ - ..\..\..\epoc32\include\platform\e32lmsg.h \ - ..\..\..\epoc32\include\f32file64.h \ - ..\..\..\epoc32\include\f32file64.inl \ - ..\..\..\epoc32\include\f32file.inl \ - ..\..\..\epoc32\include\platform\f32file_private.h \ - ..\..\..\epoc32\include\gdi.h \ - ..\..\..\epoc32\include\s32std.h \ - ..\..\..\epoc32\include\s32strm.h \ - ..\..\..\epoc32\include\s32strm.inl \ - ..\..\..\epoc32\include\s32std.inl \ - ..\..\..\epoc32\include\displaymode.h \ - \epoc32\include\platform\graphics\gdi\glyphsample.h \ - \epoc32\include\platform\graphics\gdi\gdiconsts.h \ - \epoc32\include\platform\graphics\gdi\gdistructs.h \ - \epoc32\include\platform\graphics\gdi\gdiinline.inl \ - ..\..\..\epoc32\include\gdi.inl \ - ..\..\..\epoc32\include\mw\apadef.h \ - ..\..\..\epoc32\include\mw\apaid.h \ - ..\..\..\epoc32\include\apmstd.h \ - ..\..\..\epoc32\include\mw\apaapp.h \ - ..\..\..\epoc32\include\mw\apadoc.h \ - ..\..\..\epoc32\include\mw\apaproc.h \ - ..\..\..\epoc32\include\mw\apaflrec.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainappui.h \ - ..\..\..\epoc32\include\platform\mw\aknappui.h \ - ..\..\..\epoc32\include\mw\eikappui.h \ - ..\..\..\epoc32\include\mw\coeaui.h \ - ..\..\..\epoc32\include\w32std.h \ - ..\..\..\epoc32\include\fntstore.h \ - ..\..\..\epoc32\include\openfont.h \ - \epoc32\include\ecom\ecom.h \ - \epoc32\include\ecom\ecomerrorcodes.h \ - \epoc32\include\platform\ecom\ecomextendedinterfaceerrorcodes.h \ - \epoc32\include\ecom\ecomresolverparams.h \ - \epoc32\include\ecom\ecomresolverparams.inl \ - \epoc32\include\ecom\implementationinformation.h \ - \epoc32\include\ecom\implementationinformation.inl \ - ..\..\..\epoc32\include\linkedfonts.h \ - \epoc32\include\platform\graphics\openfontconstants.h \ - \epoc32\include\platform\graphics\openfontrasterizer.h \ - ..\..\..\epoc32\include\openfontlinkedtypefaceelementspec.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefacespecification.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefaceextension.h \ - ..\..\..\epoc32\include\bitdev.h \ - ..\..\..\epoc32\include\fbs.h \ - ..\..\..\epoc32\include\bitmap.h \ - \epoc32\include\platform\graphics\bitmapuid.h \ - \epoc32\include\graphics\fbsdefs.h \ - ..\..\..\epoc32\include\bitbase.h \ - ..\..\..\epoc32\include\bitstd.h \ - ..\..\..\epoc32\include\graphicsaccelerator.h \ - ..\..\..\epoc32\include\bitdev.inl \ - ..\..\..\epoc32\include\textcursor.h \ - ..\..\..\epoc32\include\pointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.inl \ - ..\..\..\epoc32\include\sizemode.h \ - ..\..\..\epoc32\include\babitflags.h \ - ..\..\..\epoc32\include\wspublishandsubscribedata.h \ - \epoc32\include\platform\graphics\pointereventdata.h \ - ..\..\..\epoc32\include\mw\coedef.h \ - ..\..\..\epoc32\include\mw\guldef.h \ - \epoc32\include\platform\mw\graphics\cone\coedefkeys.h \ - ..\..\..\epoc32\include\mw\coehelp.h \ - ..\..\..\epoc32\include\mw\coeview.h \ - ..\..\..\epoc32\include\mw\vwsdef.h \ - ..\..\..\epoc32\include\mw\coemain.h \ - ..\..\..\epoc32\include\barsc.h \ - ..\..\..\epoc32\include\badesca.h \ - ..\..\..\epoc32\include\bamdesca.h \ - ..\..\..\epoc32\include\basched.h \ - ..\..\..\epoc32\include\mw\coemop.h \ - ..\..\..\epoc32\include\mw\coetextdrawer.h \ - ..\..\..\epoc32\include\mw\gulutil.h \ - ..\..\..\epoc32\include\mw\gulbordr.h \ - \epoc32\include\platform\mw\graphics\uigraphicsutils\gullogicalborder.h \ - ..\..\..\epoc32\include\gulftflg.hrh \ - ..\..\..\epoc32\include\mw\gulalign.h \ - ..\..\..\epoc32\include\biditext.h \ - ..\..\..\epoc32\include\bidi.h \ - ..\..\..\epoc32\include\txtfrmat.h \ - ..\..\..\epoc32\include\txtfrmat.inl \ - \epoc32\include\platform\systemmonitor\raiseevent.h \ - \epoc32\include\systemmonitor\instrumentationhandler.h \ - \epoc32\include\systemmonitor\configuration.h \ - \epoc32\include\systemmonitor\systemmonitorerrors.h \ - \epoc32\include\systemmonitor\recordtypes.h \ - \epoc32\include\systemmonitor\systemmonitor.h \ - \epoc32\include\systemmonitor\eventlog.h \ - \epoc32\include\systemmonitor\locking.h \ - \epoc32\include\platform\mw\graphics\cone\coescheduler.h \ - ..\..\..\epoc32\include\mw\coemain.inl \ - ..\..\..\epoc32\include\mw\coeinput.h \ - ..\..\..\epoc32\include\mw\eikmobs.h \ - ..\..\..\epoc32\include\mw\eikcmobs.h \ - ..\..\..\epoc32\include\mw\eikdef.h \ - \epoc32\include\platform\mw\uikon\eikdefconst.h \ - \epoc32\include\platform\mw\uikon\eikdefmacros.h \ - ..\..\..\epoc32\include\baerrhan.h \ - ..\..\..\epoc32\include\mw\eikaufty.h \ - ..\..\..\epoc32\include\platform\mw\eikspane.h \ - ..\..\..\epoc32\include\platform\mw\eikspmod.h \ - ..\..\..\epoc32\include\uikon.hrh \ - \epoc32\include\uiklaf\private\pluginuid.hrh \ - ..\..\..\epoc32\include\platform\mw\eiksrvc.h \ - ..\..\..\epoc32\include\platform\mw\eiksrvs.h \ - ..\..\..\epoc32\include\mw\eikenv.h \ - ..\..\..\epoc32\include\mw\apacmdln.h \ - ..\..\..\epoc32\include\mw\gulcolor.h \ - ..\..\..\epoc32\include\mw\eikamnt.h \ - \epoc32\include\platform\mw\uikon\eikautomenutitlearray.h \ - ..\..\..\epoc32\include\platform\mw\lafmain.h \ - ..\..\..\epoc32\include\frmtlay.h \ - ..\..\..\epoc32\include\txtetext.h \ - ..\..\..\epoc32\include\platform\fldset.h \ - ..\..\..\epoc32\include\fldinfo.h \ - ..\..\..\epoc32\include\fldbase.h \ - ..\..\..\epoc32\include\s32stor.h \ - ..\..\..\epoc32\include\s32share.h \ - ..\..\..\epoc32\include\s32buf.h \ - ..\..\..\epoc32\include\s32buf.inl \ - ..\..\..\epoc32\include\s32share.inl \ - ..\..\..\epoc32\include\s32page.h \ - ..\..\..\epoc32\include\s32page.inl \ - ..\..\..\epoc32\include\s32stor.inl \ - ..\..\..\epoc32\include\fldbltin.h \ - ..\..\..\epoc32\include\platform\txtetext_internal.h \ - ..\..\..\epoc32\include\platform\txtclipboard.h \ - ..\..\..\epoc32\include\txtetext.inl \ - ..\..\..\epoc32\include\frmlaydt.h \ - ..\..\..\epoc32\include\frmparam.h \ - ..\..\..\epoc32\include\frmvis.h \ - ..\..\..\epoc32\include\tagma.h \ - ..\..\..\epoc32\include\txtstyle.h \ - ..\..\..\epoc32\include\txtfmlyr.h \ - ..\..\..\epoc32\include\txtfmstm.h \ - ..\..\..\epoc32\include\platform\txtfmlyr_internal.h \ - ..\..\..\epoc32\include\txtfmlyr.inl \ - ..\..\..\epoc32\include\txtstyle.inl \ - ..\..\..\epoc32\include\linebreak.h \ - ..\..\..\epoc32\include\platform\tagma_internal.h \ - ..\..\..\epoc32\include\platform\tagmalayoutandsource.h \ - ..\..\..\epoc32\include\mw\eikvcurs.h \ - ..\..\..\epoc32\include\platform\mw\eikpicturefactory.h \ - ..\..\..\epoc32\include\platform\mw\eikdgfty.h \ - ..\..\..\epoc32\include\platform\mw\eiklibry.h \ - ..\..\..\epoc32\include\mw\eikfctry.h \ - \epoc32\include\platform\mw\uikon\eikctrlstatus.h \ - ..\..\..\epoc32\include\mw\eikenv.inl \ - \epoc32\include\platform\mw\uikon\eikenvinterface.h \ - \epoc32\include\platform\mw\uikon\eikenvinterface.inl \ - ..\..\..\epoc32\include\platform\mw\eiksrv.pan \ - ..\..\..\epoc32\include\mw\apgtask.h \ - ..\..\..\epoc32\include\platform\mw\eiksrv.h \ - ..\..\..\epoc32\include\platform\mw\vwsappst.h \ - ..\..\..\epoc32\include\mw\eikunder.h \ - ..\..\..\epoc32\include\platform\mw\eikcycledef.h \ - ..\..\..\epoc32\include\mw\coecntrl.h \ - ..\..\..\epoc32\include\mw\coecobs.h \ - ..\..\..\epoc32\include\mw\coefont.h \ - ..\..\..\epoc32\include\mw\coecontrolarray.h \ - ..\..\..\epoc32\include\mw\coecoloruse.h \ - ..\..\..\epoc32\include\platform\mw\eikcba.h \ - ..\..\..\epoc32\include\platform\mw\eikctgrp.h \ - ..\..\..\epoc32\include\platform\mw\eikbctrl.h \ - ..\..\..\epoc32\include\platform\mw\AknControl.h \ - ..\..\..\epoc32\include\platform\mw\lafpublc.h \ - ..\..\..\epoc32\include\platform\mw\eikbtgrp.h \ - ..\..\..\epoc32\include\platform\mw\eiksbobs.h \ - ..\..\..\epoc32\include\platform\mw\eiksbfrm.h \ - ..\..\..\epoc32\include\platform\mw\aknscrlb.h \ - ..\..\..\epoc32\include\platform\mw\eikscrlb.h \ - ..\..\..\epoc32\include\platform\mw\aknscbut.h \ - ..\..\..\epoc32\include\platform\mw\eikimage.h \ - ..\..\..\epoc32\include\platform\mw\eikalign.h \ - ..\..\..\epoc32\include\mw\AknsItemData.h \ - ..\..\..\epoc32\include\mw\AknsItemID.h \ - ..\..\..\epoc32\include\mw\AknsItemID.inl \ - ..\..\..\epoc32\include\mw\AknsRlEffect.h \ - ..\..\..\epoc32\include\mw\AknsRlEffectContext.h \ - ..\..\..\epoc32\include\mw\AknsRlParameter.h \ - ..\..\..\epoc32\include\platform\mw\avkon.hrh \ - ..\..\..\epoc32\include\platform\mw\eikon.hrh \ - ..\..\..\epoc32\include\platform\mw\lafpublc.hrh \ - ..\..\..\epoc32\include\eikcolor.hrh \ - ..\..\..\epoc32\include\mw\AknFontCategory.hrh \ - ..\..\..\epoc32\include\mw\AknFontIdOffsets.hrh \ - ..\..\..\epoc32\include\platform\mw\AknDef.h \ - ..\..\..\epoc32\include\platform\mw\AknDef.hrh \ - ..\..\..\epoc32\include\mw\akntouchpaneobserver.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60maindocument.h \ - ..\..\..\epoc32\include\platform\mw\AknDoc.h \ - ..\..\..\epoc32\include\mw\eikdoc.h \ - ..\..\..\epoc32\include\platform\savenotf.h \ - \epoc32\include\platform\mw\uikon\eikdefaulticondefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible2.h \ - \epoc32\include\mw\QtGui\qaccessible.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblebridge.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblewidget.h \ - \epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qcompleter.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopservices.h \ - ..\..\..\epoc32\include\mw\QtGui\qsystemtrayicon.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qundogroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qundostack.h \ - ..\..\..\epoc32\include\mw\QtGui\qundoview.h \ - \epoc32\include\mw\QtGui\qlistview.h \ - \epoc32\include\mw\QtGui\qabstractitemview.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qitemselectionmodel.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsanchorlayout.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qgraphicslayout.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitemanimation.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslinearlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsproxywidget.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsscene.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtCore\QObject \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qcdestyle.h \ - \epoc32\include\mw\QtGui\qmotifstyle.h \ - \epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcleanlooksstyle.h \ - \epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qgtkstyle.h \ - \epoc32\include\mw\QtGui\QCleanlooksStyle \ - \epoc32\include\mw\QtGui\QPalette \ - ..\..\..\epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\QFont \ - ..\..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\QFileDialog \ - ..\..\..\epoc32\include\mw\QtGui\qfiledialog.h \ - \epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qmotifstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qplastiquestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxystyle.h \ - \epoc32\include\mw\QtGui\QCommonStyle \ - ..\..\..\epoc32\include\mw\QtGui\qs60style.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylefactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowscestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsmobilestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsvistastyle.h \ - \epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qvfbhdr.h \ - ..\..\..\epoc32\include\mw\QtGui\qwsembedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontext.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextfactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicseffect.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qbuttongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qcalendarwidget.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\..\..\epoc32\include\mw\QtGui\qcheckbox.h \ - \epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qcombobox.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommandlinkbutton.h \ - \epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatetimeedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qdial.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialogbuttonbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qdockwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qfocusframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontcombobox.h \ - \epoc32\include\mw\QtGui\qcombobox.h \ - \epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qgroupbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qlabel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlcdnumber.h \ - \epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmainwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdiarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdisubwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenubar.h \ - \epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenudata.h \ - ..\..\..\epoc32\include\mw\QtGui\qplaintextedit.h \ - \epoc32\include\mw\QtGui\qtextedit.h \ - \epoc32\include\mw\QtGui\qtextdocument.h \ - \epoc32\include\mw\QtGui\qtextcursor.h \ - \epoc32\include\mw\QtGui\qtextformat.h \ - \epoc32\include\mw\QtGui\qtextobject.h \ - \epoc32\include\mw\QtGui\qtextlayout.h \ - \epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewwidget.h \ - \epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qradiobutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizegrip.h \ - ..\..\..\epoc32\include\mw\QtGui\qslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplashscreen.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplitter.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatusbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextbrowser.h \ - \epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qvalidator.h \ - ..\..\..\epoc32\include\mw\QtGui\qworkspace.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeyeventtransition.h \ - \epoc32\include\mw\QtCore\qeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qmouseeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemview.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolumnview.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatawidgetmapper.h \ - ..\..\..\epoc32\include\mw\QtGui\qdirmodel.h \ - \epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qheaderview.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemeditorfactory.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemselectionmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistview.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qsortfilterproxymodel.h \ - \epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstandarditemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstringlistmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleditemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtablewidget.h \ - \epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreeview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidget.h \ - \epoc32\include\mw\QtGui\qtreeview.h \ - \epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontinfo.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontmetrics.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatictext.h \ - ..\..\..\epoc32\include\mw\QtGui\qsyntaxhighlighter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocument.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentfragment.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentwriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextformat.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlist.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qtexttable.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolordialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qerrormessage.h \ - ..\..\..\epoc32\include\mw\QtGui\qfilesystemmodel.h \ - \epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputdialog.h \ - \epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmessagebox.h \ - ..\..\..\epoc32\include\mw\QtGui\qpagesetupdialog.h \ - \epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintdialog.h \ - \epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qwizard.h \ - ..\..\..\epoc32\include\mw\QtGui\qbitmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qicon.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengineplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qimage.h \ - ..\..\..\epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagereader.h \ - \epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagewriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qmovie.h \ - \epoc32\include\mw\QtGui\qimagereader.h \ - ..\..\..\epoc32\include\mw\QtGui\qpicture.h \ - ..\..\..\epoc32\include\mw\QtGui\qpictureformatplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmapcache.h \ - ..\..\..\epoc32\include\mw\QtGui\qsymbianevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qbrush.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolor.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolormap.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrawutil.h \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintdevice.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qpolygon.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinterinfo.h \ - \epoc32\include\mw\QtGui\QPrinter \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\epoc32\include\mw\QtGui\qregion.h \ - ..\..\..\epoc32\include\mw\QtGui\qrgb.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylepainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qwmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qlayout.h \ - \epoc32\include\mw\QtGui\qlayoutitem.h \ - \epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qclipboard.h \ - ..\..\..\epoc32\include\mw\QtGui\qcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qformlayout.h \ - \epoc32\include\mw\QtGui\QLayout \ - ..\..\..\epoc32\include\mw\QtGui\qlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesture.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesturerecognizer.h \ - ..\..\..\epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeysequence.h \ - ..\..\..\epoc32\include\mw\QtGui\qlayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qmime.h \ - ..\..\..\epoc32\include\mw\QtGui\qsessionmanager.h \ - ..\..\..\epoc32\include\mw\QtGui\qshortcut.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizepolicy.h \ - ..\..\..\epoc32\include\mw\QtGui\qsound.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtooltip.h \ - ..\..\..\epoc32\include\mw\QtGui\qwhatsthis.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidgetaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowdefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qquaternion.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector2d.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector4d.h \ - webpage.h \ - ..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\WebKit\qt\Api\qwebsettings.h \ - mainwindow.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\mainwindow.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_mainwindow.cpp - -moc_urlloader.cpp: ..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\..\epoc32\include\mw\QtCore\QTextStream \ - ..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\epoc32\include\mw\QtCore\QVector \ - ..\..\..\epoc32\include\mw\QtCore\qvector.h \ - urlloader.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\urlloader.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_urlloader.cpp - -moc_webinspector.cpp: ..\..\..\epoc32\include\mw\QtGui\QtGui \ - \epoc32\include\mw\QtCore\QtCore \ - ..\..\..\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\quuid.h \ - ..\..\..\epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qchar.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\..\epoc32\include\mw\QtCore\qcryptographichash.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\..\epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qelapsedtimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qhash.h \ - ..\..\..\epoc32\include\mw\QtCore\qiterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlocale.h \ - ..\..\..\epoc32\include\mw\QtCore\qmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qmargins.h \ - ..\..\..\epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qqueue.h \ - ..\..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qregexp.h \ - ..\..\..\epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - ..\..\..\epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - ..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringbuilder.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringmatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\mw\QtCore\qxmlstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qhistorystate.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignaltransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qfutureinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturewatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qrunnable.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadpool.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qpauseanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatastream.h \ - ..\..\..\epoc32\include\mw\QtCore\qdebug.h \ - ..\..\..\epoc32\include\mw\QtCore\qdir.h \ - ..\..\..\epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qfileinfo.h \ - ..\..\..\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qiodevice.h \ - ..\..\..\epoc32\include\mw\QtCore\qprocess.h \ - ..\..\..\epoc32\include\mw\QtCore\qresource.h \ - ..\..\..\epoc32\include\mw\QtCore\qsettings.h \ - ..\..\..\epoc32\include\mw\QtCore\qtemporaryfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtCore\qatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasicatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qmutex.h \ - ..\..\..\epoc32\include\mw\QtCore\qreadwritelock.h \ - ..\..\..\epoc32\include\mw\QtCore\qsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qthread.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - ..\..\..\epoc32\include\mw\QtCore\qwaitcondition.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qmath.h \ - ..\..\..\epoc32\include\e32math.h \ - ..\..\..\epoc32\include\e32math.inl \ - ..\..\..\epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qmimedata.h \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectdefs.h \ - ..\..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedmemory.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignalmapper.h \ - ..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qtranslator.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\epoc32\include\mw\QtCore\qendian.h \ - ..\..\..\epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\..\epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - ..\..\..\epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\epoc32\include\mw\QtCore\qnumeric.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainapplication.h \ - ..\..\..\epoc32\include\platform\mw\aknapp.h \ - ..\..\..\epoc32\include\mw\eikapp.h \ - ..\..\..\epoc32\include\mw\apparc.h \ - ..\..\..\epoc32\include\e32base.h \ - ..\..\..\epoc32\include\e32base.inl \ - ..\..\..\epoc32\include\platform\e32base_private.h \ - ..\..\..\epoc32\include\f32file.h \ - ..\..\..\epoc32\include\platform\e32svr.h \ - ..\..\..\epoc32\include\platform\e32hal.h \ - ..\..\..\epoc32\include\platform\d32locd.h \ - ..\..\..\epoc32\include\platform\partitions.h \ - ..\..\..\epoc32\include\platform\d32locd.inl \ - ..\..\..\epoc32\include\platform\e32notif.h \ - ..\..\..\epoc32\include\e32ldr.h \ - ..\..\..\epoc32\include\platform\e32ldr_private.h \ - ..\..\..\epoc32\include\e32event.h \ - ..\..\..\epoc32\include\platform\e32btrace.h \ - ..\..\..\epoc32\include\platform\e32event_private.h \ - ..\..\..\epoc32\include\platform\e32ktran.h \ - ..\..\..\epoc32\include\e32keys.h \ - ..\..\..\epoc32\include\e32debug.h \ - ..\..\..\epoc32\include\platform\e32lmsg.h \ - ..\..\..\epoc32\include\f32file64.h \ - ..\..\..\epoc32\include\f32file64.inl \ - ..\..\..\epoc32\include\f32file.inl \ - ..\..\..\epoc32\include\platform\f32file_private.h \ - ..\..\..\epoc32\include\gdi.h \ - ..\..\..\epoc32\include\s32std.h \ - ..\..\..\epoc32\include\s32strm.h \ - ..\..\..\epoc32\include\s32strm.inl \ - ..\..\..\epoc32\include\s32std.inl \ - ..\..\..\epoc32\include\displaymode.h \ - \epoc32\include\platform\graphics\gdi\glyphsample.h \ - \epoc32\include\platform\graphics\gdi\gdiconsts.h \ - \epoc32\include\platform\graphics\gdi\gdistructs.h \ - \epoc32\include\platform\graphics\gdi\gdiinline.inl \ - ..\..\..\epoc32\include\gdi.inl \ - ..\..\..\epoc32\include\mw\apadef.h \ - ..\..\..\epoc32\include\mw\apaid.h \ - ..\..\..\epoc32\include\apmstd.h \ - ..\..\..\epoc32\include\mw\apaapp.h \ - ..\..\..\epoc32\include\mw\apadoc.h \ - ..\..\..\epoc32\include\mw\apaproc.h \ - ..\..\..\epoc32\include\mw\apaflrec.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainappui.h \ - ..\..\..\epoc32\include\platform\mw\aknappui.h \ - ..\..\..\epoc32\include\mw\eikappui.h \ - ..\..\..\epoc32\include\mw\coeaui.h \ - ..\..\..\epoc32\include\w32std.h \ - ..\..\..\epoc32\include\fntstore.h \ - ..\..\..\epoc32\include\openfont.h \ - \epoc32\include\ecom\ecom.h \ - \epoc32\include\ecom\ecomerrorcodes.h \ - \epoc32\include\platform\ecom\ecomextendedinterfaceerrorcodes.h \ - \epoc32\include\ecom\ecomresolverparams.h \ - \epoc32\include\ecom\ecomresolverparams.inl \ - \epoc32\include\ecom\implementationinformation.h \ - \epoc32\include\ecom\implementationinformation.inl \ - ..\..\..\epoc32\include\linkedfonts.h \ - \epoc32\include\platform\graphics\openfontconstants.h \ - \epoc32\include\platform\graphics\openfontrasterizer.h \ - ..\..\..\epoc32\include\openfontlinkedtypefaceelementspec.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefacespecification.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefaceextension.h \ - ..\..\..\epoc32\include\bitdev.h \ - ..\..\..\epoc32\include\fbs.h \ - ..\..\..\epoc32\include\bitmap.h \ - \epoc32\include\platform\graphics\bitmapuid.h \ - \epoc32\include\graphics\fbsdefs.h \ - ..\..\..\epoc32\include\bitbase.h \ - ..\..\..\epoc32\include\bitstd.h \ - ..\..\..\epoc32\include\graphicsaccelerator.h \ - ..\..\..\epoc32\include\bitdev.inl \ - ..\..\..\epoc32\include\textcursor.h \ - ..\..\..\epoc32\include\pointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.inl \ - ..\..\..\epoc32\include\sizemode.h \ - ..\..\..\epoc32\include\babitflags.h \ - ..\..\..\epoc32\include\wspublishandsubscribedata.h \ - \epoc32\include\platform\graphics\pointereventdata.h \ - ..\..\..\epoc32\include\mw\coedef.h \ - ..\..\..\epoc32\include\mw\guldef.h \ - \epoc32\include\platform\mw\graphics\cone\coedefkeys.h \ - ..\..\..\epoc32\include\mw\coehelp.h \ - ..\..\..\epoc32\include\mw\coeview.h \ - ..\..\..\epoc32\include\mw\vwsdef.h \ - ..\..\..\epoc32\include\mw\coemain.h \ - ..\..\..\epoc32\include\barsc.h \ - ..\..\..\epoc32\include\badesca.h \ - ..\..\..\epoc32\include\bamdesca.h \ - ..\..\..\epoc32\include\basched.h \ - ..\..\..\epoc32\include\mw\coemop.h \ - ..\..\..\epoc32\include\mw\coetextdrawer.h \ - ..\..\..\epoc32\include\mw\gulutil.h \ - ..\..\..\epoc32\include\mw\gulbordr.h \ - \epoc32\include\platform\mw\graphics\uigraphicsutils\gullogicalborder.h \ - ..\..\..\epoc32\include\gulftflg.hrh \ - ..\..\..\epoc32\include\mw\gulalign.h \ - ..\..\..\epoc32\include\biditext.h \ - ..\..\..\epoc32\include\bidi.h \ - ..\..\..\epoc32\include\txtfrmat.h \ - ..\..\..\epoc32\include\txtfrmat.inl \ - \epoc32\include\platform\systemmonitor\raiseevent.h \ - \epoc32\include\systemmonitor\instrumentationhandler.h \ - \epoc32\include\systemmonitor\configuration.h \ - \epoc32\include\systemmonitor\systemmonitorerrors.h \ - \epoc32\include\systemmonitor\recordtypes.h \ - \epoc32\include\systemmonitor\systemmonitor.h \ - \epoc32\include\systemmonitor\eventlog.h \ - \epoc32\include\systemmonitor\locking.h \ - \epoc32\include\platform\mw\graphics\cone\coescheduler.h \ - ..\..\..\epoc32\include\mw\coemain.inl \ - ..\..\..\epoc32\include\mw\coeinput.h \ - ..\..\..\epoc32\include\mw\eikmobs.h \ - ..\..\..\epoc32\include\mw\eikcmobs.h \ - ..\..\..\epoc32\include\mw\eikdef.h \ - \epoc32\include\platform\mw\uikon\eikdefconst.h \ - \epoc32\include\platform\mw\uikon\eikdefmacros.h \ - ..\..\..\epoc32\include\baerrhan.h \ - ..\..\..\epoc32\include\mw\eikaufty.h \ - ..\..\..\epoc32\include\platform\mw\eikspane.h \ - ..\..\..\epoc32\include\platform\mw\eikspmod.h \ - ..\..\..\epoc32\include\uikon.hrh \ - \epoc32\include\uiklaf\private\pluginuid.hrh \ - ..\..\..\epoc32\include\platform\mw\eiksrvc.h \ - ..\..\..\epoc32\include\platform\mw\eiksrvs.h \ - ..\..\..\epoc32\include\mw\eikenv.h \ - ..\..\..\epoc32\include\mw\apacmdln.h \ - ..\..\..\epoc32\include\mw\gulcolor.h \ - ..\..\..\epoc32\include\mw\eikamnt.h \ - \epoc32\include\platform\mw\uikon\eikautomenutitlearray.h \ - ..\..\..\epoc32\include\platform\mw\lafmain.h \ - ..\..\..\epoc32\include\frmtlay.h \ - ..\..\..\epoc32\include\txtetext.h \ - ..\..\..\epoc32\include\platform\fldset.h \ - ..\..\..\epoc32\include\fldinfo.h \ - ..\..\..\epoc32\include\fldbase.h \ - ..\..\..\epoc32\include\s32stor.h \ - ..\..\..\epoc32\include\s32share.h \ - ..\..\..\epoc32\include\s32buf.h \ - ..\..\..\epoc32\include\s32buf.inl \ - ..\..\..\epoc32\include\s32share.inl \ - ..\..\..\epoc32\include\s32page.h \ - ..\..\..\epoc32\include\s32page.inl \ - ..\..\..\epoc32\include\s32stor.inl \ - ..\..\..\epoc32\include\fldbltin.h \ - ..\..\..\epoc32\include\platform\txtetext_internal.h \ - ..\..\..\epoc32\include\platform\txtclipboard.h \ - ..\..\..\epoc32\include\txtetext.inl \ - ..\..\..\epoc32\include\frmlaydt.h \ - ..\..\..\epoc32\include\frmparam.h \ - ..\..\..\epoc32\include\frmvis.h \ - ..\..\..\epoc32\include\tagma.h \ - ..\..\..\epoc32\include\txtstyle.h \ - ..\..\..\epoc32\include\txtfmlyr.h \ - ..\..\..\epoc32\include\txtfmstm.h \ - ..\..\..\epoc32\include\platform\txtfmlyr_internal.h \ - ..\..\..\epoc32\include\txtfmlyr.inl \ - ..\..\..\epoc32\include\txtstyle.inl \ - ..\..\..\epoc32\include\linebreak.h \ - ..\..\..\epoc32\include\platform\tagma_internal.h \ - ..\..\..\epoc32\include\platform\tagmalayoutandsource.h \ - ..\..\..\epoc32\include\mw\eikvcurs.h \ - ..\..\..\epoc32\include\platform\mw\eikpicturefactory.h \ - ..\..\..\epoc32\include\platform\mw\eikdgfty.h \ - ..\..\..\epoc32\include\platform\mw\eiklibry.h \ - ..\..\..\epoc32\include\mw\eikfctry.h \ - \epoc32\include\platform\mw\uikon\eikctrlstatus.h \ - ..\..\..\epoc32\include\mw\eikenv.inl \ - \epoc32\include\platform\mw\uikon\eikenvinterface.h \ - \epoc32\include\platform\mw\uikon\eikenvinterface.inl \ - ..\..\..\epoc32\include\platform\mw\eiksrv.pan \ - ..\..\..\epoc32\include\mw\apgtask.h \ - ..\..\..\epoc32\include\platform\mw\eiksrv.h \ - ..\..\..\epoc32\include\platform\mw\vwsappst.h \ - ..\..\..\epoc32\include\mw\eikunder.h \ - ..\..\..\epoc32\include\platform\mw\eikcycledef.h \ - ..\..\..\epoc32\include\mw\coecntrl.h \ - ..\..\..\epoc32\include\mw\coecobs.h \ - ..\..\..\epoc32\include\mw\coefont.h \ - ..\..\..\epoc32\include\mw\coecontrolarray.h \ - ..\..\..\epoc32\include\mw\coecoloruse.h \ - ..\..\..\epoc32\include\platform\mw\eikcba.h \ - ..\..\..\epoc32\include\platform\mw\eikctgrp.h \ - ..\..\..\epoc32\include\platform\mw\eikbctrl.h \ - ..\..\..\epoc32\include\platform\mw\AknControl.h \ - ..\..\..\epoc32\include\platform\mw\lafpublc.h \ - ..\..\..\epoc32\include\platform\mw\eikbtgrp.h \ - ..\..\..\epoc32\include\platform\mw\eiksbobs.h \ - ..\..\..\epoc32\include\platform\mw\eiksbfrm.h \ - ..\..\..\epoc32\include\platform\mw\aknscrlb.h \ - ..\..\..\epoc32\include\platform\mw\eikscrlb.h \ - ..\..\..\epoc32\include\platform\mw\aknscbut.h \ - ..\..\..\epoc32\include\platform\mw\eikimage.h \ - ..\..\..\epoc32\include\platform\mw\eikalign.h \ - ..\..\..\epoc32\include\mw\AknsItemData.h \ - ..\..\..\epoc32\include\mw\AknsItemID.h \ - ..\..\..\epoc32\include\mw\AknsItemID.inl \ - ..\..\..\epoc32\include\mw\AknsRlEffect.h \ - ..\..\..\epoc32\include\mw\AknsRlEffectContext.h \ - ..\..\..\epoc32\include\mw\AknsRlParameter.h \ - ..\..\..\epoc32\include\platform\mw\avkon.hrh \ - ..\..\..\epoc32\include\platform\mw\eikon.hrh \ - ..\..\..\epoc32\include\platform\mw\lafpublc.hrh \ - ..\..\..\epoc32\include\eikcolor.hrh \ - ..\..\..\epoc32\include\mw\AknFontCategory.hrh \ - ..\..\..\epoc32\include\mw\AknFontIdOffsets.hrh \ - ..\..\..\epoc32\include\platform\mw\AknDef.h \ - ..\..\..\epoc32\include\platform\mw\AknDef.hrh \ - ..\..\..\epoc32\include\mw\akntouchpaneobserver.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60maindocument.h \ - ..\..\..\epoc32\include\platform\mw\AknDoc.h \ - ..\..\..\epoc32\include\mw\eikdoc.h \ - ..\..\..\epoc32\include\platform\savenotf.h \ - \epoc32\include\platform\mw\uikon\eikdefaulticondefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible2.h \ - \epoc32\include\mw\QtGui\qaccessible.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblebridge.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblewidget.h \ - \epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qcompleter.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopservices.h \ - ..\..\..\epoc32\include\mw\QtGui\qsystemtrayicon.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qundogroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qundostack.h \ - ..\..\..\epoc32\include\mw\QtGui\qundoview.h \ - \epoc32\include\mw\QtGui\qlistview.h \ - \epoc32\include\mw\QtGui\qabstractitemview.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qitemselectionmodel.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsanchorlayout.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qgraphicslayout.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitemanimation.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslinearlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsproxywidget.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsscene.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtCore\QObject \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qcdestyle.h \ - \epoc32\include\mw\QtGui\qmotifstyle.h \ - \epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcleanlooksstyle.h \ - \epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qgtkstyle.h \ - \epoc32\include\mw\QtGui\QCleanlooksStyle \ - \epoc32\include\mw\QtGui\QPalette \ - ..\..\..\epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\QFont \ - ..\..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\QFileDialog \ - ..\..\..\epoc32\include\mw\QtGui\qfiledialog.h \ - \epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qmotifstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qplastiquestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxystyle.h \ - \epoc32\include\mw\QtGui\QCommonStyle \ - ..\..\..\epoc32\include\mw\QtGui\qs60style.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylefactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowscestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsmobilestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsvistastyle.h \ - \epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qvfbhdr.h \ - ..\..\..\epoc32\include\mw\QtGui\qwsembedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontext.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextfactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicseffect.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qbuttongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qcalendarwidget.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\..\..\epoc32\include\mw\QtGui\qcheckbox.h \ - \epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qcombobox.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommandlinkbutton.h \ - \epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatetimeedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qdial.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialogbuttonbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qdockwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qfocusframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontcombobox.h \ - \epoc32\include\mw\QtGui\qcombobox.h \ - \epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qgroupbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qlabel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlcdnumber.h \ - \epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmainwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdiarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdisubwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenubar.h \ - \epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenudata.h \ - ..\..\..\epoc32\include\mw\QtGui\qplaintextedit.h \ - \epoc32\include\mw\QtGui\qtextedit.h \ - \epoc32\include\mw\QtGui\qtextdocument.h \ - \epoc32\include\mw\QtGui\qtextcursor.h \ - \epoc32\include\mw\QtGui\qtextformat.h \ - \epoc32\include\mw\QtGui\qtextobject.h \ - \epoc32\include\mw\QtGui\qtextlayout.h \ - \epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewwidget.h \ - \epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qradiobutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizegrip.h \ - ..\..\..\epoc32\include\mw\QtGui\qslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplashscreen.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplitter.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatusbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextbrowser.h \ - \epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qvalidator.h \ - ..\..\..\epoc32\include\mw\QtGui\qworkspace.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeyeventtransition.h \ - \epoc32\include\mw\QtCore\qeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qmouseeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemview.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolumnview.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatawidgetmapper.h \ - ..\..\..\epoc32\include\mw\QtGui\qdirmodel.h \ - \epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qheaderview.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemeditorfactory.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemselectionmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistview.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qsortfilterproxymodel.h \ - \epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstandarditemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstringlistmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleditemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtablewidget.h \ - \epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreeview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidget.h \ - \epoc32\include\mw\QtGui\qtreeview.h \ - \epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontinfo.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontmetrics.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatictext.h \ - ..\..\..\epoc32\include\mw\QtGui\qsyntaxhighlighter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocument.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentfragment.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentwriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextformat.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlist.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qtexttable.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolordialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qerrormessage.h \ - ..\..\..\epoc32\include\mw\QtGui\qfilesystemmodel.h \ - \epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputdialog.h \ - \epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmessagebox.h \ - ..\..\..\epoc32\include\mw\QtGui\qpagesetupdialog.h \ - \epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintdialog.h \ - \epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qwizard.h \ - ..\..\..\epoc32\include\mw\QtGui\qbitmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qicon.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengineplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qimage.h \ - ..\..\..\epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagereader.h \ - \epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagewriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qmovie.h \ - \epoc32\include\mw\QtGui\qimagereader.h \ - ..\..\..\epoc32\include\mw\QtGui\qpicture.h \ - ..\..\..\epoc32\include\mw\QtGui\qpictureformatplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmapcache.h \ - ..\..\..\epoc32\include\mw\QtGui\qsymbianevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qbrush.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolor.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolormap.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrawutil.h \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintdevice.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qpolygon.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinterinfo.h \ - \epoc32\include\mw\QtGui\QPrinter \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\epoc32\include\mw\QtGui\qregion.h \ - ..\..\..\epoc32\include\mw\QtGui\qrgb.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylepainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qwmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qlayout.h \ - \epoc32\include\mw\QtGui\qlayoutitem.h \ - \epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qclipboard.h \ - ..\..\..\epoc32\include\mw\QtGui\qcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qformlayout.h \ - \epoc32\include\mw\QtGui\QLayout \ - ..\..\..\epoc32\include\mw\QtGui\qlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesture.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesturerecognizer.h \ - ..\..\..\epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeysequence.h \ - ..\..\..\epoc32\include\mw\QtGui\qlayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qmime.h \ - ..\..\..\epoc32\include\mw\QtGui\qsessionmanager.h \ - ..\..\..\epoc32\include\mw\QtGui\qshortcut.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizepolicy.h \ - ..\..\..\epoc32\include\mw\QtGui\qsound.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtooltip.h \ - ..\..\..\epoc32\include\mw\QtGui\qwhatsthis.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidgetaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowdefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qquaternion.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector2d.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector4d.h \ - ..\..\WebKit\qt\Api\qwebinspector.h \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\WebKit\qt\Api\qwebsettings.h \ - ..\..\WebKit\qt\Api\qwebview.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - webinspector.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\webinspector.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_webinspector.cpp - -moc_webpage.cpp: ..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - webpage.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\webpage.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_webpage.cpp - -moc_webview.cpp: fpstimer.h \ - ..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\QSet \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\QTime \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - webpage.h \ - ..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtCore\qurl.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtCore\qsize.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - \epoc32\include\mw\QtCore\QPoint \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - \epoc32\include\mw\QtCore\QObject \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\WebKit\qt\Api\qwebsettings.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - \epoc32\include\mw\QtCore\qset.h \ - ..\..\WebKit\qt\Api\qwebview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\WebKit\qt\Api\qgraphicswebview.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - ..\..\..\epoc32\include\mw\QtGui\QGraphicsView \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\epoc32\include\mw\QtGui\QGraphicsWidget \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicswidget.h \ - webview.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\webview.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_webview.cpp - -moc_fpstimer.cpp: ..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\QSet \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\QTime \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - fpstimer.h - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\fpstimer.h -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\moc_fpstimer.cpp - -compiler_rcc_make_all: qrc_QtTestBrowser.cpp -compiler_rcc_clean: - -$(DEL_FILE) qrc_QtTestBrowser.cpp -qrc_QtTestBrowser.cpp: QtTestBrowser.qrc \ - useragentlist.txt - \epoc32\tools\rcc.exe -name QtTestBrowser u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser.qrc -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\qrc_QtTestBrowser.cpp - -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: main.moc -compiler_moc_source_clean: - -$(DEL_FILE) main.moc -main.moc: ..\..\..\epoc32\include\mw\QtGui\QtGui \ - \epoc32\include\mw\QtCore\QtCore \ - ..\..\..\epoc32\include\mw\QtCore\qfactoryinterface.h \ - \epoc32\include\mw\QtCore\qobject.h \ - \epoc32\include\mw\QtCore\qobjectdefs.h \ - \epoc32\include\mw\QtCore\qnamespace.h \ - \epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\stdapis\stddef.h \ - \epoc32\include\stdapis\sys\cdefs.h \ - ..\..\..\epoc32\include\stdapis\_ansi.h \ - ..\..\..\epoc32\include\e32def.h \ - ..\..\..\epoc32\include\platform\e32def_private.h \ - \epoc32\include\stdapis\sys\_null.h \ - \epoc32\include\stdapis\sys\_types.h \ - \epoc32\include\stdapis\machine\_types.h \ - \epoc32\include\mw\QtCore\qconfig.h \ - \epoc32\include\mw\QtCore\qfeatures.h \ - \epoc32\include\mw\QtCore\qstring.h \ - \epoc32\include\mw\QtCore\qchar.h \ - \epoc32\include\mw\QtCore\qbytearray.h \ - \epoc32\include\mw\QtCore\qatomic.h \ - \epoc32\include\mw\QtCore\qbasicatomic.h \ - \epoc32\include\mw\QtCore\qatomic_bootstrap.h \ - \epoc32\include\mw\QtCore\qatomic_arch.h \ - \epoc32\include\mw\QtCore\qatomic_vxworks.h \ - \epoc32\include\mw\QtCore\qatomic_powerpc.h \ - \epoc32\include\mw\QtCore\qatomic_alpha.h \ - \epoc32\include\mw\QtCore\qatomic_arm.h \ - \epoc32\include\mw\QtCore\qatomic_armv6.h \ - \epoc32\include\mw\QtCore\qatomic_avr32.h \ - \epoc32\include\mw\QtCore\qatomic_bfin.h \ - \epoc32\include\mw\QtCore\qatomic_generic.h \ - \epoc32\include\mw\QtCore\qatomic_i386.h \ - \epoc32\include\mw\QtCore\qatomic_ia64.h \ - \epoc32\include\mw\QtCore\qatomic_macosx.h \ - \epoc32\include\mw\QtCore\qatomic_x86_64.h \ - \epoc32\include\mw\QtCore\qatomic_mips.h \ - \epoc32\include\mw\QtCore\qatomic_parisc.h \ - \epoc32\include\mw\QtCore\qatomic_s390.h \ - \epoc32\include\mw\QtCore\qatomic_sparc.h \ - \epoc32\include\mw\QtCore\qatomic_windows.h \ - \epoc32\include\mw\QtCore\qatomic_windowsce.h \ - \epoc32\include\mw\QtCore\qatomic_symbian.h \ - ..\..\..\epoc32\include\e32std.h \ - ..\..\..\epoc32\include\e32cmn.h \ - ..\..\..\epoc32\include\e32const.h \ - ..\..\..\epoc32\include\e32err.h \ - ..\..\..\epoc32\include\e32lang.h \ - ..\..\..\epoc32\include\e32reg.h \ - ..\..\..\epoc32\include\e32capability.h \ - ..\..\..\epoc32\include\platform\e32const_private.h \ - ..\..\..\epoc32\include\stdapis\string.h \ - ..\..\..\epoc32\include\stdapis\strings.h \ - ..\..\..\epoc32\include\e32des8.h \ - ..\..\..\epoc32\include\platform\e32des8_private.h \ - ..\..\..\epoc32\include\e32des16.h \ - ..\..\..\epoc32\include\platform\e32des16_private.h \ - \epoc32\include\stdapis\stlportv5\exception \ - \epoc32\include\stdapis\stlportv5\exception_winscw.h \ - ..\..\..\epoc32\include\e32cmn.inl \ - ..\..\..\epoc32\include\platform\e32cmn_private.h \ - ..\..\..\epoc32\include\e32std.inl \ - ..\..\..\epoc32\include\platform\e32std_private.h \ - \epoc32\include\mw\QtCore\qatomic_sh.h \ - \epoc32\include\mw\QtCore\qatomic_sh4a.h \ - ..\..\..\epoc32\include\stdapis\stdarg.h \ - ..\..\..\epoc32\include\stdapis\stdarg_e.h \ - \epoc32\include\mw\Qt3Support\q3cstring.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\string \ - \epoc32\include\stdapis\stlportv5\stl\_prolog.h \ - \epoc32\include\stdapis\stlportv5\stl\config\features.h \ - \epoc32\include\stdapis\stlportv5\stl\_stlport_version.h \ - \epoc32\include\stdapis\stlportv5\stl\config\user_config.h \ - \epoc32\include\stdapis\stlportv5\stl\config\compat.h \ - \epoc32\include\stdapis\stlportv5\stl\config\host.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_system.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_gcc.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_mwerks.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_symbian.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_windows.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_rvct.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_winscw.h \ - \epoc32\include\stdapis\stlportv5\stl\config\stl_confix.h \ - \epoc32\include\stdapis\stlportv5\stl\config\_native_headers.h \ - \epoc32\include\stdapis\stlportv5\stl\_abbrevs.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstddef.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstdlib.h \ - ..\..\..\epoc32\include\stdapis\stdlib.h \ - \epoc32\include\stdapis\stlportv5\stl\_cmath.h \ - ..\..\..\epoc32\include\stdapis\math.h \ - \epoc32\include\stdapis\machine\_limits.h \ - ..\..\..\epoc32\include\stdapis\libm_aliases.h \ - ..\..\..\epoc32\include\stdapis\signgam.h \ - \epoc32\include\stdapis\stlportv5\stl\_cstring.h \ - \epoc32\include\stdapis\stlportv5\using\cstring \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\climits \ - ..\..\..\epoc32\include\stdapis\limits.h \ - \epoc32\include\stdapis\sys\limits.h \ - \epoc32\include\stdapis\sys\syslimits.h \ - \epoc32\include\stdapis\stlportv5\stl\_epilog.h \ - \epoc32\include\stdapis\stlportv5\stl\_config_compat_post.h \ - \epoc32\include\stdapis\stlportv5\stl\_pair.h \ - \epoc32\include\stdapis\stlportv5\stl\type_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_cwchar.h \ - \epoc32\include\stdapis\stlportv5\stl\_mbstate_t.h \ - ..\..\..\epoc32\include\stdapis\wchar.h \ - \epoc32\include\stdapis\sys\stat.h \ - \epoc32\include\stdapis\sys\time.h \ - \epoc32\include\stdapis\sys\_timeval.h \ - \epoc32\include\stdapis\sys\types.h \ - \epoc32\include\stdapis\machine\endian.h \ - \epoc32\include\stdapis\sys\_pthreadtypes.h \ - \epoc32\include\stdapis\sys\timespec.h \ - ..\..\..\epoc32\include\stdapis\time.h \ - \epoc32\include\stdapis\sys\_timespec.h \ - ..\..\..\epoc32\include\stdapis\_ctype.h \ - ..\..\..\epoc32\include\stdapis\stdio.h \ - ..\..\..\epoc32\include\stdapis\errno.h \ - \epoc32\include\stdapis\sys\dirent.h \ - \epoc32\include\stdapis\stlportv5\stl\type_manips.h \ - \epoc32\include\stdapis\boost\type_traits\add_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\is_reference.hpp \ - \epoc32\include\stdapis\boost\type_traits\config.hpp \ - \epoc32\include\stdapis\boost\config.hpp \ - \epoc32\include\stdapis\boost\config\select_compiler_config.hpp \ - \epoc32\include\stdapis\boost\config\select_stdlib_config.hpp \ - \epoc32\include\stdapis\boost\config\no_tr1\utility.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\utility \ - \epoc32\include\stdapis\stlportv5\stl\_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_ptrs_specialize.h \ - \epoc32\include\stdapis\stlportv5\stl\_iterator_old.h \ - \epoc32\include\stdapis\boost\config\select_platform_config.hpp \ - \epoc32\include\stdapis\boost\config\suffix.hpp \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstddef \ - \epoc32\include\stdapis\boost\type.hpp \ - \epoc32\include\stdapis\boost\detail\workaround.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\yes_no_type.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\template_arity_spec.hpp \ - \epoc32\include\stdapis\boost\mpl\int.hpp \ - \epoc32\include\stdapis\boost\mpl\int_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\adl_barrier.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\adl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\msvc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\intel.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\gcc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\workaround.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\nttp_decl.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\nttp.hpp \ - \epoc32\include\stdapis\boost\preprocessor\cat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\config\config.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\integral_wrapper.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_tag.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\static_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\static_cast.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\template_arity_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\params.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\preprocessor.hpp \ - \epoc32\include\stdapis\boost\preprocessor\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma_if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\if.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\bool.hpp \ - \epoc32\include\stdapis\boost\preprocessor\facilities\empty.hpp \ - \epoc32\include\stdapis\boost\preprocessor\punctuation\comma.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\repeat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\debug\error.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\auto_rec.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\eat.hpp \ - \epoc32\include\stdapis\boost\preprocessor\inc.hpp \ - \epoc32\include\stdapis\boost\preprocessor\arithmetic\inc.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\lambda.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ttp.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\ctps.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\overload_resolution.hpp \ - \epoc32\include\stdapis\boost\type_traits\integral_constant.hpp \ - \epoc32\include\stdapis\boost\mpl\bool.hpp \ - \epoc32\include\stdapis\boost\mpl\bool_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c.hpp \ - \epoc32\include\stdapis\boost\mpl\integral_c_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\lambda_support.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\yes_no.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\config\arrays.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\na_fwd.hpp \ - \epoc32\include\stdapis\boost\mpl\aux_\preprocessor\enum.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\to_list.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\for_each_i.hpp \ - \epoc32\include\stdapis\boost\preprocessor\list\adt.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\is_binary.hpp \ - \epoc32\include\stdapis\boost\preprocessor\detail\check.hpp \ - \epoc32\include\stdapis\boost\preprocessor\logical\compl.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\edg\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\repetition\detail\for.hpp \ - \epoc32\include\stdapis\boost\preprocessor\control\expr_iif.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\elem.hpp \ - \epoc32\include\stdapis\boost\preprocessor\tuple\rem.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\bool_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_def.hpp \ - \epoc32\include\stdapis\boost\type_traits\detail\type_trait_undef.hpp \ - \epoc32\include\stdapis\boost\type_traits\add_const.hpp \ - \epoc32\include\stdapis\stlportv5\stl\_move_construct_fwk.h \ - \epoc32\include\stdapis\stlportv5\stl\_algobase.c \ - \epoc32\include\stdapis\stlportv5\stl\_cstdio.h \ - \epoc32\include\stdapis\stlportv5\stl\_new.h \ - \epoc32\include\stdapis\stlportv5\stl\_exception.h \ - \epoc32\include\stdapis\stlportv5\stl\_construct.h \ - \epoc32\include\stdapis\stlportv5\stl\_pthread_alloc.h \ - \epoc32\include\stdapis\stlportv5\stl\_alloc.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_fwd.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iosfwd \ - \epoc32\include\stdapis\stlportv5\stl\_iosfwd.h \ - \epoc32\include\stdapis\stlportv5\stl\char_traits.h \ - \epoc32\include\stdapis\stlportv5\stl\_function_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_uninitialized.h \ - \epoc32\include\stdapis\stlportv5\stl\msl_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_npos.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_operators.h \ - \epoc32\include\stdapis\stlportv5\stl\_string.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctraits_fns.h \ - \epoc32\include\stdapis\stlportv5\stl\_range_errors.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept.h \ - \epoc32\include\stdapis\stlportv5\stl\_stdexcept_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_hash.h \ - \epoc32\include\stdapis\stlportv5\stl\_hash_fun.h \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios_base.h \ - \epoc32\include\stdapis\stlportv5\stl\_locale.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.h \ - ..\..\..\epoc32\include\e32atomics.h \ - ..\..\..\epoc32\include\stdapis\pthread.h \ - ..\..\..\epoc32\include\stdapis\pthreadtypes.h \ - ..\..\..\epoc32\include\stdapis\sched.h \ - ..\..\..\epoc32\include\stdapis\pthreadalias.h \ - \epoc32\include\stdapis\stlportv5\stl\_ctime.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cstdio \ - ..\..\..\epoc32\include\stdapis\stlportv5\cwchar \ - ..\..\..\epoc32\include\stdapis\stlportv5\cassert \ - ..\..\..\epoc32\include\stdapis\assert.h \ - \epoc32\include\stdapis\stlportv5\stl\_threads.c \ - \epoc32\include\stdapis\stlportv5\stl\_ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\c_locale.h \ - ..\..\..\epoc32\include\stdapis\ctype.h \ - \epoc32\include\stdapis\stlportv5\stl\_numpunct.h \ - \epoc32\include\stdapis\stlportv5\stl\_ios.c \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.h \ - \epoc32\include\stdapis\stlportv5\stl\_streambuf.c \ - \epoc32\include\stdapis\stlportv5\stl\_ostreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_ostream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.h \ - \epoc32\include\stdapis\stlportv5\stl\_iostream_string.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_put.c \ - \epoc32\include\stdapis\stlportv5\stl\_limits.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\cfloat \ - ..\..\..\epoc32\include\stdapis\float.h \ - \epoc32\include\stdapis\stlportv5\stl\_limits.c \ - \epoc32\include\stdapis\stlportv5\stl\_istream.h \ - \epoc32\include\stdapis\stlportv5\stl\_istreambuf_iterator.h \ - \epoc32\include\stdapis\stlportv5\stl\_istream.c \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.h \ - \epoc32\include\stdapis\stlportv5\stl\_num_get.c \ - \epoc32\include\stdapis\stlportv5\stl\_string_io.c \ - \epoc32\include\mw\QtCore\qstringbuilder.h \ - \epoc32\include\mw\QtCore\qmap.h \ - \epoc32\include\mw\QtCore\qiterator.h \ - \epoc32\include\mw\QtCore\qlist.h \ - \epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\iterator \ - \epoc32\include\stdapis\stlportv5\stl\_stream_iterator.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\list \ - \epoc32\include\stdapis\stlportv5\stl\_list.h \ - \epoc32\include\stdapis\stlportv5\stl\_list.c \ - \epoc32\include\stdapis\stlportv5\stl\_carray.h \ - \epoc32\include\stdapis\stlportv5\stl\_relops_cont.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\new \ - ..\..\..\epoc32\include\stdapis\stlportv5\exception \ - ..\..\..\epoc32\include\stdapis\stlportv5\map \ - \epoc32\include\stdapis\stlportv5\stl\_map.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.h \ - \epoc32\include\stdapis\stlportv5\stl\_tree.c \ - \epoc32\include\mw\QtCore\qcoreevent.h \ - \epoc32\include\mw\QtCore\qscopedpointer.h \ - \epoc32\include\mw\QtCore\qstringlist.h \ - \epoc32\include\mw\QtCore\qdatastream.h \ - \epoc32\include\mw\QtCore\qiodevice.h \ - \epoc32\include\mw\QtCore\qregexp.h \ - \epoc32\include\mw\QtCore\qstringmatcher.h \ - \epoc32\include\mw\Qt3Support\q3valuelist.h \ - \epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qpluginloader.h \ - \epoc32\include\mw\QtCore\qlibrary.h \ - ..\..\..\epoc32\include\mw\QtCore\quuid.h \ - ..\..\..\epoc32\include\mw\QtCore\qalgorithms.h \ - ..\..\..\epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearray.h \ - ..\..\..\epoc32\include\mw\QtCore\qbytearraymatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qcache.h \ - \epoc32\include\mw\QtCore\qhash.h \ - \epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qchar.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qcontiguouscache.h \ - ..\..\..\epoc32\include\mw\QtCore\qcryptographichash.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatetime.h \ - \epoc32\include\mw\QtCore\qsharedpointer.h \ - \epoc32\include\mw\QtCore\qshareddata.h \ - \epoc32\include\mw\QtCore\qsharedpointer_impl.h \ - ..\..\..\epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qelapsedtimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qhash.h \ - ..\..\..\epoc32\include\mw\QtCore\qiterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qlinkedlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qlocale.h \ - ..\..\..\epoc32\include\mw\QtCore\qmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qmargins.h \ - ..\..\..\epoc32\include\mw\QtCore\qpair.h \ - ..\..\..\epoc32\include\mw\QtCore\qpoint.h \ - ..\..\..\epoc32\include\mw\QtCore\qqueue.h \ - ..\..\..\epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qregexp.h \ - ..\..\..\epoc32\include\mw\QtCore\qscopedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qset.h \ - ..\..\..\epoc32\include\mw\QtCore\qshareddata.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsize.h \ - ..\..\..\epoc32\include\mw\QtCore\qstack.h \ - \epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\stdapis\stlportv5\vector \ - \epoc32\include\stdapis\stlportv5\stl\_vector.h \ - \epoc32\include\stdapis\stlportv5\stl\_vector.c \ - \epoc32\include\stdapis\stlportv5\stl\_bvector.h \ - \epoc32\include\mw\QtCore\QPointF \ - \epoc32\include\mw\QtCore\QPoint \ - ..\..\..\epoc32\include\mw\QtCore\qstring.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringbuilder.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringlist.h \ - ..\..\..\epoc32\include\mw\QtCore\qstringmatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextboundaryfinder.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimeline.h \ - \epoc32\include\mw\QtCore\qeasingcurve.h \ - ..\..\..\epoc32\include\mw\QtCore\qvarlengtharray.h \ - \epoc32\include\mw\QtCore\qcontainerfwd.h \ - ..\..\..\epoc32\include\mw\QtCore\qvector.h \ - ..\..\..\epoc32\include\mw\QtCore\qxmlstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventtransition.h \ - \epoc32\include\mw\QtCore\qabstracttransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qfinalstate.h \ - \epoc32\include\mw\QtCore\qabstractstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qhistorystate.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignaltransition.h \ - ..\..\..\epoc32\include\mw\QtCore\qstate.h \ - ..\..\..\epoc32\include\mw\QtCore\qstatemachine.h \ - \epoc32\include\mw\QtCore\qstate.h \ - \epoc32\include\mw\QtCore\qset.h \ - \epoc32\include\mw\QtCore\qvariant.h \ - \epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuture.h \ - \epoc32\include\mw\QtCore\qfutureinterface.h \ - \epoc32\include\mw\QtCore\qrunnable.h \ - \epoc32\include\mw\QtCore\qmutex.h \ - \epoc32\include\mw\QtCore\qtconcurrentexception.h \ - \epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - \epoc32\include\mw\QtCore\qdebug.h \ - \epoc32\include\mw\QtCore\qtextstream.h \ - \epoc32\include\mw\QtCore\qlocale.h \ - \epoc32\include\mw\QtCore\qtextcodec.h \ - \epoc32\include\mw\QtCore\qcontiguouscache.h \ - \epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qfutureinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturesynchronizer.h \ - \epoc32\include\mw\QtCore\qfuture.h \ - ..\..\..\epoc32\include\mw\QtCore\qfuturewatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qrunnable.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentcompilertest.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentexception.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilter.h \ - \epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - \epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - \epoc32\include\mw\QtCore\qthreadpool.h \ - \epoc32\include\mw\QtCore\qthread.h \ - \epoc32\include\mw\QtCore\qwaitcondition.h \ - \epoc32\include\mw\QtCore\qsemaphore.h \ - \epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - \epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfilterkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentfunctionwrappers.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentiteratekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmap.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmapkernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentmedian.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentreducekernel.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentresultstore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrun.h \ - \epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - \epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentrunbase.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentstoredfunctioncall.h \ - ..\..\..\epoc32\include\mw\QtCore\qtconcurrentthreadengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadpool.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodec.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextcodecplugin.h \ - \epoc32\include\mw\QtCore\qplugin.h \ - \epoc32\include\mw\QtCore\qfactoryinterface.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qanimationgroup.h \ - \epoc32\include\mw\QtCore\qabstractanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qparallelanimationgroup.h \ - \epoc32\include\mw\QtCore\qanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qpauseanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qpropertyanimation.h \ - \epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qsequentialanimationgroup.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariantanimation.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractfileengine.h \ - \epoc32\include\mw\QtCore\qdir.h \ - \epoc32\include\mw\QtCore\qfileinfo.h \ - \epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtCore\qdatastream.h \ - ..\..\..\epoc32\include\mw\QtCore\qdebug.h \ - ..\..\..\epoc32\include\mw\QtCore\qdir.h \ - ..\..\..\epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtCore\qfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qfileinfo.h \ - ..\..\..\epoc32\include\mw\QtCore\qfilesystemwatcher.h \ - ..\..\..\epoc32\include\mw\QtCore\qfsfileengine.h \ - \epoc32\include\mw\QtCore\qabstractfileengine.h \ - ..\..\..\epoc32\include\mw\QtCore\qiodevice.h \ - ..\..\..\epoc32\include\mw\QtCore\qprocess.h \ - ..\..\..\epoc32\include\mw\QtCore\qresource.h \ - ..\..\..\epoc32\include\mw\QtCore\qsettings.h \ - ..\..\..\epoc32\include\mw\QtCore\qtemporaryfile.h \ - ..\..\..\epoc32\include\mw\QtCore\qtextstream.h \ - ..\..\..\epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtCore\qatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasicatomic.h \ - ..\..\..\epoc32\include\mw\QtCore\qmutex.h \ - ..\..\..\epoc32\include\mw\QtCore\qreadwritelock.h \ - ..\..\..\epoc32\include\mw\QtCore\qsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qthread.h \ - ..\..\..\epoc32\include\mw\QtCore\qthreadstorage.h \ - ..\..\..\epoc32\include\mw\QtCore\qwaitcondition.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstracteventdispatcher.h \ - \epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreapplication.h \ - ..\..\..\epoc32\include\mw\QtCore\qcoreevent.h \ - ..\..\..\epoc32\include\mw\QtCore\qeventloop.h \ - ..\..\..\epoc32\include\mw\QtCore\qmath.h \ - ..\..\..\epoc32\include\e32math.h \ - ..\..\..\epoc32\include\e32math.inl \ - ..\..\..\epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qmetatype.h \ - ..\..\..\epoc32\include\mw\QtCore\qmimedata.h \ - ..\..\..\epoc32\include\mw\QtCore\qobject.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectcleanuphandler.h \ - ..\..\..\epoc32\include\mw\QtCore\qobjectdefs.h \ - ..\..\..\epoc32\include\mw\QtCore\qpointer.h \ - ..\..\..\epoc32\include\mw\QtCore\qsharedmemory.h \ - ..\..\..\epoc32\include\mw\QtCore\qsignalmapper.h \ - ..\..\..\epoc32\include\mw\QtCore\qsocketnotifier.h \ - ..\..\..\epoc32\include\mw\QtCore\qsystemsemaphore.h \ - ..\..\..\epoc32\include\mw\QtCore\qtimer.h \ - \epoc32\include\mw\QtCore\qbasictimer.h \ - ..\..\..\epoc32\include\mw\QtCore\qtranslator.h \ - ..\..\..\epoc32\include\mw\QtCore\qvariant.h \ - ..\..\..\epoc32\include\mw\QtCore\qendian.h \ - ..\..\..\epoc32\include\mw\QtCore\qfeatures.h \ - ..\..\..\epoc32\include\mw\QtCore\qglobal.h \ - ..\..\..\epoc32\include\mw\QtCore\qlibraryinfo.h \ - \epoc32\include\mw\QtCore\QDate \ - ..\..\..\epoc32\include\mw\QtCore\qnamespace.h \ - ..\..\..\epoc32\include\mw\QtCore\qnumeric.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainapplication.h \ - ..\..\..\epoc32\include\platform\mw\aknapp.h \ - ..\..\..\epoc32\include\mw\eikapp.h \ - ..\..\..\epoc32\include\mw\apparc.h \ - ..\..\..\epoc32\include\e32base.h \ - ..\..\..\epoc32\include\e32base.inl \ - ..\..\..\epoc32\include\platform\e32base_private.h \ - ..\..\..\epoc32\include\f32file.h \ - ..\..\..\epoc32\include\platform\e32svr.h \ - ..\..\..\epoc32\include\platform\e32hal.h \ - ..\..\..\epoc32\include\platform\d32locd.h \ - ..\..\..\epoc32\include\platform\partitions.h \ - ..\..\..\epoc32\include\platform\d32locd.inl \ - ..\..\..\epoc32\include\platform\e32notif.h \ - ..\..\..\epoc32\include\e32ldr.h \ - ..\..\..\epoc32\include\platform\e32ldr_private.h \ - ..\..\..\epoc32\include\e32event.h \ - ..\..\..\epoc32\include\platform\e32btrace.h \ - ..\..\..\epoc32\include\platform\e32event_private.h \ - ..\..\..\epoc32\include\platform\e32ktran.h \ - ..\..\..\epoc32\include\e32keys.h \ - ..\..\..\epoc32\include\e32debug.h \ - ..\..\..\epoc32\include\platform\e32lmsg.h \ - ..\..\..\epoc32\include\f32file64.h \ - ..\..\..\epoc32\include\f32file64.inl \ - ..\..\..\epoc32\include\f32file.inl \ - ..\..\..\epoc32\include\platform\f32file_private.h \ - ..\..\..\epoc32\include\gdi.h \ - ..\..\..\epoc32\include\s32std.h \ - ..\..\..\epoc32\include\s32strm.h \ - ..\..\..\epoc32\include\s32strm.inl \ - ..\..\..\epoc32\include\s32std.inl \ - ..\..\..\epoc32\include\displaymode.h \ - \epoc32\include\platform\graphics\gdi\glyphsample.h \ - \epoc32\include\platform\graphics\gdi\gdiconsts.h \ - \epoc32\include\platform\graphics\gdi\gdistructs.h \ - \epoc32\include\platform\graphics\gdi\gdiinline.inl \ - ..\..\..\epoc32\include\gdi.inl \ - ..\..\..\epoc32\include\mw\apadef.h \ - ..\..\..\epoc32\include\mw\apaid.h \ - ..\..\..\epoc32\include\apmstd.h \ - ..\..\..\epoc32\include\mw\apaapp.h \ - ..\..\..\epoc32\include\mw\apadoc.h \ - ..\..\..\epoc32\include\mw\apaproc.h \ - ..\..\..\epoc32\include\mw\apaflrec.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60mainappui.h \ - ..\..\..\epoc32\include\platform\mw\aknappui.h \ - ..\..\..\epoc32\include\mw\eikappui.h \ - ..\..\..\epoc32\include\mw\coeaui.h \ - ..\..\..\epoc32\include\w32std.h \ - ..\..\..\epoc32\include\fntstore.h \ - ..\..\..\epoc32\include\openfont.h \ - \epoc32\include\ecom\ecom.h \ - \epoc32\include\ecom\ecomerrorcodes.h \ - \epoc32\include\platform\ecom\ecomextendedinterfaceerrorcodes.h \ - \epoc32\include\ecom\ecomresolverparams.h \ - \epoc32\include\ecom\ecomresolverparams.inl \ - \epoc32\include\ecom\implementationinformation.h \ - \epoc32\include\ecom\implementationinformation.inl \ - ..\..\..\epoc32\include\linkedfonts.h \ - \epoc32\include\platform\graphics\openfontconstants.h \ - \epoc32\include\platform\graphics\openfontrasterizer.h \ - ..\..\..\epoc32\include\openfontlinkedtypefaceelementspec.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefacespecification.h \ - \epoc32\include\platform\graphics\openfontlinkedtypefaceextension.h \ - ..\..\..\epoc32\include\bitdev.h \ - ..\..\..\epoc32\include\fbs.h \ - ..\..\..\epoc32\include\bitmap.h \ - \epoc32\include\platform\graphics\bitmapuid.h \ - \epoc32\include\graphics\fbsdefs.h \ - ..\..\..\epoc32\include\bitbase.h \ - ..\..\..\epoc32\include\bitstd.h \ - ..\..\..\epoc32\include\graphicsaccelerator.h \ - ..\..\..\epoc32\include\bitdev.inl \ - ..\..\..\epoc32\include\textcursor.h \ - ..\..\..\epoc32\include\pointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.h \ - ..\..\..\epoc32\include\advancedpointerevent.inl \ - ..\..\..\epoc32\include\sizemode.h \ - ..\..\..\epoc32\include\babitflags.h \ - ..\..\..\epoc32\include\wspublishandsubscribedata.h \ - \epoc32\include\platform\graphics\pointereventdata.h \ - ..\..\..\epoc32\include\mw\coedef.h \ - ..\..\..\epoc32\include\mw\guldef.h \ - \epoc32\include\platform\mw\graphics\cone\coedefkeys.h \ - ..\..\..\epoc32\include\mw\coehelp.h \ - ..\..\..\epoc32\include\mw\coeview.h \ - ..\..\..\epoc32\include\mw\vwsdef.h \ - ..\..\..\epoc32\include\mw\coemain.h \ - ..\..\..\epoc32\include\barsc.h \ - ..\..\..\epoc32\include\badesca.h \ - ..\..\..\epoc32\include\bamdesca.h \ - ..\..\..\epoc32\include\basched.h \ - ..\..\..\epoc32\include\mw\coemop.h \ - ..\..\..\epoc32\include\mw\coetextdrawer.h \ - ..\..\..\epoc32\include\mw\gulutil.h \ - ..\..\..\epoc32\include\mw\gulbordr.h \ - \epoc32\include\platform\mw\graphics\uigraphicsutils\gullogicalborder.h \ - ..\..\..\epoc32\include\gulftflg.hrh \ - ..\..\..\epoc32\include\mw\gulalign.h \ - ..\..\..\epoc32\include\biditext.h \ - ..\..\..\epoc32\include\bidi.h \ - ..\..\..\epoc32\include\txtfrmat.h \ - ..\..\..\epoc32\include\txtfrmat.inl \ - \epoc32\include\platform\systemmonitor\raiseevent.h \ - \epoc32\include\systemmonitor\instrumentationhandler.h \ - \epoc32\include\systemmonitor\configuration.h \ - \epoc32\include\systemmonitor\systemmonitorerrors.h \ - \epoc32\include\systemmonitor\recordtypes.h \ - \epoc32\include\systemmonitor\systemmonitor.h \ - \epoc32\include\systemmonitor\eventlog.h \ - \epoc32\include\systemmonitor\locking.h \ - \epoc32\include\platform\mw\graphics\cone\coescheduler.h \ - ..\..\..\epoc32\include\mw\coemain.inl \ - ..\..\..\epoc32\include\mw\coeinput.h \ - ..\..\..\epoc32\include\mw\eikmobs.h \ - ..\..\..\epoc32\include\mw\eikcmobs.h \ - ..\..\..\epoc32\include\mw\eikdef.h \ - \epoc32\include\platform\mw\uikon\eikdefconst.h \ - \epoc32\include\platform\mw\uikon\eikdefmacros.h \ - ..\..\..\epoc32\include\baerrhan.h \ - ..\..\..\epoc32\include\mw\eikaufty.h \ - ..\..\..\epoc32\include\platform\mw\eikspane.h \ - ..\..\..\epoc32\include\platform\mw\eikspmod.h \ - ..\..\..\epoc32\include\uikon.hrh \ - \epoc32\include\uiklaf\private\pluginuid.hrh \ - ..\..\..\epoc32\include\platform\mw\eiksrvc.h \ - ..\..\..\epoc32\include\platform\mw\eiksrvs.h \ - ..\..\..\epoc32\include\mw\eikenv.h \ - ..\..\..\epoc32\include\mw\apacmdln.h \ - ..\..\..\epoc32\include\mw\gulcolor.h \ - ..\..\..\epoc32\include\mw\eikamnt.h \ - \epoc32\include\platform\mw\uikon\eikautomenutitlearray.h \ - ..\..\..\epoc32\include\platform\mw\lafmain.h \ - ..\..\..\epoc32\include\frmtlay.h \ - ..\..\..\epoc32\include\txtetext.h \ - ..\..\..\epoc32\include\platform\fldset.h \ - ..\..\..\epoc32\include\fldinfo.h \ - ..\..\..\epoc32\include\fldbase.h \ - ..\..\..\epoc32\include\s32stor.h \ - ..\..\..\epoc32\include\s32share.h \ - ..\..\..\epoc32\include\s32buf.h \ - ..\..\..\epoc32\include\s32buf.inl \ - ..\..\..\epoc32\include\s32share.inl \ - ..\..\..\epoc32\include\s32page.h \ - ..\..\..\epoc32\include\s32page.inl \ - ..\..\..\epoc32\include\s32stor.inl \ - ..\..\..\epoc32\include\fldbltin.h \ - ..\..\..\epoc32\include\platform\txtetext_internal.h \ - ..\..\..\epoc32\include\platform\txtclipboard.h \ - ..\..\..\epoc32\include\txtetext.inl \ - ..\..\..\epoc32\include\frmlaydt.h \ - ..\..\..\epoc32\include\frmparam.h \ - ..\..\..\epoc32\include\frmvis.h \ - ..\..\..\epoc32\include\tagma.h \ - ..\..\..\epoc32\include\txtstyle.h \ - ..\..\..\epoc32\include\txtfmlyr.h \ - ..\..\..\epoc32\include\txtfmstm.h \ - ..\..\..\epoc32\include\platform\txtfmlyr_internal.h \ - ..\..\..\epoc32\include\txtfmlyr.inl \ - ..\..\..\epoc32\include\txtstyle.inl \ - ..\..\..\epoc32\include\linebreak.h \ - ..\..\..\epoc32\include\platform\tagma_internal.h \ - ..\..\..\epoc32\include\platform\tagmalayoutandsource.h \ - ..\..\..\epoc32\include\mw\eikvcurs.h \ - ..\..\..\epoc32\include\platform\mw\eikpicturefactory.h \ - ..\..\..\epoc32\include\platform\mw\eikdgfty.h \ - ..\..\..\epoc32\include\platform\mw\eiklibry.h \ - ..\..\..\epoc32\include\mw\eikfctry.h \ - \epoc32\include\platform\mw\uikon\eikctrlstatus.h \ - ..\..\..\epoc32\include\mw\eikenv.inl \ - \epoc32\include\platform\mw\uikon\eikenvinterface.h \ - \epoc32\include\platform\mw\uikon\eikenvinterface.inl \ - ..\..\..\epoc32\include\platform\mw\eiksrv.pan \ - ..\..\..\epoc32\include\mw\apgtask.h \ - ..\..\..\epoc32\include\platform\mw\eiksrv.h \ - ..\..\..\epoc32\include\platform\mw\vwsappst.h \ - ..\..\..\epoc32\include\mw\eikunder.h \ - ..\..\..\epoc32\include\platform\mw\eikcycledef.h \ - ..\..\..\epoc32\include\mw\coecntrl.h \ - ..\..\..\epoc32\include\mw\coecobs.h \ - ..\..\..\epoc32\include\mw\coefont.h \ - ..\..\..\epoc32\include\mw\coecontrolarray.h \ - ..\..\..\epoc32\include\mw\coecoloruse.h \ - ..\..\..\epoc32\include\platform\mw\eikcba.h \ - ..\..\..\epoc32\include\platform\mw\eikctgrp.h \ - ..\..\..\epoc32\include\platform\mw\eikbctrl.h \ - ..\..\..\epoc32\include\platform\mw\AknControl.h \ - ..\..\..\epoc32\include\platform\mw\lafpublc.h \ - ..\..\..\epoc32\include\platform\mw\eikbtgrp.h \ - ..\..\..\epoc32\include\platform\mw\eiksbobs.h \ - ..\..\..\epoc32\include\platform\mw\eiksbfrm.h \ - ..\..\..\epoc32\include\platform\mw\aknscrlb.h \ - ..\..\..\epoc32\include\platform\mw\eikscrlb.h \ - ..\..\..\epoc32\include\platform\mw\aknscbut.h \ - ..\..\..\epoc32\include\platform\mw\eikimage.h \ - ..\..\..\epoc32\include\platform\mw\eikalign.h \ - ..\..\..\epoc32\include\mw\AknsItemData.h \ - ..\..\..\epoc32\include\mw\AknsItemID.h \ - ..\..\..\epoc32\include\mw\AknsItemID.inl \ - ..\..\..\epoc32\include\mw\AknsRlEffect.h \ - ..\..\..\epoc32\include\mw\AknsRlEffectContext.h \ - ..\..\..\epoc32\include\mw\AknsRlParameter.h \ - ..\..\..\epoc32\include\platform\mw\avkon.hrh \ - ..\..\..\epoc32\include\platform\mw\eikon.hrh \ - ..\..\..\epoc32\include\platform\mw\lafpublc.hrh \ - ..\..\..\epoc32\include\eikcolor.hrh \ - ..\..\..\epoc32\include\mw\AknFontCategory.hrh \ - ..\..\..\epoc32\include\mw\AknFontIdOffsets.hrh \ - ..\..\..\epoc32\include\platform\mw\AknDef.h \ - ..\..\..\epoc32\include\platform\mw\AknDef.hrh \ - ..\..\..\epoc32\include\mw\akntouchpaneobserver.h \ - ..\..\..\epoc32\include\mw\QtGui\qs60maindocument.h \ - ..\..\..\epoc32\include\platform\mw\AknDoc.h \ - ..\..\..\epoc32\include\mw\eikdoc.h \ - ..\..\..\epoc32\include\platform\savenotf.h \ - \epoc32\include\platform\mw\uikon\eikdefaulticondefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible.h \ - \epoc32\include\mw\QtCore\qrect.h \ - \epoc32\include\mw\QtGui\qcolor.h \ - \epoc32\include\mw\QtGui\qrgb.h \ - \epoc32\include\mw\QtGui\qevent.h \ - \epoc32\include\mw\QtGui\qwindowdefs.h \ - \epoc32\include\mw\QtGui\qmacdefines_mac.h \ - \epoc32\include\mw\QtGui\qwindowdefs_win.h \ - \epoc32\include\mw\QtGui\qregion.h \ - \epoc32\include\mw\QtGui\qkeysequence.h \ - \epoc32\include\mw\QtGui\qmime.h \ - \epoc32\include\mw\QtCore\qmimedata.h \ - \epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessible2.h \ - \epoc32\include\mw\QtGui\qaccessible.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblebridge.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessibleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qaccessiblewidget.h \ - \epoc32\include\mw\QtGui\qaccessibleobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qcompleter.h \ - \epoc32\include\mw\QtCore\qabstractitemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopservices.h \ - ..\..\..\epoc32\include\mw\QtGui\qsystemtrayicon.h \ - \epoc32\include\mw\QtGui\qicon.h \ - \epoc32\include\mw\QtGui\qpixmap.h \ - \epoc32\include\mw\QtGui\qpaintdevice.h \ - \epoc32\include\mw\QtGui\qimage.h \ - \epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\qmatrix.h \ - \epoc32\include\mw\QtGui\qpolygon.h \ - \epoc32\include\mw\QtCore\qline.h \ - \epoc32\include\mw\QtGui\qwmatrix.h \ - \epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qundogroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qundostack.h \ - ..\..\..\epoc32\include\mw\QtGui\qundoview.h \ - \epoc32\include\mw\QtGui\qlistview.h \ - \epoc32\include\mw\QtGui\qabstractitemview.h \ - \epoc32\include\mw\QtGui\qabstractscrollarea.h \ - \epoc32\include\mw\QtGui\qframe.h \ - \epoc32\include\mw\QtGui\qwidget.h \ - \epoc32\include\mw\QtCore\qmargins.h \ - \epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\qbrush.h \ - \epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\qfontmetrics.h \ - \epoc32\include\mw\QtGui\qfontinfo.h \ - \epoc32\include\mw\QtGui\qsizepolicy.h \ - \epoc32\include\mw\QtGui\qcursor.h \ - \epoc32\include\mw\QtGui\qitemselectionmodel.h \ - \epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - \epoc32\include\mw\QtGui\qstyleoption.h \ - \epoc32\include\mw\QtGui\qabstractspinbox.h \ - \epoc32\include\mw\QtGui\qvalidator.h \ - \epoc32\include\mw\QtGui\qslider.h \ - \epoc32\include\mw\QtGui\qabstractslider.h \ - \epoc32\include\mw\QtGui\qstyle.h \ - \epoc32\include\mw\QtGui\qtabbar.h \ - \epoc32\include\mw\QtGui\qtabwidget.h \ - \epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsanchorlayout.h \ - \epoc32\include\mw\QtGui\qgraphicsitem.h \ - \epoc32\include\mw\QtGui\qgraphicslayout.h \ - \epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsitemanimation.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicslinearlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsproxywidget.h \ - \epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsscene.h \ - \epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicssceneevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicstransform.h \ - \epoc32\include\mw\QtCore\QObject \ - \epoc32\include\mw\QtGui\QVector3D \ - ..\..\..\epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\QTransform \ - ..\..\..\epoc32\include\mw\QtGui\qtransform.h \ - \epoc32\include\mw\QtGui\QMatrix4x4 \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix4x4.h \ - \epoc32\include\mw\QtGui\qvector3d.h \ - \epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtGui\qquaternion.h \ - \epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicsview.h \ - \epoc32\include\mw\QtGui\qpainter.h \ - \epoc32\include\mw\QtGui\qtextoption.h \ - \epoc32\include\mw\QtGui\qdrawutil.h \ - \epoc32\include\mw\QtGui\qscrollarea.h \ - \epoc32\include\mw\QtGui\qgraphicsscene.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicswidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qcdestyle.h \ - \epoc32\include\mw\QtGui\qmotifstyle.h \ - \epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcleanlooksstyle.h \ - \epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommonstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qgtkstyle.h \ - \epoc32\include\mw\QtGui\QCleanlooksStyle \ - \epoc32\include\mw\QtGui\QPalette \ - ..\..\..\epoc32\include\mw\QtGui\qpalette.h \ - \epoc32\include\mw\QtGui\QFont \ - ..\..\..\epoc32\include\mw\QtGui\qfont.h \ - \epoc32\include\mw\QtGui\QFileDialog \ - ..\..\..\epoc32\include\mw\QtGui\qfiledialog.h \ - \epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qmotifstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qplastiquestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxystyle.h \ - \epoc32\include\mw\QtGui\QCommonStyle \ - ..\..\..\epoc32\include\mw\QtGui\qs60style.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylefactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowscestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsmobilestyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsvistastyle.h \ - \epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowsxpstyle.h \ - ..\..\..\epoc32\include\mw\QtGui\qvfbhdr.h \ - ..\..\..\epoc32\include\mw\QtGui\qwsembedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontext.h \ - \epoc32\include\mw\QtGui\qaction.h \ - \epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextfactory.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputcontextplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qgraphicseffect.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qbuttongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qcalendarwidget.h \ - \epoc32\include\mw\QtCore\qdatetime.h \ - ..\..\..\epoc32\include\mw\QtGui\qcheckbox.h \ - \epoc32\include\mw\QtGui\qabstractbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qcombobox.h \ - ..\..\..\epoc32\include\mw\QtGui\qcommandlinkbutton.h \ - \epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatetimeedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qdial.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialogbuttonbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qdockwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qfocusframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontcombobox.h \ - \epoc32\include\mw\QtGui\qcombobox.h \ - \epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qframe.h \ - ..\..\..\epoc32\include\mw\QtGui\qgroupbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qlabel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlcdnumber.h \ - \epoc32\include\mw\QtCore\qbitarray.h \ - ..\..\..\epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmainwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdiarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qmdisubwindow.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenubar.h \ - \epoc32\include\mw\QtGui\qmenu.h \ - ..\..\..\epoc32\include\mw\QtGui\qmenudata.h \ - ..\..\..\epoc32\include\mw\QtGui\qplaintextedit.h \ - \epoc32\include\mw\QtGui\qtextedit.h \ - \epoc32\include\mw\QtGui\qtextdocument.h \ - \epoc32\include\mw\QtGui\qtextcursor.h \ - \epoc32\include\mw\QtGui\qtextformat.h \ - \epoc32\include\mw\QtGui\qtextobject.h \ - \epoc32\include\mw\QtGui\qtextlayout.h \ - \epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewwidget.h \ - \epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qpushbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qradiobutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qrubberband.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollarea.h \ - ..\..\..\epoc32\include\mw\QtGui\qscrollbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizegrip.h \ - ..\..\..\epoc32\include\mw\QtGui\qslider.h \ - ..\..\..\epoc32\include\mw\QtGui\qspinbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplashscreen.h \ - ..\..\..\epoc32\include\mw\QtGui\qsplitter.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatusbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtabwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextbrowser.h \ - \epoc32\include\mw\QtCore\qurl.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbar.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbox.h \ - ..\..\..\epoc32\include\mw\QtGui\qtoolbutton.h \ - ..\..\..\epoc32\include\mw\QtGui\qvalidator.h \ - ..\..\..\epoc32\include\mw\QtGui\qworkspace.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeyeventtransition.h \ - \epoc32\include\mw\QtCore\qeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qmouseeventtransition.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractitemview.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolumnview.h \ - ..\..\..\epoc32\include\mw\QtGui\qdatawidgetmapper.h \ - ..\..\..\epoc32\include\mw\QtGui\qdirmodel.h \ - \epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qfileiconprovider.h \ - ..\..\..\epoc32\include\mw\QtGui\qheaderview.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemeditorfactory.h \ - \epoc32\include\mw\QtCore\qmetaobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qitemselectionmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistview.h \ - ..\..\..\epoc32\include\mw\QtGui\qlistwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qsortfilterproxymodel.h \ - \epoc32\include\mw\QtGui\qabstractproxymodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstandarditemmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstringlistmodel.h \ - ..\..\..\epoc32\include\mw\QtGui\qstyleditemdelegate.h \ - ..\..\..\epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtablewidget.h \ - \epoc32\include\mw\QtGui\qtableview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreeview.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidget.h \ - \epoc32\include\mw\QtGui\qtreeview.h \ - \epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qtreewidgetitemiterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstracttextdocumentlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdatabase.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontinfo.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontmetrics.h \ - ..\..\..\epoc32\include\mw\QtGui\qstatictext.h \ - ..\..\..\epoc32\include\mw\QtGui\qsyntaxhighlighter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocument.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentfragment.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextdocumentwriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextformat.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextlist.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextobject.h \ - ..\..\..\epoc32\include\mw\QtGui\qtextoption.h \ - ..\..\..\epoc32\include\mw\QtGui\qtexttable.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolordialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qerrormessage.h \ - ..\..\..\epoc32\include\mw\QtGui\qfilesystemmodel.h \ - \epoc32\include\mw\QtCore\qdiriterator.h \ - ..\..\..\epoc32\include\mw\QtGui\qfontdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qinputdialog.h \ - \epoc32\include\mw\QtGui\qlineedit.h \ - ..\..\..\epoc32\include\mw\QtGui\qmessagebox.h \ - ..\..\..\epoc32\include\mw\QtGui\qpagesetupdialog.h \ - \epoc32\include\mw\QtGui\qabstractpagesetupdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintdialog.h \ - \epoc32\include\mw\QtGui\qabstractprintdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintpreviewdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qprogressdialog.h \ - ..\..\..\epoc32\include\mw\QtGui\qwizard.h \ - ..\..\..\epoc32\include\mw\QtGui\qbitmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qicon.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qiconengineplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qimage.h \ - ..\..\..\epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagereader.h \ - \epoc32\include\mw\QtGui\qimageiohandler.h \ - ..\..\..\epoc32\include\mw\QtGui\qimagewriter.h \ - ..\..\..\epoc32\include\mw\QtGui\qmovie.h \ - \epoc32\include\mw\QtGui\qimagereader.h \ - ..\..\..\epoc32\include\mw\QtGui\qpicture.h \ - ..\..\..\epoc32\include\mw\QtGui\qpictureformatplugin.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmap.h \ - ..\..\..\epoc32\include\mw\QtGui\qpixmapcache.h \ - ..\..\..\epoc32\include\mw\QtGui\qsymbianevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qbrush.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolor.h \ - ..\..\..\epoc32\include\mw\QtGui\qcolormap.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrawutil.h \ - ..\..\..\epoc32\include\mw\QtGui\qmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintdevice.h \ - ..\..\..\epoc32\include\mw\QtGui\qpaintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qpainterpath.h \ - ..\..\..\epoc32\include\mw\QtGui\qpen.h \ - ..\..\..\epoc32\include\mw\QtGui\qpolygon.h \ - ..\..\..\epoc32\include\mw\QtGui\qprintengine.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinter.h \ - ..\..\..\epoc32\include\mw\QtGui\qprinterinfo.h \ - \epoc32\include\mw\QtGui\QPrinter \ - \epoc32\include\mw\QtCore\QList \ - ..\..\..\epoc32\include\mw\QtGui\qregion.h \ - ..\..\..\epoc32\include\mw\QtGui\qrgb.h \ - ..\..\..\epoc32\include\mw\QtGui\qstylepainter.h \ - ..\..\..\epoc32\include\mw\QtGui\qwmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qactiongroup.h \ - ..\..\..\epoc32\include\mw\QtGui\qapplication.h \ - \epoc32\include\mw\QtCore\qcoreapplication.h \ - \epoc32\include\mw\QtGui\qdesktopwidget.h \ - \epoc32\include\mw\QtGui\qtransportauth_qws.h \ - \epoc32\include\mw\QtCore\qbuffer.h \ - ..\..\..\epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qlayout.h \ - \epoc32\include\mw\QtGui\qlayoutitem.h \ - \epoc32\include\mw\QtGui\qboxlayout.h \ - \epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qclipboard.h \ - ..\..\..\epoc32\include\mw\QtGui\qcursor.h \ - ..\..\..\epoc32\include\mw\QtGui\qdesktopwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qdrag.h \ - ..\..\..\epoc32\include\mw\QtGui\qevent.h \ - ..\..\..\epoc32\include\mw\QtGui\qformlayout.h \ - \epoc32\include\mw\QtGui\QLayout \ - ..\..\..\epoc32\include\mw\QtGui\qlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesture.h \ - ..\..\..\epoc32\include\mw\QtGui\qgesturerecognizer.h \ - ..\..\..\epoc32\include\mw\QtGui\qgridlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qkeysequence.h \ - ..\..\..\epoc32\include\mw\QtGui\qlayoutitem.h \ - ..\..\..\epoc32\include\mw\QtGui\qmime.h \ - ..\..\..\epoc32\include\mw\QtGui\qsessionmanager.h \ - ..\..\..\epoc32\include\mw\QtGui\qshortcut.h \ - ..\..\..\epoc32\include\mw\QtGui\qsizepolicy.h \ - ..\..\..\epoc32\include\mw\QtGui\qsound.h \ - ..\..\..\epoc32\include\mw\QtGui\qstackedlayout.h \ - ..\..\..\epoc32\include\mw\QtGui\qtooltip.h \ - ..\..\..\epoc32\include\mw\QtGui\qwhatsthis.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidget.h \ - ..\..\..\epoc32\include\mw\QtGui\qwidgetaction.h \ - ..\..\..\epoc32\include\mw\QtGui\qwindowdefs.h \ - ..\..\..\epoc32\include\mw\QtGui\qgenericmatrix.h \ - ..\..\..\epoc32\include\mw\QtGui\qquaternion.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector2d.h \ - ..\..\..\epoc32\include\mw\QtGui\qvector4d.h \ - \epoc32\include\mw\QtNetwork\QNetworkRequest \ - ..\..\..\epoc32\include\mw\QtNetwork\qnetworkrequest.h \ - \epoc32\include\mw\QtCore\QSharedDataPointer \ - \epoc32\include\mw\QtCore\QString \ - \epoc32\include\mw\QtCore\QUrl \ - \epoc32\include\mw\QtCore\QVariant \ - \epoc32\include\mw\QtOpenGL\QGLWidget \ - ..\..\..\epoc32\include\mw\QtOpenGL\qgl.h \ - \epoc32\include\mw\QtGui\qpaintengine.h \ - \epoc32\include\mw\QtOpenGL\qglcolormap.h \ - \epoc32\include\mw\QtCore\qt_windows.h \ - \epoc32\include\GLES\gl.h \ - \epoc32\include\GLES\glplatform.h \ - \epoc32\include\GLES\glextplatform.h \ - \epoc32\include\GLES2\gl2.h \ - \epoc32\include\GLES2\gl2platform.h \ - \epoc32\include\GLES2\gl2extplatform.h \ - ..\..\..\epoc32\include\mw\QtGui\QPrintPreviewDialog \ - \epoc32\include\mw\QtUiTools\QUiLoader \ - ..\..\..\epoc32\include\mw\QtUiTools\quiloader.h \ - \epoc32\include\mw\QtCore\QScopedPointer \ - ..\..\..\epoc32\include\mw\QtCore\QDebug \ - ..\..\WebKit\qt\Api\qwebelement.h \ - ..\..\WebKit\qt\Api\qwebkitglobal.h \ - ..\..\WebKit\qt\Api\qwebframe.h \ - \epoc32\include\mw\QtScript\qscriptengine.h \ - \epoc32\include\mw\QtScript\qscriptvalue.h \ - \epoc32\include\mw\QtScript\qscriptcontext.h \ - \epoc32\include\mw\QtScript\qscriptstring.h \ - \epoc32\include\mw\QtScript\qscriptprogram.h \ - \epoc32\include\mw\QtNetwork\qnetworkaccessmanager.h \ - ..\..\WebKit\qt\Api\qwebinspector.h \ - ..\..\WebKit\qt\Api\qwebpage.h \ - ..\..\WebKit\qt\Api\qwebsettings.h \ - ..\..\WebKit\qt\Api\qwebview.h \ - ..\..\..\epoc32\include\mw\QtGui\qx11info_x11.h \ - mainwindow.h \ - webpage.h \ - urlloader.h \ - ..\..\..\epoc32\include\mw\QtCore\QTextStream \ - ..\..\..\epoc32\include\mw\QtCore\QVector \ - utils.h \ - ..\..\..\epoc32\include\mw\QtCore\QtCore \ - webinspector.h \ - webview.h \ - fpstimer.h \ - ..\..\..\epoc32\include\mw\QtCore\QObject \ - ..\..\..\epoc32\include\mw\QtCore\QSet \ - ..\..\..\epoc32\include\mw\QtCore\QTime \ - ..\..\WebKit\qt\Api\qgraphicswebview.h \ - ..\..\..\epoc32\include\mw\QtGui\QGraphicsView \ - ..\..\..\epoc32\include\mw\QtGui\QGraphicsWidget \ - ..\..\WebKit\qt\WebCoreSupport\DumpRenderTreeSupportQt.h \ - ..\..\..\epoc32\include\mw\QtCore\QVariant \ - main.cpp - \epoc32\tools\moc.exe $(DEFINES) $(INCPATH) -DSYMBIAN u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\main.cpp -o u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\main.moc - -compiler_uic_make_all: -compiler_uic_clean: -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_rcc_clean compiler_moc_source_clean - -dodistclean: - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_template.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_template.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_stub.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_stub.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_installer.pkg" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_installer.pkg" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\Makefile" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\Makefile" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_0xA000E543.mmp" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_0xA000E543.mmp" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_reg.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser_reg.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser.rss" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser.rss" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser.loc" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\QtTestBrowser.loc" - -@ if EXIST "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\bld.inf" $(DEL_FILE) "u:\yaels-qtwebkit\WebKitTools\QtTestBrowser\bld.inf" - -distclean: clean dodistclean - -clean: bld.inf - -$(SBS) reallyclean - -clean-debug: bld.inf - $(SBS) reallyclean -c winscw_udeb -c gcce_udeb -c armv5_udeb -c armv6_udeb -clean-release: bld.inf - $(SBS) reallyclean -c gcce_urel -c armv5_urel -c armv6_urel -clean-debug-winscw: bld.inf - $(SBS) reallyclean -c winscw_udeb -clean-debug-gcce: bld.inf - $(SBS) reallyclean -c gcce_udeb -clean-debug-armv5: bld.inf - $(SBS) reallyclean -c armv5_udeb -clean-debug-armv6: bld.inf - $(SBS) reallyclean -c armv6_udeb -clean-release-gcce: bld.inf - $(SBS) reallyclean -c gcce_urel -clean-release-armv5: bld.inf - $(SBS) reallyclean -c armv5_urel -clean-release-armv6: bld.inf - $(SBS) reallyclean -c armv6_urel - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser.loc --- a/WebKitTools/QtTestBrowser/QtTestBrowser.loc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,13 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:37 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#ifdef LANGUAGE_SC -#define STRING_r_short_caption "QtTestBrowser" -#define STRING_r_caption "QtTestBrowser" -#else -#define STRING_r_short_caption "QtTestBrowser" -#define STRING_r_caption "QtTestBrowser" -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser.pro --- a/WebKitTools/QtTestBrowser/QtTestBrowser.pro Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ -TEMPLATE = app - -SOURCES += \ - locationedit.cpp \ - launcherwindow.cpp \ - main.cpp \ - mainwindow.cpp \ - urlloader.cpp \ - utils.cpp \ - webpage.cpp \ - webview.cpp \ - fpstimer.cpp \ - -HEADERS += \ - locationedit.h \ - launcherwindow.h \ - mainwindow.h \ - urlloader.h \ - utils.h \ - webinspector.h \ - webpage.h \ - webview.h \ - fpstimer.h \ - -CONFIG += uitools - -isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../.. -include(../../WebKit.pri) - -DESTDIR = $$OUTPUT_DIR/bin -!CONFIG(standalone_package): CONFIG -= app_bundle - -QT += network -macx:QT+=xml - -linux-* { - # From Creator's src/rpath.pri: - # Do the rpath by hand since it's not possible to use ORIGIN in QMAKE_RPATHDIR - # this expands to $ORIGIN (after qmake and make), it does NOT read a qmake var. - QMAKE_RPATHDIR = \$\$ORIGIN/../lib $$QMAKE_RPATHDIR - MY_RPATH = $$join(QMAKE_RPATHDIR, ":") - - QMAKE_LFLAGS += -Wl,-z,origin \'-Wl,-rpath,$${MY_RPATH}\' - QMAKE_RPATHDIR = -} else { - QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR -} - -symbian { - TARGET.UID3 = 0xA000E543 - TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices Location -} - -contains(QT_CONFIG, opengl) { - QT += opengl - DEFINES += QT_CONFIGURED_WITH_OPENGL -} - -RESOURCES += \ - QtTestBrowser.qrc diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser.qrc --- a/WebKitTools/QtTestBrowser/QtTestBrowser.qrc Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ - - - useragentlist.txt - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser.rss --- a/WebKitTools/QtTestBrowser/QtTestBrowser.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:37 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -RESOURCE LOCALISABLE_APP_INFO r_localisable_app_info - { - short_caption = STRING_r_short_caption; - caption_and_icon = - CAPTION_AND_ICON_INFO - { - caption = STRING_r_caption; - number_of_icons = 0; - icon_file = ""; - }; - } - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser_0xA000E543.mmp --- a/WebKitTools/QtTestBrowser/QtTestBrowser_0xA000E543.mmp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,116 +0,0 @@ -// ============================================================================== -// Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:37 -// This file is generated by qmake and should not be modified by the -// user. -// Name : QtTestBrowser.mmp -// ============================================================================== - -TARGET QtTestBrowser.exe -TARGETTYPE EXE - -UID 0x100039CE 0xA000E543 -SECUREID 0xA000E543 - -EPOCSTACKSIZE 0x14000 -EPOCHEAPSIZE 0x20000 0x6000000 // Min 128kB, Max 96MB - -SOURCEPATH . -LANG SC -START RESOURCE QtTestBrowser.rss -HEADER -TARGETPATH /resource/apps -END - -SOURCEPATH . -START RESOURCE QtTestBrowser_reg.rss -DEPENDS QtTestBrowser.rsg -TARGETPATH /private/10003a3f/import/apps -END - - -// Qt Macros -MACRO UNICODE -MACRO QT_KEYPAD_NAVIGATION -MACRO QT_SOFTKEYS_ENABLED -MACRO QT_USE_MATH_H_FLOATS -MACRO BUILDING_QT__=1 -MACRO WTF_USE_ACCELERATED_COMPOSITING -MACRO USE_SYSTEM_MALLOC -MACRO NDEBUG -MACRO QT_NO_UITOOLS -MACRO QT_NO_DEBUG -MACRO QT_GUI_LIB -MACRO QT_NETWORK_LIB -MACRO QT_CORE_LIB - -SYSTEMINCLUDE /epoc32/include/mw/QtCore -SYSTEMINCLUDE /epoc32/include/mw/QtNetwork -SYSTEMINCLUDE /epoc32/include/mw/QtGui -SYSTEMINCLUDE /epoc32/include/mw -SYSTEMINCLUDE ../../../sf/mw/qt/mkspecs/common/symbian -SYSTEMINCLUDE /epoc32/include -SYSTEMINCLUDE /epoc32/include/stdapis -SYSTEMINCLUDE /epoc32/include/stdapis/sys -SYSTEMINCLUDE /epoc32/include/platform/mw -SYSTEMINCLUDE /epoc32/include/platform -SYSTEMINCLUDE /epoc32/include/platform/loc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc -SYSTEMINCLUDE /epoc32/include/platform/loc/sc -SYSTEMINCLUDE /epoc32/include/platform/mw/loc/sc -SYSTEMINCLUDE ../../include/QtWebKit -SYSTEMINCLUDE /epoc32/include/stdapis/stlportv5 -SYSTEMINCLUDE . - -SOURCEPATH . -SOURCE locationedit.cpp -SOURCE main.cpp -SOURCE mainwindow.cpp -SOURCE urlloader.cpp -SOURCE utils.cpp -SOURCE webpage.cpp -SOURCE webview.cpp -SOURCE fpstimer.cpp -SOURCE moc_locationedit.cpp -SOURCE moc_mainwindow.cpp -SOURCE moc_urlloader.cpp -SOURCE moc_webinspector.cpp -SOURCE moc_webpage.cpp -SOURCE moc_webview.cpp -SOURCE moc_fpstimer.cpp -SOURCE qrc_QtTestBrowser.cpp - - -LIBRARY QtWebKit.lib -LIBRARY libstdcppv5.lib -LIBRARY QtGui.lib -LIBRARY QtNetwork.lib -LIBRARY QtCore.lib -LIBRARY libpthread.lib -LIBRARY libc.lib -LIBRARY libm.lib -LIBRARY euser.lib -LIBRARY libdl.lib -STATICLIBRARY qtmain.lib - -CAPABILITY ReadUserData WriteUserData NetworkServices - -OPTION CW -cwd include -wchar_t on -OPTION ARMCC --visibility_inlines_hidden --gnu --diag_suppress 68,111,177,368,830,1293 --no_parse_templates -#if defined(ARMCC_4_0) -OPTION ARMCC --import_all_vtbl -#endif -OPTION GCCE -fvisibility-inlines-hidden - -VERSION 10.0 - -ARMFPU softvfp - -PAGED - -BYTEPAIRCOMPRESSTARGET - -OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl - -USERINCLUDE . - -STDCPP diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser_installer.pkg --- a/WebKitTools/QtTestBrowser/QtTestBrowser_installer.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser_installer.pkg generated by qmake at 2010-08-16T17:48:37 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtTestBrowser installer"},(0xA000D7CE),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - - -"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser.sis" - "c:\private\2002CCCE\import\QtTestBrowser.sis" -@"U:/sf/mw/qt/smartinstaller.sis",(0x2002CCCD) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser_reg.rss --- a/WebKitTools/QtTestBrowser/QtTestBrowser_reg.rss Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,18 +0,0 @@ -// ============================================================================ -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:37 -// * This file is generated by qmake and should not be modified by the -// * user. -// ============================================================================ - -#include -#include - -UID2 KUidAppRegistrationResourceFile -UID3 0xA000E543 - -RESOURCE APP_REGISTRATION_INFO - { - app_file="QtTestBrowser"; - localisable_resource_file="\\resource\\apps\\QtTestBrowser"; - - } diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser_stub.pkg --- a/WebKitTools/QtTestBrowser/QtTestBrowser_stub.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,27 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser_stub.pkg generated by qmake at 2010-08-16T17:48:37 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtTestBrowser"},(0xA000E543),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -; Default HW/platform dependencies - - -"" - "z:\sys\bin\QtTestBrowser.exe" -"" - "z:\resource\apps\QtTestBrowser.rsc" -"" - "z:\private\10003a3f\import\apps\QtTestBrowser_reg.rsc" - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/QtTestBrowser_template.pkg --- a/WebKitTools/QtTestBrowser/QtTestBrowser_template.pkg Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -; U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser_template.pkg generated by qmake at 2010-08-16T17:48:37 -; This file is generated by qmake and should not be modified by the user -; - -; Language -&EN - - -; SIS header: name, uid, version -#{"QtTestBrowser"},(0xA000E543),1,0,0 - -; Localised Vendor name -%{"Vendor"} - -; Unique Vendor name -:"Vendor" - - -; Manual PKG pre-rules from PRO files -; Default dependency to Qt libraries -(0x2001E61C), 4, 7, 0, {"Qt"} -; Default HW/platform dependencies -[0x101F7961],0,0,0,{"S60ProductID"} -[0x102032BE],0,0,0,{"S60ProductID"} -[0x102752AE],0,0,0,{"S60ProductID"} -[0x1028315F],0,0,0,{"S60ProductID"} -[0x20022e6d],0,0,0,{"S60ProductID"} - - -; Executable and default resource files -"/epoc32/release/$(PLATFORM)/$(TARGET)/QtTestBrowser.exe" - "!:\sys\bin\QtTestBrowser.exe" -"/epoc32/data/z/resource/apps/QtTestBrowser.rsc" - "!:\resource\apps\QtTestBrowser.rsc" -"/epoc32/data/z/private/10003a3f/import/apps/QtTestBrowser_reg.rsc" - "!:\private\10003a3f\import\apps\QtTestBrowser_reg.rsc" - -; Manual PKG post-rules from PRO files diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/bld.inf --- a/WebKitTools/QtTestBrowser/bld.inf Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,76 +0,0 @@ -// ============================================================================ -// * Makefile for building: QtTestBrowser -// * Generated by qmake (2.01a) (Qt 4.7.0) on: 2010-08-16T17:48:37 -// * This file is generated by qmake and should not be modified by the -// * user. -// * Project: QtTestBrowser.pro -// * Template: app -// ============================================================================ - -#define BLD_INF_QTTESTBROWSER_FFFACE89 - - -prj_platforms - -WINSCW GCCE ARMV5 ARMV6 - - -prj_mmpfiles - -QtTestBrowser_0xA000E543.mmp - -prj_extensions - -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_locationedit.cpp -OPTION DEPS U:/epoc32/include/mw/QtGui/QtGui U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtGui/qs60mainapplication.h U:/epoc32/include/platform/mw/aknapp.h U:/epoc32/include/mw/eikapp.h U:/epoc32/include/mw/apparc.h U:/epoc32/include/e32base.h U:/epoc32/include/e32base.inl U:/epoc32/include/platform/e32base_private.h U:/epoc32/include/f32file.h U:/epoc32/include/platform/e32svr.h U:/epoc32/include/platform/e32hal.h U:/epoc32/include/platform/d32locd.h U:/epoc32/include/platform/partitions.h U:/epoc32/include/platform/d32locd.inl U:/epoc32/include/platform/e32notif.h U:/epoc32/include/e32ldr.h U:/epoc32/include/platform/e32ldr_private.h U:/epoc32/include/e32event.h U:/epoc32/include/platform/e32btrace.h U:/epoc32/include/platform/e32event_private.h U:/epoc32/include/platform/e32ktran.h U:/epoc32/include/e32keys.h U:/epoc32/include/e32debug.h U:/epoc32/include/platform/e32lmsg.h U:/epoc32/include/f32file64.h U:/epoc32/include/f32file64.inl U:/epoc32/include/f32file.inl U:/epoc32/include/platform/f32file_private.h U:/epoc32/include/gdi.h U:/epoc32/include/s32std.h U:/epoc32/include/s32strm.h U:/epoc32/include/s32strm.inl U:/epoc32/include/s32std.inl U:/epoc32/include/displaymode.h U:/epoc32/include/platform/graphics/gdi/glyphsample.h U:/epoc32/include/platform/graphics/gdi/gdiconsts.h U:/epoc32/include/platform/graphics/gdi/gdistructs.h U:/epoc32/include/platform/graphics/gdi/gdiinline.inl U:/epoc32/include/gdi.inl U:/epoc32/include/mw/apadef.h U:/epoc32/include/mw/apaid.h U:/epoc32/include/apmstd.h U:/epoc32/include/mw/apaapp.h U:/epoc32/include/mw/apadoc.h U:/epoc32/include/mw/apaproc.h U:/epoc32/include/mw/apaflrec.h U:/epoc32/include/mw/QtGui/qs60mainappui.h U:/epoc32/include/platform/mw/aknappui.h U:/epoc32/include/mw/eikappui.h U:/epoc32/include/mw/coeaui.h U:/epoc32/include/w32std.h U:/epoc32/include/fntstore.h U:/epoc32/include/openfont.h U:/epoc32/include/ecom/ecom.h U:/epoc32/include/ecom/ecomerrorcodes.h U:/epoc32/include/platform/ecom/ecomextendedinterfaceerrorcodes.h U:/epoc32/include/ecom/ecomresolverparams.h U:/epoc32/include/ecom/ecomresolverparams.inl U:/epoc32/include/ecom/implementationinformation.h U:/epoc32/include/ecom/implementationinformation.inl U:/epoc32/include/linkedfonts.h U:/epoc32/include/platform/graphics/openfontconstants.h U:/epoc32/include/platform/graphics/openfontrasterizer.h U:/epoc32/include/openfontlinkedtypefaceelementspec.h U:/epoc32/include/platform/graphics/openfontlinkedtypefacespecification.h U:/epoc32/include/platform/graphics/openfontlinkedtypefaceextension.h U:/epoc32/include/bitdev.h U:/epoc32/include/fbs.h U:/epoc32/include/bitmap.h U:/epoc32/include/platform/graphics/bitmapuid.h U:/epoc32/include/graphics/fbsdefs.h U:/epoc32/include/bitbase.h U:/epoc32/include/bitstd.h U:/epoc32/include/graphicsaccelerator.h U:/epoc32/include/bitdev.inl U:/epoc32/include/textcursor.h U:/epoc32/include/pointerevent.h U:/epoc32/include/advancedpointerevent.h U:/epoc32/include/advancedpointerevent.inl U:/epoc32/include/sizemode.h U:/epoc32/include/babitflags.h U:/epoc32/include/wspublishandsubscribedata.h U:/epoc32/include/platform/graphics/pointereventdata.h U:/epoc32/include/mw/coedef.h U:/epoc32/include/mw/guldef.h U:/epoc32/include/platform/mw/graphics/cone/coedefkeys.h U:/epoc32/include/mw/coehelp.h U:/epoc32/include/mw/coeview.h U:/epoc32/include/mw/vwsdef.h U:/epoc32/include/mw/coemain.h U:/epoc32/include/barsc.h U:/epoc32/include/badesca.h U:/epoc32/include/bamdesca.h U:/epoc32/include/basched.h U:/epoc32/include/mw/coemop.h U:/epoc32/include/mw/coetextdrawer.h U:/epoc32/include/mw/gulutil.h U:/epoc32/include/mw/gulbordr.h U:/epoc32/include/platform/mw/graphics/uigraphicsutils/gullogicalborder.h U:/epoc32/include/gulftflg.hrh U:/epoc32/include/mw/gulalign.h U:/epoc32/include/biditext.h U:/epoc32/include/bidi.h U:/epoc32/include/txtfrmat.h U:/epoc32/include/txtfrmat.inl U:/epoc32/include/platform/systemmonitor/raiseevent.h U:/epoc32/include/systemmonitor/instrumentationhandler.h U:/epoc32/include/systemmonitor/configuration.h U:/epoc32/include/systemmonitor/systemmonitorerrors.h U:/epoc32/include/systemmonitor/recordtypes.h U:/epoc32/include/systemmonitor/systemmonitor.h U:/epoc32/include/systemmonitor/eventlog.h U:/epoc32/include/systemmonitor/locking.h U:/epoc32/include/platform/mw/graphics/cone/coescheduler.h U:/epoc32/include/mw/coemain.inl U:/epoc32/include/mw/coeinput.h U:/epoc32/include/mw/eikmobs.h U:/epoc32/include/mw/eikcmobs.h U:/epoc32/include/mw/eikdef.h U:/epoc32/include/platform/mw/uikon/eikdefconst.h U:/epoc32/include/platform/mw/uikon/eikdefmacros.h U:/epoc32/include/baerrhan.h U:/epoc32/include/mw/eikaufty.h U:/epoc32/include/platform/mw/eikspane.h U:/epoc32/include/platform/mw/eikspmod.h U:/epoc32/include/uikon.hrh U:/epoc32/include/uiklaf/private/pluginuid.hrh U:/epoc32/include/platform/mw/eiksrvc.h U:/epoc32/include/platform/mw/eiksrvs.h U:/epoc32/include/mw/eikenv.h U:/epoc32/include/mw/apacmdln.h U:/epoc32/include/mw/gulcolor.h U:/epoc32/include/mw/eikamnt.h U:/epoc32/include/platform/mw/uikon/eikautomenutitlearray.h U:/epoc32/include/platform/mw/lafmain.h U:/epoc32/include/frmtlay.h U:/epoc32/include/txtetext.h U:/epoc32/include/platform/fldset.h U:/epoc32/include/fldinfo.h U:/epoc32/include/fldbase.h U:/epoc32/include/s32stor.h U:/epoc32/include/s32share.h U:/epoc32/include/s32buf.h U:/epoc32/include/s32buf.inl U:/epoc32/include/s32share.inl U:/epoc32/include/s32page.h U:/epoc32/include/s32page.inl U:/epoc32/include/s32stor.inl U:/epoc32/include/fldbltin.h U:/epoc32/include/platform/txtetext_internal.h U:/epoc32/include/platform/txtclipboard.h U:/epoc32/include/txtetext.inl U:/epoc32/include/frmlaydt.h U:/epoc32/include/frmparam.h U:/epoc32/include/frmvis.h U:/epoc32/include/tagma.h U:/epoc32/include/txtstyle.h U:/epoc32/include/txtfmlyr.h U:/epoc32/include/txtfmstm.h U:/epoc32/include/platform/txtfmlyr_internal.h U:/epoc32/include/txtfmlyr.inl U:/epoc32/include/txtstyle.inl U:/epoc32/include/linebreak.h U:/epoc32/include/platform/tagma_internal.h U:/epoc32/include/platform/tagmalayoutandsource.h U:/epoc32/include/mw/eikvcurs.h U:/epoc32/include/platform/mw/eikpicturefactory.h U:/epoc32/include/platform/mw/eikdgfty.h U:/epoc32/include/platform/mw/eiklibry.h U:/epoc32/include/mw/eikfctry.h U:/epoc32/include/platform/mw/uikon/eikctrlstatus.h U:/epoc32/include/mw/eikenv.inl U:/epoc32/include/platform/mw/uikon/eikenvinterface.h U:/epoc32/include/platform/mw/uikon/eikenvinterface.inl U:/epoc32/include/platform/mw/eiksrv.pan U:/epoc32/include/mw/apgtask.h U:/epoc32/include/platform/mw/eiksrv.h U:/epoc32/include/platform/mw/vwsappst.h U:/epoc32/include/mw/eikunder.h U:/epoc32/include/platform/mw/eikcycledef.h U:/epoc32/include/mw/coecntrl.h U:/epoc32/include/mw/coecobs.h U:/epoc32/include/mw/coefont.h U:/epoc32/include/mw/coecontrolarray.h U:/epoc32/include/mw/coecoloruse.h U:/epoc32/include/platform/mw/eikcba.h U:/epoc32/include/platform/mw/eikctgrp.h U:/epoc32/include/platform/mw/eikbctrl.h U:/epoc32/include/platform/mw/AknControl.h U:/epoc32/include/platform/mw/lafpublc.h U:/epoc32/include/platform/mw/eikbtgrp.h U:/epoc32/include/platform/mw/eiksbobs.h U:/epoc32/include/platform/mw/eiksbfrm.h U:/epoc32/include/platform/mw/aknscrlb.h U:/epoc32/include/platform/mw/eikscrlb.h U:/epoc32/include/platform/mw/aknscbut.h U:/epoc32/include/platform/mw/eikimage.h U:/epoc32/include/platform/mw/eikalign.h U:/epoc32/include/mw/AknsItemData.h U:/epoc32/include/mw/AknsItemID.h U:/epoc32/include/mw/AknsItemID.inl U:/epoc32/include/mw/AknsRlEffect.h U:/epoc32/include/mw/AknsRlEffectContext.h U:/epoc32/include/mw/AknsRlParameter.h U:/epoc32/include/platform/mw/avkon.hrh U:/epoc32/include/platform/mw/eikon.hrh U:/epoc32/include/platform/mw/lafpublc.hrh U:/epoc32/include/eikcolor.hrh U:/epoc32/include/mw/AknFontCategory.hrh U:/epoc32/include/mw/AknFontIdOffsets.hrh U:/epoc32/include/platform/mw/AknDef.h U:/epoc32/include/platform/mw/AknDef.hrh U:/epoc32/include/mw/akntouchpaneobserver.h U:/epoc32/include/mw/QtGui/qs60maindocument.h U:/epoc32/include/platform/mw/AknDoc.h U:/epoc32/include/mw/eikdoc.h U:/epoc32/include/platform/savenotf.h U:/epoc32/include/platform/mw/uikon/eikdefaulticondefs.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qaccessible2.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtGui/qaccessiblebridge.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qaccessibleplugin.h U:/epoc32/include/mw/QtGui/qaccessiblewidget.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qcompleter.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtGui/qdesktopservices.h U:/epoc32/include/mw/QtGui/qsystemtrayicon.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qundogroup.h U:/epoc32/include/mw/QtGui/qundostack.h U:/epoc32/include/mw/QtGui/qundoview.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qgraphicsanchorlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsgridlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicsitemanimation.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicslinearlayout.h U:/epoc32/include/mw/QtGui/qgraphicsproxywidget.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qgraphicssceneevent.h U:/epoc32/include/mw/QtGui/qgraphicstransform.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtGui/QVector3D U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/QTransform U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/QMatrix4x4 U:/epoc32/include/mw/QtGui/qmatrix4x4.h U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qcdestyle.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qcleanlooksstyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qgtkstyle.h U:/epoc32/include/mw/QtGui/QCleanlooksStyle U:/epoc32/include/mw/QtGui/QPalette U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/QFont U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/QFileDialog U:/epoc32/include/mw/QtGui/qfiledialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qplastiquestyle.h U:/epoc32/include/mw/QtGui/qproxystyle.h U:/epoc32/include/mw/QtGui/QCommonStyle U:/epoc32/include/mw/QtGui/qs60style.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qstylefactory.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qstyleplugin.h U:/epoc32/include/mw/QtGui/qwindowscestyle.h U:/epoc32/include/mw/QtGui/qwindowsmobilestyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qwindowsvistastyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qvfbhdr.h U:/epoc32/include/mw/QtGui/qwsembedwidget.h U:/epoc32/include/mw/QtGui/qinputcontext.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qinputcontextfactory.h U:/epoc32/include/mw/QtGui/qinputcontextplugin.h U:/epoc32/include/mw/QtGui/qgraphicseffect.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qbuttongroup.h U:/epoc32/include/mw/QtGui/qcalendarwidget.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtGui/qcheckbox.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qcommandlinkbutton.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qdatetimeedit.h U:/epoc32/include/mw/QtGui/qdial.h U:/epoc32/include/mw/QtGui/qdialogbuttonbox.h U:/epoc32/include/mw/QtGui/qdockwidget.h U:/epoc32/include/mw/QtGui/qfocusframe.h U:/epoc32/include/mw/QtGui/qfontcombobox.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgroupbox.h U:/epoc32/include/mw/QtGui/qlabel.h U:/epoc32/include/mw/QtGui/qlcdnumber.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmainwindow.h U:/epoc32/include/mw/QtGui/qmdiarea.h U:/epoc32/include/mw/QtGui/qmdisubwindow.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenubar.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenudata.h U:/epoc32/include/mw/QtGui/qplaintextedit.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qprintpreviewwidget.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprogressbar.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qradiobutton.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qscrollbar.h U:/epoc32/include/mw/QtGui/qsizegrip.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qspinbox.h U:/epoc32/include/mw/QtGui/qsplashscreen.h U:/epoc32/include/mw/QtGui/qsplitter.h U:/epoc32/include/mw/QtGui/qstackedwidget.h U:/epoc32/include/mw/QtGui/qstatusbar.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qtextbrowser.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtoolbar.h U:/epoc32/include/mw/QtGui/qtoolbox.h U:/epoc32/include/mw/QtGui/qtoolbutton.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qworkspace.h U:/epoc32/include/mw/QtGui/qkeyeventtransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtGui/qmouseeventtransition.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qcolumnview.h U:/epoc32/include/mw/QtGui/qdatawidgetmapper.h U:/epoc32/include/mw/QtGui/qdirmodel.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qheaderview.h U:/epoc32/include/mw/QtGui/qitemdelegate.h U:/epoc32/include/mw/QtGui/qitemeditorfactory.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qlistwidget.h U:/epoc32/include/mw/QtGui/qproxymodel.h U:/epoc32/include/mw/QtGui/qsortfilterproxymodel.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qstandarditemmodel.h U:/epoc32/include/mw/QtGui/qstringlistmodel.h U:/epoc32/include/mw/QtGui/qstyleditemdelegate.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtablewidget.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidget.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qstatictext.h U:/epoc32/include/mw/QtGui/qsyntaxhighlighter.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextdocumentfragment.h U:/epoc32/include/mw/QtGui/qtextdocumentwriter.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qtextlist.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qtexttable.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qcolordialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qerrormessage.h U:/epoc32/include/mw/QtGui/qfilesystemmodel.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtGui/qfontdialog.h U:/epoc32/include/mw/QtGui/qinputdialog.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmessagebox.h U:/epoc32/include/mw/QtGui/qpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qprintdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qprintpreviewdialog.h U:/epoc32/include/mw/QtGui/qprogressdialog.h U:/epoc32/include/mw/QtGui/qwizard.h U:/epoc32/include/mw/QtGui/qbitmap.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qiconengine.h U:/epoc32/include/mw/QtGui/qiconengineplugin.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagewriter.h U:/epoc32/include/mw/QtGui/qmovie.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qpicture.h U:/epoc32/include/mw/QtGui/qpictureformatplugin.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpixmapcache.h U:/epoc32/include/mw/QtGui/qsymbianevent.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qcolormap.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpaintengine.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qprintengine.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprinterinfo.h U:/epoc32/include/mw/QtGui/QPrinter U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qstylepainter.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qclipboard.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qformlayout.h U:/epoc32/include/mw/QtGui/QLayout U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qgesture.h U:/epoc32/include/mw/QtGui/qgesturerecognizer.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtGui/qsessionmanager.h U:/epoc32/include/mw/QtGui/qshortcut.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qsound.h U:/epoc32/include/mw/QtGui/qstackedlayout.h U:/epoc32/include/mw/QtGui/qtooltip.h U:/epoc32/include/mw/QtGui/qwhatsthis.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qwidgetaction.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qvector2d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/locationedit.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/locationedit.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_locationedit.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_mainwindow.cpp -OPTION DEPS U:/epoc32/include/mw/QtGui/QtGui U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtGui/qs60mainapplication.h U:/epoc32/include/platform/mw/aknapp.h U:/epoc32/include/mw/eikapp.h U:/epoc32/include/mw/apparc.h U:/epoc32/include/e32base.h U:/epoc32/include/e32base.inl U:/epoc32/include/platform/e32base_private.h U:/epoc32/include/f32file.h U:/epoc32/include/platform/e32svr.h U:/epoc32/include/platform/e32hal.h U:/epoc32/include/platform/d32locd.h U:/epoc32/include/platform/partitions.h U:/epoc32/include/platform/d32locd.inl U:/epoc32/include/platform/e32notif.h U:/epoc32/include/e32ldr.h U:/epoc32/include/platform/e32ldr_private.h U:/epoc32/include/e32event.h U:/epoc32/include/platform/e32btrace.h U:/epoc32/include/platform/e32event_private.h U:/epoc32/include/platform/e32ktran.h U:/epoc32/include/e32keys.h U:/epoc32/include/e32debug.h U:/epoc32/include/platform/e32lmsg.h U:/epoc32/include/f32file64.h U:/epoc32/include/f32file64.inl U:/epoc32/include/f32file.inl U:/epoc32/include/platform/f32file_private.h U:/epoc32/include/gdi.h U:/epoc32/include/s32std.h U:/epoc32/include/s32strm.h U:/epoc32/include/s32strm.inl U:/epoc32/include/s32std.inl U:/epoc32/include/displaymode.h U:/epoc32/include/platform/graphics/gdi/glyphsample.h U:/epoc32/include/platform/graphics/gdi/gdiconsts.h U:/epoc32/include/platform/graphics/gdi/gdistructs.h U:/epoc32/include/platform/graphics/gdi/gdiinline.inl U:/epoc32/include/gdi.inl U:/epoc32/include/mw/apadef.h U:/epoc32/include/mw/apaid.h U:/epoc32/include/apmstd.h U:/epoc32/include/mw/apaapp.h U:/epoc32/include/mw/apadoc.h U:/epoc32/include/mw/apaproc.h U:/epoc32/include/mw/apaflrec.h U:/epoc32/include/mw/QtGui/qs60mainappui.h U:/epoc32/include/platform/mw/aknappui.h U:/epoc32/include/mw/eikappui.h U:/epoc32/include/mw/coeaui.h U:/epoc32/include/w32std.h U:/epoc32/include/fntstore.h U:/epoc32/include/openfont.h U:/epoc32/include/ecom/ecom.h U:/epoc32/include/ecom/ecomerrorcodes.h U:/epoc32/include/platform/ecom/ecomextendedinterfaceerrorcodes.h U:/epoc32/include/ecom/ecomresolverparams.h U:/epoc32/include/ecom/ecomresolverparams.inl U:/epoc32/include/ecom/implementationinformation.h U:/epoc32/include/ecom/implementationinformation.inl U:/epoc32/include/linkedfonts.h U:/epoc32/include/platform/graphics/openfontconstants.h U:/epoc32/include/platform/graphics/openfontrasterizer.h U:/epoc32/include/openfontlinkedtypefaceelementspec.h U:/epoc32/include/platform/graphics/openfontlinkedtypefacespecification.h U:/epoc32/include/platform/graphics/openfontlinkedtypefaceextension.h U:/epoc32/include/bitdev.h U:/epoc32/include/fbs.h U:/epoc32/include/bitmap.h U:/epoc32/include/platform/graphics/bitmapuid.h U:/epoc32/include/graphics/fbsdefs.h U:/epoc32/include/bitbase.h U:/epoc32/include/bitstd.h U:/epoc32/include/graphicsaccelerator.h U:/epoc32/include/bitdev.inl U:/epoc32/include/textcursor.h U:/epoc32/include/pointerevent.h U:/epoc32/include/advancedpointerevent.h U:/epoc32/include/advancedpointerevent.inl U:/epoc32/include/sizemode.h U:/epoc32/include/babitflags.h U:/epoc32/include/wspublishandsubscribedata.h U:/epoc32/include/platform/graphics/pointereventdata.h U:/epoc32/include/mw/coedef.h U:/epoc32/include/mw/guldef.h U:/epoc32/include/platform/mw/graphics/cone/coedefkeys.h U:/epoc32/include/mw/coehelp.h U:/epoc32/include/mw/coeview.h U:/epoc32/include/mw/vwsdef.h U:/epoc32/include/mw/coemain.h U:/epoc32/include/barsc.h U:/epoc32/include/badesca.h U:/epoc32/include/bamdesca.h U:/epoc32/include/basched.h U:/epoc32/include/mw/coemop.h U:/epoc32/include/mw/coetextdrawer.h U:/epoc32/include/mw/gulutil.h U:/epoc32/include/mw/gulbordr.h U:/epoc32/include/platform/mw/graphics/uigraphicsutils/gullogicalborder.h U:/epoc32/include/gulftflg.hrh U:/epoc32/include/mw/gulalign.h U:/epoc32/include/biditext.h U:/epoc32/include/bidi.h U:/epoc32/include/txtfrmat.h U:/epoc32/include/txtfrmat.inl U:/epoc32/include/platform/systemmonitor/raiseevent.h U:/epoc32/include/systemmonitor/instrumentationhandler.h U:/epoc32/include/systemmonitor/configuration.h U:/epoc32/include/systemmonitor/systemmonitorerrors.h U:/epoc32/include/systemmonitor/recordtypes.h U:/epoc32/include/systemmonitor/systemmonitor.h U:/epoc32/include/systemmonitor/eventlog.h U:/epoc32/include/systemmonitor/locking.h U:/epoc32/include/platform/mw/graphics/cone/coescheduler.h U:/epoc32/include/mw/coemain.inl U:/epoc32/include/mw/coeinput.h U:/epoc32/include/mw/eikmobs.h U:/epoc32/include/mw/eikcmobs.h U:/epoc32/include/mw/eikdef.h U:/epoc32/include/platform/mw/uikon/eikdefconst.h U:/epoc32/include/platform/mw/uikon/eikdefmacros.h U:/epoc32/include/baerrhan.h U:/epoc32/include/mw/eikaufty.h U:/epoc32/include/platform/mw/eikspane.h U:/epoc32/include/platform/mw/eikspmod.h U:/epoc32/include/uikon.hrh U:/epoc32/include/uiklaf/private/pluginuid.hrh U:/epoc32/include/platform/mw/eiksrvc.h U:/epoc32/include/platform/mw/eiksrvs.h U:/epoc32/include/mw/eikenv.h U:/epoc32/include/mw/apacmdln.h U:/epoc32/include/mw/gulcolor.h U:/epoc32/include/mw/eikamnt.h U:/epoc32/include/platform/mw/uikon/eikautomenutitlearray.h U:/epoc32/include/platform/mw/lafmain.h U:/epoc32/include/frmtlay.h U:/epoc32/include/txtetext.h U:/epoc32/include/platform/fldset.h U:/epoc32/include/fldinfo.h U:/epoc32/include/fldbase.h U:/epoc32/include/s32stor.h U:/epoc32/include/s32share.h U:/epoc32/include/s32buf.h U:/epoc32/include/s32buf.inl U:/epoc32/include/s32share.inl U:/epoc32/include/s32page.h U:/epoc32/include/s32page.inl U:/epoc32/include/s32stor.inl U:/epoc32/include/fldbltin.h U:/epoc32/include/platform/txtetext_internal.h U:/epoc32/include/platform/txtclipboard.h U:/epoc32/include/txtetext.inl U:/epoc32/include/frmlaydt.h U:/epoc32/include/frmparam.h U:/epoc32/include/frmvis.h U:/epoc32/include/tagma.h U:/epoc32/include/txtstyle.h U:/epoc32/include/txtfmlyr.h U:/epoc32/include/txtfmstm.h U:/epoc32/include/platform/txtfmlyr_internal.h U:/epoc32/include/txtfmlyr.inl U:/epoc32/include/txtstyle.inl U:/epoc32/include/linebreak.h U:/epoc32/include/platform/tagma_internal.h U:/epoc32/include/platform/tagmalayoutandsource.h U:/epoc32/include/mw/eikvcurs.h U:/epoc32/include/platform/mw/eikpicturefactory.h U:/epoc32/include/platform/mw/eikdgfty.h U:/epoc32/include/platform/mw/eiklibry.h U:/epoc32/include/mw/eikfctry.h U:/epoc32/include/platform/mw/uikon/eikctrlstatus.h U:/epoc32/include/mw/eikenv.inl U:/epoc32/include/platform/mw/uikon/eikenvinterface.h U:/epoc32/include/platform/mw/uikon/eikenvinterface.inl U:/epoc32/include/platform/mw/eiksrv.pan U:/epoc32/include/mw/apgtask.h U:/epoc32/include/platform/mw/eiksrv.h U:/epoc32/include/platform/mw/vwsappst.h U:/epoc32/include/mw/eikunder.h U:/epoc32/include/platform/mw/eikcycledef.h U:/epoc32/include/mw/coecntrl.h U:/epoc32/include/mw/coecobs.h U:/epoc32/include/mw/coefont.h U:/epoc32/include/mw/coecontrolarray.h U:/epoc32/include/mw/coecoloruse.h U:/epoc32/include/platform/mw/eikcba.h U:/epoc32/include/platform/mw/eikctgrp.h U:/epoc32/include/platform/mw/eikbctrl.h U:/epoc32/include/platform/mw/AknControl.h U:/epoc32/include/platform/mw/lafpublc.h U:/epoc32/include/platform/mw/eikbtgrp.h U:/epoc32/include/platform/mw/eiksbobs.h U:/epoc32/include/platform/mw/eiksbfrm.h U:/epoc32/include/platform/mw/aknscrlb.h U:/epoc32/include/platform/mw/eikscrlb.h U:/epoc32/include/platform/mw/aknscbut.h U:/epoc32/include/platform/mw/eikimage.h U:/epoc32/include/platform/mw/eikalign.h U:/epoc32/include/mw/AknsItemData.h U:/epoc32/include/mw/AknsItemID.h U:/epoc32/include/mw/AknsItemID.inl U:/epoc32/include/mw/AknsRlEffect.h U:/epoc32/include/mw/AknsRlEffectContext.h U:/epoc32/include/mw/AknsRlParameter.h U:/epoc32/include/platform/mw/avkon.hrh U:/epoc32/include/platform/mw/eikon.hrh U:/epoc32/include/platform/mw/lafpublc.hrh U:/epoc32/include/eikcolor.hrh U:/epoc32/include/mw/AknFontCategory.hrh U:/epoc32/include/mw/AknFontIdOffsets.hrh U:/epoc32/include/platform/mw/AknDef.h U:/epoc32/include/platform/mw/AknDef.hrh U:/epoc32/include/mw/akntouchpaneobserver.h U:/epoc32/include/mw/QtGui/qs60maindocument.h U:/epoc32/include/platform/mw/AknDoc.h U:/epoc32/include/mw/eikdoc.h U:/epoc32/include/platform/savenotf.h U:/epoc32/include/platform/mw/uikon/eikdefaulticondefs.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qaccessible2.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtGui/qaccessiblebridge.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qaccessibleplugin.h U:/epoc32/include/mw/QtGui/qaccessiblewidget.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qcompleter.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtGui/qdesktopservices.h U:/epoc32/include/mw/QtGui/qsystemtrayicon.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qundogroup.h U:/epoc32/include/mw/QtGui/qundostack.h U:/epoc32/include/mw/QtGui/qundoview.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qgraphicsanchorlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsgridlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicsitemanimation.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicslinearlayout.h U:/epoc32/include/mw/QtGui/qgraphicsproxywidget.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qgraphicssceneevent.h U:/epoc32/include/mw/QtGui/qgraphicstransform.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtGui/QVector3D U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/QTransform U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/QMatrix4x4 U:/epoc32/include/mw/QtGui/qmatrix4x4.h U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qcdestyle.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qcleanlooksstyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qgtkstyle.h U:/epoc32/include/mw/QtGui/QCleanlooksStyle U:/epoc32/include/mw/QtGui/QPalette U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/QFont U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/QFileDialog U:/epoc32/include/mw/QtGui/qfiledialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qplastiquestyle.h U:/epoc32/include/mw/QtGui/qproxystyle.h U:/epoc32/include/mw/QtGui/QCommonStyle U:/epoc32/include/mw/QtGui/qs60style.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qstylefactory.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qstyleplugin.h U:/epoc32/include/mw/QtGui/qwindowscestyle.h U:/epoc32/include/mw/QtGui/qwindowsmobilestyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qwindowsvistastyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qvfbhdr.h U:/epoc32/include/mw/QtGui/qwsembedwidget.h U:/epoc32/include/mw/QtGui/qinputcontext.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qinputcontextfactory.h U:/epoc32/include/mw/QtGui/qinputcontextplugin.h U:/epoc32/include/mw/QtGui/qgraphicseffect.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qbuttongroup.h U:/epoc32/include/mw/QtGui/qcalendarwidget.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtGui/qcheckbox.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qcommandlinkbutton.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qdatetimeedit.h U:/epoc32/include/mw/QtGui/qdial.h U:/epoc32/include/mw/QtGui/qdialogbuttonbox.h U:/epoc32/include/mw/QtGui/qdockwidget.h U:/epoc32/include/mw/QtGui/qfocusframe.h U:/epoc32/include/mw/QtGui/qfontcombobox.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgroupbox.h U:/epoc32/include/mw/QtGui/qlabel.h U:/epoc32/include/mw/QtGui/qlcdnumber.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmainwindow.h U:/epoc32/include/mw/QtGui/qmdiarea.h U:/epoc32/include/mw/QtGui/qmdisubwindow.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenubar.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenudata.h U:/epoc32/include/mw/QtGui/qplaintextedit.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qprintpreviewwidget.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprogressbar.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qradiobutton.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qscrollbar.h U:/epoc32/include/mw/QtGui/qsizegrip.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qspinbox.h U:/epoc32/include/mw/QtGui/qsplashscreen.h U:/epoc32/include/mw/QtGui/qsplitter.h U:/epoc32/include/mw/QtGui/qstackedwidget.h U:/epoc32/include/mw/QtGui/qstatusbar.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qtextbrowser.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtoolbar.h U:/epoc32/include/mw/QtGui/qtoolbox.h U:/epoc32/include/mw/QtGui/qtoolbutton.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qworkspace.h U:/epoc32/include/mw/QtGui/qkeyeventtransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtGui/qmouseeventtransition.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qcolumnview.h U:/epoc32/include/mw/QtGui/qdatawidgetmapper.h U:/epoc32/include/mw/QtGui/qdirmodel.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qheaderview.h U:/epoc32/include/mw/QtGui/qitemdelegate.h U:/epoc32/include/mw/QtGui/qitemeditorfactory.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qlistwidget.h U:/epoc32/include/mw/QtGui/qproxymodel.h U:/epoc32/include/mw/QtGui/qsortfilterproxymodel.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qstandarditemmodel.h U:/epoc32/include/mw/QtGui/qstringlistmodel.h U:/epoc32/include/mw/QtGui/qstyleditemdelegate.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtablewidget.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidget.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qstatictext.h U:/epoc32/include/mw/QtGui/qsyntaxhighlighter.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextdocumentfragment.h U:/epoc32/include/mw/QtGui/qtextdocumentwriter.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qtextlist.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qtexttable.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qcolordialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qerrormessage.h U:/epoc32/include/mw/QtGui/qfilesystemmodel.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtGui/qfontdialog.h U:/epoc32/include/mw/QtGui/qinputdialog.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmessagebox.h U:/epoc32/include/mw/QtGui/qpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qprintdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qprintpreviewdialog.h U:/epoc32/include/mw/QtGui/qprogressdialog.h U:/epoc32/include/mw/QtGui/qwizard.h U:/epoc32/include/mw/QtGui/qbitmap.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qiconengine.h U:/epoc32/include/mw/QtGui/qiconengineplugin.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagewriter.h U:/epoc32/include/mw/QtGui/qmovie.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qpicture.h U:/epoc32/include/mw/QtGui/qpictureformatplugin.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpixmapcache.h U:/epoc32/include/mw/QtGui/qsymbianevent.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qcolormap.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpaintengine.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qprintengine.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprinterinfo.h U:/epoc32/include/mw/QtGui/QPrinter U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qstylepainter.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qclipboard.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qformlayout.h U:/epoc32/include/mw/QtGui/QLayout U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qgesture.h U:/epoc32/include/mw/QtGui/qgesturerecognizer.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtGui/qsessionmanager.h U:/epoc32/include/mw/QtGui/qshortcut.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qsound.h U:/epoc32/include/mw/QtGui/qstackedlayout.h U:/epoc32/include/mw/QtGui/qtooltip.h U:/epoc32/include/mw/QtGui/qwhatsthis.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qwidgetaction.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qvector2d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/mainwindow.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/mainwindow.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_mainwindow.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_urlloader.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/epoc32/include/mw/QtCore/QTextStream U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/QVector U:/epoc32/include/mw/QtCore/qvector.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/urlloader.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/urlloader.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_urlloader.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webinspector.cpp -OPTION DEPS U:/epoc32/include/mw/QtGui/QtGui U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtGui/qs60mainapplication.h U:/epoc32/include/platform/mw/aknapp.h U:/epoc32/include/mw/eikapp.h U:/epoc32/include/mw/apparc.h U:/epoc32/include/e32base.h U:/epoc32/include/e32base.inl U:/epoc32/include/platform/e32base_private.h U:/epoc32/include/f32file.h U:/epoc32/include/platform/e32svr.h U:/epoc32/include/platform/e32hal.h U:/epoc32/include/platform/d32locd.h U:/epoc32/include/platform/partitions.h U:/epoc32/include/platform/d32locd.inl U:/epoc32/include/platform/e32notif.h U:/epoc32/include/e32ldr.h U:/epoc32/include/platform/e32ldr_private.h U:/epoc32/include/e32event.h U:/epoc32/include/platform/e32btrace.h U:/epoc32/include/platform/e32event_private.h U:/epoc32/include/platform/e32ktran.h U:/epoc32/include/e32keys.h U:/epoc32/include/e32debug.h U:/epoc32/include/platform/e32lmsg.h U:/epoc32/include/f32file64.h U:/epoc32/include/f32file64.inl U:/epoc32/include/f32file.inl U:/epoc32/include/platform/f32file_private.h U:/epoc32/include/gdi.h U:/epoc32/include/s32std.h U:/epoc32/include/s32strm.h U:/epoc32/include/s32strm.inl U:/epoc32/include/s32std.inl U:/epoc32/include/displaymode.h U:/epoc32/include/platform/graphics/gdi/glyphsample.h U:/epoc32/include/platform/graphics/gdi/gdiconsts.h U:/epoc32/include/platform/graphics/gdi/gdistructs.h U:/epoc32/include/platform/graphics/gdi/gdiinline.inl U:/epoc32/include/gdi.inl U:/epoc32/include/mw/apadef.h U:/epoc32/include/mw/apaid.h U:/epoc32/include/apmstd.h U:/epoc32/include/mw/apaapp.h U:/epoc32/include/mw/apadoc.h U:/epoc32/include/mw/apaproc.h U:/epoc32/include/mw/apaflrec.h U:/epoc32/include/mw/QtGui/qs60mainappui.h U:/epoc32/include/platform/mw/aknappui.h U:/epoc32/include/mw/eikappui.h U:/epoc32/include/mw/coeaui.h U:/epoc32/include/w32std.h U:/epoc32/include/fntstore.h U:/epoc32/include/openfont.h U:/epoc32/include/ecom/ecom.h U:/epoc32/include/ecom/ecomerrorcodes.h U:/epoc32/include/platform/ecom/ecomextendedinterfaceerrorcodes.h U:/epoc32/include/ecom/ecomresolverparams.h U:/epoc32/include/ecom/ecomresolverparams.inl U:/epoc32/include/ecom/implementationinformation.h U:/epoc32/include/ecom/implementationinformation.inl U:/epoc32/include/linkedfonts.h U:/epoc32/include/platform/graphics/openfontconstants.h U:/epoc32/include/platform/graphics/openfontrasterizer.h U:/epoc32/include/openfontlinkedtypefaceelementspec.h U:/epoc32/include/platform/graphics/openfontlinkedtypefacespecification.h U:/epoc32/include/platform/graphics/openfontlinkedtypefaceextension.h U:/epoc32/include/bitdev.h U:/epoc32/include/fbs.h U:/epoc32/include/bitmap.h U:/epoc32/include/platform/graphics/bitmapuid.h U:/epoc32/include/graphics/fbsdefs.h U:/epoc32/include/bitbase.h U:/epoc32/include/bitstd.h U:/epoc32/include/graphicsaccelerator.h U:/epoc32/include/bitdev.inl U:/epoc32/include/textcursor.h U:/epoc32/include/pointerevent.h U:/epoc32/include/advancedpointerevent.h U:/epoc32/include/advancedpointerevent.inl U:/epoc32/include/sizemode.h U:/epoc32/include/babitflags.h U:/epoc32/include/wspublishandsubscribedata.h U:/epoc32/include/platform/graphics/pointereventdata.h U:/epoc32/include/mw/coedef.h U:/epoc32/include/mw/guldef.h U:/epoc32/include/platform/mw/graphics/cone/coedefkeys.h U:/epoc32/include/mw/coehelp.h U:/epoc32/include/mw/coeview.h U:/epoc32/include/mw/vwsdef.h U:/epoc32/include/mw/coemain.h U:/epoc32/include/barsc.h U:/epoc32/include/badesca.h U:/epoc32/include/bamdesca.h U:/epoc32/include/basched.h U:/epoc32/include/mw/coemop.h U:/epoc32/include/mw/coetextdrawer.h U:/epoc32/include/mw/gulutil.h U:/epoc32/include/mw/gulbordr.h U:/epoc32/include/platform/mw/graphics/uigraphicsutils/gullogicalborder.h U:/epoc32/include/gulftflg.hrh U:/epoc32/include/mw/gulalign.h U:/epoc32/include/biditext.h U:/epoc32/include/bidi.h U:/epoc32/include/txtfrmat.h U:/epoc32/include/txtfrmat.inl U:/epoc32/include/platform/systemmonitor/raiseevent.h U:/epoc32/include/systemmonitor/instrumentationhandler.h U:/epoc32/include/systemmonitor/configuration.h U:/epoc32/include/systemmonitor/systemmonitorerrors.h U:/epoc32/include/systemmonitor/recordtypes.h U:/epoc32/include/systemmonitor/systemmonitor.h U:/epoc32/include/systemmonitor/eventlog.h U:/epoc32/include/systemmonitor/locking.h U:/epoc32/include/platform/mw/graphics/cone/coescheduler.h U:/epoc32/include/mw/coemain.inl U:/epoc32/include/mw/coeinput.h U:/epoc32/include/mw/eikmobs.h U:/epoc32/include/mw/eikcmobs.h U:/epoc32/include/mw/eikdef.h U:/epoc32/include/platform/mw/uikon/eikdefconst.h U:/epoc32/include/platform/mw/uikon/eikdefmacros.h U:/epoc32/include/baerrhan.h U:/epoc32/include/mw/eikaufty.h U:/epoc32/include/platform/mw/eikspane.h U:/epoc32/include/platform/mw/eikspmod.h U:/epoc32/include/uikon.hrh U:/epoc32/include/uiklaf/private/pluginuid.hrh U:/epoc32/include/platform/mw/eiksrvc.h U:/epoc32/include/platform/mw/eiksrvs.h U:/epoc32/include/mw/eikenv.h U:/epoc32/include/mw/apacmdln.h U:/epoc32/include/mw/gulcolor.h U:/epoc32/include/mw/eikamnt.h U:/epoc32/include/platform/mw/uikon/eikautomenutitlearray.h U:/epoc32/include/platform/mw/lafmain.h U:/epoc32/include/frmtlay.h U:/epoc32/include/txtetext.h U:/epoc32/include/platform/fldset.h U:/epoc32/include/fldinfo.h U:/epoc32/include/fldbase.h U:/epoc32/include/s32stor.h U:/epoc32/include/s32share.h U:/epoc32/include/s32buf.h U:/epoc32/include/s32buf.inl U:/epoc32/include/s32share.inl U:/epoc32/include/s32page.h U:/epoc32/include/s32page.inl U:/epoc32/include/s32stor.inl U:/epoc32/include/fldbltin.h U:/epoc32/include/platform/txtetext_internal.h U:/epoc32/include/platform/txtclipboard.h U:/epoc32/include/txtetext.inl U:/epoc32/include/frmlaydt.h U:/epoc32/include/frmparam.h U:/epoc32/include/frmvis.h U:/epoc32/include/tagma.h U:/epoc32/include/txtstyle.h U:/epoc32/include/txtfmlyr.h U:/epoc32/include/txtfmstm.h U:/epoc32/include/platform/txtfmlyr_internal.h U:/epoc32/include/txtfmlyr.inl U:/epoc32/include/txtstyle.inl U:/epoc32/include/linebreak.h U:/epoc32/include/platform/tagma_internal.h U:/epoc32/include/platform/tagmalayoutandsource.h U:/epoc32/include/mw/eikvcurs.h U:/epoc32/include/platform/mw/eikpicturefactory.h U:/epoc32/include/platform/mw/eikdgfty.h U:/epoc32/include/platform/mw/eiklibry.h U:/epoc32/include/mw/eikfctry.h U:/epoc32/include/platform/mw/uikon/eikctrlstatus.h U:/epoc32/include/mw/eikenv.inl U:/epoc32/include/platform/mw/uikon/eikenvinterface.h U:/epoc32/include/platform/mw/uikon/eikenvinterface.inl U:/epoc32/include/platform/mw/eiksrv.pan U:/epoc32/include/mw/apgtask.h U:/epoc32/include/platform/mw/eiksrv.h U:/epoc32/include/platform/mw/vwsappst.h U:/epoc32/include/mw/eikunder.h U:/epoc32/include/platform/mw/eikcycledef.h U:/epoc32/include/mw/coecntrl.h U:/epoc32/include/mw/coecobs.h U:/epoc32/include/mw/coefont.h U:/epoc32/include/mw/coecontrolarray.h U:/epoc32/include/mw/coecoloruse.h U:/epoc32/include/platform/mw/eikcba.h U:/epoc32/include/platform/mw/eikctgrp.h U:/epoc32/include/platform/mw/eikbctrl.h U:/epoc32/include/platform/mw/AknControl.h U:/epoc32/include/platform/mw/lafpublc.h U:/epoc32/include/platform/mw/eikbtgrp.h U:/epoc32/include/platform/mw/eiksbobs.h U:/epoc32/include/platform/mw/eiksbfrm.h U:/epoc32/include/platform/mw/aknscrlb.h U:/epoc32/include/platform/mw/eikscrlb.h U:/epoc32/include/platform/mw/aknscbut.h U:/epoc32/include/platform/mw/eikimage.h U:/epoc32/include/platform/mw/eikalign.h U:/epoc32/include/mw/AknsItemData.h U:/epoc32/include/mw/AknsItemID.h U:/epoc32/include/mw/AknsItemID.inl U:/epoc32/include/mw/AknsRlEffect.h U:/epoc32/include/mw/AknsRlEffectContext.h U:/epoc32/include/mw/AknsRlParameter.h U:/epoc32/include/platform/mw/avkon.hrh U:/epoc32/include/platform/mw/eikon.hrh U:/epoc32/include/platform/mw/lafpublc.hrh U:/epoc32/include/eikcolor.hrh U:/epoc32/include/mw/AknFontCategory.hrh U:/epoc32/include/mw/AknFontIdOffsets.hrh U:/epoc32/include/platform/mw/AknDef.h U:/epoc32/include/platform/mw/AknDef.hrh U:/epoc32/include/mw/akntouchpaneobserver.h U:/epoc32/include/mw/QtGui/qs60maindocument.h U:/epoc32/include/platform/mw/AknDoc.h U:/epoc32/include/mw/eikdoc.h U:/epoc32/include/platform/savenotf.h U:/epoc32/include/platform/mw/uikon/eikdefaulticondefs.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qaccessible2.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtGui/qaccessiblebridge.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qaccessibleplugin.h U:/epoc32/include/mw/QtGui/qaccessiblewidget.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qcompleter.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtGui/qdesktopservices.h U:/epoc32/include/mw/QtGui/qsystemtrayicon.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qundogroup.h U:/epoc32/include/mw/QtGui/qundostack.h U:/epoc32/include/mw/QtGui/qundoview.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qgraphicsanchorlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsgridlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicsitemanimation.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicslinearlayout.h U:/epoc32/include/mw/QtGui/qgraphicsproxywidget.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qgraphicssceneevent.h U:/epoc32/include/mw/QtGui/qgraphicstransform.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtGui/QVector3D U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/QTransform U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/QMatrix4x4 U:/epoc32/include/mw/QtGui/qmatrix4x4.h U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qcdestyle.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qcleanlooksstyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qgtkstyle.h U:/epoc32/include/mw/QtGui/QCleanlooksStyle U:/epoc32/include/mw/QtGui/QPalette U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/QFont U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/QFileDialog U:/epoc32/include/mw/QtGui/qfiledialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qplastiquestyle.h U:/epoc32/include/mw/QtGui/qproxystyle.h U:/epoc32/include/mw/QtGui/QCommonStyle U:/epoc32/include/mw/QtGui/qs60style.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qstylefactory.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qstyleplugin.h U:/epoc32/include/mw/QtGui/qwindowscestyle.h U:/epoc32/include/mw/QtGui/qwindowsmobilestyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qwindowsvistastyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qvfbhdr.h U:/epoc32/include/mw/QtGui/qwsembedwidget.h U:/epoc32/include/mw/QtGui/qinputcontext.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qinputcontextfactory.h U:/epoc32/include/mw/QtGui/qinputcontextplugin.h U:/epoc32/include/mw/QtGui/qgraphicseffect.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qbuttongroup.h U:/epoc32/include/mw/QtGui/qcalendarwidget.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtGui/qcheckbox.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qcommandlinkbutton.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qdatetimeedit.h U:/epoc32/include/mw/QtGui/qdial.h U:/epoc32/include/mw/QtGui/qdialogbuttonbox.h U:/epoc32/include/mw/QtGui/qdockwidget.h U:/epoc32/include/mw/QtGui/qfocusframe.h U:/epoc32/include/mw/QtGui/qfontcombobox.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgroupbox.h U:/epoc32/include/mw/QtGui/qlabel.h U:/epoc32/include/mw/QtGui/qlcdnumber.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmainwindow.h U:/epoc32/include/mw/QtGui/qmdiarea.h U:/epoc32/include/mw/QtGui/qmdisubwindow.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenubar.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenudata.h U:/epoc32/include/mw/QtGui/qplaintextedit.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qprintpreviewwidget.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprogressbar.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qradiobutton.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qscrollbar.h U:/epoc32/include/mw/QtGui/qsizegrip.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qspinbox.h U:/epoc32/include/mw/QtGui/qsplashscreen.h U:/epoc32/include/mw/QtGui/qsplitter.h U:/epoc32/include/mw/QtGui/qstackedwidget.h U:/epoc32/include/mw/QtGui/qstatusbar.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qtextbrowser.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtoolbar.h U:/epoc32/include/mw/QtGui/qtoolbox.h U:/epoc32/include/mw/QtGui/qtoolbutton.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qworkspace.h U:/epoc32/include/mw/QtGui/qkeyeventtransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtGui/qmouseeventtransition.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qcolumnview.h U:/epoc32/include/mw/QtGui/qdatawidgetmapper.h U:/epoc32/include/mw/QtGui/qdirmodel.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qheaderview.h U:/epoc32/include/mw/QtGui/qitemdelegate.h U:/epoc32/include/mw/QtGui/qitemeditorfactory.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qlistwidget.h U:/epoc32/include/mw/QtGui/qproxymodel.h U:/epoc32/include/mw/QtGui/qsortfilterproxymodel.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qstandarditemmodel.h U:/epoc32/include/mw/QtGui/qstringlistmodel.h U:/epoc32/include/mw/QtGui/qstyleditemdelegate.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtablewidget.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidget.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qstatictext.h U:/epoc32/include/mw/QtGui/qsyntaxhighlighter.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextdocumentfragment.h U:/epoc32/include/mw/QtGui/qtextdocumentwriter.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qtextlist.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qtexttable.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qcolordialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qerrormessage.h U:/epoc32/include/mw/QtGui/qfilesystemmodel.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtGui/qfontdialog.h U:/epoc32/include/mw/QtGui/qinputdialog.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmessagebox.h U:/epoc32/include/mw/QtGui/qpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qprintdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qprintpreviewdialog.h U:/epoc32/include/mw/QtGui/qprogressdialog.h U:/epoc32/include/mw/QtGui/qwizard.h U:/epoc32/include/mw/QtGui/qbitmap.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qiconengine.h U:/epoc32/include/mw/QtGui/qiconengineplugin.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagewriter.h U:/epoc32/include/mw/QtGui/qmovie.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qpicture.h U:/epoc32/include/mw/QtGui/qpictureformatplugin.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpixmapcache.h U:/epoc32/include/mw/QtGui/qsymbianevent.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qcolormap.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpaintengine.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qprintengine.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprinterinfo.h U:/epoc32/include/mw/QtGui/QPrinter U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qstylepainter.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qclipboard.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qformlayout.h U:/epoc32/include/mw/QtGui/QLayout U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qgesture.h U:/epoc32/include/mw/QtGui/qgesturerecognizer.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtGui/qsessionmanager.h U:/epoc32/include/mw/QtGui/qshortcut.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qsound.h U:/epoc32/include/mw/QtGui/qstackedlayout.h U:/epoc32/include/mw/QtGui/qtooltip.h U:/epoc32/include/mw/QtGui/qwhatsthis.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qwidgetaction.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qvector2d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webinspector.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webinspector.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webinspector.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webpage.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webpage.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webpage.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webpage.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webview.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/fpstimer.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QSet U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/QTime U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/epoc32/include/mw/QtCore/QObject U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtCore/qset.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qpen.h U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/QGraphicsView U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/QGraphicsWidget U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webview.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webview.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_webview.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_fpstimer.cpp -OPTION DEPS U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/QSet U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/QTime U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/fpstimer.h -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/fpstimer.h -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/moc_fpstimer.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/qrc_QtTestBrowser.cpp -OPTION DEPS U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser.qrc U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/useragentlist.txt -OPTION COMMAND /epoc32/tools/rcc.exe -name QtTestBrowser u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/QtTestBrowser.qrc -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/qrc_QtTestBrowser.cpp -END -START EXTENSION qt/qmake_extra_pre_targetdep.export -OPTION PREDEP_TARGET U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/main.moc -OPTION DEPS U:/epoc32/include/mw/QtGui/QtGui U:/epoc32/include/mw/QtCore/QtCore U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/stdapis/stddef.h U:/epoc32/include/stdapis/sys/cdefs.h U:/epoc32/include/stdapis/_ansi.h U:/epoc32/include/e32def.h U:/epoc32/include/platform/e32def_private.h U:/epoc32/include/stdapis/sys/_null.h U:/epoc32/include/stdapis/sys/_types.h U:/epoc32/include/stdapis/machine/_types.h U:/epoc32/include/mw/QtCore/qconfig.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qatomic_bootstrap.h U:/epoc32/include/mw/QtCore/qatomic_arch.h U:/epoc32/include/mw/QtCore/qatomic_vxworks.h U:/epoc32/include/mw/QtCore/qatomic_powerpc.h U:/epoc32/include/mw/QtCore/qatomic_alpha.h U:/epoc32/include/mw/QtCore/qatomic_arm.h U:/epoc32/include/mw/QtCore/qatomic_armv6.h U:/epoc32/include/mw/QtCore/qatomic_avr32.h U:/epoc32/include/mw/QtCore/qatomic_bfin.h U:/epoc32/include/mw/QtCore/qatomic_generic.h U:/epoc32/include/mw/QtCore/qatomic_i386.h U:/epoc32/include/mw/QtCore/qatomic_ia64.h U:/epoc32/include/mw/QtCore/qatomic_macosx.h U:/epoc32/include/mw/QtCore/qatomic_x86_64.h U:/epoc32/include/mw/QtCore/qatomic_mips.h U:/epoc32/include/mw/QtCore/qatomic_parisc.h U:/epoc32/include/mw/QtCore/qatomic_s390.h U:/epoc32/include/mw/QtCore/qatomic_sparc.h U:/epoc32/include/mw/QtCore/qatomic_windows.h U:/epoc32/include/mw/QtCore/qatomic_windowsce.h U:/epoc32/include/mw/QtCore/qatomic_symbian.h U:/epoc32/include/e32std.h U:/epoc32/include/e32cmn.h U:/epoc32/include/e32const.h U:/epoc32/include/e32err.h U:/epoc32/include/e32lang.h U:/epoc32/include/e32reg.h U:/epoc32/include/e32capability.h U:/epoc32/include/platform/e32const_private.h U:/epoc32/include/stdapis/string.h U:/epoc32/include/stdapis/strings.h U:/epoc32/include/e32des8.h U:/epoc32/include/platform/e32des8_private.h U:/epoc32/include/e32des16.h U:/epoc32/include/platform/e32des16_private.h U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/exception_winscw.h U:/epoc32/include/e32cmn.inl U:/epoc32/include/platform/e32cmn_private.h U:/epoc32/include/e32std.inl U:/epoc32/include/platform/e32std_private.h U:/epoc32/include/mw/QtCore/qatomic_sh.h U:/epoc32/include/mw/QtCore/qatomic_sh4a.h U:/epoc32/include/stdapis/stdarg.h U:/epoc32/include/stdapis/stdarg_e.h U:/epoc32/include/mw/Qt3Support/q3cstring.h U:/epoc32/include/stdapis/stlportv5/string U:/epoc32/include/stdapis/stlportv5/stl/_prolog.h U:/epoc32/include/stdapis/stlportv5/stl/config/features.h U:/epoc32/include/stdapis/stlportv5/stl/_stlport_version.h U:/epoc32/include/stdapis/stlportv5/stl/config/user_config.h U:/epoc32/include/stdapis/stlportv5/stl/config/compat.h U:/epoc32/include/stdapis/stlportv5/stl/config/host.h U:/epoc32/include/stdapis/stlportv5/stl/config/_system.h U:/epoc32/include/stdapis/stlportv5/stl/config/_gcc.h U:/epoc32/include/stdapis/stlportv5/stl/config/_mwerks.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_symbian.h U:/epoc32/include/stdapis/stlportv5/stl/config/_windows.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_rvct.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_winscw.h U:/epoc32/include/stdapis/stlportv5/stl/config/stl_confix.h U:/epoc32/include/stdapis/stlportv5/stl/config/_native_headers.h U:/epoc32/include/stdapis/stlportv5/stl/_abbrevs.h U:/epoc32/include/stdapis/stlportv5/stl/_string.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_cstddef.h U:/epoc32/include/stdapis/stlportv5/stl/_cstdlib.h U:/epoc32/include/stdapis/stdlib.h U:/epoc32/include/stdapis/stlportv5/stl/_cmath.h U:/epoc32/include/stdapis/math.h U:/epoc32/include/stdapis/machine/_limits.h U:/epoc32/include/stdapis/libm_aliases.h U:/epoc32/include/stdapis/signgam.h U:/epoc32/include/stdapis/stlportv5/stl/_cstring.h U:/epoc32/include/stdapis/stlportv5/using/cstring U:/epoc32/include/stdapis/stlportv5/stl/_algobase.h U:/epoc32/include/stdapis/stlportv5/climits U:/epoc32/include/stdapis/limits.h U:/epoc32/include/stdapis/sys/limits.h U:/epoc32/include/stdapis/sys/syslimits.h U:/epoc32/include/stdapis/stlportv5/stl/_epilog.h U:/epoc32/include/stdapis/stlportv5/stl/_config_compat_post.h U:/epoc32/include/stdapis/stlportv5/stl/_pair.h U:/epoc32/include/stdapis/stlportv5/stl/type_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_cwchar.h U:/epoc32/include/stdapis/stlportv5/stl/_mbstate_t.h U:/epoc32/include/stdapis/wchar.h U:/epoc32/include/stdapis/sys/stat.h U:/epoc32/include/stdapis/sys/time.h U:/epoc32/include/stdapis/sys/_timeval.h U:/epoc32/include/stdapis/sys/types.h U:/epoc32/include/stdapis/machine/endian.h U:/epoc32/include/stdapis/sys/_pthreadtypes.h U:/epoc32/include/stdapis/sys/timespec.h U:/epoc32/include/stdapis/time.h U:/epoc32/include/stdapis/sys/_timespec.h U:/epoc32/include/stdapis/_ctype.h U:/epoc32/include/stdapis/stdio.h U:/epoc32/include/stdapis/errno.h U:/epoc32/include/stdapis/sys/dirent.h U:/epoc32/include/stdapis/stlportv5/stl/type_manips.h U:/epoc32/include/stdapis/boost/type_traits/add_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/is_reference.hpp U:/epoc32/include/stdapis/boost/type_traits/config.hpp U:/epoc32/include/stdapis/boost/config.hpp U:/epoc32/include/stdapis/boost/config/select_compiler_config.hpp U:/epoc32/include/stdapis/boost/config/select_stdlib_config.hpp U:/epoc32/include/stdapis/boost/config/no_tr1/utility.hpp U:/epoc32/include/stdapis/stlportv5/utility U:/epoc32/include/stdapis/stlportv5/stl/_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_base.h U:/epoc32/include/stdapis/stlportv5/stl/_ptrs_specialize.h U:/epoc32/include/stdapis/stlportv5/stl/_iterator_old.h U:/epoc32/include/stdapis/boost/config/select_platform_config.hpp U:/epoc32/include/stdapis/boost/config/suffix.hpp U:/epoc32/include/stdapis/stlportv5/cstddef U:/epoc32/include/stdapis/boost/type.hpp U:/epoc32/include/stdapis/boost/detail/workaround.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/yes_no_type.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/template_arity_spec.hpp U:/epoc32/include/stdapis/boost/mpl/int.hpp U:/epoc32/include/stdapis/boost/mpl/int_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/adl_barrier.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/adl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/msvc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/intel.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/gcc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/workaround.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/nttp_decl.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/nttp.hpp U:/epoc32/include/stdapis/boost/preprocessor/cat.hpp U:/epoc32/include/stdapis/boost/preprocessor/config/config.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/integral_wrapper.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_tag.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/static_constant.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/static_cast.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/template_arity_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/params.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/preprocessor.hpp U:/epoc32/include/stdapis/boost/preprocessor/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma_if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/if.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/bool.hpp U:/epoc32/include/stdapis/boost/preprocessor/facilities/empty.hpp U:/epoc32/include/stdapis/boost/preprocessor/punctuation/comma.hpp U:/epoc32/include/stdapis/boost/preprocessor/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/repeat.hpp U:/epoc32/include/stdapis/boost/preprocessor/debug/error.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/auto_rec.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/eat.hpp U:/epoc32/include/stdapis/boost/preprocessor/inc.hpp U:/epoc32/include/stdapis/boost/preprocessor/arithmetic/inc.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/lambda.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ttp.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/ctps.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/overload_resolution.hpp U:/epoc32/include/stdapis/boost/type_traits/integral_constant.hpp U:/epoc32/include/stdapis/boost/mpl/bool.hpp U:/epoc32/include/stdapis/boost/mpl/bool_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c.hpp U:/epoc32/include/stdapis/boost/mpl/integral_c_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/lambda_support.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/yes_no.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/config/arrays.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/na_fwd.hpp U:/epoc32/include/stdapis/boost/mpl/aux_/preprocessor/enum.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/to_list.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/for_each_i.hpp U:/epoc32/include/stdapis/boost/preprocessor/list/adt.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/is_binary.hpp U:/epoc32/include/stdapis/boost/preprocessor/detail/check.hpp U:/epoc32/include/stdapis/boost/preprocessor/logical/compl.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/edg/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/repetition/detail/for.hpp U:/epoc32/include/stdapis/boost/preprocessor/control/expr_iif.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/elem.hpp U:/epoc32/include/stdapis/boost/preprocessor/tuple/rem.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/bool_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_def.hpp U:/epoc32/include/stdapis/boost/type_traits/detail/type_trait_undef.hpp U:/epoc32/include/stdapis/boost/type_traits/add_const.hpp U:/epoc32/include/stdapis/stlportv5/stl/_move_construct_fwk.h U:/epoc32/include/stdapis/stlportv5/stl/_algobase.c U:/epoc32/include/stdapis/stlportv5/stl/_cstdio.h U:/epoc32/include/stdapis/stlportv5/stl/_new.h U:/epoc32/include/stdapis/stlportv5/stl/_exception.h U:/epoc32/include/stdapis/stlportv5/stl/_construct.h U:/epoc32/include/stdapis/stlportv5/stl/_pthread_alloc.h U:/epoc32/include/stdapis/stlportv5/stl/_alloc.c U:/epoc32/include/stdapis/stlportv5/stl/_string_fwd.h U:/epoc32/include/stdapis/stlportv5/iosfwd U:/epoc32/include/stdapis/stlportv5/stl/_iosfwd.h U:/epoc32/include/stdapis/stlportv5/stl/char_traits.h U:/epoc32/include/stdapis/stlportv5/stl/_function_base.h U:/epoc32/include/stdapis/stlportv5/stl/_uninitialized.h U:/epoc32/include/stdapis/stlportv5/stl/msl_string.h U:/epoc32/include/stdapis/stlportv5/stl/_string_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_npos.h U:/epoc32/include/stdapis/stlportv5/stl/_string_operators.h U:/epoc32/include/stdapis/stlportv5/stl/_string.c U:/epoc32/include/stdapis/stlportv5/stl/_ctraits_fns.h U:/epoc32/include/stdapis/stlportv5/stl/_range_errors.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept.h U:/epoc32/include/stdapis/stlportv5/stl/_stdexcept_base.h U:/epoc32/include/stdapis/stlportv5/stl/_string_hash.h U:/epoc32/include/stdapis/stlportv5/stl/_hash_fun.h U:/epoc32/include/stdapis/stlportv5/stl/_string_io.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.h U:/epoc32/include/stdapis/stlportv5/stl/_ios_base.h U:/epoc32/include/stdapis/stlportv5/stl/_locale.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.h U:/epoc32/include/e32atomics.h U:/epoc32/include/stdapis/pthread.h U:/epoc32/include/stdapis/pthreadtypes.h U:/epoc32/include/stdapis/sched.h U:/epoc32/include/stdapis/pthreadalias.h U:/epoc32/include/stdapis/stlportv5/stl/_ctime.h U:/epoc32/include/stdapis/stlportv5/cstdio U:/epoc32/include/stdapis/stlportv5/cwchar U:/epoc32/include/stdapis/stlportv5/cassert U:/epoc32/include/stdapis/assert.h U:/epoc32/include/stdapis/stlportv5/stl/_threads.c U:/epoc32/include/stdapis/stlportv5/stl/_ctype.h U:/epoc32/include/stdapis/stlportv5/stl/c_locale.h U:/epoc32/include/stdapis/ctype.h U:/epoc32/include/stdapis/stlportv5/stl/_numpunct.h U:/epoc32/include/stdapis/stlportv5/stl/_ios.c U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.h U:/epoc32/include/stdapis/stlportv5/stl/_streambuf.c U:/epoc32/include/stdapis/stlportv5/stl/_ostreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_ostream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_put.h U:/epoc32/include/stdapis/stlportv5/stl/_iostream_string.h U:/epoc32/include/stdapis/stlportv5/stl/_num_put.c U:/epoc32/include/stdapis/stlportv5/stl/_limits.h U:/epoc32/include/stdapis/stlportv5/cfloat U:/epoc32/include/stdapis/float.h U:/epoc32/include/stdapis/stlportv5/stl/_limits.c U:/epoc32/include/stdapis/stlportv5/stl/_istream.h U:/epoc32/include/stdapis/stlportv5/stl/_istreambuf_iterator.h U:/epoc32/include/stdapis/stlportv5/stl/_istream.c U:/epoc32/include/stdapis/stlportv5/stl/_num_get.h U:/epoc32/include/stdapis/stlportv5/stl/_num_get.c U:/epoc32/include/stdapis/stlportv5/stl/_string_io.c U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/stdapis/stlportv5/iterator U:/epoc32/include/stdapis/stlportv5/stl/_stream_iterator.h U:/epoc32/include/stdapis/stlportv5/list U:/epoc32/include/stdapis/stlportv5/stl/_list.h U:/epoc32/include/stdapis/stlportv5/stl/_list.c U:/epoc32/include/stdapis/stlportv5/stl/_carray.h U:/epoc32/include/stdapis/stlportv5/stl/_relops_cont.h U:/epoc32/include/stdapis/stlportv5/new U:/epoc32/include/stdapis/stlportv5/exception U:/epoc32/include/stdapis/stlportv5/map U:/epoc32/include/stdapis/stlportv5/stl/_map.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.h U:/epoc32/include/stdapis/stlportv5/stl/_tree.c U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/Qt3Support/q3valuelist.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qpluginloader.h U:/epoc32/include/mw/QtCore/qlibrary.h U:/epoc32/include/mw/QtCore/quuid.h U:/epoc32/include/mw/QtCore/qalgorithms.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtCore/qbytearray.h U:/epoc32/include/mw/QtCore/qbytearraymatcher.h U:/epoc32/include/mw/QtCore/qcache.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qchar.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qcryptographichash.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer_impl.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qelapsedtimer.h U:/epoc32/include/mw/QtCore/qhash.h U:/epoc32/include/mw/QtCore/qiterator.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qlinkedlist.h U:/epoc32/include/mw/QtCore/qlist.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qmap.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtCore/qpair.h U:/epoc32/include/mw/QtCore/qpoint.h U:/epoc32/include/mw/QtCore/qqueue.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qregexp.h U:/epoc32/include/mw/QtCore/qscopedpointer.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qshareddata.h U:/epoc32/include/mw/QtCore/qsharedpointer.h U:/epoc32/include/mw/QtCore/qsize.h U:/epoc32/include/mw/QtCore/qstack.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/stdapis/stlportv5/vector U:/epoc32/include/stdapis/stlportv5/stl/_vector.h U:/epoc32/include/stdapis/stlportv5/stl/_vector.c U:/epoc32/include/stdapis/stlportv5/stl/_bvector.h U:/epoc32/include/mw/QtCore/QPointF U:/epoc32/include/mw/QtCore/QPoint U:/epoc32/include/mw/QtCore/qstring.h U:/epoc32/include/mw/QtCore/qstringbuilder.h U:/epoc32/include/mw/QtCore/qstringlist.h U:/epoc32/include/mw/QtCore/qstringmatcher.h U:/epoc32/include/mw/QtCore/qtextboundaryfinder.h U:/epoc32/include/mw/QtCore/qtimeline.h U:/epoc32/include/mw/QtCore/qeasingcurve.h U:/epoc32/include/mw/QtCore/qvarlengtharray.h U:/epoc32/include/mw/QtCore/qcontainerfwd.h U:/epoc32/include/mw/QtCore/qvector.h U:/epoc32/include/mw/QtCore/qxmlstream.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtCore/qabstracttransition.h U:/epoc32/include/mw/QtCore/qfinalstate.h U:/epoc32/include/mw/QtCore/qabstractstate.h U:/epoc32/include/mw/QtCore/qhistorystate.h U:/epoc32/include/mw/QtCore/qsignaltransition.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qstatemachine.h U:/epoc32/include/mw/QtCore/qstate.h U:/epoc32/include/mw/QtCore/qset.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qlocale.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qcontiguouscache.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qfutureinterface.h U:/epoc32/include/mw/QtCore/qfuturesynchronizer.h U:/epoc32/include/mw/QtCore/qfuture.h U:/epoc32/include/mw/QtCore/qfuturewatcher.h U:/epoc32/include/mw/QtCore/qrunnable.h U:/epoc32/include/mw/QtCore/qtconcurrentcompilertest.h U:/epoc32/include/mw/QtCore/qtconcurrentexception.h U:/epoc32/include/mw/QtCore/qtconcurrentfilter.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentfilterkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentfunctionwrappers.h U:/epoc32/include/mw/QtCore/qtconcurrentiteratekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmap.h U:/epoc32/include/mw/QtCore/qtconcurrentmapkernel.h U:/epoc32/include/mw/QtCore/qtconcurrentmedian.h U:/epoc32/include/mw/QtCore/qtconcurrentreducekernel.h U:/epoc32/include/mw/QtCore/qtconcurrentresultstore.h U:/epoc32/include/mw/QtCore/qtconcurrentrun.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentrunbase.h U:/epoc32/include/mw/QtCore/qtconcurrentstoredfunctioncall.h U:/epoc32/include/mw/QtCore/qtconcurrentthreadengine.h U:/epoc32/include/mw/QtCore/qthreadpool.h U:/epoc32/include/mw/QtCore/qtextcodec.h U:/epoc32/include/mw/QtCore/qtextcodecplugin.h U:/epoc32/include/mw/QtCore/qplugin.h U:/epoc32/include/mw/QtCore/qfactoryinterface.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qabstractanimation.h U:/epoc32/include/mw/QtCore/qparallelanimationgroup.h U:/epoc32/include/mw/QtCore/qanimationgroup.h U:/epoc32/include/mw/QtCore/qpauseanimation.h U:/epoc32/include/mw/QtCore/qpropertyanimation.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qsequentialanimationgroup.h U:/epoc32/include/mw/QtCore/qvariantanimation.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtCore/qdatastream.h U:/epoc32/include/mw/QtCore/qdebug.h U:/epoc32/include/mw/QtCore/qdir.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtCore/qfile.h U:/epoc32/include/mw/QtCore/qfileinfo.h U:/epoc32/include/mw/QtCore/qfilesystemwatcher.h U:/epoc32/include/mw/QtCore/qfsfileengine.h U:/epoc32/include/mw/QtCore/qabstractfileengine.h U:/epoc32/include/mw/QtCore/qiodevice.h U:/epoc32/include/mw/QtCore/qprocess.h U:/epoc32/include/mw/QtCore/qresource.h U:/epoc32/include/mw/QtCore/qsettings.h U:/epoc32/include/mw/QtCore/qtemporaryfile.h U:/epoc32/include/mw/QtCore/qtextstream.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtCore/qatomic.h U:/epoc32/include/mw/QtCore/qbasicatomic.h U:/epoc32/include/mw/QtCore/qmutex.h U:/epoc32/include/mw/QtCore/qreadwritelock.h U:/epoc32/include/mw/QtCore/qsemaphore.h U:/epoc32/include/mw/QtCore/qthread.h U:/epoc32/include/mw/QtCore/qthreadstorage.h U:/epoc32/include/mw/QtCore/qwaitcondition.h U:/epoc32/include/mw/QtCore/qabstracteventdispatcher.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtCore/qcoreevent.h U:/epoc32/include/mw/QtCore/qeventloop.h U:/epoc32/include/mw/QtCore/qmath.h U:/epoc32/include/e32math.h U:/epoc32/include/e32math.inl U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtCore/qmetatype.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtCore/qobject.h U:/epoc32/include/mw/QtCore/qobjectcleanuphandler.h U:/epoc32/include/mw/QtCore/qobjectdefs.h U:/epoc32/include/mw/QtCore/qpointer.h U:/epoc32/include/mw/QtCore/qsharedmemory.h U:/epoc32/include/mw/QtCore/qsignalmapper.h U:/epoc32/include/mw/QtCore/qsocketnotifier.h U:/epoc32/include/mw/QtCore/qsystemsemaphore.h U:/epoc32/include/mw/QtCore/qtimer.h U:/epoc32/include/mw/QtCore/qbasictimer.h U:/epoc32/include/mw/QtCore/qtranslator.h U:/epoc32/include/mw/QtCore/qvariant.h U:/epoc32/include/mw/QtCore/qendian.h U:/epoc32/include/mw/QtCore/qfeatures.h U:/epoc32/include/mw/QtCore/qglobal.h U:/epoc32/include/mw/QtCore/qlibraryinfo.h U:/epoc32/include/mw/QtCore/QDate U:/epoc32/include/mw/QtCore/qnamespace.h U:/epoc32/include/mw/QtCore/qnumeric.h U:/epoc32/include/mw/QtGui/qs60mainapplication.h U:/epoc32/include/platform/mw/aknapp.h U:/epoc32/include/mw/eikapp.h U:/epoc32/include/mw/apparc.h U:/epoc32/include/e32base.h U:/epoc32/include/e32base.inl U:/epoc32/include/platform/e32base_private.h U:/epoc32/include/f32file.h U:/epoc32/include/platform/e32svr.h U:/epoc32/include/platform/e32hal.h U:/epoc32/include/platform/d32locd.h U:/epoc32/include/platform/partitions.h U:/epoc32/include/platform/d32locd.inl U:/epoc32/include/platform/e32notif.h U:/epoc32/include/e32ldr.h U:/epoc32/include/platform/e32ldr_private.h U:/epoc32/include/e32event.h U:/epoc32/include/platform/e32btrace.h U:/epoc32/include/platform/e32event_private.h U:/epoc32/include/platform/e32ktran.h U:/epoc32/include/e32keys.h U:/epoc32/include/e32debug.h U:/epoc32/include/platform/e32lmsg.h U:/epoc32/include/f32file64.h U:/epoc32/include/f32file64.inl U:/epoc32/include/f32file.inl U:/epoc32/include/platform/f32file_private.h U:/epoc32/include/gdi.h U:/epoc32/include/s32std.h U:/epoc32/include/s32strm.h U:/epoc32/include/s32strm.inl U:/epoc32/include/s32std.inl U:/epoc32/include/displaymode.h U:/epoc32/include/platform/graphics/gdi/glyphsample.h U:/epoc32/include/platform/graphics/gdi/gdiconsts.h U:/epoc32/include/platform/graphics/gdi/gdistructs.h U:/epoc32/include/platform/graphics/gdi/gdiinline.inl U:/epoc32/include/gdi.inl U:/epoc32/include/mw/apadef.h U:/epoc32/include/mw/apaid.h U:/epoc32/include/apmstd.h U:/epoc32/include/mw/apaapp.h U:/epoc32/include/mw/apadoc.h U:/epoc32/include/mw/apaproc.h U:/epoc32/include/mw/apaflrec.h U:/epoc32/include/mw/QtGui/qs60mainappui.h U:/epoc32/include/platform/mw/aknappui.h U:/epoc32/include/mw/eikappui.h U:/epoc32/include/mw/coeaui.h U:/epoc32/include/w32std.h U:/epoc32/include/fntstore.h U:/epoc32/include/openfont.h U:/epoc32/include/ecom/ecom.h U:/epoc32/include/ecom/ecomerrorcodes.h U:/epoc32/include/platform/ecom/ecomextendedinterfaceerrorcodes.h U:/epoc32/include/ecom/ecomresolverparams.h U:/epoc32/include/ecom/ecomresolverparams.inl U:/epoc32/include/ecom/implementationinformation.h U:/epoc32/include/ecom/implementationinformation.inl U:/epoc32/include/linkedfonts.h U:/epoc32/include/platform/graphics/openfontconstants.h U:/epoc32/include/platform/graphics/openfontrasterizer.h U:/epoc32/include/openfontlinkedtypefaceelementspec.h U:/epoc32/include/platform/graphics/openfontlinkedtypefacespecification.h U:/epoc32/include/platform/graphics/openfontlinkedtypefaceextension.h U:/epoc32/include/bitdev.h U:/epoc32/include/fbs.h U:/epoc32/include/bitmap.h U:/epoc32/include/platform/graphics/bitmapuid.h U:/epoc32/include/graphics/fbsdefs.h U:/epoc32/include/bitbase.h U:/epoc32/include/bitstd.h U:/epoc32/include/graphicsaccelerator.h U:/epoc32/include/bitdev.inl U:/epoc32/include/textcursor.h U:/epoc32/include/pointerevent.h U:/epoc32/include/advancedpointerevent.h U:/epoc32/include/advancedpointerevent.inl U:/epoc32/include/sizemode.h U:/epoc32/include/babitflags.h U:/epoc32/include/wspublishandsubscribedata.h U:/epoc32/include/platform/graphics/pointereventdata.h U:/epoc32/include/mw/coedef.h U:/epoc32/include/mw/guldef.h U:/epoc32/include/platform/mw/graphics/cone/coedefkeys.h U:/epoc32/include/mw/coehelp.h U:/epoc32/include/mw/coeview.h U:/epoc32/include/mw/vwsdef.h U:/epoc32/include/mw/coemain.h U:/epoc32/include/barsc.h U:/epoc32/include/badesca.h U:/epoc32/include/bamdesca.h U:/epoc32/include/basched.h U:/epoc32/include/mw/coemop.h U:/epoc32/include/mw/coetextdrawer.h U:/epoc32/include/mw/gulutil.h U:/epoc32/include/mw/gulbordr.h U:/epoc32/include/platform/mw/graphics/uigraphicsutils/gullogicalborder.h U:/epoc32/include/gulftflg.hrh U:/epoc32/include/mw/gulalign.h U:/epoc32/include/biditext.h U:/epoc32/include/bidi.h U:/epoc32/include/txtfrmat.h U:/epoc32/include/txtfrmat.inl U:/epoc32/include/platform/systemmonitor/raiseevent.h U:/epoc32/include/systemmonitor/instrumentationhandler.h U:/epoc32/include/systemmonitor/configuration.h U:/epoc32/include/systemmonitor/systemmonitorerrors.h U:/epoc32/include/systemmonitor/recordtypes.h U:/epoc32/include/systemmonitor/systemmonitor.h U:/epoc32/include/systemmonitor/eventlog.h U:/epoc32/include/systemmonitor/locking.h U:/epoc32/include/platform/mw/graphics/cone/coescheduler.h U:/epoc32/include/mw/coemain.inl U:/epoc32/include/mw/coeinput.h U:/epoc32/include/mw/eikmobs.h U:/epoc32/include/mw/eikcmobs.h U:/epoc32/include/mw/eikdef.h U:/epoc32/include/platform/mw/uikon/eikdefconst.h U:/epoc32/include/platform/mw/uikon/eikdefmacros.h U:/epoc32/include/baerrhan.h U:/epoc32/include/mw/eikaufty.h U:/epoc32/include/platform/mw/eikspane.h U:/epoc32/include/platform/mw/eikspmod.h U:/epoc32/include/uikon.hrh U:/epoc32/include/uiklaf/private/pluginuid.hrh U:/epoc32/include/platform/mw/eiksrvc.h U:/epoc32/include/platform/mw/eiksrvs.h U:/epoc32/include/mw/eikenv.h U:/epoc32/include/mw/apacmdln.h U:/epoc32/include/mw/gulcolor.h U:/epoc32/include/mw/eikamnt.h U:/epoc32/include/platform/mw/uikon/eikautomenutitlearray.h U:/epoc32/include/platform/mw/lafmain.h U:/epoc32/include/frmtlay.h U:/epoc32/include/txtetext.h U:/epoc32/include/platform/fldset.h U:/epoc32/include/fldinfo.h U:/epoc32/include/fldbase.h U:/epoc32/include/s32stor.h U:/epoc32/include/s32share.h U:/epoc32/include/s32buf.h U:/epoc32/include/s32buf.inl U:/epoc32/include/s32share.inl U:/epoc32/include/s32page.h U:/epoc32/include/s32page.inl U:/epoc32/include/s32stor.inl U:/epoc32/include/fldbltin.h U:/epoc32/include/platform/txtetext_internal.h U:/epoc32/include/platform/txtclipboard.h U:/epoc32/include/txtetext.inl U:/epoc32/include/frmlaydt.h U:/epoc32/include/frmparam.h U:/epoc32/include/frmvis.h U:/epoc32/include/tagma.h U:/epoc32/include/txtstyle.h U:/epoc32/include/txtfmlyr.h U:/epoc32/include/txtfmstm.h U:/epoc32/include/platform/txtfmlyr_internal.h U:/epoc32/include/txtfmlyr.inl U:/epoc32/include/txtstyle.inl U:/epoc32/include/linebreak.h U:/epoc32/include/platform/tagma_internal.h U:/epoc32/include/platform/tagmalayoutandsource.h U:/epoc32/include/mw/eikvcurs.h U:/epoc32/include/platform/mw/eikpicturefactory.h U:/epoc32/include/platform/mw/eikdgfty.h U:/epoc32/include/platform/mw/eiklibry.h U:/epoc32/include/mw/eikfctry.h U:/epoc32/include/platform/mw/uikon/eikctrlstatus.h U:/epoc32/include/mw/eikenv.inl U:/epoc32/include/platform/mw/uikon/eikenvinterface.h U:/epoc32/include/platform/mw/uikon/eikenvinterface.inl U:/epoc32/include/platform/mw/eiksrv.pan U:/epoc32/include/mw/apgtask.h U:/epoc32/include/platform/mw/eiksrv.h U:/epoc32/include/platform/mw/vwsappst.h U:/epoc32/include/mw/eikunder.h U:/epoc32/include/platform/mw/eikcycledef.h U:/epoc32/include/mw/coecntrl.h U:/epoc32/include/mw/coecobs.h U:/epoc32/include/mw/coefont.h U:/epoc32/include/mw/coecontrolarray.h U:/epoc32/include/mw/coecoloruse.h U:/epoc32/include/platform/mw/eikcba.h U:/epoc32/include/platform/mw/eikctgrp.h U:/epoc32/include/platform/mw/eikbctrl.h U:/epoc32/include/platform/mw/AknControl.h U:/epoc32/include/platform/mw/lafpublc.h U:/epoc32/include/platform/mw/eikbtgrp.h U:/epoc32/include/platform/mw/eiksbobs.h U:/epoc32/include/platform/mw/eiksbfrm.h U:/epoc32/include/platform/mw/aknscrlb.h U:/epoc32/include/platform/mw/eikscrlb.h U:/epoc32/include/platform/mw/aknscbut.h U:/epoc32/include/platform/mw/eikimage.h U:/epoc32/include/platform/mw/eikalign.h U:/epoc32/include/mw/AknsItemData.h U:/epoc32/include/mw/AknsItemID.h U:/epoc32/include/mw/AknsItemID.inl U:/epoc32/include/mw/AknsRlEffect.h U:/epoc32/include/mw/AknsRlEffectContext.h U:/epoc32/include/mw/AknsRlParameter.h U:/epoc32/include/platform/mw/avkon.hrh U:/epoc32/include/platform/mw/eikon.hrh U:/epoc32/include/platform/mw/lafpublc.hrh U:/epoc32/include/eikcolor.hrh U:/epoc32/include/mw/AknFontCategory.hrh U:/epoc32/include/mw/AknFontIdOffsets.hrh U:/epoc32/include/platform/mw/AknDef.h U:/epoc32/include/platform/mw/AknDef.hrh U:/epoc32/include/mw/akntouchpaneobserver.h U:/epoc32/include/mw/QtGui/qs60maindocument.h U:/epoc32/include/platform/mw/AknDoc.h U:/epoc32/include/mw/eikdoc.h U:/epoc32/include/platform/savenotf.h U:/epoc32/include/platform/mw/uikon/eikdefaulticondefs.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtCore/qrect.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qmacdefines_mac.h U:/epoc32/include/mw/QtGui/qwindowdefs_win.h U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtCore/qmimedata.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qaccessible2.h U:/epoc32/include/mw/QtGui/qaccessible.h U:/epoc32/include/mw/QtGui/qaccessiblebridge.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qaccessibleplugin.h U:/epoc32/include/mw/QtGui/qaccessiblewidget.h U:/epoc32/include/mw/QtGui/qaccessibleobject.h U:/epoc32/include/mw/QtGui/qcompleter.h U:/epoc32/include/mw/QtCore/qabstractitemmodel.h U:/epoc32/include/mw/QtGui/qdesktopservices.h U:/epoc32/include/mw/QtGui/qsystemtrayicon.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtCore/qline.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qundogroup.h U:/epoc32/include/mw/QtGui/qundostack.h U:/epoc32/include/mw/QtGui/qundoview.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtCore/qmargins.h U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qgraphicsanchorlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicsgridlayout.h U:/epoc32/include/mw/QtGui/qgraphicsitem.h U:/epoc32/include/mw/QtGui/qgraphicsitemanimation.h U:/epoc32/include/mw/QtGui/qgraphicslayout.h U:/epoc32/include/mw/QtGui/qgraphicslayoutitem.h U:/epoc32/include/mw/QtGui/qgraphicslinearlayout.h U:/epoc32/include/mw/QtGui/qgraphicsproxywidget.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qgraphicssceneevent.h U:/epoc32/include/mw/QtGui/qgraphicstransform.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtGui/QVector3D U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/QTransform U:/epoc32/include/mw/QtGui/qtransform.h U:/epoc32/include/mw/QtGui/QMatrix4x4 U:/epoc32/include/mw/QtGui/qmatrix4x4.h U:/epoc32/include/mw/QtGui/qvector3d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qgraphicsview.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qgraphicsscene.h U:/epoc32/include/mw/QtGui/qgraphicswidget.h U:/epoc32/include/mw/QtGui/qcdestyle.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qcleanlooksstyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qcommonstyle.h U:/epoc32/include/mw/QtGui/qgtkstyle.h U:/epoc32/include/mw/QtGui/QCleanlooksStyle U:/epoc32/include/mw/QtGui/QPalette U:/epoc32/include/mw/QtGui/qpalette.h U:/epoc32/include/mw/QtGui/QFont U:/epoc32/include/mw/QtGui/qfont.h U:/epoc32/include/mw/QtGui/QFileDialog U:/epoc32/include/mw/QtGui/qfiledialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qmotifstyle.h U:/epoc32/include/mw/QtGui/qplastiquestyle.h U:/epoc32/include/mw/QtGui/qproxystyle.h U:/epoc32/include/mw/QtGui/QCommonStyle U:/epoc32/include/mw/QtGui/qs60style.h U:/epoc32/include/mw/QtGui/qstyle.h U:/epoc32/include/mw/QtGui/qstylefactory.h U:/epoc32/include/mw/QtGui/qstyleoption.h U:/epoc32/include/mw/QtGui/qstyleplugin.h U:/epoc32/include/mw/QtGui/qwindowscestyle.h U:/epoc32/include/mw/QtGui/qwindowsmobilestyle.h U:/epoc32/include/mw/QtGui/qwindowsstyle.h U:/epoc32/include/mw/QtGui/qwindowsvistastyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qwindowsxpstyle.h U:/epoc32/include/mw/QtGui/qvfbhdr.h U:/epoc32/include/mw/QtGui/qwsembedwidget.h U:/epoc32/include/mw/QtGui/qinputcontext.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qinputcontextfactory.h U:/epoc32/include/mw/QtGui/qinputcontextplugin.h U:/epoc32/include/mw/QtGui/qgraphicseffect.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qabstractscrollarea.h U:/epoc32/include/mw/QtGui/qabstractslider.h U:/epoc32/include/mw/QtGui/qabstractspinbox.h U:/epoc32/include/mw/QtGui/qbuttongroup.h U:/epoc32/include/mw/QtGui/qcalendarwidget.h U:/epoc32/include/mw/QtCore/qdatetime.h U:/epoc32/include/mw/QtGui/qcheckbox.h U:/epoc32/include/mw/QtGui/qabstractbutton.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qcommandlinkbutton.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qdatetimeedit.h U:/epoc32/include/mw/QtGui/qdial.h U:/epoc32/include/mw/QtGui/qdialogbuttonbox.h U:/epoc32/include/mw/QtGui/qdockwidget.h U:/epoc32/include/mw/QtGui/qfocusframe.h U:/epoc32/include/mw/QtGui/qfontcombobox.h U:/epoc32/include/mw/QtGui/qcombobox.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qframe.h U:/epoc32/include/mw/QtGui/qgroupbox.h U:/epoc32/include/mw/QtGui/qlabel.h U:/epoc32/include/mw/QtGui/qlcdnumber.h U:/epoc32/include/mw/QtCore/qbitarray.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmainwindow.h U:/epoc32/include/mw/QtGui/qmdiarea.h U:/epoc32/include/mw/QtGui/qmdisubwindow.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenubar.h U:/epoc32/include/mw/QtGui/qmenu.h U:/epoc32/include/mw/QtGui/qmenudata.h U:/epoc32/include/mw/QtGui/qplaintextedit.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qprintpreviewwidget.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprogressbar.h U:/epoc32/include/mw/QtGui/qpushbutton.h U:/epoc32/include/mw/QtGui/qradiobutton.h U:/epoc32/include/mw/QtGui/qrubberband.h U:/epoc32/include/mw/QtGui/qscrollarea.h U:/epoc32/include/mw/QtGui/qscrollbar.h U:/epoc32/include/mw/QtGui/qsizegrip.h U:/epoc32/include/mw/QtGui/qslider.h U:/epoc32/include/mw/QtGui/qspinbox.h U:/epoc32/include/mw/QtGui/qsplashscreen.h U:/epoc32/include/mw/QtGui/qsplitter.h U:/epoc32/include/mw/QtGui/qstackedwidget.h U:/epoc32/include/mw/QtGui/qstatusbar.h U:/epoc32/include/mw/QtGui/qtabbar.h U:/epoc32/include/mw/QtGui/qtabwidget.h U:/epoc32/include/mw/QtGui/qtextbrowser.h U:/epoc32/include/mw/QtCore/qurl.h U:/epoc32/include/mw/QtGui/qtextedit.h U:/epoc32/include/mw/QtGui/qtoolbar.h U:/epoc32/include/mw/QtGui/qtoolbox.h U:/epoc32/include/mw/QtGui/qtoolbutton.h U:/epoc32/include/mw/QtGui/qvalidator.h U:/epoc32/include/mw/QtGui/qworkspace.h U:/epoc32/include/mw/QtGui/qkeyeventtransition.h U:/epoc32/include/mw/QtCore/qeventtransition.h U:/epoc32/include/mw/QtGui/qmouseeventtransition.h U:/epoc32/include/mw/QtGui/qabstractitemdelegate.h U:/epoc32/include/mw/QtGui/qabstractitemview.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qcolumnview.h U:/epoc32/include/mw/QtGui/qdatawidgetmapper.h U:/epoc32/include/mw/QtGui/qdirmodel.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qfileiconprovider.h U:/epoc32/include/mw/QtGui/qheaderview.h U:/epoc32/include/mw/QtGui/qitemdelegate.h U:/epoc32/include/mw/QtGui/qitemeditorfactory.h U:/epoc32/include/mw/QtCore/qmetaobject.h U:/epoc32/include/mw/QtGui/qitemselectionmodel.h U:/epoc32/include/mw/QtGui/qlistview.h U:/epoc32/include/mw/QtGui/qlistwidget.h U:/epoc32/include/mw/QtGui/qproxymodel.h U:/epoc32/include/mw/QtGui/qsortfilterproxymodel.h U:/epoc32/include/mw/QtGui/qabstractproxymodel.h U:/epoc32/include/mw/QtGui/qstandarditemmodel.h U:/epoc32/include/mw/QtGui/qstringlistmodel.h U:/epoc32/include/mw/QtGui/qstyleditemdelegate.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtablewidget.h U:/epoc32/include/mw/QtGui/qtableview.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidget.h U:/epoc32/include/mw/QtGui/qtreeview.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qtreewidgetitemiterator.h U:/epoc32/include/mw/QtGui/qabstracttextdocumentlayout.h U:/epoc32/include/mw/QtGui/qfontdatabase.h U:/epoc32/include/mw/QtGui/qfontinfo.h U:/epoc32/include/mw/QtGui/qfontmetrics.h U:/epoc32/include/mw/QtGui/qstatictext.h U:/epoc32/include/mw/QtGui/qsyntaxhighlighter.h U:/epoc32/include/mw/QtGui/qtextcursor.h U:/epoc32/include/mw/QtGui/qtextdocument.h U:/epoc32/include/mw/QtGui/qtextdocumentfragment.h U:/epoc32/include/mw/QtGui/qtextdocumentwriter.h U:/epoc32/include/mw/QtGui/qtextformat.h U:/epoc32/include/mw/QtGui/qtextlayout.h U:/epoc32/include/mw/QtGui/qtextlist.h U:/epoc32/include/mw/QtGui/qtextobject.h U:/epoc32/include/mw/QtGui/qtextoption.h U:/epoc32/include/mw/QtGui/qtexttable.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qcolordialog.h U:/epoc32/include/mw/QtGui/qdialog.h U:/epoc32/include/mw/QtGui/qerrormessage.h U:/epoc32/include/mw/QtGui/qfilesystemmodel.h U:/epoc32/include/mw/QtCore/qdiriterator.h U:/epoc32/include/mw/QtGui/qfontdialog.h U:/epoc32/include/mw/QtGui/qinputdialog.h U:/epoc32/include/mw/QtGui/qlineedit.h U:/epoc32/include/mw/QtGui/qmessagebox.h U:/epoc32/include/mw/QtGui/qpagesetupdialog.h U:/epoc32/include/mw/QtGui/qabstractpagesetupdialog.h U:/epoc32/include/mw/QtGui/qprintdialog.h U:/epoc32/include/mw/QtGui/qabstractprintdialog.h U:/epoc32/include/mw/QtGui/qprintpreviewdialog.h U:/epoc32/include/mw/QtGui/qprogressdialog.h U:/epoc32/include/mw/QtGui/qwizard.h U:/epoc32/include/mw/QtGui/qbitmap.h U:/epoc32/include/mw/QtGui/qicon.h U:/epoc32/include/mw/QtGui/qiconengine.h U:/epoc32/include/mw/QtGui/qiconengineplugin.h U:/epoc32/include/mw/QtGui/qimage.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qimageiohandler.h U:/epoc32/include/mw/QtGui/qimagewriter.h U:/epoc32/include/mw/QtGui/qmovie.h U:/epoc32/include/mw/QtGui/qimagereader.h U:/epoc32/include/mw/QtGui/qpicture.h U:/epoc32/include/mw/QtGui/qpictureformatplugin.h U:/epoc32/include/mw/QtGui/qpixmap.h U:/epoc32/include/mw/QtGui/qpixmapcache.h U:/epoc32/include/mw/QtGui/qsymbianevent.h U:/epoc32/include/mw/QtGui/qbrush.h U:/epoc32/include/mw/QtGui/qcolor.h U:/epoc32/include/mw/QtGui/qcolormap.h U:/epoc32/include/mw/QtGui/qdrawutil.h U:/epoc32/include/mw/QtGui/qmatrix.h U:/epoc32/include/mw/QtGui/qpaintdevice.h U:/epoc32/include/mw/QtGui/qpaintengine.h U:/epoc32/include/mw/QtGui/qpainter.h U:/epoc32/include/mw/QtGui/qpainterpath.h U:/epoc32/include/mw/QtGui/qpen.h U:/epoc32/include/mw/QtGui/qpolygon.h U:/epoc32/include/mw/QtGui/qprintengine.h U:/epoc32/include/mw/QtGui/qprinter.h U:/epoc32/include/mw/QtGui/qprinterinfo.h U:/epoc32/include/mw/QtGui/QPrinter U:/epoc32/include/mw/QtCore/QList U:/epoc32/include/mw/QtGui/qregion.h U:/epoc32/include/mw/QtGui/qrgb.h U:/epoc32/include/mw/QtGui/qstylepainter.h U:/epoc32/include/mw/QtGui/qwmatrix.h U:/epoc32/include/mw/QtGui/qaction.h U:/epoc32/include/mw/QtGui/qactiongroup.h U:/epoc32/include/mw/QtGui/qapplication.h U:/epoc32/include/mw/QtCore/qcoreapplication.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qtransportauth_qws.h U:/epoc32/include/mw/QtCore/qbuffer.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qboxlayout.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qclipboard.h U:/epoc32/include/mw/QtGui/qcursor.h U:/epoc32/include/mw/QtGui/qdesktopwidget.h U:/epoc32/include/mw/QtGui/qdrag.h U:/epoc32/include/mw/QtGui/qevent.h U:/epoc32/include/mw/QtGui/qformlayout.h U:/epoc32/include/mw/QtGui/QLayout U:/epoc32/include/mw/QtGui/qlayout.h U:/epoc32/include/mw/QtGui/qgesture.h U:/epoc32/include/mw/QtGui/qgesturerecognizer.h U:/epoc32/include/mw/QtGui/qgridlayout.h U:/epoc32/include/mw/QtGui/qkeysequence.h U:/epoc32/include/mw/QtGui/qlayoutitem.h U:/epoc32/include/mw/QtGui/qmime.h U:/epoc32/include/mw/QtGui/qsessionmanager.h U:/epoc32/include/mw/QtGui/qshortcut.h U:/epoc32/include/mw/QtGui/qsizepolicy.h U:/epoc32/include/mw/QtGui/qsound.h U:/epoc32/include/mw/QtGui/qstackedlayout.h U:/epoc32/include/mw/QtGui/qtooltip.h U:/epoc32/include/mw/QtGui/qwhatsthis.h U:/epoc32/include/mw/QtGui/qwidget.h U:/epoc32/include/mw/QtGui/qwidgetaction.h U:/epoc32/include/mw/QtGui/qwindowdefs.h U:/epoc32/include/mw/QtGui/qgenericmatrix.h U:/epoc32/include/mw/QtGui/qquaternion.h U:/epoc32/include/mw/QtGui/qvector2d.h U:/epoc32/include/mw/QtGui/qvector4d.h U:/epoc32/include/mw/QtNetwork/QNetworkRequest U:/epoc32/include/mw/QtNetwork/qnetworkrequest.h U:/epoc32/include/mw/QtCore/QSharedDataPointer U:/epoc32/include/mw/QtCore/QString U:/epoc32/include/mw/QtCore/QUrl U:/epoc32/include/mw/QtCore/QVariant U:/epoc32/include/mw/QtOpenGL/QGLWidget U:/epoc32/include/mw/QtOpenGL/qgl.h U:/epoc32/include/mw/QtGui/qpaintengine.h U:/epoc32/include/mw/QtOpenGL/qglcolormap.h U:/epoc32/include/mw/QtCore/qt_windows.h U:/epoc32/include/GLES/gl.h U:/epoc32/include/GLES/glplatform.h U:/epoc32/include/GLES/glextplatform.h U:/epoc32/include/GLES2/gl2.h U:/epoc32/include/GLES2/gl2platform.h U:/epoc32/include/GLES2/gl2extplatform.h U:/epoc32/include/mw/QtGui/QPrintPreviewDialog U:/epoc32/include/mw/QtUiTools/QUiLoader U:/epoc32/include/mw/QtUiTools/quiloader.h U:/epoc32/include/mw/QtCore/QScopedPointer U:/epoc32/include/mw/QtCore/QDebug U:/yaels-qtwebkit/WebKit/qt/Api/qwebelement.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebkitglobal.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebframe.h U:/epoc32/include/mw/QtScript/qscriptengine.h U:/epoc32/include/mw/QtScript/qscriptvalue.h U:/epoc32/include/mw/QtScript/qscriptcontext.h U:/epoc32/include/mw/QtScript/qscriptstring.h U:/epoc32/include/mw/QtScript/qscriptprogram.h U:/epoc32/include/mw/QtNetwork/qnetworkaccessmanager.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebinspector.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebpage.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebsettings.h U:/yaels-qtwebkit/WebKit/qt/Api/qwebview.h U:/epoc32/include/mw/QtGui/qx11info_x11.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/mainwindow.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webpage.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/urlloader.h U:/epoc32/include/mw/QtCore/QTextStream U:/epoc32/include/mw/QtCore/QVector U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/utils.h U:/epoc32/include/mw/QtCore/QtCore U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webinspector.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/webview.h U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/fpstimer.h U:/epoc32/include/mw/QtCore/QObject U:/epoc32/include/mw/QtCore/QSet U:/epoc32/include/mw/QtCore/QTime U:/yaels-qtwebkit/WebKit/qt/Api/qgraphicswebview.h U:/epoc32/include/mw/QtGui/QGraphicsView U:/epoc32/include/mw/QtGui/QGraphicsWidget U:/yaels-qtwebkit/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h U:/epoc32/include/mw/QtCore/QVariant U:/yaels-qtwebkit/WebKitTools/QtTestBrowser/main.cpp -OPTION COMMAND /epoc32/tools/moc.exe -DSYMBIAN -DUNICODE -DQT_KEYPAD_NAVIGATION -DQT_SOFTKEYS_ENABLED -DQT_USE_MATH_H_FLOATS -DBUILDING_QT__=1 -DWTF_USE_ACCELERATED_COMPOSITING -DUSE_SYSTEM_MALLOC -DNDEBUG -DQT_NO_UITOOLS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I"U:/epoc32/include/mw/QtCore" -I"U:/epoc32/include/mw/QtNetwork" -I"U:/epoc32/include/mw/QtGui" -I"U:/epoc32/include/mw" -I"U:/sf/mw/qt/mkspecs/common/symbian" -I"U:/epoc32/include" -I"U:/epoc32/include/stdapis" -I"U:/epoc32/include/stdapis/sys" -I"U:/epoc32/include/platform/mw" -I"U:/epoc32/include/platform" -I"U:/epoc32/include/platform/loc" -I"U:/epoc32/include/platform/mw/loc" -I"U:/epoc32/include/platform/loc/sc" -I"U:/epoc32/include/platform/mw/loc/sc" -I"U:/yaels-qtwebkit/include/QtWebKit" -I"U:/epoc32/include/stdapis/stlportv5" -I"U:/yaels-qtwebkit/WebKitTools/QtTestBrowser" -DSYMBIAN u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/main.cpp -o u:/yaels-qtwebkit/WebKitTools/QtTestBrowser/main.moc -END - -#if defined(WINSCW) -#endif - -START EXTENSION qt/qmake_store_build -END - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/fpstimer.cpp --- a/WebKitTools/QtTestBrowser/fpstimer.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,77 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "fpstimer.h" - -#include -#include - -// We save a maximum of 10000 frames, and purge 2000 at a time -#define MAX_FRAMES_SAVED 10000 -#define FRAMES_TO_PURGE_WHEN_FULL 2000 -// 60 FPS -#define FPS_MEASURE_INTERVAL 1000 / 60 - -FpsTimer::FpsTimer(QObject* parent) - : QObject(parent) -{ -} - -int FpsTimer::numFrames(int spanMillis) -{ - const QTime now = QTime::currentTime(); - - int count = 0; - for (int i = m_frames.length() - 1; i >= 0; --i, ++count) { - int msecs = m_frames[i].msecsTo(now); - if (msecs < 0) - msecs += 24 * 60 * 60 * 1000; - if (msecs > spanMillis) - break; - } - return count; -} - -void FpsTimer::start() -{ - m_timer = startTimer(FPS_MEASURE_INTERVAL); -} - -void FpsTimer::stop() -{ - killTimer(m_timer); - m_frames.clear(); -} - -void FpsTimer::timerEvent(QTimerEvent* event) -{ - if (event->timerId() != m_timer) - return; - m_frames.append(QTime::currentTime()); - if (m_frames.length() > MAX_FRAMES_SAVED) - m_frames.erase(m_frames.begin(), m_frames.begin() + FRAMES_TO_PURGE_WHEN_FULL); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/fpstimer.h --- a/WebKitTools/QtTestBrowser/fpstimer.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef fpstimer_h -#define fpstimer_h - -#include -#include -#include - -class FpsTimer : public QObject { - Q_OBJECT - -public: - FpsTimer(QObject* parent = 0); - int numFrames(int spanMillis = 1000); - -public Q_SLOTS: - void start(); - void stop(); - -protected slots: - virtual void timerEvent(QTimerEvent*); - -private: - int m_timer; - QList m_frames; -}; - -#endif // FPSMEASURE_H diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/launcherwindow.cpp --- a/WebKitTools/QtTestBrowser/launcherwindow.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,842 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "launcherwindow.h" - -const int gExitClickArea = 80; -QVector LauncherWindow::m_zoomLevels; - -LauncherWindow::LauncherWindow(WindowOptions* data, QGraphicsScene* sharedScene) - : MainWindow() - , m_currentZoom(100) - , m_view(0) - , m_inspector(0) - , m_formatMenuAction(0) -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - , m_zoomAnimation(0) -#endif -{ - if (data) - m_windowOptions = *data; - - init(); - if (sharedScene && data->useGraphicsView) - static_cast(m_view)->setScene(sharedScene); - - createChrome(); -} - -LauncherWindow::~LauncherWindow() -{ - grabZoomKeys(false); -} - -void LauncherWindow::init() -{ - QSplitter* splitter = new QSplitter(Qt::Vertical, this); - setCentralWidget(splitter); - -#if defined(Q_WS_S60) - setWindowState(Qt::WindowMaximized); -#else - setWindowState(Qt::WindowNoState); - resize(800, 600); -#endif - - initializeView(); - - connect(page(), SIGNAL(loadStarted()), this, SLOT(loadStarted())); - connect(page(), SIGNAL(loadFinished(bool)), this, SLOT(loadFinished())); - connect(page(), SIGNAL(linkHovered(const QString&, const QString&, const QString&)), - this, SLOT(showLinkHover(const QString&, const QString&))); - connect(this, SIGNAL(enteredFullScreenMode(bool)), this, SLOT(toggleFullScreenMode(bool))); - - applyPrefs(); - - m_inspector = new WebInspector(splitter); -#ifndef QT_NO_PROPERTIES - if (!m_windowOptions.inspectorUrl.isEmpty()) - m_inspector->setProperty("_q_inspectorUrl", m_windowOptions.inspectorUrl); -#endif - m_inspector->setPage(page()); - m_inspector->hide(); - connect(this, SIGNAL(destroyed()), m_inspector, SLOT(deleteLater())); - - // the zoom values are chosen to be like in Mozilla Firefox 3 - if (!m_zoomLevels.count()) { - m_zoomLevels << 30 << 50 << 67 << 80 << 90; - m_zoomLevels << 100; - m_zoomLevels << 110 << 120 << 133 << 150 << 170 << 200 << 240 << 300; - } - - grabZoomKeys(true); -} - -void LauncherWindow::initializeView() -{ - delete m_view; - - QSplitter* splitter = static_cast(centralWidget()); - - if (!m_windowOptions.useGraphicsView) { - WebViewTraditional* view = new WebViewTraditional(splitter); - view->setPage(page()); - - view->installEventFilter(this); - - m_view = view; - } else { - WebViewGraphicsBased* view = new WebViewGraphicsBased(splitter); - view->setPage(page()); - - connect(view, SIGNAL(currentFPSUpdated(int)), this, SLOT(updateFPS(int))); - - view->installEventFilter(this); - // The implementation of QAbstractScrollArea::eventFilter makes us need - // to install the event filter also on the viewport of a QGraphicsView. - view->viewport()->installEventFilter(this); - - m_view = view; - } - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - m_touchMocking = false; -#endif -} - -void LauncherWindow::applyPrefs() -{ - QWebSettings* settings = page()->settings(); - settings->setAttribute(QWebSettings::AcceleratedCompositingEnabled, m_windowOptions.useCompositing); - settings->setAttribute(QWebSettings::TiledBackingStoreEnabled, m_windowOptions.useTiledBackingStore); - settings->setAttribute(QWebSettings::FrameFlatteningEnabled, m_windowOptions.useFrameFlattening); - settings->setAttribute(QWebSettings::WebGLEnabled, m_windowOptions.useWebGL); - - if (!isGraphicsBased()) - return; - - WebViewGraphicsBased* view = static_cast(m_view); - view->setViewportUpdateMode(m_windowOptions.viewportUpdateMode); - view->setFrameRateMeasurementEnabled(m_windowOptions.showFrameRate); - view->setItemCacheMode(m_windowOptions.cacheWebView ? QGraphicsItem::DeviceCoordinateCache : QGraphicsItem::NoCache); - - if (m_windowOptions.resizesToContents) - toggleResizesToContents(m_windowOptions.resizesToContents); -} - -void LauncherWindow::createChrome() -{ - QMenu* fileMenu = menuBar()->addMenu("&File"); - fileMenu->addAction("New Window", this, SLOT(newWindow()), QKeySequence::New); - fileMenu->addAction(tr("Open File..."), this, SLOT(openFile()), QKeySequence::Open); - fileMenu->addAction(tr("Open Location..."), this, SLOT(openLocation()), QKeySequence(Qt::CTRL | Qt::Key_L)); - fileMenu->addAction("Close Window", this, SLOT(close()), QKeySequence::Close); - fileMenu->addSeparator(); - fileMenu->addAction("Take Screen Shot...", this, SLOT(screenshot())); - fileMenu->addAction(tr("Print..."), this, SLOT(print()), QKeySequence::Print); - fileMenu->addSeparator(); - fileMenu->addAction("Quit", QApplication::instance(), SLOT(closeAllWindows()), QKeySequence(Qt::CTRL | Qt::Key_Q)); - - QMenu* editMenu = menuBar()->addMenu("&Edit"); - editMenu->addAction(page()->action(QWebPage::Undo)); - editMenu->addAction(page()->action(QWebPage::Redo)); - editMenu->addSeparator(); - editMenu->addAction(page()->action(QWebPage::Cut)); - editMenu->addAction(page()->action(QWebPage::Copy)); - editMenu->addAction(page()->action(QWebPage::Paste)); - editMenu->addSeparator(); - QAction* setEditable = editMenu->addAction("Set Editable", this, SLOT(setEditable(bool))); - setEditable->setCheckable(true); - - QMenu* viewMenu = menuBar()->addMenu("&View"); - viewMenu->addAction(page()->action(QWebPage::Stop)); - viewMenu->addAction(page()->action(QWebPage::Reload)); - viewMenu->addSeparator(); - QAction* zoomIn = viewMenu->addAction("Zoom &In", this, SLOT(zoomIn())); - QAction* zoomOut = viewMenu->addAction("Zoom &Out", this, SLOT(zoomOut())); - QAction* resetZoom = viewMenu->addAction("Reset Zoom", this, SLOT(resetZoom())); - QAction* zoomTextOnly = viewMenu->addAction("Zoom Text Only", this, SLOT(toggleZoomTextOnly(bool))); - zoomTextOnly->setCheckable(true); - zoomTextOnly->setChecked(false); - viewMenu->addSeparator(); - viewMenu->addAction("Dump HTML", this, SLOT(dumpHtml())); - // viewMenu->addAction("Dump plugins", this, SLOT(dumpPlugins())); - - zoomIn->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_Plus)); - zoomOut->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_Minus)); - resetZoom->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_0)); - - QMenu* formatMenu = new QMenu("F&ormat", this); - m_formatMenuAction = menuBar()->addMenu(formatMenu); - m_formatMenuAction->setVisible(false); - formatMenu->addAction(page()->action(QWebPage::ToggleBold)); - formatMenu->addAction(page()->action(QWebPage::ToggleItalic)); - formatMenu->addAction(page()->action(QWebPage::ToggleUnderline)); - QMenu* writingMenu = formatMenu->addMenu(tr("Writing Direction")); - writingMenu->addAction(page()->action(QWebPage::SetTextDirectionDefault)); - writingMenu->addAction(page()->action(QWebPage::SetTextDirectionLeftToRight)); - writingMenu->addAction(page()->action(QWebPage::SetTextDirectionRightToLeft)); - - QMenu* windowMenu = menuBar()->addMenu("&Window"); - QAction* toggleFullScreen = windowMenu->addAction("Toggle FullScreen", this, SIGNAL(enteredFullScreenMode(bool))); - toggleFullScreen->setCheckable(true); - toggleFullScreen->setChecked(false); - // When exit fullscreen mode by clicking on the exit area (bottom right corner) we must - // uncheck the Toggle FullScreen action. - toggleFullScreen->connect(this, SIGNAL(enteredFullScreenMode(bool)), SLOT(setChecked(bool))); - - QWebSettings* settings = page()->settings(); - - QMenu* toolsMenu = menuBar()->addMenu("&Develop"); - QMenu* graphicsViewMenu = toolsMenu->addMenu("QGraphicsView"); - QAction* toggleGraphicsView = graphicsViewMenu->addAction("Toggle use of QGraphicsView", this, SLOT(initializeView())); - toggleGraphicsView->setCheckable(true); - toggleGraphicsView->setChecked(isGraphicsBased()); - - QAction* toggleWebGL = toolsMenu->addAction("Toggle WebGL", this, SLOT(toggleWebGL(bool))); - toggleWebGL->setCheckable(true); - toggleWebGL->setChecked(settings->testAttribute(QWebSettings::WebGLEnabled)); - - QAction* spatialNavigationAction = toolsMenu->addAction("Toggle Spatial Navigation", this, SLOT(toggleSpatialNavigation(bool))); - spatialNavigationAction->setCheckable(true); - spatialNavigationAction->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_S)); - - QAction* toggleFrameFlattening = toolsMenu->addAction("Toggle Frame Flattening", this, SLOT(toggleFrameFlattening(bool))); - toggleFrameFlattening->setCheckable(true); - toggleFrameFlattening->setChecked(settings->testAttribute(QWebSettings::FrameFlatteningEnabled)); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QAction* touchMockAction = toolsMenu->addAction("Toggle multitouch mocking", this, SLOT(setTouchMocking(bool))); - touchMockAction->setCheckable(true); - touchMockAction->setShortcut(QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_T)); -#endif - - toolsMenu->addSeparator(); - - QAction* toggleInterruptingJavaScripteEnabled = toolsMenu->addAction("Enable interrupting js scripts", this, SLOT(toggleInterruptingJavaScriptEnabled(bool))); - toggleInterruptingJavaScripteEnabled->setCheckable(true); - toggleInterruptingJavaScripteEnabled->setChecked(false); - - QAction* toggleJavascriptCanOpenWindows = toolsMenu->addAction("Enable js popup windows", this, SLOT(toggleJavascriptCanOpenWindows(bool))); - toggleJavascriptCanOpenWindows->setCheckable(true); - toggleJavascriptCanOpenWindows->setChecked(false); - - toolsMenu->addSeparator(); - - QAction* userAgentAction = toolsMenu->addAction("Change User Agent", this, SLOT(showUserAgentDialog())); - userAgentAction->setShortcut(QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_U)); - - toolsMenu->addAction("Select Elements...", this, SLOT(selectElements())); - - QAction* showInspectorAction = toolsMenu->addAction("Show Web Inspector", m_inspector, SLOT(setVisible(bool)), QKeySequence(Qt::CTRL | Qt::ALT | Qt::Key_I)); - showInspectorAction->setCheckable(true); - showInspectorAction->connect(m_inspector, SIGNAL(visibleChanged(bool)), SLOT(setChecked(bool))); - - // GraphicsView sub menu. - QAction* toggleAcceleratedCompositing = graphicsViewMenu->addAction("Toggle Accelerated Compositing", this, SLOT(toggleAcceleratedCompositing(bool))); - toggleAcceleratedCompositing->setCheckable(true); - toggleAcceleratedCompositing->setChecked(settings->testAttribute(QWebSettings::AcceleratedCompositingEnabled)); - toggleAcceleratedCompositing->setEnabled(isGraphicsBased()); - toggleAcceleratedCompositing->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - - QAction* toggleResizesToContents = graphicsViewMenu->addAction("Toggle Resizes To Contents Mode", this, SLOT(toggleResizesToContents(bool))); - toggleResizesToContents->setCheckable(true); - toggleResizesToContents->setChecked(m_windowOptions.resizesToContents); - toggleResizesToContents->setEnabled(isGraphicsBased()); - toggleResizesToContents->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - - QAction* toggleTiledBackingStore = graphicsViewMenu->addAction("Toggle Tiled Backing Store", this, SLOT(toggleTiledBackingStore(bool))); - toggleTiledBackingStore->setCheckable(true); - toggleResizesToContents->setChecked(m_windowOptions.useTiledBackingStore); - toggleTiledBackingStore->setEnabled(isGraphicsBased()); - toggleTiledBackingStore->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - -#if defined(QT_CONFIGURED_WITH_OPENGL) - QAction* toggleQGLWidgetViewport = graphicsViewMenu->addAction("Toggle use of QGLWidget Viewport", this, SLOT(toggleQGLWidgetViewport(bool))); - toggleQGLWidgetViewport->setCheckable(true); - toggleQGLWidgetViewport->setChecked(m_windowOptions.useQGLWidgetViewport); - toggleQGLWidgetViewport->setEnabled(isGraphicsBased()); - toggleQGLWidgetViewport->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); -#endif - - QMenu* viewportUpdateMenu = graphicsViewMenu->addMenu("Change Viewport Update Mode"); - viewportUpdateMenu->setEnabled(isGraphicsBased()); - viewportUpdateMenu->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - - QAction* fullUpdate = viewportUpdateMenu->addAction("FullViewportUpdate"); - fullUpdate->setCheckable(true); - fullUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::FullViewportUpdate) ? true : false); - - QAction* minimalUpdate = viewportUpdateMenu->addAction("MinimalViewportUpdate"); - minimalUpdate->setCheckable(true); - minimalUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::MinimalViewportUpdate) ? true : false); - - QAction* smartUpdate = viewportUpdateMenu->addAction("SmartViewportUpdate"); - smartUpdate->setCheckable(true); - smartUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::SmartViewportUpdate) ? true : false); - - QAction* boundingRectUpdate = viewportUpdateMenu->addAction("BoundingRectViewportUpdate"); - boundingRectUpdate->setCheckable(true); - boundingRectUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::BoundingRectViewportUpdate) ? true : false); - - QAction* noUpdate = viewportUpdateMenu->addAction("NoViewportUpdate"); - noUpdate->setCheckable(true); - noUpdate->setChecked((m_windowOptions.viewportUpdateMode == QGraphicsView::NoViewportUpdate) ? true : false); - - QSignalMapper* signalMapper = new QSignalMapper(viewportUpdateMenu); - signalMapper->setMapping(fullUpdate, QGraphicsView::FullViewportUpdate); - signalMapper->setMapping(minimalUpdate, QGraphicsView::MinimalViewportUpdate); - signalMapper->setMapping(smartUpdate, QGraphicsView::SmartViewportUpdate); - signalMapper->setMapping(boundingRectUpdate, QGraphicsView::BoundingRectViewportUpdate); - signalMapper->setMapping(noUpdate, QGraphicsView::NoViewportUpdate); - - connect(fullUpdate, SIGNAL(triggered()), signalMapper, SLOT(map())); - connect(minimalUpdate, SIGNAL(triggered()), signalMapper, SLOT(map())); - connect(smartUpdate, SIGNAL(triggered()), signalMapper, SLOT(map())); - connect(boundingRectUpdate, SIGNAL(triggered()), signalMapper, SLOT(map())); - connect(noUpdate, SIGNAL(triggered()), signalMapper, SLOT(map())); - - connect(signalMapper, SIGNAL(mapped(int)), this, SLOT(changeViewportUpdateMode(int))); - - QActionGroup* viewportUpdateModeActions = new QActionGroup(viewportUpdateMenu); - viewportUpdateModeActions->addAction(fullUpdate); - viewportUpdateModeActions->addAction(minimalUpdate); - viewportUpdateModeActions->addAction(smartUpdate); - viewportUpdateModeActions->addAction(boundingRectUpdate); - viewportUpdateModeActions->addAction(noUpdate); - - graphicsViewMenu->addSeparator(); - - QAction* flipAnimated = graphicsViewMenu->addAction("Animated Flip"); - flipAnimated->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - flipAnimated->setEnabled(isGraphicsBased()); - - QAction* flipYAnimated = graphicsViewMenu->addAction("Animated Y-Flip"); - flipYAnimated->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - flipYAnimated->setEnabled(isGraphicsBased()); - - if (isGraphicsBased()) { - WebViewGraphicsBased* view = static_cast(m_view); - connect(flipAnimated, SIGNAL(triggered()), view, SLOT(animatedFlip())); - connect(flipYAnimated, SIGNAL(triggered()), view, SLOT(animatedYFlip())); - } - - QAction* cloneWindow = graphicsViewMenu->addAction("Clone Window", this, SLOT(cloneWindow())); - cloneWindow->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - cloneWindow->setEnabled(isGraphicsBased()); - - graphicsViewMenu->addSeparator(); - - QAction* showFPS = graphicsViewMenu->addAction("Show FPS", this, SLOT(showFPS(bool))); - showFPS->setCheckable(true); - showFPS->setEnabled(isGraphicsBased()); - showFPS->connect(toggleGraphicsView, SIGNAL(toggled(bool)), SLOT(setEnabled(bool))); - showFPS->setChecked(m_windowOptions.showFrameRate); -} - -bool LauncherWindow::isGraphicsBased() const -{ - return bool(qobject_cast(m_view)); -} - -void LauncherWindow::keyPressEvent(QKeyEvent* event) -{ -#ifdef Q_WS_MAEMO_5 - switch (event->key()) { - case Qt::Key_F7: - zoomIn(); - event->accept(); - break; - case Qt::Key_F8: - zoomOut(); - event->accept(); - break; - } -#endif - MainWindow::keyPressEvent(event); -} - -void LauncherWindow::grabZoomKeys(bool grab) -{ -#ifdef Q_WS_MAEMO_5 - if (!winId()) { - qWarning("Can't grab keys unless we have a window id"); - return; - } - - Atom atom = XInternAtom(QX11Info::display(), "_HILDON_ZOOM_KEY_ATOM", False); - if (!atom) { - qWarning("Unable to obtain _HILDON_ZOOM_KEY_ATOM"); - return; - } - - unsigned long val = (grab) ? 1 : 0; - XChangeProperty(QX11Info::display(), winId(), atom, XA_INTEGER, 32, PropModeReplace, reinterpret_cast(&val), 1); -#endif -} - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) -void LauncherWindow::sendTouchEvent() -{ - if (m_touchPoints.isEmpty()) - return; - - QEvent::Type type = QEvent::TouchUpdate; - if (m_touchPoints.size() == 1) { - if (m_touchPoints[0].state() == Qt::TouchPointReleased) - type = QEvent::TouchEnd; - else if (m_touchPoints[0].state() == Qt::TouchPointPressed) - type = QEvent::TouchBegin; - } - - QTouchEvent touchEv(type); - touchEv.setTouchPoints(m_touchPoints); - QCoreApplication::sendEvent(page(), &touchEv); - - // After sending the event, remove all touchpoints that were released - if (m_touchPoints[0].state() == Qt::TouchPointReleased) - m_touchPoints.removeAt(0); - if (m_touchPoints.size() > 1 && m_touchPoints[1].state() == Qt::TouchPointReleased) - m_touchPoints.removeAt(1); -} -#endif // QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - -bool LauncherWindow::eventFilter(QObject* obj, QEvent* event) -{ - // If click pos is the bottom right corner (square with size defined by gExitClickArea) - // and the window is on FullScreen, the window must return to its original state. - if (event->type() == QEvent::MouseButtonRelease) { - QMouseEvent* ev = static_cast(event); - if (windowState() == Qt::WindowFullScreen - && ev->pos().x() > (width() - gExitClickArea) - && ev->pos().y() > (height() - gExitClickArea)) { - - emit enteredFullScreenMode(false); - } - } - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (!m_touchMocking) - return QObject::eventFilter(obj, event); - - if (event->type() == QEvent::MouseButtonPress - || event->type() == QEvent::MouseButtonRelease - || event->type() == QEvent::MouseButtonDblClick - || event->type() == QEvent::MouseMove) { - - QMouseEvent* ev = static_cast(event); - if (ev->type() == QEvent::MouseMove - && !(ev->buttons() & Qt::LeftButton)) - return false; - - QTouchEvent::TouchPoint touchPoint; - touchPoint.setState(Qt::TouchPointMoved); - if ((ev->type() == QEvent::MouseButtonPress - || ev->type() == QEvent::MouseButtonDblClick)) - touchPoint.setState(Qt::TouchPointPressed); - else if (ev->type() == QEvent::MouseButtonRelease) - touchPoint.setState(Qt::TouchPointReleased); - - touchPoint.setId(0); - touchPoint.setScreenPos(ev->globalPos()); - touchPoint.setPos(ev->pos()); - touchPoint.setPressure(1); - - // If the point already exists, update it. Otherwise create it. - if (m_touchPoints.size() > 0 && !m_touchPoints[0].id()) - m_touchPoints[0] = touchPoint; - else if (m_touchPoints.size() > 1 && !m_touchPoints[1].id()) - m_touchPoints[1] = touchPoint; - else - m_touchPoints.append(touchPoint); - - sendTouchEvent(); - } else if (event->type() == QEvent::KeyPress - && static_cast(event)->key() == Qt::Key_F - && static_cast(event)->modifiers() == Qt::ControlModifier) { - - // If the keyboard point is already pressed, release it. - // Otherwise create it and append to m_touchPoints. - if (m_touchPoints.size() > 0 && m_touchPoints[0].id() == 1) { - m_touchPoints[0].setState(Qt::TouchPointReleased); - sendTouchEvent(); - } else if (m_touchPoints.size() > 1 && m_touchPoints[1].id() == 1) { - m_touchPoints[1].setState(Qt::TouchPointReleased); - sendTouchEvent(); - } else { - QTouchEvent::TouchPoint touchPoint; - touchPoint.setState(Qt::TouchPointPressed); - touchPoint.setId(1); - touchPoint.setScreenPos(QCursor::pos()); - touchPoint.setPos(m_view->mapFromGlobal(QCursor::pos())); - touchPoint.setPressure(1); - m_touchPoints.append(touchPoint); - sendTouchEvent(); - - // After sending the event, change the touchpoint state to stationary - m_touchPoints.last().setState(Qt::TouchPointStationary); - } - } -#endif // QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - - return false; -} - -void LauncherWindow::loadStarted() -{ - m_view->setFocus(Qt::OtherFocusReason); -} - -void LauncherWindow::loadFinished() -{ - QUrl url = page()->mainFrame()->url(); - setAddressUrl(url.toString(QUrl::RemoveUserInfo)); - addCompleterEntry(url); -} - -void LauncherWindow::showLinkHover(const QString &link, const QString &toolTip) -{ -#ifndef Q_WS_MAEMO_5 - statusBar()->showMessage(link); -#endif -#ifndef QT_NO_TOOLTIP - if (!toolTip.isEmpty()) - QToolTip::showText(QCursor::pos(), toolTip); -#endif -} - -void LauncherWindow::zoomAnimationFinished() -{ - if (!isGraphicsBased()) - return; - QGraphicsWebView* view = static_cast(m_view)->graphicsWebView(); - view->setTiledBackingStoreFrozen(false); -} - -void LauncherWindow::applyZoom() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - if (isGraphicsBased() && page()->settings()->testAttribute(QWebSettings::TiledBackingStoreEnabled)) { - QGraphicsWebView* view = static_cast(m_view)->graphicsWebView(); - view->setTiledBackingStoreFrozen(true); - if (!m_zoomAnimation) { - m_zoomAnimation = new QPropertyAnimation(view, "scale"); - m_zoomAnimation->setStartValue(view->scale()); - connect(m_zoomAnimation, SIGNAL(finished()), this, SLOT(zoomAnimationFinished())); - } else { - m_zoomAnimation->stop(); - m_zoomAnimation->setStartValue(m_zoomAnimation->currentValue()); - } - - m_zoomAnimation->setDuration(300); - m_zoomAnimation->setEndValue(qreal(m_currentZoom) / 100.); - m_zoomAnimation->start(); - return; - } -#endif - page()->mainFrame()->setZoomFactor(qreal(m_currentZoom) / 100.0); -} - -void LauncherWindow::zoomIn() -{ - int i = m_zoomLevels.indexOf(m_currentZoom); - Q_ASSERT(i >= 0); - if (i < m_zoomLevels.count() - 1) - m_currentZoom = m_zoomLevels[i + 1]; - - applyZoom(); -} - -void LauncherWindow::zoomOut() -{ - int i = m_zoomLevels.indexOf(m_currentZoom); - Q_ASSERT(i >= 0); - if (i > 0) - m_currentZoom = m_zoomLevels[i - 1]; - - applyZoom(); -} - -void LauncherWindow::resetZoom() -{ - m_currentZoom = 100; - applyZoom(); -} - -void LauncherWindow::toggleZoomTextOnly(bool b) -{ - page()->settings()->setAttribute(QWebSettings::ZoomTextOnly, b); -} - -void LauncherWindow::print() -{ -#if !defined(QT_NO_PRINTER) - QPrintPreviewDialog dlg(this); - connect(&dlg, SIGNAL(paintRequested(QPrinter*)), - page()->mainFrame(), SLOT(print(QPrinter*))); - dlg.exec(); -#endif -} - -void LauncherWindow::screenshot() -{ - QPixmap pixmap = QPixmap::grabWidget(m_view); - QLabel* label = new QLabel; - label->setAttribute(Qt::WA_DeleteOnClose); - label->setWindowTitle("Screenshot - Preview"); - label->setPixmap(pixmap); - label->show(); - - QString fileName = QFileDialog::getSaveFileName(label, "Screenshot"); - if (!fileName.isEmpty()) { - pixmap.save(fileName, "png"); - label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName)); - } -} - -void LauncherWindow::setEditable(bool on) -{ - page()->setContentEditable(on); - m_formatMenuAction->setVisible(on); -} - -/* -void LauncherWindow::dumpPlugins() { - QList plugins = QWebSettings::pluginDatabase()->plugins(); - foreach (const QWebPluginInfo plugin, plugins) { - qDebug() << "Plugin:" << plugin.name(); - foreach (const QWebPluginInfo::MimeType mime, plugin.mimeTypes()) { - qDebug() << " " << mime.name; - } - } -} -*/ - -void LauncherWindow::dumpHtml() -{ - qDebug() << "HTML: " << page()->mainFrame()->toHtml(); -} - -void LauncherWindow::selectElements() -{ - bool ok; - QString str = QInputDialog::getText(this, "Select elements", "Choose elements", - QLineEdit::Normal, "a", &ok); - - if (ok && !str.isEmpty()) { - QWebElementCollection result = page()->mainFrame()->findAllElements(str); - foreach (QWebElement e, result) - e.setStyleProperty("background-color", "yellow"); -#ifndef Q_WS_MAEMO_5 - statusBar()->showMessage(QString("%1 element(s) selected").arg(result.count()), 5000); -#endif - } -} - -void LauncherWindow::setTouchMocking(bool on) -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - m_touchMocking = on; -#endif -} - -void LauncherWindow::toggleAcceleratedCompositing(bool toggle) -{ - m_windowOptions.useCompositing = toggle; - page()->settings()->setAttribute(QWebSettings::AcceleratedCompositingEnabled, toggle); -} - -void LauncherWindow::toggleTiledBackingStore(bool toggle) -{ - page()->settings()->setAttribute(QWebSettings::TiledBackingStoreEnabled, toggle); -} - -void LauncherWindow::toggleResizesToContents(bool toggle) -{ - m_windowOptions.resizesToContents = toggle; - static_cast(m_view)->setResizesToContents(toggle); -} - -void LauncherWindow::toggleWebGL(bool toggle) -{ - m_windowOptions.useWebGL = toggle; - page()->settings()->setAttribute(QWebSettings::WebGLEnabled, toggle); -} - -void LauncherWindow::toggleSpatialNavigation(bool b) -{ - page()->settings()->setAttribute(QWebSettings::SpatialNavigationEnabled, b); -} - -void LauncherWindow::toggleFullScreenMode(bool enable) -{ - if (enable) - setWindowState(Qt::WindowFullScreen); - else { -#if defined(Q_WS_S60) - setWindowState(Qt::WindowMaximized); -#else - setWindowState(Qt::WindowNoState); -#endif - } -} - -void LauncherWindow::toggleFrameFlattening(bool toggle) -{ - m_windowOptions.useFrameFlattening = toggle; - page()->settings()->setAttribute(QWebSettings::FrameFlatteningEnabled, toggle); -} - -void LauncherWindow::toggleInterruptingJavaScriptEnabled(bool enable) -{ - page()->setInterruptingJavaScriptEnabled(enable); -} - -void LauncherWindow::toggleJavascriptCanOpenWindows(bool enable) -{ - page()->settings()->setAttribute(QWebSettings::JavascriptCanOpenWindows, enable); -} - -#if defined(QT_CONFIGURED_WITH_OPENGL) -void LauncherWindow::toggleQGLWidgetViewport(bool enable) -{ - if (!isGraphicsBased()) - return; - - m_windowOptions.useQGLWidgetViewport = enable; - WebViewGraphicsBased* view = static_cast(m_view); - - view->setViewport(enable ? new QGLWidget() : 0); -} -#endif - -void LauncherWindow::changeViewportUpdateMode(int mode) -{ - m_windowOptions.viewportUpdateMode = QGraphicsView::ViewportUpdateMode(mode); - - if (!isGraphicsBased()) - return; - - WebViewGraphicsBased* view = static_cast(m_view); - view->setViewportUpdateMode(m_windowOptions.viewportUpdateMode); -} - -void LauncherWindow::showFPS(bool enable) -{ - if (!isGraphicsBased()) - return; - - m_windowOptions.showFrameRate = enable; - WebViewGraphicsBased* view = static_cast(m_view); - view->setFrameRateMeasurementEnabled(enable); - - if (!enable) { -#if defined(Q_WS_MAEMO_5) && defined(Q_WS_S60) - setWindowTitle(""); -#else - statusBar()->clearMessage(); -#endif - } -} - -void LauncherWindow::showUserAgentDialog() -{ - QStringList items; - QFile file(":/useragentlist.txt"); - if (file.open(QIODevice::ReadOnly)) { - while (!file.atEnd()) - items << file.readLine().trimmed(); - file.close(); - } - - QSettings settings; - QString customUserAgent = settings.value("CustomUserAgent").toString(); - if (!items.contains(customUserAgent) && !customUserAgent.isEmpty()) - items << customUserAgent; - - QDialog* dialog = new QDialog(this); - dialog->resize(size().width() * 0.7, dialog->size().height()); - dialog->setMaximumHeight(dialog->size().height()); - dialog->setWindowTitle("Change User Agent"); - - QVBoxLayout* layout = new QVBoxLayout(dialog); - dialog->setLayout(layout); - - QComboBox* combo = new QComboBox(dialog); - combo->setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLength); - combo->setEditable(true); - combo->insertItems(0, items); - layout->addWidget(combo); - - int index = combo->findText(page()->userAgentForUrl(QUrl())); - combo->setCurrentIndex(index); - - QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok - | QDialogButtonBox::Cancel, Qt::Horizontal, dialog); - connect(buttonBox, SIGNAL(accepted()), dialog, SLOT(accept())); - connect(buttonBox, SIGNAL(rejected()), dialog, SLOT(reject())); - layout->addWidget(buttonBox); - - if (dialog->exec() && !combo->currentText().isEmpty()) { - page()->setUserAgent(combo->currentText()); - if (!items.contains(combo->currentText())) - settings.setValue("CustomUserAgent", combo->currentText()); - } - - delete dialog; -} - -void LauncherWindow::updateFPS(int fps) -{ - QString fpsStatusText = QString("Current FPS: %1").arg(fps); - -#if defined(Q_WS_MAEMO_5) && defined(Q_WS_S60) - setWindowTitle(fpsStatusText); -#else - statusBar()->showMessage(fpsStatusText); -#endif -} - -LauncherWindow* LauncherWindow::newWindow() -{ - LauncherWindow* mw = new LauncherWindow(&m_windowOptions); - mw->show(); - return mw; -} - -LauncherWindow* LauncherWindow::cloneWindow() -{ - LauncherWindow* mw = new LauncherWindow(&m_windowOptions, qobject_cast(m_view)->scene()); - mw->show(); - return mw; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/launcherwindow.h --- a/WebKitTools/QtTestBrowser/launcherwindow.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,206 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef launcherwindow_h -#define launcherwindow_h - -#include -#include - -#if defined(QT_CONFIGURED_WITH_OPENGL) -#include -#endif - -#if !defined(QT_NO_PRINTER) -#include -#endif - -#ifndef QT_NO_UITOOLS -#include -#endif - -#include - -#include -#include -#include -#include -#include -#include - -#ifdef Q_WS_MAEMO_5 -#include -#endif - -#include "mainwindow.h" -#include "urlloader.h" -#include "utils.h" -#include "webinspector.h" -#include "webpage.h" -#include "webview.h" -#include "../../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h" - -#ifdef Q_WS_MAEMO_5 -#include -#include -#undef KeyPress -#endif - -class WindowOptions { -public: - WindowOptions() - : useGraphicsView(false) - , useCompositing(true) - , useTiledBackingStore(false) - , useWebGL(false) -#if defined(Q_WS_MAEMO_5) || defined(Q_WS_S60) - , useFrameFlattening(true) -#else - , useFrameFlattening(false) -#endif - , cacheWebView(false) - , showFrameRate(false) - , resizesToContents(false) - , viewportUpdateMode(QGraphicsView::MinimalViewportUpdate) -#if defined(QT_CONFIGURED_WITH_OPENGL) - , useQGLWidgetViewport(false) -#endif - { - } - - bool useGraphicsView; - bool useCompositing; - bool useTiledBackingStore; - bool useWebGL; - bool useFrameFlattening; - bool cacheWebView; - bool showFrameRate; - bool resizesToContents; - QGraphicsView::ViewportUpdateMode viewportUpdateMode; -#if defined(QT_CONFIGURED_WITH_OPENGL) - bool useQGLWidgetViewport; -#endif - QUrl inspectorUrl; -}; - -class LauncherWindow : public MainWindow { - Q_OBJECT - -public: - LauncherWindow(WindowOptions* data = 0, QGraphicsScene* sharedScene = 0); - virtual ~LauncherWindow(); - - virtual void keyPressEvent(QKeyEvent* event); - void grabZoomKeys(bool grab); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - void sendTouchEvent(); -#endif - - bool eventFilter(QObject* obj, QEvent* event); - -protected slots: - void loadStarted(); - void loadFinished(); - - void showLinkHover(const QString &link, const QString &toolTip); - - void zoomIn(); - void zoomOut(); - void resetZoom(); - void toggleZoomTextOnly(bool on); - void zoomAnimationFinished(); - - void print(); - void screenshot(); - - void setEditable(bool on); - - /* void dumpPlugins() */ - void dumpHtml(); - - void initializeView(); - - void setTouchMocking(bool on); - void toggleAcceleratedCompositing(bool toggle); - void toggleTiledBackingStore(bool toggle); - void toggleResizesToContents(bool toggle); - void toggleWebGL(bool toggle); - void toggleSpatialNavigation(bool b); - void toggleFullScreenMode(bool enable); - void toggleFrameFlattening(bool toggle); - void toggleInterruptingJavaScriptEnabled(bool enable); - void toggleJavascriptCanOpenWindows(bool enable); - -#if defined(QT_CONFIGURED_WITH_OPENGL) - void toggleQGLWidgetViewport(bool enable); -#endif - - void changeViewportUpdateMode(int mode); - void selectElements(); - void showFPS(bool enable); - void showUserAgentDialog(); - -public slots: - LauncherWindow* newWindow(); - LauncherWindow* cloneWindow(); - void updateFPS(int fps); - -signals: - void enteredFullScreenMode(bool on); - -private: - void init(); - bool isGraphicsBased() const; - void createChrome(); - void applyPrefs(); - void applyZoom(); - -private: - static QVector m_zoomLevels; - int m_currentZoom; - - QWidget* m_view; - WebInspector* m_inspector; - - WindowOptions m_windowOptions; - - QAction* m_formatMenuAction; - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QPropertyAnimation* m_zoomAnimation; - QList m_touchPoints; - bool m_touchMocking; -#endif -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/locationedit.cpp --- a/WebKitTools/QtTestBrowser/locationedit.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,80 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "locationedit.h" - -LocationEdit::LocationEdit(QWidget* parent) - : QLineEdit(parent) - , m_progress(0) -{ - m_clearTimer.setSingleShot(true); - connect(&m_clearTimer, SIGNAL(timeout()), this, SLOT(reset())); -} - -void LocationEdit::setProgress(int progress) -{ - m_clearTimer.stop(); - m_progress = progress; - update(); -} - -void LocationEdit::reset() -{ - setProgress(0); -} - -void LocationEdit::paintEvent(QPaintEvent* ev) -{ - QColor backgroundColor = QApplication::palette().color(QPalette::Base); - QColor progressColor = QColor(120, 180, 240); - QPalette p = palette(); - - if (!m_progress) - p.setBrush(QPalette::Base, backgroundColor); - else { - QLinearGradient gradient(0, 0, width(), 0); - gradient.setColorAt(0, progressColor); - gradient.setColorAt(((double) m_progress) / 100, progressColor); - if (m_progress != 100) - gradient.setColorAt((double) m_progress / 100 + 0.001, backgroundColor); - p.setBrush(QPalette::Base, gradient); - } - setPalette(p); - - QLineEdit::paintEvent(ev); - - if (m_progress == 100) - m_clearTimer.start(100); -} - -void LocationEdit::focusInEvent(QFocusEvent* ev) -{ - QLineEdit::focusInEvent(ev); -#ifdef Q_WS_MAEMO_5 - QTimer::singleShot(0, this, SLOT(selectAll())); -#endif -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/locationedit.h --- a/WebKitTools/QtTestBrowser/locationedit.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,54 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef locationedit_h -#define locationedit_h - -#include - -class LocationEdit : public QLineEdit { - Q_OBJECT - -public: - LocationEdit(QWidget* parent = 0); - -public slots: - void setProgress(int progress); - -private slots: - void reset(); - -protected: - virtual void paintEvent(QPaintEvent*); - virtual void focusInEvent(QFocusEvent*); - -private: - int m_progress; - QTimer m_clearTimer; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/main.cpp --- a/WebKitTools/QtTestBrowser/main.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,229 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "launcherwindow.h" -#include "urlloader.h" - -WindowOptions windowOptions; - -int launcherMain(const QApplication& app) -{ -#ifndef NDEBUG - int retVal = app.exec(); - DumpRenderTreeSupportQt::garbageCollectorCollect(); - QWebSettings::clearMemoryCaches(); - return retVal; -#else - return app.exec(); -#endif -} - -class LauncherApplication : public QApplication { - Q_OBJECT - -public: - LauncherApplication(int& argc, char** argv); - QStringList urls() const { return m_urls; } - bool isRobotized() const { return m_isRobotized; } - -private: - void handleUserOptions(); - void applyDefaultSettings(); - -private: - bool m_isRobotized; - QStringList m_urls; -}; - -void LauncherApplication::applyDefaultSettings() -{ - QWebSettings::setMaximumPagesInCache(4); - - QWebSettings::setObjectCacheCapacities((16*1024*1024) / 8, (16*1024*1024) / 8, 16*1024*1024); - - QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true); - QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true); - QWebSettings::enablePersistentStorage(); -} - -LauncherApplication::LauncherApplication(int& argc, char** argv) - : QApplication(argc, argv, QApplication::GuiServer) - , m_isRobotized(false) -{ - // To allow QWebInspector's configuration persistence - setOrganizationName("Nokia"); - setApplicationName("QtTestBrowser"); - setApplicationVersion("0.1"); - - applyDefaultSettings(); - - handleUserOptions(); -} - -static void requiresGraphicsView(const QString& option) -{ - if (windowOptions.useGraphicsView) - return; - appQuit(1, QString("%1 only works in combination with the -graphicsbased option").arg(option)); -} - -void LauncherApplication::handleUserOptions() -{ - QStringList args = arguments(); - QFileInfo program(args.at(0)); - QString programName("QtTestBrowser"); - if (program.exists()) - programName = program.baseName(); - - QList updateModes(enumToKeys(QGraphicsView::staticMetaObject, - "ViewportUpdateMode", "ViewportUpdate")); - - if (args.contains("-help")) { - qDebug() << "Usage:" << programName.toLatin1().data() - << "[-graphicsbased]" - << "[-no-compositing]" - << QString("[-viewport-update-mode %1]").arg(formatKeys(updateModes)).toLatin1().data() - << "[-cache-webview]" - << "[-show-fps]" - << "[-r list]" - << "[-inspector-url location]" - << "[-tiled-backing-store]" - << "[-resizes-to-contents]" - << "URLs"; - appQuit(0); - } - - if (args.contains("-graphicsbased")) - windowOptions.useGraphicsView = true; - - if (args.contains("-no-compositing")) { - requiresGraphicsView("-no-compositing"); - windowOptions.useCompositing = false; - } - - if (args.contains("-show-fps")) { - requiresGraphicsView("-show-fps"); - windowOptions.showFrameRate = true; - } - - if (args.contains("-cache-webview")) { - requiresGraphicsView("-cache-webview"); - windowOptions.cacheWebView = true; - } - - if (args.contains("-tiled-backing-store")) { - requiresGraphicsView("-tiled-backing-store"); - windowOptions.useTiledBackingStore = true; - } - - if (args.contains("-resizes-to-contents")) { - requiresGraphicsView("-resizes-to-contents"); - windowOptions.resizesToContents = true; - } - - QString arg1("-viewport-update-mode"); - int modeIndex = args.indexOf(arg1); - if (modeIndex != -1) { - requiresGraphicsView(arg1); - - QString mode = takeOptionValue(&args, modeIndex); - if (mode.isEmpty()) - appQuit(1, QString("%1 needs a value of one of [%2]").arg(arg1).arg(formatKeys(updateModes))); - int idx = updateModes.indexOf(mode); - if (idx == -1) - appQuit(1, QString("%1 value has to be one of [%2]").arg(arg1).arg(formatKeys(updateModes))); - - windowOptions.viewportUpdateMode = static_cast(idx); - } - - QString inspectorUrlArg("-inspector-url"); - int inspectorUrlIndex = args.indexOf(inspectorUrlArg); - if (inspectorUrlIndex != -1) - windowOptions.inspectorUrl = takeOptionValue(&args, inspectorUrlIndex); - - int robotIndex = args.indexOf("-r"); - if (robotIndex != -1) { - QString listFile = takeOptionValue(&args, robotIndex); - if (listFile.isEmpty()) - appQuit(1, "-r needs a list file to start in robotized mode"); - if (!QFile::exists(listFile)) - appQuit(1, "The list file supplied to -r does not exist."); - - m_isRobotized = true; - m_urls = QStringList(listFile); - return; - } - - int lastArg = args.lastIndexOf(QRegExp("^-.*")); - m_urls = (lastArg != -1) ? args.mid(++lastArg) : args.mid(1); -} - - -int main(int argc, char **argv) -{ - LauncherApplication app(argc, argv); - - if (app.isRobotized()) { - LauncherWindow* window = new LauncherWindow(); - UrlLoader loader(window->page()->mainFrame(), app.urls().at(0)); - QObject::connect(window->page()->mainFrame(), SIGNAL(loadFinished(bool)), &loader, SLOT(loadNext())); - loader.loadNext(); - window->show(); - return launcherMain(app); - } - - QStringList urls = app.urls(); - - if (urls.isEmpty()) { - QString defaultUrl = QString("file://%1/%2").arg(QDir::homePath()).arg(QLatin1String("index.html")); - if (QDir(defaultUrl).exists()) - urls.append(defaultUrl); - else - urls.append(""); - } - - LauncherWindow* window = 0; - foreach (QString url, urls) { - LauncherWindow* newWindow; - if (!window) - newWindow = window = new LauncherWindow(&windowOptions); - else - newWindow = window->newWindow(); - - newWindow->load(url); - } - - window->show(); - return launcherMain(app); -} - -#include "main.moc" diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/mainwindow.cpp --- a/WebKitTools/QtTestBrowser/mainwindow.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,178 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "mainwindow.h" - -#include "locationedit.h" -#include "utils.h" - -MainWindow::MainWindow(const QString& url) - : m_page(new WebPage(this)) -{ - setAttribute(Qt::WA_DeleteOnClose); - if (qgetenv("QTTESTBROWSER_USE_ARGB_VISUALS").toInt() == 1) - setAttribute(Qt::WA_TranslucentBackground); - - buildUI(); -} - -void MainWindow::buildUI() -{ - QToolBar* bar = addToolBar("Navigation"); -#if defined(Q_WS_S60) - bar->setIconSize(QSize(16, 16)); -#endif - QAction* reloadAction = page()->action(QWebPage::Reload); - connect(reloadAction, SIGNAL(triggered()), this, SLOT(changeLocation())); - - bar->addAction(page()->action(QWebPage::Back)); - bar->addAction(page()->action(QWebPage::Forward)); - bar->addAction(reloadAction); - bar->addAction(page()->action(QWebPage::Stop)); - - urlEdit = new LocationEdit(this); - urlEdit->setSizePolicy(QSizePolicy::Expanding, urlEdit->sizePolicy().verticalPolicy()); - connect(urlEdit, SIGNAL(returnPressed()), SLOT(changeLocation())); - QCompleter* completer = new QCompleter(this); - urlEdit->setCompleter(completer); - completer->setModel(&urlModel); -#if defined(Q_WS_S60) - addToolBarBreak(); - addToolBar("Location")->addWidget(urlEdit); -#else - bar->addWidget(urlEdit); -#endif - - connect(page()->mainFrame(), SIGNAL(titleChanged(const QString&)), - this, SLOT(setWindowTitle(const QString&))); - connect(page()->mainFrame(), SIGNAL(urlChanged(QUrl)), this, SLOT(setAddressUrl(QUrl))); - connect(page(), SIGNAL(loadProgress(int)), urlEdit, SLOT(setProgress(int))); - connect(page(), SIGNAL(windowCloseRequested()), this, SLOT(close())); - - // short-cuts - page()->action(QWebPage::Back)->setShortcut(QKeySequence::Back); - page()->action(QWebPage::Stop)->setShortcut(Qt::Key_Escape); - page()->action(QWebPage::Forward)->setShortcut(QKeySequence::Forward); - page()->action(QWebPage::Reload)->setShortcut(QKeySequence::Refresh); - page()->action(QWebPage::Undo)->setShortcut(QKeySequence::Undo); - page()->action(QWebPage::Redo)->setShortcut(QKeySequence::Redo); - page()->action(QWebPage::Cut)->setShortcut(QKeySequence::Cut); - page()->action(QWebPage::Copy)->setShortcut(QKeySequence::Copy); - page()->action(QWebPage::Paste)->setShortcut(QKeySequence::Paste); - - page()->action(QWebPage::ToggleBold)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_B)); - page()->action(QWebPage::ToggleItalic)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_I)); - page()->action(QWebPage::ToggleUnderline)->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_U)); -} - -WebPage* MainWindow::page() -{ - return m_page; -} - -void MainWindow::setAddressUrl(const QUrl& url) -{ - urlEdit->setText(url.toString(QUrl::RemoveUserInfo)); -} - -void MainWindow::setAddressUrl(const QString& url) -{ - urlEdit->setText(url); -} - -void MainWindow::addCompleterEntry(const QUrl& url) -{ - QUrl::FormattingOptions opts; - opts |= QUrl::RemoveScheme; - opts |= QUrl::RemoveUserInfo; - opts |= QUrl::StripTrailingSlash; - QString s = url.toString(opts); - s = s.mid(2); - if (s.isEmpty()) - return; - - if (!urlList.contains(s)) - urlList += s; - urlModel.setStringList(urlList); -} - -void MainWindow::load(const QString& url) -{ - QUrl qurl = urlFromUserInput(url); - if (qurl.scheme().isEmpty()) - qurl = QUrl("http://" + url + "/"); - load(qurl); -} - -void MainWindow::load(const QUrl& url) -{ - if (!url.isValid()) - return; - - setAddressUrl(url.toString()); - page()->mainFrame()->load(url); -} - -void MainWindow::changeLocation() -{ - QString string = urlEdit->text(); - QUrl mainFrameURL = page()->mainFrame()->url(); - - if (mainFrameURL.isValid() && string == mainFrameURL.toString()) { - page()->triggerAction(QWebPage::Reload); - return; - } - - load(string); -} - -void MainWindow::openFile() -{ - static const QString filter("HTML Files (*.htm *.html);;Text Files (*.txt);;Image Files (*.gif *.jpg *.png);;All Files (*)"); - - QFileDialog fileDialog(this, tr("Open"), QString(), filter); - fileDialog.setAcceptMode(QFileDialog::AcceptOpen); - fileDialog.setFileMode(QFileDialog::ExistingFile); - fileDialog.setOptions(QFileDialog::ReadOnly); - - if (fileDialog.exec()) { - QString selectedFile = fileDialog.selectedFiles()[0]; - if (!selectedFile.isEmpty()) - load(QUrl::fromLocalFile(selectedFile)); - } -} - -void MainWindow::openLocation() -{ - urlEdit->selectAll(); - urlEdit->setFocus(); -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/mainwindow.h --- a/WebKitTools/QtTestBrowser/mainwindow.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,71 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef mainwindow_h -#define mainwindow_h - -#include -#include "webpage.h" - -class LocationEdit; - -class MainWindow : public QMainWindow { - Q_OBJECT - -public: - MainWindow(const QString& url = QString()); - - void addCompleterEntry(const QUrl& url); - - void load(const QString& url); - void load(const QUrl& url); - - WebPage* page(); - -protected slots: - void setAddressUrl(const QString& url); - void setAddressUrl(const QUrl& url); - void openFile(); - void openLocation(); - void changeLocation(); - -private: - void buildUI(); - - QStringListModel urlModel; - QStringList urlList; - LocationEdit* urlEdit; - - WebPage* m_page; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/urlloader.cpp --- a/WebKitTools/QtTestBrowser/urlloader.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,83 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 University of Szeged - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "urlloader.h" - -#include -#include - -UrlLoader::UrlLoader(QWebFrame* frame, const QString& inputFileName) - : m_frame(frame) - , m_stdOut(stdout) - , m_loaded(0) -{ - init(inputFileName); -} - -void UrlLoader::loadNext() -{ - QString qstr; - if (getUrl(qstr)) { - QUrl url(qstr, QUrl::StrictMode); - if (url.isValid()) { - m_stdOut << "Loading " << qstr << " ......" << ++m_loaded << endl; - m_frame->load(url); - } else - loadNext(); - } else - disconnect(m_frame, 0, this, 0); -} - -void UrlLoader::init(const QString& inputFileName) -{ - QFile inputFile(inputFileName); - if (inputFile.open(QIODevice::ReadOnly | QIODevice::Text)) { - QTextStream stream(&inputFile); - QString line; - while (true) { - line = stream.readLine(); - if (line.isNull()) - break; - m_urls.append(line); - } - } else { - qDebug() << "Can't open list file"; - exit(0); - } - m_index = 0; - inputFile.close(); -} - -bool UrlLoader::getUrl(QString& qstr) -{ - if (m_index == m_urls.size()) - return false; - - qstr = m_urls[m_index++]; - return true; -} diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/urlloader.h --- a/WebKitTools/QtTestBrowser/urlloader.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,58 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 University of Szeged - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef urlloader_h -#define urlloader_h - -#include "qwebframe.h" - -#include -#include - -class UrlLoader : public QObject { - Q_OBJECT - -public: - UrlLoader(QWebFrame* frame, const QString& inputFileName); - -public slots: - void loadNext(); - -private: - void init(const QString& inputFileName); - bool getUrl(QString& qstr); - -private: - QVector m_urls; - int m_index; - QWebFrame* m_frame; - QTextStream m_stdOut; - int m_loaded; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/useragentlist.txt --- a/WebKitTools/QtTestBrowser/useragentlist.txt Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,9 +0,0 @@ -Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/533.3 (KHTML, like Gecko) QtTestBrowser/0.1 Safari/533.3 -Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0; en-GB) AppleWebKit/533.3 (KHTML, like Gecko) QtTestBrowser/0.1 Mobile Safari/533.3 -Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/125.2 (KHTML, like Gecko) Safari/125.8 -Mozilla/5.0 (Linux; U; Android 1.1; en-gb; dream) AppleWebKit/525.10+ (KHTML, like Gecko) Version/3.0.4 Mobile Safari/523.12.2 -Mozilla/5.0 (iPhone; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10 -Mozilla/5.0(iPad; U; CPU iPhone OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B314 Safari/531.21.10 -Opera/9.25 (Windows NT 6.0; U; en) -Mozilla/5.0 (SymbianOS/9.4; U; Series60/5.0 Nokia5800d-1b/20.2.014; Profile/MIDP-2.1 Configuration/CLDC-1.1 ) AppleWebKit/413 (KHTML, like Gecko) Safari/413 -Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.2; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0) diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/utils.cpp --- a/WebKitTools/QtTestBrowser/utils.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,92 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "utils.h" - - -QString takeOptionValue(QStringList* arguments, int index) -{ - QString result; - - if (++index < arguments->count() && !arguments->at(index).startsWith("-")) - result = arguments->takeAt(index); - - return result; -} - -QString formatKeys(QList keys) -{ - QString result; - for (int i = 0; i < keys.count() - 1; i++) - result.append(keys.at(i) + "|"); - result.append(keys.last()); - return result; -} - -QList enumToKeys(const QMetaObject o, const QString& name, const QString& strip) -{ - QList list; - - int enumIndex = o.indexOfEnumerator(name.toLatin1().data()); - QMetaEnum enumerator = o.enumerator(enumIndex); - - if (enumerator.isValid()) { - for (int i = 0; i < enumerator.keyCount(); i++) { - QString key(enumerator.valueToKey(i)); - list.append(key.remove(strip)); - } - } - - return list; -} - -void appQuit(int exitCode, const QString& msg) -{ - if (!msg.isEmpty()) { - if (exitCode > 0) - qDebug("ERROR: %s", msg.toLatin1().data()); - else - qDebug() << msg; - } - exit(exitCode); -} - -QUrl urlFromUserInput(const QString& string) -{ - QString input(string); - QFileInfo fi(input); - if (fi.exists() && fi.isRelative()) - input = fi.absoluteFilePath(); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - return QUrl::fromUserInput(input); -#else - return QUrl(input); -#endif -} - - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/utils.h --- a/WebKitTools/QtTestBrowser/utils.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,52 +0,0 @@ -/* - * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef utils_h -#define utils_h - -#include - -#ifndef NO_RETURN -#if defined(__CC_ARM) || defined(__ARMCC__) -#define NO_RETURN __declspec(noreturn) -#elif defined(__GNUC__) -#define NO_RETURN __attribute((__noreturn__)) -#else -#define NO_RETURN -#endif -#endif - -// options handling -QString takeOptionValue(QStringList* arguments, int index); -QString formatKeys(QList keys); -QList enumToKeys(const QMetaObject o, const QString& name, const QString& strip); - -NO_RETURN void appQuit(int status, const QString& msg = QString()); - -QUrl urlFromUserInput(const QString& input); - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/webinspector.h --- a/WebKitTools/QtTestBrowser/webinspector.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,56 +0,0 @@ -/* - * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies) - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef webinspector_h -#define webinspector_h - -#include -#include "qwebinspector.h" - -class WebInspector : public QWebInspector { - Q_OBJECT - -public: - WebInspector(QWidget* parent) : QWebInspector(parent) {} - -signals: - void visibleChanged(bool nowVisible); - -protected: - void showEvent(QShowEvent* event) - { - QWebInspector::showEvent(event); - emit visibleChanged(true); - } - void hideEvent(QHideEvent* event) - { - QWebInspector::hideEvent(event); - emit visibleChanged(false); - } -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/webpage.cpp --- a/WebKitTools/QtTestBrowser/webpage.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,216 +0,0 @@ -/* - * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "webpage.h" - -#include "launcherwindow.h" - -#include -#include -#include -#include -#include -#include - -WebPage::WebPage(QObject* parent) - : QWebPage(parent) - , m_userAgent() - , m_interruptingJavaScriptEnabled(false) -{ - applyProxy(); - - connect(networkAccessManager(), SIGNAL(authenticationRequired(QNetworkReply*, QAuthenticator*)), - this, SLOT(authenticationRequired(QNetworkReply*, QAuthenticator*))); - connect(this, SIGNAL(requestPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain)), this, SLOT(requestPermission(QWebFrame*, QWebPage::PermissionDomain))); - connect(this, SIGNAL(checkPermissionFromUser(QWebFrame*, QWebPage::PermissionDomain, QWebPage::PermissionPolicy&)), this, SLOT(checkPermission(QWebFrame*, QWebPage::PermissionDomain, QWebPage::PermissionPolicy&))); - connect(this, SIGNAL(cancelRequestsForPermission(QWebFrame*, QWebPage::PermissionDomain)), this, SLOT(cancelRequestsForPermission(QWebFrame*, QWebPage::PermissionDomain))); -} - -void WebPage::applyProxy() -{ - QUrl proxyUrl(qgetenv("http_proxy")); - - if (proxyUrl.isValid() && !proxyUrl.host().isEmpty()) { - int proxyPort = (proxyUrl.port() > 0) ? proxyUrl.port() : 8080; - networkAccessManager()->setProxy(QNetworkProxy(QNetworkProxy::HttpProxy, proxyUrl.host(), proxyPort)); - } -} - -bool WebPage::supportsExtension(QWebPage::Extension extension) const -{ - if (extension == QWebPage::ErrorPageExtension) - return true; - return false; -} - -bool WebPage::extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output) -{ - const QWebPage::ErrorPageExtensionOption* info = static_cast(option); - QWebPage::ErrorPageExtensionReturn* errorPage = static_cast(output); - - errorPage->content = QString("Failed loading page%1") - .arg(info->errorString).toUtf8(); - - return true; -} - -bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type) -{ - QObject* view = parent(); - - QVariant value = view->property("keyboardModifiers"); - - if (!value.isNull()) { - Qt::KeyboardModifiers modifiers = Qt::KeyboardModifiers(value.toInt()); - - if (modifiers & Qt::ShiftModifier) { - QWebPage* page = createWindow(QWebPage::WebBrowserWindow); - page->mainFrame()->load(request); - return false; - } - - if (modifiers & Qt::AltModifier) { - openUrlInDefaultBrowser(request.url()); - return false; - } - } - - return QWebPage::acceptNavigationRequest(frame, request, type); -} - -void WebPage::openUrlInDefaultBrowser(const QUrl& url) -{ - if (QAction* action = qobject_cast(sender())) - QDesktopServices::openUrl(action->data().toUrl()); - else - QDesktopServices::openUrl(url); -} - -QString WebPage::userAgentForUrl(const QUrl& url) const -{ - if (!m_userAgent.isEmpty()) - return m_userAgent; - return QWebPage::userAgentForUrl(url); -} - -bool WebPage::shouldInterruptJavaScript() -{ - if (!m_interruptingJavaScriptEnabled) - return false; - return QWebPage::shouldInterruptJavaScript(); -} - -void WebPage::authenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator) -{ - QDialog* dialog = new QDialog(QApplication::activeWindow()); - dialog->setWindowTitle("HTTP Authentication"); - - QGridLayout* layout = new QGridLayout(dialog); - dialog->setLayout(layout); - - QLabel* messageLabel = new QLabel(dialog); - messageLabel->setWordWrap(true); - QString messageStr = QString("Enter with username and password for: %1"); - messageLabel->setText(messageStr.arg(reply->url().toString())); - layout->addWidget(messageLabel, 0, 1); - - QLabel* userLabel = new QLabel("Username:", dialog); - layout->addWidget(userLabel, 1, 0); - QLineEdit* userInput = new QLineEdit(dialog); - layout->addWidget(userInput, 1, 1); - - QLabel* passLabel = new QLabel("Password:", dialog); - layout->addWidget(passLabel, 2, 0); - QLineEdit* passInput = new QLineEdit(dialog); - passInput->setEchoMode(QLineEdit::Password); - layout->addWidget(passInput, 2, 1); - - QDialogButtonBox* buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok - | QDialogButtonBox::Cancel, Qt::Horizontal, dialog); - connect(buttonBox, SIGNAL(accepted()), dialog, SLOT(accept())); - connect(buttonBox, SIGNAL(rejected()), dialog, SLOT(reject())); - layout->addWidget(buttonBox, 3, 1); - - if (dialog->exec() == QDialog::Accepted) { - authenticator->setUser(userInput->text()); - authenticator->setPassword(passInput->text()); - } - - delete dialog; -} - -void WebPage::requestPermission(QWebFrame* frame, QWebPage::PermissionDomain domain) -{ - setUserPermission(frame, domain, PermissionGranted); -} - -void WebPage::checkPermission(QWebFrame* frame, QWebPage::PermissionDomain domain, QWebPage::PermissionPolicy& policy) -{ - switch (domain) { - case NotificationsPermissionDomain: - policy = PermissionGranted; - break; - default: - break; - } -} - -void WebPage::cancelRequestsForPermission(QWebFrame*, QWebPage::PermissionDomain) -{ -} - -QWebPage* WebPage::createWindow(QWebPage::WebWindowType type) -{ - LauncherWindow* mw = new LauncherWindow; - if (type == WebModalDialog) - mw->setWindowModality(Qt::ApplicationModal); - mw->show(); - return mw->page(); -} - -QObject* WebPage::createPlugin(const QString &classId, const QUrl&, const QStringList&, const QStringList&) -{ - if (classId == "alien_QLabel") { - QLabel* l = new QLabel; - l->winId(); - return l; - } - -#ifndef QT_NO_UITOOLS - QUiLoader loader; - return loader.createWidget(classId, view()); -#else - Q_UNUSED(classId); - return 0; -#endif -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/webpage.h --- a/WebKitTools/QtTestBrowser/webpage.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,70 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef webpage_h -#define webpage_h - -#include -#include - -class WebPage : public QWebPage { - Q_OBJECT - -public: - WebPage(QObject* parent = 0); - - virtual QWebPage* createWindow(QWebPage::WebWindowType); - virtual QObject* createPlugin(const QString&, const QUrl&, const QStringList&, const QStringList&); - virtual bool supportsExtension(QWebPage::Extension extension) const; - virtual bool extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output); - - virtual bool acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationType type); - - QString userAgentForUrl(const QUrl& url) const; - void setInterruptingJavaScriptEnabled(bool enabled) { m_interruptingJavaScriptEnabled = enabled; } - -public slots: - void openUrlInDefaultBrowser(const QUrl& url = QUrl()); - void setUserAgent(const QString& ua) { m_userAgent = ua; } - bool shouldInterruptJavaScript(); - void authenticationRequired(QNetworkReply*, QAuthenticator*); - void requestPermission(QWebFrame* frame, QWebPage::PermissionDomain domain); - void checkPermission(QWebFrame* frame, QWebPage::PermissionDomain domain, QWebPage::PermissionPolicy& policy); - void cancelRequestsForPermission(QWebFrame* frame, QWebPage::PermissionDomain domain); - -private: - void applyProxy(); - QString m_userAgent; - bool m_interruptingJavaScriptEnabled; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/webview.cpp --- a/WebKitTools/QtTestBrowser/webview.cpp Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,250 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "webview.h" - -#include -#include - -WebViewGraphicsBased::WebViewGraphicsBased(QWidget* parent) - : QGraphicsView(parent) - , m_item(new GraphicsWebView) - , m_numPaintsTotal(0) - , m_numPaintsSinceLastMeasure(0) - , m_measureFps(false) - , m_resizesToContents(false) -{ - setScene(new QGraphicsScene(this)); - scene()->addItem(m_item); - - setFrameShape(QFrame::NoFrame); - setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QStateMachine* machine = new QStateMachine(this); - QState* s0 = new QState(machine); - s0->assignProperty(this, "yRotation", 0); - - QState* s1 = new QState(machine); - s1->assignProperty(this, "yRotation", 90); - - QAbstractTransition* t1 = s0->addTransition(this, SIGNAL(yFlipRequest()), s1); - QPropertyAnimation* yRotationAnim = new QPropertyAnimation(this, "yRotation", this); - yRotationAnim->setDuration(1000); - t1->addAnimation(yRotationAnim); - - QState* s2 = new QState(machine); - s2->assignProperty(this, "yRotation", -90); - s1->addTransition(s1, SIGNAL(propertiesAssigned()), s2); - - QAbstractTransition* t2 = s2->addTransition(s0); - t2->addAnimation(yRotationAnim); - - machine->setInitialState(s0); - machine->start(); -#endif - - m_updateTimer = new QTimer(this); - m_updateTimer->setInterval(1000); - connect(m_updateTimer, SIGNAL(timeout()), this, SLOT(updateFrameRate())); -} - -void WebViewGraphicsBased::setPage(QWebPage* page) -{ - connect(page->mainFrame(), SIGNAL(contentsSizeChanged(const QSize&)), SLOT(contentsSizeChanged(const QSize&))); - m_item->setPage(page); -} - -void WebViewGraphicsBased::contentsSizeChanged(const QSize& size) -{ - if (m_resizesToContents) - scene()->setSceneRect(0, 0, size.width(), size.height()); -} - -void WebViewGraphicsBased::setResizesToContents(bool b) -{ - if (b == m_resizesToContents) - return; - - m_resizesToContents = b; - m_item->setResizesToContents(m_resizesToContents); - - // When setting resizesToContents ON, our web view widget will always size as big as the - // web content being displayed, and so will the QWebPage's viewport. It implies that internally - // WebCore will work as if there was no content rendered offscreen, and then no scrollbars need - // drawing. In order to keep scrolling working, we: - // - // 1) Set QGraphicsView's scrollbars policy back to 'auto'. - // 2) Set scene's boundaries rect to an invalid size, which automatically makes it to be as big - // as it needs to enclose all items onto it. We do that because QGraphicsView also calculates - // the size of its scrollable area according to the amount of content in scene that is rendered - // offscreen. - // 3) Set QWebPage's preferredContentsSize according to the size of QGraphicsView's viewport, - // so WebCore properly lays pages out. - // - // On the other hand, when toggling resizesToContents OFF, we set back the default values, as - // opposite as described above. - if (m_resizesToContents) { - setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded); - setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); - m_item->page()->setPreferredContentsSize(size()); - QRectF itemRect(m_item->geometry().topLeft(), m_item->page()->mainFrame()->contentsSize()); - m_item->setGeometry(itemRect); - scene()->setSceneRect(itemRect); - } else { - setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff); - m_item->page()->setPreferredContentsSize(QSize()); - QRect viewportRect(QPoint(0, 0), size()); - m_item->setGeometry(viewportRect); - scene()->setSceneRect(viewportRect); - } -} - -void WebViewGraphicsBased::resizeEvent(QResizeEvent* event) -{ - QGraphicsView::resizeEvent(event); - - QSize size(event->size()); - - if (m_resizesToContents) { - m_item->page()->setPreferredContentsSize(size); - return; - } - - QRectF rect(QPoint(0, 0), size); - m_item->setGeometry(rect); - scene()->setSceneRect(rect); -} - -void WebViewGraphicsBased::setFrameRateMeasurementEnabled(bool enabled) -{ - m_measureFps = enabled; - if (m_measureFps) { - m_lastConsultTime = m_startTime = QTime::currentTime(); - m_fpsTimer.start(); - m_updateTimer->start(); - } else { - m_fpsTimer.stop(); - m_updateTimer->stop(); - } -} - -void WebViewGraphicsBased::updateFrameRate() -{ - const QTime now = QTime::currentTime(); - int interval = m_lastConsultTime.msecsTo(now); - int frames = m_fpsTimer.numFrames(interval); - int current = interval ? frames * 1000 / interval : 0; - - emit currentFPSUpdated(current); - - m_lastConsultTime = now; -} - -void WebViewGraphicsBased::animatedFlip() -{ -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QSizeF center = m_item->boundingRect().size() / 2; - QPointF centerPoint = QPointF(center.width(), center.height()); - m_item->setTransformOriginPoint(centerPoint); - - QPropertyAnimation* animation = new QPropertyAnimation(m_item, "rotation", this); - animation->setDuration(1000); - - int rotation = int(m_item->rotation()); - - animation->setStartValue(rotation); - animation->setEndValue(rotation + 180 - (rotation % 180)); - - animation->start(QAbstractAnimation::DeleteWhenStopped); -#endif -} - -void WebViewGraphicsBased::animatedYFlip() -{ - emit yFlipRequest(); -} - -void WebViewGraphicsBased::paintEvent(QPaintEvent* event) -{ - QGraphicsView::paintEvent(event); - if (!m_measureFps) - return; -} - -static QMenu* createContextMenu(QWebPage* page, QPoint position) -{ - QMenu* menu = page->createStandardContextMenu(); - - QWebHitTestResult r = page->mainFrame()->hitTestContent(position); - - if (!r.linkUrl().isEmpty()) { - WebPage* webPage = qobject_cast(page); - QAction* newTabAction = menu->addAction("Open in Default &Browser", webPage, SLOT(openUrlInDefaultBrowser())); - newTabAction->setData(r.linkUrl()); - menu->insertAction(menu->actions().at(2), newTabAction); - } - return menu; -} - -void GraphicsWebView::mousePressEvent(QGraphicsSceneMouseEvent* event) -{ - setProperty("mouseButtons", QVariant::fromValue(int(event->buttons()))); - setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers()))); - - QGraphicsWebView::mousePressEvent(event); -} - -void WebViewTraditional::mousePressEvent(QMouseEvent* event) -{ - setProperty("mouseButtons", QVariant::fromValue(int(event->buttons()))); - setProperty("keyboardModifiers", QVariant::fromValue(int(event->modifiers()))); - - QWebView::mousePressEvent(event); -} - -void GraphicsWebView::contextMenuEvent(QGraphicsSceneContextMenuEvent* event) -{ - QMenu* menu = createContextMenu(page(), event->pos().toPoint()); - menu->exec(event->screenPos()); - delete menu; -} - -void WebViewTraditional::contextMenuEvent(QContextMenuEvent* event) -{ - QMenu* menu = createContextMenu(page(), event->pos()); - menu->exec(event->globalPos()); - delete menu; -} - diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/QtTestBrowser/webview.h --- a/WebKitTools/QtTestBrowser/webview.h Fri Sep 17 09:02:29 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,129 +0,0 @@ -/* - * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies) - * Copyright (C) 2009 Girish Ramakrishnan - * Copyright (C) 2006 George Staikos - * Copyright (C) 2006 Dirk Mueller - * Copyright (C) 2006 Zack Rusin - * Copyright (C) 2006 Simon Hausmann - * - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY - * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY - * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT - * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE - * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef webview_h -#define webview_h - -#include "fpstimer.h" -#include "webpage.h" -#include -#include -#include -#include -#include - -class WebViewTraditional : public QWebView { - Q_OBJECT - -public: - WebViewTraditional(QWidget* parent) : QWebView(parent) {} - -protected: - virtual void contextMenuEvent(QContextMenuEvent*); - virtual void mousePressEvent(QMouseEvent*); -}; - - -class GraphicsWebView : public QGraphicsWebView { - Q_OBJECT - -public: - GraphicsWebView(QGraphicsItem* parent = 0) : QGraphicsWebView(parent) {}; - -protected: - virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent*); - virtual void mousePressEvent(QGraphicsSceneMouseEvent*); -}; - - -class WebViewGraphicsBased : public QGraphicsView { - Q_OBJECT - Q_PROPERTY(qreal yRotation READ yRotation WRITE setYRotation) - -public: - WebViewGraphicsBased(QWidget* parent); - void setPage(QWebPage* page); - - void setItemCacheMode(QGraphicsItem::CacheMode mode) { m_item->setCacheMode(mode); } - QGraphicsItem::CacheMode itemCacheMode() { return m_item->cacheMode(); } - - void setFrameRateMeasurementEnabled(bool enabled); - bool frameRateMeasurementEnabled() const { return m_measureFps; } - - virtual void resizeEvent(QResizeEvent*); - virtual void paintEvent(QPaintEvent* event); - - void setResizesToContents(bool b); - bool resizesToContents() const { return m_resizesToContents; } - - void setYRotation(qreal angle) - { -#if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0) - QRectF r = m_item->boundingRect(); - m_item->setTransform(QTransform() - .translate(r.width() / 2, r.height() / 2) - .rotate(angle, Qt::YAxis) - .translate(-r.width() / 2, -r.height() / 2)); -#endif - m_yRotation = angle; - } - qreal yRotation() const - { - return m_yRotation; - } - - GraphicsWebView* graphicsWebView() const { return m_item; } - -public slots: - void updateFrameRate(); - void animatedFlip(); - void animatedYFlip(); - void contentsSizeChanged(const QSize&); - -signals: - void yFlipRequest(); - void currentFPSUpdated(int fps); - -private: - GraphicsWebView* m_item; - int m_numPaintsTotal; - int m_numPaintsSinceLastMeasure; - QTime m_startTime; - QTime m_lastConsultTime; - QTimer* m_updateTimer; - bool m_measureFps; - qreal m_yRotation; - bool m_resizesToContents; - FpsTimer m_fpsTimer; -}; - -#endif diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Scripts/webkitpy/thirdparty/__init__.py --- a/WebKitTools/Scripts/webkitpy/thirdparty/__init__.py Fri Sep 17 09:02:29 2010 +0300 +++ b/WebKitTools/Scripts/webkitpy/thirdparty/__init__.py Mon Oct 04 01:32:07 2010 +0300 @@ -79,7 +79,7 @@ rietveld_dir = os.path.join(autoinstalled_dir, "rietveld") installer = AutoInstaller(target_dir=rietveld_dir) -installer.install(url="http://webkit-rietveld.googlecode.com/svn/trunk/static/upload.py", +installer.install(url="http://webkit-rietveld.googlecode.com/svn/trunk/upload_v26/upload.py", target_name="upload.py") diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/bison.exe Binary file WebKitTools/Symbian/bison.exe has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/flex.exe Binary file WebKitTools/Symbian/flex.exe has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/gperf.exe Binary file WebKitTools/Symbian/gperf.exe has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/iconv.exe Binary file WebKitTools/Symbian/iconv.exe has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/libcharset1.dll Binary file WebKitTools/Symbian/libcharset1.dll has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/libiconv2.dll Binary file WebKitTools/Symbian/libiconv2.dll has changed diff -r 4f2f89ce4247 -r 303757a437d3 WebKitTools/Symbian/libintl3.dll Binary file WebKitTools/Symbian/libintl3.dll has changed diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QGraphicsWebView --- a/include/QtWebKit/QGraphicsWebView Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QGraphicsWebView Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qgraphicswebview.h" +#include "qgraphicswebview.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebDatabase --- a/include/QtWebKit/QWebDatabase Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebDatabase Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebdatabase.h" +#include "qwebdatabase.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebElement --- a/include/QtWebKit/QWebElement Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebElement Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebelement.h" +#include "qwebelement.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebElementCollection --- a/include/QtWebKit/QWebElementCollection Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebElementCollection Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebelement.h" +#include "qwebelement.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebFrame --- a/include/QtWebKit/QWebFrame Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebFrame Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebframe.h" +#include "qwebframe.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebHistory --- a/include/QtWebKit/QWebHistory Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebHistory Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebhistory.h" +#include "qwebhistory.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebHistoryInterface --- a/include/QtWebKit/QWebHistoryInterface Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebHistoryInterface Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebhistoryinterface.h" +#include "qwebhistoryinterface.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebHistoryItem --- a/include/QtWebKit/QWebHistoryItem Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebHistoryItem Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebhistory.h" +#include "qwebhistory.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebHitTestResult --- a/include/QtWebKit/QWebHitTestResult Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebHitTestResult Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebframe.h" +#include "qwebframe.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebInspector --- a/include/QtWebKit/QWebInspector Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebInspector Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebinspector.h" +#include "qwebinspector.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebPage --- a/include/QtWebKit/QWebPage Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebPage Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebpage.h" +#include "qwebpage.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebPluginFactory --- a/include/QtWebKit/QWebPluginFactory Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebPluginFactory Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebpluginfactory.h" +#include "qwebpluginfactory.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebSecurityOrigin --- a/include/QtWebKit/QWebSecurityOrigin Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebSecurityOrigin Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebsecurityorigin.h" +#include "qwebsecurityorigin.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebSettings --- a/include/QtWebKit/QWebSettings Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebSettings Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebsettings.h" +#include "qwebsettings.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QWebView --- a/include/QtWebKit/QWebView Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QWebView Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "qwebview.h" +#include "qwebview.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/QtWebKit --- a/include/QtWebKit/QtWebKit Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/QtWebKit Mon Oct 04 01:32:07 2010 +0300 @@ -1,19 +1,19 @@ -#ifndef QT_QTWEBKIT_MODULE_H -#define QT_QTWEBKIT_MODULE_H -#include -#include "qwebframe.h" -#include "qgraphicswebview.h" -#include "qwebkitglobal.h" -#include "qwebkitplatformplugin.h" -#include "qwebpage.h" -#include "qwebview.h" -#include "qwebsettings.h" -#include "qwebhistoryinterface.h" -#include "qwebdatabase.h" -#include "qwebsecurityorigin.h" -#include "qwebelement.h" -#include "qwebpluginfactory.h" -#include "qwebhistory.h" -#include "qwebinspector.h" -#include "qwebkitversion.h" -#endif // QT_QTWEBKIT_MODULE_H +#ifndef QT_QTWEBKIT_MODULE_H +#define QT_QTWEBKIT_MODULE_H +#include +#include "qwebframe.h" +#include "qgraphicswebview.h" +#include "qwebkitglobal.h" +#include "qwebkitplatformplugin.h" +#include "qwebpage.h" +#include "qwebview.h" +#include "qwebsettings.h" +#include "qwebhistoryinterface.h" +#include "qwebdatabase.h" +#include "qwebsecurityorigin.h" +#include "qwebelement.h" +#include "qwebpluginfactory.h" +#include "qwebhistory.h" +#include "qwebinspector.h" +#include "qwebkitversion.h" +#endif // QT_QTWEBKIT_MODULE_H diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/classheaders.pri --- a/include/QtWebKit/classheaders.pri Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/classheaders.pri Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -WEBKIT_CLASS_HEADERS = $$PWD/QtWebKit $$PWD/QWebHitTestResult $$PWD/QWebFrame $$PWD/QGraphicsWebView $$PWD/QWebPage $$PWD/QWebView $$PWD/QWebSettings $$PWD/QWebHistoryInterface $$PWD/QWebDatabase $$PWD/QWebSecurityOrigin $$PWD/QWebElement $$PWD/QWebElementCollection $$PWD/QWebPluginFactory $$PWD/QWebHistoryItem $$PWD/QWebHistory $$PWD/QWebInspector +WEBKIT_CLASS_HEADERS = $$PWD/QtWebKit $$PWD/QWebHitTestResult $$PWD/QWebFrame $$PWD/QGraphicsWebView $$PWD/QWebPage $$PWD/QWebView $$PWD/QWebSettings $$PWD/QWebHistoryInterface $$PWD/QWebDatabase $$PWD/QWebSecurityOrigin $$PWD/QWebElement $$PWD/QWebElementCollection $$PWD/QWebPluginFactory $$PWD/QWebHistoryItem $$PWD/QWebHistory $$PWD/QWebInspector diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qgraphicswebview.h --- a/include/QtWebKit/qgraphicswebview.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qgraphicswebview.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qgraphicswebview.h" +#include "../../WebKit/qt/Api/qgraphicswebview.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebdatabase.h --- a/include/QtWebKit/qwebdatabase.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebdatabase.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebdatabase.h" +#include "../../WebKit/qt/Api/qwebdatabase.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebelement.h --- a/include/QtWebKit/qwebelement.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebelement.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebelement.h" +#include "../../WebKit/qt/Api/qwebelement.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebframe.h --- a/include/QtWebKit/qwebframe.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebframe.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebframe.h" +#include "../../WebKit/qt/Api/qwebframe.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebhistory.h --- a/include/QtWebKit/qwebhistory.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebhistory.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebhistory.h" +#include "../../WebKit/qt/Api/qwebhistory.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebhistoryinterface.h --- a/include/QtWebKit/qwebhistoryinterface.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebhistoryinterface.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebhistoryinterface.h" +#include "../../WebKit/qt/Api/qwebhistoryinterface.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebinspector.h --- a/include/QtWebKit/qwebinspector.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebinspector.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebinspector.h" +#include "../../WebKit/qt/Api/qwebinspector.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebkitglobal.h --- a/include/QtWebKit/qwebkitglobal.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebkitglobal.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebkitglobal.h" +#include "../../WebKit/qt/Api/qwebkitglobal.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebkitplatformplugin.h --- a/include/QtWebKit/qwebkitplatformplugin.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebkitplatformplugin.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebkitplatformplugin.h" +#include "../../WebKit/qt/Api/qwebkitplatformplugin.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebkitversion.h --- a/include/QtWebKit/qwebkitversion.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebkitversion.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebkitversion.h" +#include "../../WebKit/qt/Api/qwebkitversion.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebpage.h --- a/include/QtWebKit/qwebpage.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebpage.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebpage.h" +#include "../../WebKit/qt/Api/qwebpage.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebpluginfactory.h --- a/include/QtWebKit/qwebpluginfactory.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebpluginfactory.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebpluginfactory.h" +#include "../../WebKit/qt/Api/qwebpluginfactory.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebsecurityorigin.h --- a/include/QtWebKit/qwebsecurityorigin.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebsecurityorigin.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebsecurityorigin.h" +#include "../../WebKit/qt/Api/qwebsecurityorigin.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebsettings.h --- a/include/QtWebKit/qwebsettings.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebsettings.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebsettings.h" +#include "../../WebKit/qt/Api/qwebsettings.h" diff -r 4f2f89ce4247 -r 303757a437d3 include/QtWebKit/qwebview.h --- a/include/QtWebKit/qwebview.h Fri Sep 17 09:02:29 2010 +0300 +++ b/include/QtWebKit/qwebview.h Mon Oct 04 01:32:07 2010 +0300 @@ -1,1 +1,1 @@ -#include "../../WebKit/qt/Api/qwebview.h" +#include "../../WebKit/qt/Api/qwebview.h"