/work/obj-fuzz/dist/include/mozilla/intl/LineBreaker.h
Line | Count | Source (jump to first uncovered line) |
1 | | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* This Source Code Form is subject to the terms of the Mozilla Public |
3 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
4 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
5 | | #ifndef mozilla_intl_LineBreaker_h__ |
6 | | #define mozilla_intl_LineBreaker_h__ |
7 | | |
8 | | #include "nscore.h" |
9 | | #include "nsISupports.h" |
10 | | |
11 | 0 | #define NS_LINEBREAKER_NEED_MORE_TEXT -1 |
12 | | |
13 | | namespace mozilla { |
14 | | namespace intl { |
15 | | |
16 | | class LineBreaker |
17 | | { |
18 | | public: |
19 | | NS_INLINE_DECL_REFCOUNTING(LineBreaker) |
20 | | |
21 | | enum { |
22 | | kWordBreak_Normal = 0, // default |
23 | | kWordBreak_BreakAll = 1, // break all |
24 | | kWordBreak_KeepAll = 2 // always keep |
25 | | }; |
26 | | |
27 | | static already_AddRefed<LineBreaker> Create(); |
28 | | |
29 | | int32_t Next(const char16_t* aText, uint32_t aLen, uint32_t aPos); |
30 | | |
31 | | int32_t Prev( const char16_t* aText, uint32_t aLen, uint32_t aPos); |
32 | | |
33 | | // Call this on a word with whitespace at either end. We will apply JISx4051 |
34 | | // rules to find breaks inside the word. aBreakBefore is set to the break- |
35 | | // before status of each character; aBreakBefore[0] will always be false |
36 | | // because we never return a break before the first character. |
37 | | // aLength is the length of the aText array and also the length of the aBreakBefore |
38 | | // output array. |
39 | | void GetJISx4051Breaks(const char16_t* aText, uint32_t aLength, |
40 | | uint8_t aWordBreak, |
41 | | uint8_t* aBreakBefore); |
42 | | void GetJISx4051Breaks(const uint8_t* aText, uint32_t aLength, |
43 | | uint8_t aWordBreak, |
44 | | uint8_t* aBreakBefore); |
45 | | |
46 | | private: |
47 | 0 | ~LineBreaker() { } |
48 | | |
49 | | int32_t WordMove(const char16_t* aText, uint32_t aLen, uint32_t aPos, |
50 | | int8_t aDirection); |
51 | | }; |
52 | | |
53 | | static inline bool |
54 | | NS_IsSpace(char16_t u) |
55 | 0 | { |
56 | 0 | return u == 0x0020 || // SPACE |
57 | 0 | u == 0x0009 || // CHARACTER TABULATION |
58 | 0 | u == 0x000D || // CARRIAGE RETURN |
59 | 0 | (0x2000 <= u && u <= 0x2006) || // EN QUAD, EM QUAD, EN SPACE, |
60 | 0 | // EM SPACE, THREE-PER-EM SPACE, |
61 | 0 | // FOUR-PER-SPACE, SIX-PER-EM SPACE, |
62 | 0 | (0x2008 <= u && u <= 0x200B) || // PUNCTUATION SPACE, THIN SPACE, |
63 | 0 | // HAIR SPACE, ZERO WIDTH SPACE |
64 | 0 | u == 0x1361 || // ETHIOPIC WORDSPACE |
65 | 0 | u == 0x1680 || // OGHAM SPACE MARK |
66 | 0 | u == 0x205F; // MEDIUM MATHEMATICAL SPACE |
67 | 0 | } Unexecuted instantiation: SandboxBrokerPolicyFactory.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: SandboxCrash.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: SandboxPrefBridge.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_ds1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_io0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: xptdata.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_chrome0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_build0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_modules_libpref0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: hnjstdio.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_intl_lwbrk0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_intl_strres0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_intl_l10n0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsCookieService.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_cookie0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_cache21.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_about0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_data0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_file0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_protocol_ftp0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsHttpChannelAuthProvider.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsHttpHandler.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_protocol_res0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_viewsource0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_websocket0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_protocol_wyciwyg0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: DataChannel.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsNetModule.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: BackgroundChildImpl.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: BackgroundParentImpl.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_ipc_glue1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols10.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols12.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols13.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols14.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols15.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols16.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols17.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols18.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols19.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols20.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols21.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols22.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols23.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols24.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols25.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols26.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols27.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols28.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols29.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols30.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols31.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedProtocols9.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: TestShellChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: TestShellParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: XPCShellEnvironment.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_js_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Hal.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_hal0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpconnect_wrappers0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: mozJSComponentLoader.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_loader0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_src1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_extensions_cookie0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_permissions0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_media_mtransport_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_prefetch0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: BasePrincipal.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_caps0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_parser_htmlparser0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_parser_html0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_parser_html1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_parser_html2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: SharedSurfaceGLX.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_gl0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_gl1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ImageContainer.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: TextureClientX11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: X11TextureHost.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: gfxFcPlatformFontList.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: gfxPlatform.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_thebes0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_thebes1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: GPUParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VRDisplayHost.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VRDisplayLocal.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: gfxVRExternal.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: gfxVROpenVR.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: gfxVRPuppet.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_vr1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_webrender_bindings0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_image0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_image1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_animation0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsContentUtils.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsPluginArray.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: RegisterBindings.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: RegisterWorkerBindings.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnionTypes.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings10.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings12.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings13.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings14.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings15.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings16.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings17.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings18.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings19.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings20.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings21.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings22.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings23.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UnifiedBindings9.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_bindings0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: BatteryManager.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: BrowserElementParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_cache0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_cache1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_commandhandler0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_credentialmanagement0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_crypto0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_encoding0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: EventStateManager.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_events1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_events2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_file0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_file_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_file_uri0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_filesystem0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_filesystem_compat0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_gamepad0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsGeolocation.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: PluginDocument.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_html_input0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_jsurl0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: AsmJSCache.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_mathml0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: CubebUtils.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media11.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_eme0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VideoDecoderChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VideoDecoderParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_mediacapabilities0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_systemservices0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: MediaEngineWebRTC.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_webspeech_synth0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_recognition0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_midi0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_midi1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_notification0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_offline0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_power0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_push0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_security0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg5.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_network0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_permission0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsNPAPIPlugin.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsPluginHost.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: PluginInstanceChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_ipc1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ActorsParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_indexedDB1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_system0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ContentChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_workers1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_broadcastchannel0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_messagechannel0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_promise0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_smil0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_url0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xbl0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xbl1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xml0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xml0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xslt0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xslt1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_vr0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_u2f0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_console0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_performance0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_webbrowserpersist0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_xhr0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_worklet0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_script0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_payments0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_websocket0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_view0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsBaseDragService.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsBaseWidget.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsWindow.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_editor_spellchecker0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_editor_composer0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_base2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsPluginFrame.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: VsyncParent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_inspector0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_printing0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_base_timeline0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsDocShellModule.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: AccessibleWrap.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ApplicationAccessibleWrap.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: AtkSocketAccessible.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: DOMtoATK.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: DocAccessibleWrap.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Platform.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: RootAccessibleWrap.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: UtilInterface.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiHyperlink.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceAction.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceComponent.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceDocument.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceEditableText.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceHyperlinkImpl.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceHypertext.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceImage.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceSelection.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceTable.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceTableCell.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceText.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsMaiInterfaceValue.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_aom0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_base0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_base1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_generic0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_html0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: DocAccessibleChild.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ProxyAccessible.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_xpcom0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_accessible_xul0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_hunspell_glue0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_spellcheck_src0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_components_alerts0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_antitracking0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_components_browser0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_clearsitedata0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_extensions0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_components_find0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_perfmonitoring0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_reputationservice0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Telemetry.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: TelemetryScalar.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsTypeAheadFind.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsUrlClassifierStreamUpdater.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_windowwatcher0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_printingui_ipc0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsFormFillController.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_mozapps_extensions0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_toolkit_recordreplay0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsAppRunner.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: nsEmbedFunctions.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_pref_autoconfig_src0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: HeapSnapshot.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: ProtocolFuzzer.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_intl_lwbrk_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_test0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_test_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_apz_test_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_tests_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_gfx_tests_gtest1.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_base_test_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_security_test_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: content_parent_ipc_libfuzz.cpp:mozilla::intl::NS_IsSpace(char16_t) Unexecuted instantiation: Unified_cpp_layout_base_gtest0.cpp:mozilla::intl::NS_IsSpace(char16_t) |
68 | | |
69 | | static inline bool |
70 | | NS_NeedsPlatformNativeHandling(char16_t aChar) |
71 | 0 | { |
72 | 0 | return (0x0e01 <= aChar && aChar <= 0x0fff) || // Thai, Lao, Tibetan |
73 | 0 | (0x1780 <= aChar && aChar <= 0x17ff); // Khmer |
74 | 0 | } Unexecuted instantiation: SandboxBrokerPolicyFactory.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: SandboxCrash.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: SandboxPrefBridge.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_base2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_ds1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_io0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_threads2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: xptdata.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_chrome0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_build0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_modules_libpref0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: hnjstdio.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_intl_lwbrk0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_intl_strres0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_intl_l10n0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_base3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsCookieService.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_cookie0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_dns0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_cache21.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_about0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_data0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_file0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_protocol_ftp0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsHttpChannelAuthProvider.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsHttpHandler.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_http2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_protocol_res0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_viewsource0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_websocket0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_protocol_wyciwyg0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: DataChannel.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsNetModule.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: BackgroundChildImpl.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: BackgroundParentImpl.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_ipc_glue0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_ipc_glue1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols10.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols12.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols13.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols14.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols15.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols16.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols17.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols18.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols19.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols20.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols21.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols22.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols23.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols24.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols25.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols26.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols27.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols28.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols29.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols30.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols31.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedProtocols9.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: TestShellChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: TestShellParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: XPCShellEnvironment.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_js_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Hal.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_hal0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpconnect_wrappers0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: mozJSComponentLoader.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_loader0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_src0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_js_xpconnect_src1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_modules_libjar0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_extensions_cookie0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_permissions0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_src_media-conduit0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_media_mtransport_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_exthandler0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_uriloader_prefetch0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: BasePrincipal.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_caps0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_parser_htmlparser0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_parser_html0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_parser_html1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_parser_html2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: SharedSurfaceGLX.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_gl0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_gl1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ImageContainer.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: TextureClientX11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: X11TextureHost.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: gfxFcPlatformFontList.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: gfxPlatform.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_thebes0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_thebes1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: GPUParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VRDisplayHost.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VRDisplayLocal.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: gfxVRExternal.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: gfxVROpenVR.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: gfxVRPuppet.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_vr0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_vr1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_config0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_webrender_bindings0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_image0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_image1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_image2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_animation0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsContentUtils.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsPluginArray.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: RegisterBindings.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: RegisterWorkerBindings.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnionTypes.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings10.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings12.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings13.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings14.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings15.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings16.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings17.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings18.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings19.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings20.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings21.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings22.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings23.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UnifiedBindings9.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_bindings0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: BatteryManager.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: BrowserElementParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_cache0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_cache1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_canvas5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_api0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_manager0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_clients_manager1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_commandhandler0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_credentialmanagement0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_crypto0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_encoding0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: EventStateManager.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_events0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_events1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_events2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_fetch0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_file0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_file_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_file_uri0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_filesystem0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_filesystem_compat0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_gamepad0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsGeolocation.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: PluginDocument.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_html_input0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_jsurl0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: AsmJSCache.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_mathml0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: CubebUtils.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media10.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media11.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media9.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_doctor0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_eme0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gmp2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: RemoteVideoDecoder.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VideoDecoderChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VideoDecoderManagerChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VideoDecoderManagerParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VideoDecoderParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_mediacapabilities0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_media_mediasource0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_systemservices0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webaudio2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: MediaEngineWebRTC.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_webrtc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_webspeech_synth0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_recognition0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_midi0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_midi1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_notification0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_offline0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_power0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_push0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_quota0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_security0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_storage0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg5.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_network0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_permission0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsNPAPIPlugin.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsPluginHost.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: PluginInstanceChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_plugins_ipc1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ActorsParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_indexedDB0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_indexedDB1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_system0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ContentChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ProcessHangMonitor.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_ipc1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_workers0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_workers1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_audiochannel0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_broadcastchannel0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_messagechannel0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_promise0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_smil0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_url0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_webauthn0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xbl0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xbl1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xml0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xml0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xpath2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xslt0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xslt_xslt1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_vr0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_u2f0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_console0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_performance0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_webbrowserpersist0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_xhr0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_worklet0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_script0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_payments0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_websocket0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_serviceworkers2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_simpledb0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_presentation0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_presentation1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_view0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsBaseDragService.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsBaseWidget.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsWindow.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_editor_libeditor2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_editor_spellchecker0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_editor_composer0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_base2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsPluginFrame.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: VsyncParent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_inspector0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_printing0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_base_timeline0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_docshell_shistory0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsDocShellModule.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpfe_appshell0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: AccessibleWrap.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ApplicationAccessibleWrap.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: AtkSocketAccessible.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: DOMtoATK.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: DocAccessibleWrap.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Platform.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: RootAccessibleWrap.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: UtilInterface.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiHyperlink.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceAction.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceComponent.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceDocument.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceEditableText.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceHyperlinkImpl.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceHypertext.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceImage.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceSelection.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceTable.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceTableCell.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceText.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsMaiInterfaceValue.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_aom0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_base0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_base1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_generic0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_html0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: DocAccessibleChild.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ProxyAccessible.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_xpcom0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_accessible_xul0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_hunspell_glue0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_spellcheck_src0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_security_manager_ssl2.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_components_alerts0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_antitracking0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_ackgroundhangmonitor0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_components_browser0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_clearsitedata0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_extensions0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_webrequest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_components_find0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_perfmonitoring0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_components_places0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_reputationservice0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Telemetry.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: TelemetryScalar.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: TelemetryIPCAccumulator.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsTypeAheadFind.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsUrlClassifierStreamUpdater.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_url-classifier0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_windowwatcher0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_printingui_ipc0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsFormFillController.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_mozapps_extensions0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_toolkit_recordreplay0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsAppRunner.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: nsEmbedFunctions.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_pref_autoconfig_src0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: HeapSnapshot.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: ProtocolFuzzer.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_xpcom_tests_gtest3.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_intl_lwbrk_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_test0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_netwerk_test_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_apz_test_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_tests_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_gfx_tests_gtest1.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_base_test_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_dom_media_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_security_test_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: content_parent_ipc_libfuzz.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) Unexecuted instantiation: Unified_cpp_layout_base_gtest0.cpp:mozilla::intl::NS_NeedsPlatformNativeHandling(char16_t) |
75 | | |
76 | | } // namespace intl |
77 | | } // namespace mozilla |
78 | | |
79 | | #endif /* mozilla_intl_LineBreaker_h__ */ |