expo-juce 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +34 -0
- package/build/index.d.ts +21 -24
- package/build/index.d.ts.map +1 -1
- package/build/index.js +44 -48
- package/build/index.js.map +1 -1
- package/ios/BeeperAudioEngine.h +45 -0
- package/ios/BeeperAudioEngine.mm +352 -0
- package/ios/ExpoJuce.podspec +31 -8
- package/ios/ExpoJuceBridge.h +12 -12
- package/ios/ExpoJuceBridge.m +35 -100
- package/ios/ExpoJuceModule.swift +63 -85
- package/ios/JuceConfig.h +49 -14
- package/ios/JuceModule_audio_basics.mm +2 -0
- package/ios/JuceModule_audio_devices.mm +2 -0
- package/ios/JuceModule_audio_formats.mm +2 -0
- package/ios/JuceModule_audio_processors.mm +2 -0
- package/ios/JuceModule_core.mm +5 -0
- package/ios/JuceModule_data_structures.mm +2 -0
- package/ios/JuceModule_dsp.mm +2 -0
- package/ios/JuceModule_events.mm +2 -0
- package/ios/JuceModule_graphics.mm +2 -0
- package/ios/JuceModule_gui_basics.mm +2 -0
- package/ios/JuceModule_gui_extra.mm +2 -0
- package/ios/JuceModule_harfbuzz.mm +4 -0
- package/ios/PolySynthProcessor.h +83 -0
- package/ios/PolySynthProcessor.mm +164 -0
- package/ios/TransportEngine.h +35 -0
- package/ios/TransportEngine.mm +50 -0
- package/ios/Voice.h +59 -0
- package/ios/Voice.mm +157 -0
- package/ios/VoiceAllocator.h +22 -0
- package/ios/VoiceAllocator.mm +88 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.cpp +1957 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioDeviceManager.h +586 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioIODevice.cpp +65 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioIODevice.h +368 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.cpp +152 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_AudioIODeviceType.h +200 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_SampleRateHelpers.cpp +57 -0
- package/ios/juce_modules/juce_audio_devices/audio_io/juce_SystemAudioVolume.h +71 -0
- package/ios/juce_modules/juce_audio_devices/juce_audio_devices.cpp +277 -0
- package/ios/juce_modules/juce_audio_devices/juce_audio_devices.h +201 -0
- package/ios/juce_modules/juce_audio_devices/juce_audio_devices.mm +35 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/juce_MidiDevices.cpp +246 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/juce_MidiDevices.h +482 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.cpp +170 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/juce_MidiMessageCollector.h +125 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/ump/juce_UMPBytestreamInputHandler.h +153 -0
- package/ios/juce_modules/juce_audio_devices/midi_io/ump/juce_UMPU32InputHandler.h +165 -0
- package/ios/juce_modules/juce_audio_devices/native/java/app/com/rmsl/juce/JuceMidiSupport.java +1121 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_ALSA_linux.cpp +1313 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_ASIO_windows.cpp +1654 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Audio_android.cpp +482 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Audio_ios.cpp +1508 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Audio_ios.h +106 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Bela_linux.cpp +612 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_CoreAudio_mac.cpp +2315 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_CoreMidi_mac.mm +1280 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_DirectSound_windows.cpp +1304 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_HighPerformanceAudioHelpers_android.h +137 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_JackAudio_linux.cpp +681 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Midi_android.cpp +1183 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Midi_linux.cpp +788 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Midi_windows.cpp +2038 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_Oboe_android.cpp +1440 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_OpenSL_android.cpp +1306 -0
- package/ios/juce_modules/juce_audio_devices/native/juce_WASAPI_windows.cpp +2032 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/.clang-tidy +3 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/AudioStream.h +706 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBase.h +343 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamBuilder.h +670 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/AudioStreamCallback.h +193 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/Definitions.h +897 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/FifoBuffer.h +164 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/FifoControllerBase.h +112 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/FullDuplexStream.h +324 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/LatencyTuner.h +150 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/Oboe.h +40 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/OboeExtensions.h +64 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/ResultWithValue.h +155 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/StabilizedCallback.h +75 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/Utilities.h +99 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/include/oboe/Version.h +92 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/aaudio/AAudioExtensions.h +180 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/aaudio/AAudioLoader.cpp +506 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/aaudio/AAudioLoader.h +299 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/aaudio/AudioStreamAAudio.cpp +868 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/aaudio/AudioStreamAAudio.h +152 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AdpfWrapper.cpp +124 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AdpfWrapper.h +85 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AudioClock.h +75 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AudioSourceCaller.cpp +38 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AudioSourceCaller.h +83 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AudioStream.cpp +222 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/AudioStreamBuilder.cpp +224 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/DataConversionFlowGraph.cpp +266 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/DataConversionFlowGraph.h +86 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FilterAudioStream.cpp +106 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FilterAudioStream.h +227 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockAdapter.cpp +38 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockAdapter.h +67 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockReader.cpp +73 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockReader.h +60 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockWriter.cpp +73 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/FixedBlockWriter.h +54 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/LatencyTuner.cpp +108 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/MonotonicCounter.h +112 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/OboeDebug.h +41 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/OboeExtensions.cpp +36 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/QuirksManager.cpp +311 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/QuirksManager.h +134 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceFloatCaller.cpp +30 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceFloatCaller.h +44 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI16Caller.cpp +47 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI16Caller.h +49 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI24Caller.cpp +56 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI24Caller.h +53 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI32Caller.cpp +47 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/SourceI32Caller.h +53 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/StabilizedCallback.cpp +112 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/Trace.cpp +75 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/Trace.h +31 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/Utilities.cpp +333 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/common/Version.cpp +28 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoBuffer.cpp +178 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoController.cpp +30 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoController.h +62 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoControllerBase.cpp +68 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoControllerIndirect.cpp +32 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/fifo/FifoControllerIndirect.h +66 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ChannelCountConverter.cpp +52 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ChannelCountConverter.h +52 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ClipToRange.cpp +38 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ClipToRange.h +68 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/FlowGraphNode.cpp +114 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/FlowGraphNode.h +450 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/FlowgraphUtilities.h +55 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.cpp +67 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/Limiter.h +64 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ManyToMultiConverter.cpp +47 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/ManyToMultiConverter.h +53 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MonoBlend.cpp +46 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MonoBlend.h +48 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MonoToMultiConverter.cpp +41 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MonoToMultiConverter.h +49 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MultiToManyConverter.cpp +47 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MultiToManyConverter.h +49 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MultiToMonoConverter.cpp +41 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/MultiToMonoConverter.h +49 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/RampLinear.cpp +81 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/RampLinear.h +96 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SampleRateConverter.cpp +71 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SampleRateConverter.h +63 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkFloat.cpp +46 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkFloat.h +45 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.cpp +57 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI16.h +43 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI24.cpp +66 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI24.h +44 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI32.cpp +55 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SinkI32.h +40 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceFloat.cpp +42 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceFloat.h +44 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI16.cpp +54 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI16.h +42 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI24.cpp +65 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI24.h +43 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI32.cpp +54 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/SourceI32.h +42 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/HyperbolicCosineWindow.h +71 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/IntegerRatio.cpp +50 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/IntegerRatio.h +54 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/KaiserWindow.h +90 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/LinearResampler.cpp +42 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/LinearResampler.h +47 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/MultiChannelResampler.cpp +171 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/MultiChannelResampler.h +281 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResampler.cpp +61 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResampler.h +53 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.cpp +63 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResamplerMono.h +41 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.cpp +79 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/PolyphaseResamplerStereo.h +41 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/ResamplerDefinitions.h +27 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/SincResampler.cpp +72 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/SincResampler.h +50 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/SincResamplerStereo.cpp +81 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/flowgraph/resampler/SincResamplerStereo.h +42 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioInputStreamOpenSLES.cpp +360 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioInputStreamOpenSLES.h +66 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioOutputStreamOpenSLES.cpp +462 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioOutputStreamOpenSLES.h +80 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioStreamBuffered.cpp +285 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioStreamBuffered.h +96 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioStreamOpenSLES.cpp +499 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/AudioStreamOpenSLES.h +148 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/EngineOpenSLES.cpp +141 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/EngineOpenSLES.h +65 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/OpenSLESUtilities.cpp +96 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/OpenSLESUtilities.h +44 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/OutputMixerOpenSLES.cpp +74 -0
- package/ios/juce_modules/juce_audio_devices/native/oboe/src/opensles/OutputMixerOpenSLES.h +58 -0
- package/ios/juce_modules/juce_audio_devices/sources/juce_AudioSourcePlayer.cpp +193 -0
- package/ios/juce_modules/juce_audio_devices/sources/juce_AudioSourcePlayer.h +127 -0
- package/ios/juce_modules/juce_audio_devices/sources/juce_AudioTransportSource.cpp +295 -0
- package/ios/juce_modules/juce_audio_devices/sources/juce_AudioTransportSource.h +192 -0
- package/ios/juce_modules/juce_audio_processors/format/juce_AudioPluginFormat.cpp +107 -0
- package/ios/juce_modules/juce_audio_processors/format/juce_AudioPluginFormat.h +183 -0
- package/ios/juce_modules/juce_audio_processors/format/juce_AudioPluginFormatManager.cpp +212 -0
- package/ios/juce_modules/juce_audio_processors/format/juce_AudioPluginFormatManager.h +151 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/generate_lv2_bundle_sources.py +175 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/juce_lv2_config.h +87 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/COPYING +13 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/lilv/lilv.h +2117 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/lilv/lilvmm.hpp +440 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/collections.c +240 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/filesystem.c +564 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/filesystem.h +182 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/instance.c +115 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/lib.c +127 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/lilv_internal.h +477 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/node.c +413 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/plugin.c +1140 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/pluginclass.c +91 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/port.c +272 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/query.c +144 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/scalepoint.c +53 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/state.c +1541 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/ui.c +115 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/util.c +291 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/world.c +1249 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/zix/common.h +138 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/zix/tree.c +727 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv/src/zix/tree.h +164 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lilv_config.h +42 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/COPYING +16 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/atom-test-utils.c +73 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/atom-test.c +367 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/atom.h +260 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/atom.meta.ttl +542 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/atom.ttl +247 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/forge-overflow-test.c +235 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/forge.h +683 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/atom/util.h +523 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/buf-size/buf-size.h +51 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/buf-size/buf-size.meta.ttl +157 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/buf-size/buf-size.ttl +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/buf-size/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/attributes.h +59 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/lv2.h +484 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/lv2_util.h +103 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/lv2core.meta.ttl +905 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/lv2core.ttl +674 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/manifest.ttl +15 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/meta.ttl +199 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/core/people.ttl +51 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/data-access/data-access.h +73 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/data-access/data-access.meta.ttl +77 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/data-access/data-access.ttl +11 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/data-access/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/dynmanifest/dynmanifest.h +160 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/dynmanifest/dynmanifest.meta.ttl +131 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/dynmanifest/dynmanifest.ttl +25 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/dynmanifest/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/event/event-helpers.h +255 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/event/event.h +306 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/event/event.meta.ttl +246 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/event/event.ttl +86 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/event/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/instance-access/instance-access.h +41 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/instance-access/instance-access.meta.ttl +75 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/instance-access/instance-access.ttl +11 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/instance-access/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/log/log.h +113 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/log/log.meta.ttl +126 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/log/log.ttl +48 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/log/logger.h +157 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/log/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/midi/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/midi/midi.h +248 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/midi/midi.meta.ttl +153 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/midi/midi.ttl +366 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/morph/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/morph/morph.h +48 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/morph/morph.meta.ttl +90 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/morph/morph.ttl +46 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/options/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/options/options.h +149 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/options/options.meta.ttl +129 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/options/options.ttl +44 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/parameters/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/parameters/parameters.h +68 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/parameters/parameters.meta.ttl +75 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/parameters/parameters.ttl +202 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/patch/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/patch/patch.h +73 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/patch/patch.meta.ttl +374 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/patch/patch.ttl +251 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-groups/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-groups/port-groups.h +77 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-groups/port-groups.meta.ttl +144 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-groups/port-groups.ttl +807 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-props/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-props/port-props.h +53 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-props/port-props.meta.ttl +202 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/port-props/port-props.ttl +79 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/presets/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/presets/presets.h +48 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/presets/presets.meta.ttl +132 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/presets/presets.ttl +60 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/resize-port/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/resize-port/resize-port.h +89 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/resize-port/resize-port.meta.ttl +74 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/resize-port/resize-port.ttl +36 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/state/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/state/state.h +392 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/state/state.meta.ttl +467 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/state/state.ttl +60 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/time/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/time/time.h +59 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/time/time.meta.ttl +112 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/time/time.ttl +122 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/ui/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/ui/ui.h +543 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/ui/ui.meta.ttl +627 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/ui/ui.ttl +248 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/units/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/units/units.h +75 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/units/units.meta.ttl +154 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/units/units.ttl +379 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/uri-map/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/uri-map/uri-map.h +121 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/uri-map/uri-map.meta.ttl +72 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/uri-map/uri-map.ttl +14 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/urid/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/urid/urid.h +140 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/urid/urid.meta.ttl +84 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/urid/urid.ttl +22 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/worker/manifest.ttl +9 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/worker/worker.h +183 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/worker/worker.meta.ttl +82 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/lv2/lv2/worker/worker.ttl +25 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/COPYING +13 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/serd/serd.h +1059 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/.clang-tidy +18 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/attributes.h +26 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/base64.c +132 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/base64.h +48 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/byte_sink.h +98 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/byte_source.c +112 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/byte_source.h +120 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/env.c +256 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/n3.c +1720 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/node.c +393 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/node.h +48 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/reader.c +425 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/reader.h +196 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/serd_config.h +98 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/serd_internal.h +46 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/serdi.c +377 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/stack.h +119 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/string.c +179 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/string_utils.h +173 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/system.c +82 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/system.h +40 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/uri.c +506 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/uri_utils.h +110 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd/src/writer.c +1114 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/serd_config.h +42 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/COPYING +13 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/sord/sord.h +642 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/sord/sordmm.hpp +720 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sord.c +1368 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sord_config.h +61 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sord_internal.h +53 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sord_test.c +767 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sord_validate.c +804 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sordi.c +216 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/sordmm_test.cpp +25 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/syntax.c +203 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/btree.c +936 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/btree.h +187 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/common.h +138 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/digest.c +141 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/digest.h +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/hash.c +230 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord/src/zix/hash.h +138 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sord_config.h +42 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sratom/COPYING +13 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sratom/sratom/sratom.h +220 -0
- package/ios/juce_modules/juce_audio_processors/format_types/LV2_SDK/sratom/src/sratom.c +919 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/VST3_License_Agreement.pdf +0 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/VST3_Usage_Guidelines.pdf +0 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/baseiids.cpp +52 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/classfactoryhelpers.h +87 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fbuffer.cpp +641 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fbuffer.h +306 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fcommandline.h +392 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fdebug.cpp +340 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fdebug.h +246 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fobject.cpp +271 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fobject.h +577 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fstreamer.cpp +756 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fstreamer.h +242 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fstring.cpp +3962 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/fstring.h +767 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/updatehandler.cpp +737 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/source/updatehandler.h +150 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/thread/include/flock.h +184 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/base/thread/source/flock.cpp +146 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/helper.manifest +10 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/conststringtable.cpp +106 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/conststringtable.h +44 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/coreiids.cpp +40 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/falignpop.h +25 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/falignpush.h +40 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/fplatform.h +333 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/fstrdefs.h +291 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ftypes.h +176 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/funknown.cpp +502 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/funknown.h +564 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/futils.h +107 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/fvariant.h +297 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ibstream.h +87 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/icloneable.h +41 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ipersistent.h +160 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ipluginbase.h +520 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/iplugincompatibility.h +122 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/istringresult.h +80 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/iupdatehandler.h +98 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/smartpointer.h +386 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/typesizecheck.h +55 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ustring.cpp +275 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/base/ustring.h +116 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/gui/iplugview.h +287 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/gui/iplugviewcontentscalesupport.h +75 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstattributes.h +150 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstaudioprocessor.h +434 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstautomationstate.h +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstchannelcontextinfo.h +238 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstcomponent.h +205 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstcontextmenu.h +219 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstdataexchange.h +221 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivsteditcontroller.h +657 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstevents.h +221 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivsthostapplication.h +163 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstinterappaudio.h +142 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstmessage.h +97 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstmidicontrollers.h +118 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstmidilearn.h +106 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstnoteexpression.h +255 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstparameterchanges.h +145 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstparameterfunctionname.h +151 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstphysicalui.h +169 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstpluginterfacesupport.h +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstplugview.h +62 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstprefetchablesupport.h +99 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstprocesscontext.h +153 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstremapparamid.h +75 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstrepresentation.h +364 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivsttestplugprovider.h +109 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/ivstunits.h +271 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstpshpack4.h +30 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vstspeaker.h +1318 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/pluginterfaces/vst/vsttypes.h +157 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/samples/vst-utilities/moduleinfotool/source/main.cpp +441 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/memorystream.cpp +319 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/memorystream.h +79 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/pluginview.cpp +100 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/pluginview.h +116 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/readfile.cpp +81 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/common/readfile.h +54 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/hostclasses.cpp +342 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/hostclasses.h +120 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module.cpp +340 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module.h +214 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_linux.cpp +369 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_mac.mm +395 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/module_win32.cpp +647 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/pluginterfacesupport.cpp +134 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/hosting/pluginterfacesupport.h +70 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/json.h +3403 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/jsoncxx.h +427 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfo.h +100 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfocreator.cpp +309 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfocreator.h +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfoparser.cpp +537 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/moduleinfo/moduleinfoparser.h +68 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/optional.h +135 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/stringconvert.cpp +148 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/stringconvert.h +147 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/utility/uid.h +286 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstbus.cpp +99 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstbus.h +172 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstcomponent.cpp +216 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstcomponent.h +118 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstcomponentbase.cpp +180 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstcomponentbase.h +110 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vsteditcontroller.cpp +701 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vsteditcontroller.h +374 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstinitiids.cpp +154 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstparameters.cpp +454 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstparameters.h +240 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstpresetfile.cpp +927 -0
- package/ios/juce_modules/juce_audio_processors/format_types/VST3_SDK/public.sdk/source/vst/vstpresetfile.h +306 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_ARACommon.cpp +99 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_ARACommon.h +98 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_ARAHosting.cpp +490 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_ARAHosting.h +786 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_AU_Shared.h +588 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.h +79 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_AudioUnitPluginFormat.mm +2947 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.cpp +728 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LADSPAPluginFormat.h +79 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2Common.h +676 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2PluginFormat.cpp +5654 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2PluginFormat.h +87 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2PluginFormat_test.cpp +281 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2Resources.h +10241 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LV2SupportLibs.cpp +117 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp +225 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VST3Common.h +1851 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VST3Headers.h +280 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VST3PluginFormat.cpp +4086 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VST3PluginFormat.h +95 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VST3PluginFormat_test.cpp +740 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VSTCommon.h +315 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VSTMidiEventList.h +229 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VSTPluginFormat.cpp +3764 -0
- package/ios/juce_modules/juce_audio_processors/format_types/juce_VSTPluginFormat.h +141 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipslcontextinfo.h +190 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipsleditcontroller.h +108 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipslgainreduction.h +53 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipslhostcommands.h +121 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipslviewembedding.h +53 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/ipslviewscaling.h +67 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/pslauextensions.h +57 -0
- package/ios/juce_modules/juce_audio_processors/format_types/pslextensions/pslvst2extensions.h +111 -0
- package/ios/juce_modules/juce_audio_processors/juce_audio_processors.cpp +246 -0
- package/ios/juce_modules/juce_audio_processors/juce_audio_processors.h +195 -0
- package/ios/juce_modules/juce_audio_processors/juce_audio_processors.mm +35 -0
- package/ios/juce_modules/juce_audio_processors/juce_audio_processors_ara.cpp +51 -0
- package/ios/juce_modules/juce_audio_processors/juce_audio_processors_lv2_libs.cpp +44 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioPluginInstance.cpp +294 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioPluginInstance.h +191 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessor.cpp +1655 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessor.h +1587 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorEditor.cpp +230 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorEditor.h +272 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorEditorHostContext.h +98 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorGraph.cpp +2375 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorGraph.h +453 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorListener.h +198 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorParameter.h +370 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorParameterGroup.cpp +330 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_AudioProcessorParameterGroup.h +263 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.cpp +633 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_GenericAudioProcessorEditor.h +74 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_HostedAudioProcessorParameter.h +61 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_PluginDescription.cpp +126 -0
- package/ios/juce_modules/juce_audio_processors/processors/juce_PluginDescription.h +189 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_KnownPluginList.cpp +651 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_KnownPluginList.h +249 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.cpp +148 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_PluginDirectoryScanner.h +147 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_PluginListComponent.cpp +690 -0
- package/ios/juce_modules/juce_audio_processors/scanning/juce_PluginListComponent.h +156 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARADebug.h +76 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARADocumentController.cpp +985 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARADocumentController.h +538 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARADocumentControllerCommon.cpp +80 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARAModelObjects.cpp +302 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARAModelObjects.h +983 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARAPlugInInstanceRoles.cpp +123 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARAPlugInInstanceRoles.h +263 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARA_utils.cpp +65 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_ARA_utils.h +95 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_AudioProcessor_ARAExtensions.cpp +163 -0
- package/ios/juce_modules/juce_audio_processors/utilities/ARA/juce_AudioProcessor_ARAExtensions.h +213 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AAXClientExtensions.cpp +308 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AAXClientExtensions.h +92 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterBool.cpp +104 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterBool.h +149 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterChoice.cpp +145 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterChoice.h +162 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterFloat.cpp +113 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterFloat.h +169 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterInt.cpp +146 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioParameterInt.h +163 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.cpp +56 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h +200 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.cpp +997 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_AudioProcessorValueTreeState.h +669 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_ExtensionsVisitor.h +155 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_FlagCache.h +191 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_ParameterAttachments.cpp +442 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_ParameterAttachments.h +400 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_PluginHostType.cpp +328 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_PluginHostType.h +265 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_RangedAudioParameter.cpp +60 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_RangedAudioParameter.h +129 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_VST2ClientExtensions.cpp +48 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_VST2ClientExtensions.h +83 -0
- package/ios/juce_modules/juce_audio_processors/utilities/juce_VST3ClientExtensions.h +119 -0
- package/ios/juce_modules/juce_core/native/juce_BasicNativeHeaders.h +6 -1
- package/ios/juce_modules/juce_graphics/colour/juce_Colour.cpp +726 -0
- package/ios/juce_modules/juce_graphics/colour/juce_Colour.h +429 -0
- package/ios/juce_modules/juce_graphics/colour/juce_ColourGradient.cpp +294 -0
- package/ios/juce_modules/juce_graphics/colour/juce_ColourGradient.h +255 -0
- package/ios/juce_modules/juce_graphics/colour/juce_Colours.cpp +205 -0
- package/ios/juce_modules/juce_graphics/colour/juce_Colours.h +200 -0
- package/ios/juce_modules/juce_graphics/colour/juce_FillType.cpp +166 -0
- package/ios/juce_modules/juce_graphics/colour/juce_FillType.h +165 -0
- package/ios/juce_modules/juce_graphics/colour/juce_PixelFormats.h +749 -0
- package/ios/juce_modules/juce_graphics/contexts/juce_GraphicsContext.cpp +857 -0
- package/ios/juce_modules/juce_graphics/contexts/juce_GraphicsContext.h +758 -0
- package/ios/juce_modules/juce_graphics/contexts/juce_LowLevelGraphicsContext.h +186 -0
- package/ios/juce_modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.cpp +59 -0
- package/ios/juce_modules/juce_graphics/contexts/juce_LowLevelGraphicsSoftwareRenderer.h +66 -0
- package/ios/juce_modules/juce_graphics/detail/juce_Ranges.cpp +793 -0
- package/ios/juce_modules/juce_graphics/detail/juce_Ranges.h +1014 -0
- package/ios/juce_modules/juce_graphics/effects/juce_DropShadowEffect.cpp +152 -0
- package/ios/juce_modules/juce_graphics/effects/juce_DropShadowEffect.h +122 -0
- package/ios/juce_modules/juce_graphics/effects/juce_GlowEffect.cpp +59 -0
- package/ios/juce_modules/juce_graphics/effects/juce_GlowEffect.h +86 -0
- package/ios/juce_modules/juce_graphics/effects/juce_ImageEffectFilter.h +80 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/CBDT/CBDT.hh +1031 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/COLR/COLR.hh +2745 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/COLR/colrv1-closure.hh +137 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/CPAL/CPAL.hh +358 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/sbix/sbix.hh +448 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Color/svg/svg.hh +152 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/Common/Coverage.hh +352 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/Common/CoverageFormat1.hh +133 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/Common/CoverageFormat2.hh +239 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/Common/RangeRecord.hh +97 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GDEF/GDEF.hh +1044 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/Anchor.hh +84 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/AnchorFormat1.hh +46 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/AnchorFormat2.hh +58 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/AnchorFormat3.hh +120 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/AnchorMatrix.hh +87 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/ChainContextPos.hh +14 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/Common.hh +33 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/ContextPos.hh +14 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/CursivePos.hh +35 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/CursivePosFormat1.hh +311 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/ExtensionPos.hh +17 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/GPOS.hh +171 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/LigatureArray.hh +57 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkArray.hh +128 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkBasePos.hh +41 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkBasePosFormat1.hh +243 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkLigPos.hh +41 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkLigPosFormat1.hh +224 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkMarkPos.hh +42 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkMarkPosFormat1.hh +231 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/MarkRecord.hh +51 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PairPos.hh +46 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PairPosFormat1.hh +233 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PairPosFormat2.hh +365 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PairSet.hh +210 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PairValueRecord.hh +99 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PosLookup.hh +79 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/PosLookupSubTable.hh +79 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/SinglePos.hh +98 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/SinglePosFormat1.hh +190 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/SinglePosFormat2.hh +213 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GPOS/ValueFormat.hh +441 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/AlternateSet.hh +126 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/AlternateSubst.hh +62 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/AlternateSubstFormat1.hh +128 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/ChainContextSubst.hh +18 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/Common.hh +19 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/ContextSubst.hh +18 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/ExtensionSubst.hh +22 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/GSUB.hh +61 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/Ligature.hh +203 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/LigatureSet.hh +188 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/LigatureSubst.hh +71 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/LigatureSubstFormat1.hh +166 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/MultipleSubst.hh +62 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/MultipleSubstFormat1.hh +130 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/ReverseChainSingleSubst.hh +36 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/ReverseChainSingleSubstFormat1.hh +245 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/Sequence.hh +165 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/SingleSubst.hh +103 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/SingleSubstFormat1.hh +204 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/SingleSubstFormat2.hh +176 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/SubstLookup.hh +220 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/GSUB/SubstLookupSubTable.hh +77 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Layout/types.hh +66 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Var/VARC/VARC.cc +346 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Var/VARC/VARC.hh +193 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/Var/VARC/coord-setter.hh +37 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/CompositeGlyph.hh +435 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/Glyph.hh +556 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/GlyphHeader.hh +52 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/SimpleGlyph.hh +348 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/SubsetGlyph.hh +141 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/composite-iter.hh +68 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/glyf-helpers.hh +127 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/glyf.hh +513 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/loca.hh +43 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/glyf/path-builder.hh +190 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/OT/name/name.hh +589 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/failing-alloc.c +65 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/harfbuzz-subset.cc +64 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/harfbuzz.cc +63 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-ankr-table.hh +99 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-bsln-table.hh +159 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-common.hh +1076 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-feat-table.hh +224 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-just-table.hh +420 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-kerx-table.hh +1191 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-morx-table.hh +1443 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-opbd-table.hh +174 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout-trak-table.hh +232 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout.cc +449 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout.h +795 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-layout.hh +77 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-ltag-table.hh +95 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-map.cc +172 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat-map.hh +123 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-aat.h +38 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-algs.hh +1558 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-array.hh +504 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-atomic.hh +228 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-bimap.hh +205 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-bit-page.hh +352 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-bit-set-invertible.hh +379 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-bit-set.hh +982 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-blob.cc +794 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-blob.h +160 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-blob.hh +98 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer-deserialize-json.hh +795 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer-deserialize-text-glyphs.hh +692 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer-deserialize-text-unicode.hh +332 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer-serialize.cc +872 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer-verify.cc +423 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer.cc +2266 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer.h +805 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-buffer.hh +682 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cache.hh +99 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cff-interp-common.hh +642 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cff-interp-cs-common.hh +905 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cff-interp-dict-common.hh +201 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cff1-interp-cs.hh +160 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cff2-interp-cs.hh +278 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-common.cc +1220 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-common.h +935 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-config.hh +212 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-coretext.cc +1197 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-coretext.h +96 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-cplusplus.hh +220 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-debug.hh +491 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-deprecated.h +318 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-directwrite.cc +884 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-directwrite.h +40 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-dispatch.hh +60 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-draw.cc +458 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-draw.h +340 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-draw.hh +243 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-face-builder.cc +246 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-face.cc +664 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-face.h +187 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-face.hh +111 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-fallback-shape.cc +115 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-font.cc +3069 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-font.h +1153 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-font.hh +720 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ft-colr.hh +601 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ft.cc +1500 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ft.h +145 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-gdi.cc +85 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-gdi.h +39 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-geometry.hh +284 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-glib.cc +232 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-glib.h +56 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-gobject-structs.cc +116 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-gobject-structs.h +136 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-gobject.h +40 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-graphite2.cc +455 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-graphite2.h +61 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-icu.cc +291 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-icu.h +52 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-iter.hh +1037 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-kern.hh +145 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-limits.hh +112 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-machinery.hh +332 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-map.cc +419 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-map.h +143 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-map.hh +568 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-meta.hh +238 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ms-feature-ranges.hh +232 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-multimap.hh +96 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-mutex.hh +122 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-null.hh +226 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-number-parser.hh +237 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-number.cc +79 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-number.hh +41 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-object.hh +357 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-open-file.hh +543 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-open-type.hh +1886 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff-common.hh +374 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff1-std-str.hh +425 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff1-table.cc +620 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff1-table.hh +1539 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff2-table.cc +227 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cff2-table.hh +564 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-cmap-table.hh +2154 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-color.cc +363 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-color.h +155 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-deprecated.h +147 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-face-table-list.hh +155 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-face.cc +60 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-face.hh +77 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-font.cc +662 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-font.h +45 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-gasp-table.hh +84 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-glyf-table.hh +35 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-hdmx-table.hh +177 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-head-table.hh +204 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-hhea-table.hh +106 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-hmtx-table.hh +502 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-kern-table.hh +425 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-base-table.hh +849 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-common.hh +4953 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-gdef-table.hh +34 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-gpos-table.hh +81 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-gsub-table.hh +94 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-gsubgpos.hh +4887 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout-jstf-table.hh +236 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout.cc +2705 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout.h +549 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-layout.hh +611 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-map.cc +394 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-map.hh +298 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-math-table.hh +1132 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-math.cc +338 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-math.h +333 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-maxp-table.hh +156 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-meta-table.hh +131 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.cc +79 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-meta.h +72 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-metrics.cc +436 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-metrics.h +129 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-metrics.hh +35 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-name-language-static.hh +456 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-name-language.hh +40 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-name-table.hh +32 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-name.cc +184 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-name.h +164 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-os2-table.hh +405 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-os2-unicode-ranges.hh +231 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-post-macroman.hh +294 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-post-table-v2subset.hh +142 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-post-table.hh +352 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape-fallback.cc +615 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape-fallback.hh +54 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape-normalize.cc +470 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape-normalize.hh +104 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.cc +1319 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.h +53 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shape.hh +171 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic-fallback.hh +383 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic-joining-list.hh +47 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic-pua.hh +118 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic-table.hh +556 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic-win1256.hh +349 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic.cc +774 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-arabic.hh +50 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-default.cc +75 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-hangul.cc +436 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-hebrew.cc +211 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-indic-machine.hh +627 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-indic-table.cc +561 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-indic.cc +1578 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-indic.hh +66 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-khmer-machine.hh +428 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-khmer.cc +387 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-myanmar-machine.hh +553 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-myanmar.cc +390 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-syllabic.cc +112 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-syllabic.hh +47 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-thai.cc +393 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-use-machine.hh +1079 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-use-table.hh +690 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-use.cc +514 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-vowel-constraints.cc +477 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper-vowel-constraints.hh +39 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-shaper.hh +404 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-stat-table.hh +619 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-tag-table.hh +3009 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-tag.cc +658 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-avar-table.hh +411 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-common.hh +1985 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-cvar-table.hh +220 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-fvar-table.hh +505 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-gvar-table.hh +890 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-hvar-table.hh +478 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-mvar-table.hh +184 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var-varc-table.hh +32 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var.cc +328 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-var.h +191 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot-vorg-table.hh +137 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ot.h +49 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-outline.cc +321 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-outline.hh +83 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-paint-extents.cc +330 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-paint-extents.hh +132 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-paint.cc +728 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-paint.h +1029 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-paint.hh +236 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-pool.hh +107 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-priority-queue.hh +174 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-repacker.hh +476 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-sanitize.hh +530 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-serialize.hh +832 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-set-digest.hh +227 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-set.cc +673 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-set.h +203 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-set.hh +186 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shape-plan.cc +581 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shape-plan.h +122 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shape-plan.hh +77 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shape.cc +445 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shape.h +74 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shaper-impl.hh +38 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shaper-list.hh +65 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shaper.cc +102 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-shaper.hh +134 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-static.cc +138 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-string-array.hh +85 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-style.cc +134 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-style.h +81 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-accelerator.hh +141 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-cff-common.cc +231 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-cff-common.hh +1228 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-cff1.cc +1001 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-cff2.cc +679 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-input.cc +748 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-input.hh +155 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-instancer-iup.cc +532 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-instancer-iup.hh +37 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-instancer-solver.cc +434 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-instancer-solver.hh +114 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-plan-member-list.hh +164 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-plan.cc +1570 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-plan.hh +302 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-repacker.cc +58 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset-repacker.h +81 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset.cc +704 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset.h +260 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-subset.hh +74 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ucd-table.hh +5637 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-ucd.cc +258 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-unicode-emoji-table.hh +79 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-unicode.cc +625 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-unicode.h +643 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-unicode.hh +403 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-uniscribe.cc +889 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-uniscribe.h +46 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-utf.hh +481 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-vector.hh +539 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-version.h +95 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-blob.hh +50 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-buffer.hh +217 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-common.hh +44 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-face.hh +109 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-font.hh +263 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-list.hh +109 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api-shape.hh +70 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.cc +46 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.h +322 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-api.hh +117 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb-wasm-shape.cc +470 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb.h +51 -0
- package/ios/juce_modules/juce_graphics/fonts/harfbuzz/hb.hh +555 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_AttributedString.cpp +288 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_AttributedString.h +219 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_Font.cpp +1036 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_Font.h +571 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_FontOptions.cpp +111 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_FontOptions.h +218 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_FunctionPointerDestructor.h +53 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_GlyphArrangement.cpp +657 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_GlyphArrangement.h +324 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_JustifiedText.cpp +580 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_LruCache.h +88 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_ShapedText.cpp +210 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_SimpleShapedText.cpp +1279 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_TextLayout.cpp +512 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_TextLayout.h +278 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_Typeface.cpp +983 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_Typeface.h +396 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_TypefaceFileCache.h +74 -0
- package/ios/juce_modules/juce_graphics/fonts/juce_TypefaceTestData.cpp +6051 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_AffineTransform.cpp +307 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_AffineTransform.h +314 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_BorderSize.h +176 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_EdgeTable.cpp +848 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_EdgeTable.h +225 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Line.h +454 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Parallelogram.h +194 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Parallelogram_test.cpp +75 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Path.cpp +1531 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Path.h +846 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_PathIterator.cpp +304 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_PathIterator.h +120 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_PathStrokeType.cpp +756 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_PathStrokeType.h +215 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Point.h +269 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Rectangle.h +1032 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_RectangleList.h +694 -0
- package/ios/juce_modules/juce_graphics/geometry/juce_Rectangle_test.cpp +60 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/README +385 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/cderror.h +132 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcapimin.c +280 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcapistd.c +161 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jccoefct.c +449 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jccolor.c +459 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcdctmgr.c +387 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jchuff.c +909 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jchuff.h +52 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcinit.c +72 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcmainct.c +293 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcmarker.c +597 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcmaster.c +590 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcomapi.c +106 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jconfig.h +59 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcparam.c +610 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcphuff.c +833 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcprepct.c +354 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jcsample.c +519 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jctrans.c +388 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdapimin.c +395 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdapistd.c +275 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdatasrc.c +212 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdcoefct.c +736 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdcolor.c +396 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdct.h +182 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jddctmgr.c +269 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdhuff.c +625 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdhuff.h +206 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdinput.c +381 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdmainct.c +512 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdmarker.c +1292 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdmaster.c +557 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdmerge.c +400 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdphuff.c +642 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdpostct.c +290 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdsample.c +478 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jdtrans.c +143 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jerror.c +252 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jerror.h +291 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jfdctflt.c +168 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jfdctfst.c +224 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jfdctint.c +283 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jidctflt.c +242 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jidctfst.c +368 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jidctint.c +389 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jidctred.c +398 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jinclude.h +197 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jmemmgr.c +1118 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jmemnobs.c +109 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jmemsys.h +203 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jmorecfg.h +363 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jpegint.h +392 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jpeglib.h +1096 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jquant1.c +856 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jquant2.c +1310 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jutils.c +179 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/jversion.h +14 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/transupp.c +928 -0
- package/ios/juce_modules/juce_graphics/image_formats/jpglib/transupp.h +135 -0
- package/ios/juce_modules/juce_graphics/image_formats/juce_GIFLoader.cpp +464 -0
- package/ios/juce_modules/juce_graphics/image_formats/juce_JPEGLoader.cpp +456 -0
- package/ios/juce_modules/juce_graphics/image_formats/juce_PNGLoader.cpp +635 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/png.c +4607 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/png.h +3251 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngconf.h +623 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngdebug.h +153 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngerror.c +963 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngget.c +1249 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pnginfo.h +267 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngmem.c +284 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngpread.c +1096 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngpriv.h +2156 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngread.c +4225 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngrio.c +120 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngrtran.c +5102 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngrutil.c +4681 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngset.c +1802 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngstruct.h +491 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngtrans.c +864 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngwio.c +168 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngwrite.c +2395 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngwtran.c +587 -0
- package/ios/juce_modules/juce_graphics/image_formats/pnglib/pngwutil.c +2781 -0
- package/ios/juce_modules/juce_graphics/images/juce_Image.cpp +851 -0
- package/ios/juce_modules/juce_graphics/images/juce_Image.h +630 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageCache.cpp +183 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageCache.h +136 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageConvolutionKernel.cpp +209 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageConvolutionKernel.h +121 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageFileFormat.cpp +120 -0
- package/ios/juce_modules/juce_graphics/images/juce_ImageFileFormat.h +232 -0
- package/ios/juce_modules/juce_graphics/images/juce_ScaledImage.h +93 -0
- package/ios/juce_modules/juce_graphics/juce_graphics.cpp +230 -0
- package/ios/juce_modules/juce_graphics/juce_graphics.h +162 -0
- package/ios/juce_modules/juce_graphics/juce_graphics.mm +35 -0
- package/ios/juce_modules/juce_graphics/juce_graphics_Harfbuzz.cpp +100 -0
- package/ios/juce_modules/juce_graphics/native/juce_CoreGraphicsContext_mac.h +153 -0
- package/ios/juce_modules/juce_graphics/native/juce_CoreGraphicsContext_mac.mm +969 -0
- package/ios/juce_modules/juce_graphics/native/juce_CoreGraphicsHelpers_mac.h +117 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DGraphicsContext_windows.cpp +1807 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DGraphicsContext_windows.h +174 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DHelpers_windows.cpp +456 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DHwndContext_windows.cpp +784 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DHwndContext_windows.h +73 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DImageContext_windows.cpp +124 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DImageContext_windows.h +55 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DImage_windows.cpp +732 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DImage_windows.h +94 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DMetrics_windows.cpp +132 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DMetrics_windows.h +320 -0
- package/ios/juce_modules/juce_graphics/native/juce_Direct2DResources_windows.cpp +661 -0
- package/ios/juce_modules/juce_graphics/native/juce_DirectWriteTypeface_windows.cpp +920 -0
- package/ios/juce_modules/juce_graphics/native/juce_DirectX_windows.h +330 -0
- package/ios/juce_modules/juce_graphics/native/juce_EventTracing.h +310 -0
- package/ios/juce_modules/juce_graphics/native/juce_Fonts_android.cpp +636 -0
- package/ios/juce_modules/juce_graphics/native/juce_Fonts_freetype.cpp +589 -0
- package/ios/juce_modules/juce_graphics/native/juce_Fonts_linux.cpp +208 -0
- package/ios/juce_modules/juce_graphics/native/juce_Fonts_mac.mm +416 -0
- package/ios/juce_modules/juce_graphics/native/juce_GraphicsContext_android.cpp +43 -0
- package/ios/juce_modules/juce_graphics/native/juce_IconHelpers_android.cpp +39 -0
- package/ios/juce_modules/juce_graphics/native/juce_IconHelpers_linux.cpp +39 -0
- package/ios/juce_modules/juce_graphics/native/juce_IconHelpers_mac.cpp +150 -0
- package/ios/juce_modules/juce_graphics/native/juce_IconHelpers_windows.cpp +39 -0
- package/ios/juce_modules/juce_graphics/native/juce_RenderingHelpers.h +2696 -0
- package/ios/juce_modules/juce_graphics/placement/juce_Justification.h +196 -0
- package/ios/juce_modules/juce_graphics/placement/juce_RectanglePlacement.cpp +131 -0
- package/ios/juce_modules/juce_graphics/placement/juce_RectanglePlacement.h +183 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_Unicode.cpp +331 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeBidi.cpp +1139 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeBrackets.cpp +142 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeGenerated.cpp +1380 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeLine.cpp +273 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeScript.cpp +235 -0
- package/ios/juce_modules/juce_graphics/unicode/juce_UnicodeUtils.cpp +104 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/enums/juce_AccessibilityActions.h +128 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/enums/juce_AccessibilityEvent.h +90 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/enums/juce_AccessibilityRole.h +80 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/interfaces/juce_AccessibilityCellInterface.h +61 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/interfaces/juce_AccessibilityTableInterface.h +106 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/interfaces/juce_AccessibilityTextInterface.h +93 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/interfaces/juce_AccessibilityValueInterface.h +231 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/juce_AccessibilityHandler.cpp +412 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/juce_AccessibilityHandler.h +354 -0
- package/ios/juce_modules/juce_gui_basics/accessibility/juce_AccessibilityState.h +236 -0
- package/ios/juce_modules/juce_gui_basics/application/juce_Application.cpp +109 -0
- package/ios/juce_modules/juce_gui_basics/application/juce_Application.h +202 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ArrowButton.cpp +60 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ArrowButton.h +74 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_Button.cpp +730 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_Button.h +559 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_DrawableButton.cpp +250 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_DrawableButton.h +206 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_HyperlinkButton.cpp +138 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_HyperlinkButton.h +139 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ImageButton.cpp +207 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ImageButton.h +170 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ShapeButton.cpp +146 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ShapeButton.h +135 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_TextButton.cpp +86 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_TextButton.h +118 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ToggleButton.cpp +74 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ToggleButton.h +102 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ToolbarButton.cpp +122 -0
- package/ios/juce_modules/juce_gui_basics/buttons/juce_ToolbarButton.h +107 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandID.h +99 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.cpp +75 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandInfo.h +199 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandManager.cpp +331 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandManager.h +358 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.cpp +195 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_ApplicationCommandTarget.h +253 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_KeyPressMappingSet.cpp +427 -0
- package/ios/juce_modules/juce_gui_basics/commands/juce_KeyPressMappingSet.h +253 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_CachedComponentImage.h +81 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_Component.cpp +3013 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_Component.h +2716 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_ComponentListener.cpp +47 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_ComponentListener.h +131 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_ComponentTraverser.h +81 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_FocusTraverser.cpp +283 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_FocusTraverser.h +102 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_ModalComponentManager.cpp +295 -0
- package/ios/juce_modules/juce_gui_basics/components/juce_ModalComponentManager.h +340 -0
- package/ios/juce_modules/juce_gui_basics/desktop/juce_Desktop.cpp +386 -0
- package/ios/juce_modules/juce_gui_basics/desktop/juce_Desktop.h +502 -0
- package/ios/juce_modules/juce_gui_basics/desktop/juce_Displays.cpp +447 -0
- package/ios/juce_modules/juce_gui_basics/desktop/juce_Displays.h +218 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_AccessibilityHelpers.cpp +42 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_AccessibilityHelpers.h +79 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_AlertWindowHelpers.h +124 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ButtonAccessibilityHandler.h +134 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ComponentHelpers.h +291 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_CustomMouseCursorInfo.h +44 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_FocusHelpers.h +126 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_FocusRestorer.h +55 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_LookAndFeelHelpers.h +71 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_MouseInputSourceImpl.h +597 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_MouseInputSourceList.h +163 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_PointerState.h +113 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ScalingHelpers.h +132 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ScopedContentSharerImpl.h +107 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ScopedContentSharerInterface.h +224 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ScopedMessageBoxImpl.h +141 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ScopedMessageBoxInterface.h +69 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_StandardCachedComponentImage.h +102 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ToolbarItemDragAndDropOverlayComponent.h +127 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_TopLevelWindowManager.h +145 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_ViewportHelpers.h +58 -0
- package/ios/juce_modules/juce_gui_basics/detail/juce_WindowingHelpers.h +70 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_Drawable.cpp +228 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_Drawable.h +271 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableComposite.cpp +173 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableComposite.h +126 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableImage.cpp +165 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableImage.h +126 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawablePath.cpp +66 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawablePath.h +86 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableRectangle.cpp +96 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableRectangle.h +85 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableShape.cpp +190 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableShape.h +135 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableText.cpp +241 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_DrawableText.h +130 -0
- package/ios/juce_modules/juce_gui_basics/drawables/juce_SVGParser.cpp +1903 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_ContentSharer.cpp +83 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_ContentSharer.h +154 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.cpp +79 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_DirectoryContentsDisplayComponent.h +125 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.cpp +279 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_DirectoryContentsList.h +235 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.cpp +633 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileBrowserComponent.h +306 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileBrowserListener.h +67 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileChooser.cpp +292 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileChooser.h +358 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.cpp +272 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileChooserDialogBox.h +177 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileListComponent.cpp +295 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileListComponent.h +104 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FilePreviewComponent.h +75 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.cpp +280 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileSearchPathListComponent.h +126 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.cpp +690 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FileTreeComponent.h +117 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FilenameComponent.cpp +277 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_FilenameComponent.h +245 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.cpp +135 -0
- package/ios/juce_modules/juce_gui_basics/filebrowser/juce_ImagePreviewComponent.h +77 -0
- package/ios/juce_modules/juce_gui_basics/juce_gui_basics.cpp +370 -0
- package/ios/juce_modules/juce_gui_basics/juce_gui_basics.h +403 -0
- package/ios/juce_modules/juce_gui_basics/juce_gui_basics.mm +35 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_CaretComponent.cpp +73 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_CaretComponent.h +90 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyListener.cpp +43 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyListener.h +86 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyPress.cpp +298 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyPress.h +286 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.cpp +283 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_KeyboardFocusTraverser.h +96 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_ModifierKeys.cpp +58 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_ModifierKeys.h +220 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_SystemClipboard.h +58 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_TextEditorKeyMapper.h +132 -0
- package/ios/juce_modules/juce_gui_basics/keyboard/juce_TextInputTarget.h +129 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_AnimatedPosition.h +216 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_AnimatedPositionBehaviours.h +162 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_BorderedComponentBoundsConstrainer.cpp +86 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_BorderedComponentBoundsConstrainer.h +78 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentAnimator.cpp +363 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentAnimator.h +174 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.cpp +314 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentBoundsConstrainer.h +206 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentBuilder.cpp +295 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentBuilder.h +256 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.cpp +151 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ComponentMovementWatcher.h +105 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ConcertinaPanel.cpp +512 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ConcertinaPanel.h +153 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_FlexBox.cpp +1158 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_FlexBox.h +152 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_FlexItem.h +186 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_Grid.cpp +1651 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_Grid.h +232 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_GridItem.cpp +188 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_GridItem.h +249 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_GroupComponent.cpp +87 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_GroupComponent.h +120 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_MultiDocumentPanel.cpp +641 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_MultiDocumentPanel.h +390 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableBorderComponent.cpp +208 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableBorderComponent.h +205 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableCornerComponent.cpp +112 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableCornerComponent.h +101 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.cpp +139 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ResizableEdgeComponent.h +109 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ScrollBar.cpp +486 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_ScrollBar.h +450 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_SidePanel.cpp +309 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_SidePanel.h +248 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableLayoutManager.cpp +351 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableLayoutManager.h +270 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.cpp +88 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableLayoutResizerBar.h +114 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableObjectResizer.cpp +131 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h +111 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_TabbedButtonBar.cpp +592 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_TabbedButtonBar.h +382 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_TabbedComponent.cpp +328 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_TabbedComponent.h +236 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_Viewport.cpp +649 -0
- package/ios/juce_modules/juce_gui_basics/layout/juce_Viewport.h +383 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.cpp +201 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel.h +301 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.cpp +599 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V1.h +114 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.cpp +3200 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V2.h +443 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.cpp +655 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V3.h +107 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.cpp +1516 -0
- package/ios/juce_modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.h +269 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_BurgerMenuComponent.cpp +311 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_BurgerMenuComponent.h +120 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_MenuBarComponent.cpp +472 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_MenuBarComponent.h +138 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_MenuBarModel.cpp +108 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_MenuBarModel.h +201 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_PopupMenu.cpp +2401 -0
- package/ios/juce_modules/juce_gui_basics/menus/juce_PopupMenu.h +1070 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_BubbleComponent.cpp +162 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_BubbleComponent.h +213 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_DropShadower.cpp +408 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_DropShadower.h +96 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_FocusOutline.cpp +194 -0
- package/ios/juce_modules/juce_gui_basics/misc/juce_FocusOutline.h +109 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_ComponentDragger.cpp +76 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_ComponentDragger.h +110 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_DragAndDropContainer.cpp +646 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_DragAndDropContainer.h +275 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_DragAndDropTarget.h +149 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_FileDragAndDropTarget.h +115 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_LassoComponent.h +233 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseCursor.cpp +162 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseCursor.h +199 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseEvent.cpp +147 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseEvent.h +463 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.cpp +86 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseInactivityDetector.h +121 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseInputSource.cpp +114 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseInputSource.h +315 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseListener.cpp +48 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_MouseListener.h +180 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_SelectedItemSet.h +336 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_TextDragAndDropTarget.h +115 -0
- package/ios/juce_modules/juce_gui_basics/mouse/juce_TooltipClient.h +98 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_Accessibility.cpp +46 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_AccessibilityElement_windows.cpp +660 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_AccessibilityElement_windows.h +89 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_AccessibilitySharedCode_mac.mm +283 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_AccessibilityTextHelpers.h +311 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_AccessibilityTextHelpers_test.cpp +164 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_Accessibility_android.cpp +1058 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_Accessibility_ios.mm +669 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_Accessibility_mac.mm +942 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_Accessibility_windows.cpp +336 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAExpandCollapseProvider_windows.h +92 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAGridItemProvider_windows.h +162 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAGridProvider_windows.h +160 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAHelpers_windows.h +128 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAInvokeProvider_windows.h +68 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAProviderBase_windows.h +67 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAProviders_windows.h +52 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIARangeValueProvider_windows.h +146 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIASelectionProvider_windows.h +254 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIATextProvider_windows.h +626 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAToggleProvider_windows.h +87 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIATransformProvider_windows.h +131 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAValueProvider_windows.h +92 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_UIAWindowProvider_windows.h +203 -0
- package/ios/juce_modules/juce_gui_basics/native/accessibility/juce_WindowsUIAWrapper_windows.h +169 -0
- package/ios/juce_modules/juce_gui_basics/native/java/app/com/rmsl/juce/ComponentPeerView.java +987 -0
- package/ios/juce_modules/juce_gui_basics/native/java/app/com/rmsl/juce/JuceContentProviderCursor.java +62 -0
- package/ios/juce_modules/juce_gui_basics/native/java/app/com/rmsl/juce/JuceContentProviderFileObserver.java +57 -0
- package/ios/juce_modules/juce_gui_basics/native/javaopt/app/com/rmsl/juce/JuceActivity.java +63 -0
- package/ios/juce_modules/juce_gui_basics/native/javaopt/app/com/rmsl/juce/JuceSharingContentProvider.java +128 -0
- package/ios/juce_modules/juce_gui_basics/native/javaopt/app/com/rmsl/juce/Receiver.java +51 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_CGMetalLayerRenderer_mac.h +384 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ContentSharer_android.cpp +963 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ContentSharer_ios.cpp +134 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_DragAndDrop_linux.cpp +618 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_DragAndDrop_windows.cpp +377 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_FileChooser_android.cpp +276 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_FileChooser_ios.mm +379 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_FileChooser_linux.cpp +296 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_FileChooser_mac.mm +414 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_FileChooser_windows.cpp +908 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_MainMenu_mac.mm +848 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_MouseCursor_mac.mm +205 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_MultiTouchMapper.h +116 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NSViewComponentPeer_mac.mm +3053 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeMessageBox_android.cpp +124 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeMessageBox_ios.mm +119 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeMessageBox_linux.cpp +78 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeMessageBox_mac.mm +140 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeMessageBox_windows.cpp +354 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_NativeModalWrapperComponent_ios.h +141 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_PerScreenDisplayLinks_mac.h +313 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ScopedDPIAwarenessDisabler.cpp +43 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ScopedDPIAwarenessDisabler.h +63 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ScopedThreadDPIAwarenessSetter_windows.h +52 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_ScopedWindowAssociation_linux.h +127 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_UIViewComponentPeer_ios.mm +2376 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_VBlank_windows.cpp +302 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowUtils_android.cpp +43 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowUtils_ios.mm +43 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowUtils_linux.cpp +48 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowUtils_mac.mm +47 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowUtils_windows.cpp +68 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_Windowing_android.cpp +2903 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_Windowing_ios.mm +629 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_Windowing_linux.cpp +863 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_Windowing_mac.mm +588 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_Windowing_windows.cpp +5549 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowsHooks_windows.cpp +118 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_WindowsHooks_windows.h +55 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_XSymbols_linux.cpp +249 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_XSymbols_linux.h +629 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_XWindowSystem_linux.cpp +4036 -0
- package/ios/juce_modules/juce_gui_basics/native/juce_XWindowSystem_linux.h +364 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_MarkerList.cpp +293 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_MarkerList.h +204 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeCoordinate.cpp +162 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeCoordinate.h +190 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.cpp +344 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeCoordinatePositioner.h +99 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeParallelogram.cpp +149 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeParallelogram.h +75 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativePoint.cpp +110 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativePoint.h +100 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativePointPath.cpp +271 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativePointPath.h +202 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeRectangle.cpp +286 -0
- package/ios/juce_modules/juce_gui_basics/positioning/juce_RelativeRectangle.h +117 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.cpp +95 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_BooleanPropertyComponent.h +118 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.cpp +55 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_ButtonPropertyComponent.h +85 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.cpp +284 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_ChoicePropertyComponent.h +162 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.cpp +367 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_MultiChoicePropertyComponent.h +150 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_PropertyComponent.cpp +65 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_PropertyComponent.h +154 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_PropertyPanel.cpp +405 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_PropertyPanel.h +186 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_SliderPropertyComponent.cpp +95 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_SliderPropertyComponent.h +116 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_TextPropertyComponent.cpp +271 -0
- package/ios/juce_modules/juce_gui_basics/properties/juce_TextPropertyComponent.h +196 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ComboBox.cpp +721 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ComboBox.h +473 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ImageComponent.cpp +116 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ImageComponent.h +90 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Label.cpp +592 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Label.h +377 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ListBox.cpp +1263 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ListBox.h +656 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ProgressBar.cpp +189 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ProgressBar.h +215 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Slider.cpp +1839 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Slider.h +1048 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TableHeaderComponent.cpp +935 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TableHeaderComponent.h +472 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TableListBox.cpp +688 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TableListBox.h +365 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TextEditor.cpp +2786 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TextEditor.h +888 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Toolbar.cpp +838 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_Toolbar.h +347 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.cpp +173 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ToolbarItemComponent.h +217 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ToolbarItemFactory.h +118 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.cpp +125 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_ToolbarItemPalette.h +88 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TreeView.cpp +2286 -0
- package/ios/juce_modules/juce_gui_basics/widgets/juce_TreeView.h +969 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_AlertWindow.cpp +712 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_AlertWindow.h +600 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_CallOutBox.cpp +279 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_CallOutBox.h +197 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ComponentPeer.cpp +625 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ComponentPeer.h +623 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_DialogWindow.cpp +190 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_DialogWindow.h +286 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_DocumentWindow.cpp +423 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_DocumentWindow.h +316 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_MessageBoxOptions.cpp +102 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_MessageBoxOptions.h +202 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_NativeMessageBox.cpp +167 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_NativeMessageBox.h +311 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_NativeScaleFactorNotifier.cpp +75 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_NativeScaleFactorNotifier.h +78 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ResizableWindow.cpp +679 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ResizableWindow.h +427 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ScopedMessageBox.cpp +67 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ScopedMessageBox.h +78 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.cpp +128 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_ThreadWithProgressWindow.h +184 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_TooltipWindow.cpp +264 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_TooltipWindow.h +169 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_TopLevelWindow.cpp +264 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_TopLevelWindow.h +176 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_VBlankAttachment.cpp +122 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_VBlankAttachment.h +85 -0
- package/ios/juce_modules/juce_gui_basics/windows/juce_WindowUtils.h +51 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.cpp +83 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniser.h +81 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CPlusPlusCodeTokeniserFunctions.h +683 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CodeDocument.cpp +1306 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CodeDocument.h +459 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.cpp +1857 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CodeEditorComponent.h +486 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_CodeTokeniser.h +68 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.cpp +248 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_LuaCodeTokeniser.h +74 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.cpp +181 -0
- package/ios/juce_modules/juce_gui_extra/code_editor/juce_XMLCodeTokeniser.h +72 -0
- package/ios/juce_modules/juce_gui_extra/detail/juce_WebControlRelayEvents.h +255 -0
- package/ios/juce_modules/juce_gui_extra/documents/juce_FileBasedDocument.cpp +1124 -0
- package/ios/juce_modules/juce_gui_extra/documents/juce_FileBasedDocument.h +440 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_ActiveXControlComponent.h +142 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_AndroidViewComponent.h +91 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_HWNDComponent.h +98 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_NSViewComponent.h +107 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_UIViewComponent.h +99 -0
- package/ios/juce_modules/juce_gui_extra/embedding/juce_XEmbedComponent.h +129 -0
- package/ios/juce_modules/juce_gui_extra/juce_gui_extra.cpp +210 -0
- package/ios/juce_modules/juce_gui_extra/juce_gui_extra.h +161 -0
- package/ios/juce_modules/juce_gui_extra/juce_gui_extra.mm +35 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_AnimatedAppComponent.cpp +89 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_AnimatedAppComponent.h +96 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_AppleRemote.h +126 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_BubbleMessageComponent.cpp +133 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_BubbleMessageComponent.h +134 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_ColourSelector.cpp +656 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_ColourSelector.h +173 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.cpp +486 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_KeyMappingEditorComponent.h +142 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_LiveConstantEditor.cpp +501 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_LiveConstantEditor.h +310 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_PreferencesPanel.cpp +165 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_PreferencesPanel.h +156 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_PushNotifications.cpp +239 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_PushNotifications.h +714 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.cpp +189 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_RecentlyOpenedFilesList.h +186 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_SplashScreen.cpp +110 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_SplashScreen.h +165 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.cpp +51 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_SystemTrayIconComponent.h +125 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_WebBrowserComponent.cpp +722 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_WebBrowserComponent.h +626 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_WebControlParameterIndexReceiver.h +76 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_WebControlRelays.cpp +256 -0
- package/ios/juce_modules/juce_gui_extra/misc/juce_WebControlRelays.h +254 -0
- package/ios/juce_modules/juce_gui_extra/native/java/app/com/rmsl/juce/JuceWebViewClasses.java +356 -0
- package/ios/juce_modules/juce_gui_extra/native/javaopt/app/com/rmsl/juce/JuceFirebaseInstanceIdService.java +50 -0
- package/ios/juce_modules/juce_gui_extra/native/javaopt/app/com/rmsl/juce/JuceFirebaseMessagingService.java +69 -0
- package/ios/juce_modules/juce_gui_extra/native/javascript/check_native_interop.js +146 -0
- package/ios/juce_modules/juce_gui_extra/native/javascript/index.js +577 -0
- package/ios/juce_modules/juce_gui_extra/native/javascript/package.json +4 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_ActiveXComponent_windows.cpp +553 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_AndroidViewComponent.cpp +199 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_AppleRemote_mac.mm +285 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_HWNDComponent_windows.cpp +203 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_NSViewComponent_mac.mm +203 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_NSViewFrameWatcher_mac.h +120 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_PushNotifications_android.cpp +1607 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_PushNotifications_ios.cpp +620 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_PushNotifications_mac.cpp +535 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_SystemTrayIcon_linux.cpp +160 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_SystemTrayIcon_mac.cpp +451 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_SystemTrayIcon_windows.cpp +251 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_UIViewComponent_ios.mm +151 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_WebBrowserComponent_android.cpp +953 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_WebBrowserComponent_linux.cpp +1659 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_WebBrowserComponent_mac.mm +1113 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_WebBrowserComponent_windows.cpp +1298 -0
- package/ios/juce_modules/juce_gui_extra/native/juce_XEmbedComponent_linux.cpp +739 -0
- package/package.json +1 -1
- package/ios/JuceModules.mm +0 -14
- package/ios/JuceToneGenerator.h +0 -39
- package/ios/JuceToneGenerator.mm +0 -613
|
@@ -0,0 +1,3009 @@
|
|
|
1
|
+
/* == Start of generated table == */
|
|
2
|
+
/*
|
|
3
|
+
* The following table is generated by running:
|
|
4
|
+
*
|
|
5
|
+
* ./gen-tag-table.py languagetags language-subtag-registry
|
|
6
|
+
*
|
|
7
|
+
* on files with these headers:
|
|
8
|
+
*
|
|
9
|
+
* <meta name="updated_at" content="2024-05-31 05:41 PM" />
|
|
10
|
+
* File-Date: 2024-05-16
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
#ifndef HB_OT_TAG_TABLE_HH
|
|
14
|
+
#define HB_OT_TAG_TABLE_HH
|
|
15
|
+
|
|
16
|
+
static const LangTag ot_languages2[] = {
|
|
17
|
+
{HB_TAG('a','a',' ',' '), HB_TAG('A','F','R',' ')}, /* Afar */
|
|
18
|
+
{HB_TAG('a','b',' ',' '), HB_TAG('A','B','K',' ')}, /* Abkhazian */
|
|
19
|
+
{HB_TAG('a','f',' ',' '), HB_TAG('A','F','K',' ')}, /* Afrikaans */
|
|
20
|
+
{HB_TAG('a','k',' ',' '), HB_TAG('A','K','A',' ')}, /* Akan [macrolanguage] */
|
|
21
|
+
{HB_TAG('a','m',' ',' '), HB_TAG('A','M','H',' ')}, /* Amharic */
|
|
22
|
+
{HB_TAG('a','n',' ',' '), HB_TAG('A','R','G',' ')}, /* Aragonese */
|
|
23
|
+
{HB_TAG('a','r',' ',' '), HB_TAG('A','R','A',' ')}, /* Arabic [macrolanguage] */
|
|
24
|
+
{HB_TAG('a','s',' ',' '), HB_TAG('A','S','M',' ')}, /* Assamese */
|
|
25
|
+
{HB_TAG('a','v',' ',' '), HB_TAG('A','V','R',' ')}, /* Avaric -> Avar */
|
|
26
|
+
{HB_TAG('a','y',' ',' '), HB_TAG('A','Y','M',' ')}, /* Aymara [macrolanguage] */
|
|
27
|
+
{HB_TAG('a','z',' ',' '), HB_TAG('A','Z','E',' ')}, /* Azerbaijani [macrolanguage] */
|
|
28
|
+
{HB_TAG('b','a',' ',' '), HB_TAG('B','S','H',' ')}, /* Bashkir */
|
|
29
|
+
{HB_TAG('b','e',' ',' '), HB_TAG('B','E','L',' ')}, /* Belarusian */
|
|
30
|
+
{HB_TAG('b','g',' ',' '), HB_TAG('B','G','R',' ')}, /* Bulgarian */
|
|
31
|
+
{HB_TAG('b','i',' ',' '), HB_TAG('B','I','S',' ')}, /* Bislama */
|
|
32
|
+
{HB_TAG('b','i',' ',' '), HB_TAG('C','P','P',' ')}, /* Bislama -> Creoles */
|
|
33
|
+
{HB_TAG('b','m',' ',' '), HB_TAG('B','M','B',' ')}, /* Bambara (Bamanankan) */
|
|
34
|
+
{HB_TAG('b','n',' ',' '), HB_TAG('B','E','N',' ')}, /* Bangla */
|
|
35
|
+
{HB_TAG('b','o',' ',' '), HB_TAG('T','I','B',' ')}, /* Tibetan */
|
|
36
|
+
{HB_TAG('b','r',' ',' '), HB_TAG('B','R','E',' ')}, /* Breton */
|
|
37
|
+
{HB_TAG('b','s',' ',' '), HB_TAG('B','O','S',' ')}, /* Bosnian */
|
|
38
|
+
{HB_TAG('c','a',' ',' '), HB_TAG('C','A','T',' ')}, /* Catalan */
|
|
39
|
+
{HB_TAG('c','e',' ',' '), HB_TAG('C','H','E',' ')}, /* Chechen */
|
|
40
|
+
{HB_TAG('c','h',' ',' '), HB_TAG('C','H','A',' ')}, /* Chamorro */
|
|
41
|
+
{HB_TAG('c','o',' ',' '), HB_TAG('C','O','S',' ')}, /* Corsican */
|
|
42
|
+
{HB_TAG('c','r',' ',' '), HB_TAG('C','R','E',' ')}, /* Cree [macrolanguage] */
|
|
43
|
+
{HB_TAG('c','s',' ',' '), HB_TAG('C','S','Y',' ')}, /* Czech */
|
|
44
|
+
{HB_TAG('c','u',' ',' '), HB_TAG('C','S','L',' ')}, /* Church Slavonic */
|
|
45
|
+
{HB_TAG('c','v',' ',' '), HB_TAG('C','H','U',' ')}, /* Chuvash */
|
|
46
|
+
{HB_TAG('c','y',' ',' '), HB_TAG('W','E','L',' ')}, /* Welsh */
|
|
47
|
+
{HB_TAG('d','a',' ',' '), HB_TAG('D','A','N',' ')}, /* Danish */
|
|
48
|
+
{HB_TAG('d','e',' ',' '), HB_TAG('D','E','U',' ')}, /* German */
|
|
49
|
+
{HB_TAG('d','v',' ',' '), HB_TAG('D','I','V',' ')}, /* Divehi (Dhivehi, Maldivian) */
|
|
50
|
+
{HB_TAG('d','v',' ',' '), HB_TAG('D','H','V',' ')}, /* Divehi (Dhivehi, Maldivian) (deprecated) */
|
|
51
|
+
{HB_TAG('d','z',' ',' '), HB_TAG('D','Z','N',' ')}, /* Dzongkha */
|
|
52
|
+
{HB_TAG('e','e',' ',' '), HB_TAG('E','W','E',' ')}, /* Ewe */
|
|
53
|
+
{HB_TAG('e','l',' ',' '), HB_TAG('E','L','L',' ')}, /* Modern Greek (1453-) -> Greek */
|
|
54
|
+
{HB_TAG('e','n',' ',' '), HB_TAG('E','N','G',' ')}, /* English */
|
|
55
|
+
{HB_TAG('e','o',' ',' '), HB_TAG('N','T','O',' ')}, /* Esperanto */
|
|
56
|
+
{HB_TAG('e','s',' ',' '), HB_TAG('E','S','P',' ')}, /* Spanish */
|
|
57
|
+
{HB_TAG('e','t',' ',' '), HB_TAG('E','T','I',' ')}, /* Estonian [macrolanguage] */
|
|
58
|
+
{HB_TAG('e','u',' ',' '), HB_TAG('E','U','Q',' ')}, /* Basque */
|
|
59
|
+
{HB_TAG('f','a',' ',' '), HB_TAG('F','A','R',' ')}, /* Persian [macrolanguage] */
|
|
60
|
+
{HB_TAG('f','f',' ',' '), HB_TAG('F','U','L',' ')}, /* Fulah [macrolanguage] */
|
|
61
|
+
{HB_TAG('f','i',' ',' '), HB_TAG('F','I','N',' ')}, /* Finnish */
|
|
62
|
+
{HB_TAG('f','j',' ',' '), HB_TAG('F','J','I',' ')}, /* Fijian */
|
|
63
|
+
{HB_TAG('f','o',' ',' '), HB_TAG('F','O','S',' ')}, /* Faroese */
|
|
64
|
+
{HB_TAG('f','r',' ',' '), HB_TAG('F','R','A',' ')}, /* French */
|
|
65
|
+
{HB_TAG('f','y',' ',' '), HB_TAG('F','R','I',' ')}, /* Western Frisian -> Frisian */
|
|
66
|
+
{HB_TAG('g','a',' ',' '), HB_TAG('I','R','I',' ')}, /* Irish */
|
|
67
|
+
{HB_TAG('g','a',' ',' '), HB_TAG('I','R','T',' ')}, /* Irish -> Irish Traditional */
|
|
68
|
+
{HB_TAG('g','d',' ',' '), HB_TAG('G','A','E',' ')}, /* Scottish Gaelic */
|
|
69
|
+
{HB_TAG('g','l',' ',' '), HB_TAG('G','A','L',' ')}, /* Galician */
|
|
70
|
+
{HB_TAG('g','n',' ',' '), HB_TAG('G','U','A',' ')}, /* Guarani [macrolanguage] */
|
|
71
|
+
{HB_TAG('g','u',' ',' '), HB_TAG('G','U','J',' ')}, /* Gujarati */
|
|
72
|
+
{HB_TAG('g','v',' ',' '), HB_TAG('M','N','X',' ')}, /* Manx */
|
|
73
|
+
{HB_TAG('h','a',' ',' '), HB_TAG('H','A','U',' ')}, /* Hausa */
|
|
74
|
+
{HB_TAG('h','e',' ',' '), HB_TAG('I','W','R',' ')}, /* Hebrew */
|
|
75
|
+
{HB_TAG('h','i',' ',' '), HB_TAG('H','I','N',' ')}, /* Hindi */
|
|
76
|
+
{HB_TAG('h','o',' ',' '), HB_TAG('H','M','O',' ')}, /* Hiri Motu */
|
|
77
|
+
{HB_TAG('h','o',' ',' '), HB_TAG('C','P','P',' ')}, /* Hiri Motu -> Creoles */
|
|
78
|
+
{HB_TAG('h','r',' ',' '), HB_TAG('H','R','V',' ')}, /* Croatian */
|
|
79
|
+
{HB_TAG('h','t',' ',' '), HB_TAG('H','A','I',' ')}, /* Haitian (Haitian Creole) */
|
|
80
|
+
{HB_TAG('h','t',' ',' '), HB_TAG('C','P','P',' ')}, /* Haitian -> Creoles */
|
|
81
|
+
{HB_TAG('h','u',' ',' '), HB_TAG('H','U','N',' ')}, /* Hungarian */
|
|
82
|
+
{HB_TAG('h','y',' ',' '), HB_TAG('H','Y','E','0')}, /* Armenian -> Armenian East */
|
|
83
|
+
{HB_TAG('h','y',' ',' '), HB_TAG('H','Y','E',' ')}, /* Armenian */
|
|
84
|
+
{HB_TAG('h','z',' ',' '), HB_TAG('H','E','R',' ')}, /* Herero */
|
|
85
|
+
{HB_TAG('i','a',' ',' '), HB_TAG('I','N','A',' ')}, /* Interlingua (International Auxiliary Language Association) */
|
|
86
|
+
{HB_TAG('i','d',' ',' '), HB_TAG('I','N','D',' ')}, /* Indonesian */
|
|
87
|
+
{HB_TAG('i','d',' ',' '), HB_TAG('M','L','Y',' ')}, /* Indonesian -> Malay */
|
|
88
|
+
{HB_TAG('i','e',' ',' '), HB_TAG('I','L','E',' ')}, /* Interlingue */
|
|
89
|
+
{HB_TAG('i','g',' ',' '), HB_TAG('I','B','O',' ')}, /* Igbo */
|
|
90
|
+
{HB_TAG('i','i',' ',' '), HB_TAG('Y','I','M',' ')}, /* Sichuan Yi -> Yi Modern */
|
|
91
|
+
{HB_TAG('i','k',' ',' '), HB_TAG('I','P','K',' ')}, /* Inupiaq [macrolanguage] -> Inupiat */
|
|
92
|
+
{HB_TAG('i','n',' ',' '), HB_TAG('I','N','D',' ')}, /* Indonesian (retired code) */
|
|
93
|
+
{HB_TAG('i','n',' ',' '), HB_TAG('M','L','Y',' ')}, /* Indonesian (retired code) -> Malay */
|
|
94
|
+
{HB_TAG('i','o',' ',' '), HB_TAG('I','D','O',' ')}, /* Ido */
|
|
95
|
+
{HB_TAG('i','s',' ',' '), HB_TAG('I','S','L',' ')}, /* Icelandic */
|
|
96
|
+
{HB_TAG('i','t',' ',' '), HB_TAG('I','T','A',' ')}, /* Italian */
|
|
97
|
+
{HB_TAG('i','u',' ',' '), HB_TAG('I','N','U',' ')}, /* Inuktitut [macrolanguage] */
|
|
98
|
+
{HB_TAG('i','u',' ',' '), HB_TAG('I','N','U','K')}, /* Inuktitut [macrolanguage] -> Nunavik Inuktitut */
|
|
99
|
+
{HB_TAG('i','w',' ',' '), HB_TAG('I','W','R',' ')}, /* Hebrew (retired code) */
|
|
100
|
+
{HB_TAG('j','a',' ',' '), HB_TAG('J','A','N',' ')}, /* Japanese */
|
|
101
|
+
{HB_TAG('j','i',' ',' '), HB_TAG('J','I','I',' ')}, /* Yiddish (retired code) */
|
|
102
|
+
{HB_TAG('j','v',' ',' '), HB_TAG('J','A','V',' ')}, /* Javanese */
|
|
103
|
+
{HB_TAG('j','w',' ',' '), HB_TAG('J','A','V',' ')}, /* Javanese (retired code) */
|
|
104
|
+
{HB_TAG('k','a',' ',' '), HB_TAG('K','A','T',' ')}, /* Georgian */
|
|
105
|
+
{HB_TAG('k','g',' ',' '), HB_TAG('K','O','N','0')}, /* Kongo [macrolanguage] */
|
|
106
|
+
{HB_TAG('k','i',' ',' '), HB_TAG('K','I','K',' ')}, /* Kikuyu (Gikuyu) */
|
|
107
|
+
{HB_TAG('k','j',' ',' '), HB_TAG('K','U','A',' ')}, /* Kuanyama */
|
|
108
|
+
{HB_TAG('k','k',' ',' '), HB_TAG('K','A','Z',' ')}, /* Kazakh */
|
|
109
|
+
{HB_TAG('k','l',' ',' '), HB_TAG('G','R','N',' ')}, /* Greenlandic */
|
|
110
|
+
{HB_TAG('k','m',' ',' '), HB_TAG('K','H','M',' ')}, /* Khmer */
|
|
111
|
+
{HB_TAG('k','n',' ',' '), HB_TAG('K','A','N',' ')}, /* Kannada */
|
|
112
|
+
{HB_TAG('k','o',' ',' '), HB_TAG('K','O','R',' ')}, /* Korean */
|
|
113
|
+
{HB_TAG('k','o',' ',' '), HB_TAG('K','O','H',' ')}, /* Korean -> Korean Old Hangul */
|
|
114
|
+
{HB_TAG('k','r',' ',' '), HB_TAG('K','N','R',' ')}, /* Kanuri [macrolanguage] */
|
|
115
|
+
{HB_TAG('k','s',' ',' '), HB_TAG('K','S','H',' ')}, /* Kashmiri */
|
|
116
|
+
{HB_TAG('k','u',' ',' '), HB_TAG('K','U','R',' ')}, /* Kurdish [macrolanguage] */
|
|
117
|
+
{HB_TAG('k','v',' ',' '), HB_TAG('K','O','M',' ')}, /* Komi [macrolanguage] */
|
|
118
|
+
{HB_TAG('k','w',' ',' '), HB_TAG('C','O','R',' ')}, /* Cornish */
|
|
119
|
+
{HB_TAG('k','y',' ',' '), HB_TAG('K','I','R',' ')}, /* Kirghiz (Kyrgyz) */
|
|
120
|
+
{HB_TAG('l','a',' ',' '), HB_TAG('L','A','T',' ')}, /* Latin */
|
|
121
|
+
{HB_TAG('l','b',' ',' '), HB_TAG('L','T','Z',' ')}, /* Luxembourgish */
|
|
122
|
+
{HB_TAG('l','g',' ',' '), HB_TAG('L','U','G',' ')}, /* Ganda */
|
|
123
|
+
{HB_TAG('l','i',' ',' '), HB_TAG('L','I','M',' ')}, /* Limburgish */
|
|
124
|
+
{HB_TAG('l','n',' ',' '), HB_TAG('L','I','N',' ')}, /* Lingala */
|
|
125
|
+
{HB_TAG('l','o',' ',' '), HB_TAG('L','A','O',' ')}, /* Lao */
|
|
126
|
+
{HB_TAG('l','t',' ',' '), HB_TAG('L','T','H',' ')}, /* Lithuanian */
|
|
127
|
+
{HB_TAG('l','u',' ',' '), HB_TAG('L','U','B',' ')}, /* Luba-Katanga */
|
|
128
|
+
{HB_TAG('l','v',' ',' '), HB_TAG('L','V','I',' ')}, /* Latvian [macrolanguage] */
|
|
129
|
+
{HB_TAG('m','g',' ',' '), HB_TAG('M','L','G',' ')}, /* Malagasy [macrolanguage] */
|
|
130
|
+
{HB_TAG('m','h',' ',' '), HB_TAG('M','A','H',' ')}, /* Marshallese */
|
|
131
|
+
{HB_TAG('m','i',' ',' '), HB_TAG('M','R','I',' ')}, /* Maori */
|
|
132
|
+
{HB_TAG('m','k',' ',' '), HB_TAG('M','K','D',' ')}, /* Macedonian */
|
|
133
|
+
{HB_TAG('m','l',' ',' '), HB_TAG('M','A','L',' ')}, /* Malayalam -> Malayalam Traditional */
|
|
134
|
+
{HB_TAG('m','l',' ',' '), HB_TAG('M','L','R',' ')}, /* Malayalam -> Malayalam Reformed */
|
|
135
|
+
{HB_TAG('m','n',' ',' '), HB_TAG('M','N','G',' ')}, /* Mongolian [macrolanguage] */
|
|
136
|
+
{HB_TAG('m','o',' ',' '), HB_TAG('M','O','L',' ')}, /* Moldavian (retired code) */
|
|
137
|
+
{HB_TAG('m','o',' ',' '), HB_TAG('R','O','M',' ')}, /* Moldavian (retired code) -> Romanian */
|
|
138
|
+
{HB_TAG('m','r',' ',' '), HB_TAG('M','A','R',' ')}, /* Marathi */
|
|
139
|
+
{HB_TAG('m','s',' ',' '), HB_TAG('M','L','Y',' ')}, /* Malay [macrolanguage] */
|
|
140
|
+
{HB_TAG('m','t',' ',' '), HB_TAG('M','T','S',' ')}, /* Maltese */
|
|
141
|
+
{HB_TAG('m','y',' ',' '), HB_TAG('B','R','M',' ')}, /* Burmese */
|
|
142
|
+
{HB_TAG('n','a',' ',' '), HB_TAG('N','A','U',' ')}, /* Nauru -> Nauruan */
|
|
143
|
+
{HB_TAG('n','b',' ',' '), HB_TAG('N','O','R',' ')}, /* Norwegian Bokmål -> Norwegian */
|
|
144
|
+
{HB_TAG('n','d',' ',' '), HB_TAG('N','D','B',' ')}, /* North Ndebele -> Ndebele */
|
|
145
|
+
{HB_TAG('n','e',' ',' '), HB_TAG('N','E','P',' ')}, /* Nepali [macrolanguage] */
|
|
146
|
+
{HB_TAG('n','g',' ',' '), HB_TAG('N','D','G',' ')}, /* Ndonga */
|
|
147
|
+
{HB_TAG('n','l',' ',' '), HB_TAG('N','L','D',' ')}, /* Dutch */
|
|
148
|
+
{HB_TAG('n','n',' ',' '), HB_TAG('N','Y','N',' ')}, /* Norwegian Nynorsk (Nynorsk, Norwegian) */
|
|
149
|
+
{HB_TAG('n','o',' ',' '), HB_TAG('N','O','R',' ')}, /* Norwegian [macrolanguage] */
|
|
150
|
+
{HB_TAG('n','r',' ',' '), HB_TAG('N','D','B',' ')}, /* South Ndebele -> Ndebele */
|
|
151
|
+
{HB_TAG('n','v',' ',' '), HB_TAG('N','A','V',' ')}, /* Navajo */
|
|
152
|
+
{HB_TAG('n','v',' ',' '), HB_TAG('A','T','H',' ')}, /* Navajo -> Athapaskan */
|
|
153
|
+
{HB_TAG('n','y',' ',' '), HB_TAG('C','H','I',' ')}, /* Chichewa (Chewa, Nyanja) */
|
|
154
|
+
{HB_TAG('o','c',' ',' '), HB_TAG('O','C','I',' ')}, /* Occitan (post 1500) */
|
|
155
|
+
{HB_TAG('o','j',' ',' '), HB_TAG('O','J','B',' ')}, /* Ojibwa [macrolanguage] -> Ojibway */
|
|
156
|
+
{HB_TAG('o','m',' ',' '), HB_TAG('O','R','O',' ')}, /* Oromo [macrolanguage] */
|
|
157
|
+
{HB_TAG('o','r',' ',' '), HB_TAG('O','R','I',' ')}, /* Odia [macrolanguage] */
|
|
158
|
+
{HB_TAG('o','s',' ',' '), HB_TAG('O','S','S',' ')}, /* Ossetian */
|
|
159
|
+
{HB_TAG('p','a',' ',' '), HB_TAG('P','A','N',' ')}, /* Punjabi */
|
|
160
|
+
{HB_TAG('p','i',' ',' '), HB_TAG('P','A','L',' ')}, /* Pali */
|
|
161
|
+
{HB_TAG('p','l',' ',' '), HB_TAG('P','L','K',' ')}, /* Polish */
|
|
162
|
+
{HB_TAG('p','s',' ',' '), HB_TAG('P','A','S',' ')}, /* Pashto [macrolanguage] */
|
|
163
|
+
{HB_TAG('p','t',' ',' '), HB_TAG('P','T','G',' ')}, /* Portuguese */
|
|
164
|
+
{HB_TAG('q','u',' ',' '), HB_TAG('Q','U','Z',' ')}, /* Quechua [macrolanguage] */
|
|
165
|
+
{HB_TAG('r','m',' ',' '), HB_TAG('R','M','S',' ')}, /* Romansh */
|
|
166
|
+
{HB_TAG('r','n',' ',' '), HB_TAG('R','U','N',' ')}, /* Rundi */
|
|
167
|
+
{HB_TAG('r','o',' ',' '), HB_TAG('R','O','M',' ')}, /* Romanian */
|
|
168
|
+
{HB_TAG('r','u',' ',' '), HB_TAG('R','U','S',' ')}, /* Russian */
|
|
169
|
+
{HB_TAG('r','w',' ',' '), HB_TAG('R','U','A',' ')}, /* Kinyarwanda */
|
|
170
|
+
{HB_TAG('s','a',' ',' '), HB_TAG('S','A','N',' ')}, /* Sanskrit [macrolanguage] */
|
|
171
|
+
{HB_TAG('s','c',' ',' '), HB_TAG('S','R','D',' ')}, /* Sardinian [macrolanguage] */
|
|
172
|
+
{HB_TAG('s','d',' ',' '), HB_TAG('S','N','D',' ')}, /* Sindhi */
|
|
173
|
+
{HB_TAG('s','e',' ',' '), HB_TAG('N','S','M',' ')}, /* Northern Sami */
|
|
174
|
+
{HB_TAG('s','g',' ',' '), HB_TAG('S','G','O',' ')}, /* Sango */
|
|
175
|
+
{HB_TAG('s','h',' ',' '), HB_TAG('B','O','S',' ')}, /* Serbo-Croatian [macrolanguage] -> Bosnian */
|
|
176
|
+
{HB_TAG('s','h',' ',' '), HB_TAG('H','R','V',' ')}, /* Serbo-Croatian [macrolanguage] -> Croatian */
|
|
177
|
+
{HB_TAG('s','h',' ',' '), HB_TAG('S','R','B',' ')}, /* Serbo-Croatian [macrolanguage] -> Serbian */
|
|
178
|
+
{HB_TAG('s','i',' ',' '), HB_TAG('S','N','H',' ')}, /* Sinhala (Sinhalese) */
|
|
179
|
+
{HB_TAG('s','k',' ',' '), HB_TAG('S','K','Y',' ')}, /* Slovak */
|
|
180
|
+
{HB_TAG('s','l',' ',' '), HB_TAG('S','L','V',' ')}, /* Slovenian */
|
|
181
|
+
{HB_TAG('s','m',' ',' '), HB_TAG('S','M','O',' ')}, /* Samoan */
|
|
182
|
+
{HB_TAG('s','n',' ',' '), HB_TAG('S','N','A','0')}, /* Shona */
|
|
183
|
+
{HB_TAG('s','o',' ',' '), HB_TAG('S','M','L',' ')}, /* Somali */
|
|
184
|
+
{HB_TAG('s','q',' ',' '), HB_TAG('S','Q','I',' ')}, /* Albanian [macrolanguage] */
|
|
185
|
+
{HB_TAG('s','r',' ',' '), HB_TAG('S','R','B',' ')}, /* Serbian */
|
|
186
|
+
{HB_TAG('s','s',' ',' '), HB_TAG('S','W','Z',' ')}, /* Swati */
|
|
187
|
+
{HB_TAG('s','t',' ',' '), HB_TAG('S','O','T',' ')}, /* Southern Sotho */
|
|
188
|
+
{HB_TAG('s','u',' ',' '), HB_TAG('S','U','N',' ')}, /* Sundanese */
|
|
189
|
+
{HB_TAG('s','v',' ',' '), HB_TAG('S','V','E',' ')}, /* Swedish */
|
|
190
|
+
{HB_TAG('s','w',' ',' '), HB_TAG('S','W','K',' ')}, /* Swahili [macrolanguage] */
|
|
191
|
+
{HB_TAG('t','a',' ',' '), HB_TAG('T','A','M',' ')}, /* Tamil */
|
|
192
|
+
{HB_TAG('t','e',' ',' '), HB_TAG('T','E','L',' ')}, /* Telugu */
|
|
193
|
+
{HB_TAG('t','g',' ',' '), HB_TAG('T','A','J',' ')}, /* Tajik -> Tajiki */
|
|
194
|
+
{HB_TAG('t','h',' ',' '), HB_TAG('T','H','A',' ')}, /* Thai */
|
|
195
|
+
{HB_TAG('t','i',' ',' '), HB_TAG('T','G','Y',' ')}, /* Tigrinya */
|
|
196
|
+
{HB_TAG('t','k',' ',' '), HB_TAG('T','K','M',' ')}, /* Turkmen */
|
|
197
|
+
{HB_TAG('t','l',' ',' '), HB_TAG('T','G','L',' ')}, /* Tagalog */
|
|
198
|
+
{HB_TAG('t','n',' ',' '), HB_TAG('T','N','A',' ')}, /* Tswana */
|
|
199
|
+
{HB_TAG('t','o',' ',' '), HB_TAG('T','G','N',' ')}, /* Tonga (Tonga Islands) -> Tongan */
|
|
200
|
+
{HB_TAG('t','r',' ',' '), HB_TAG('T','R','K',' ')}, /* Turkish */
|
|
201
|
+
{HB_TAG('t','s',' ',' '), HB_TAG('T','S','G',' ')}, /* Tsonga */
|
|
202
|
+
{HB_TAG('t','t',' ',' '), HB_TAG('T','A','T',' ')}, /* Tatar */
|
|
203
|
+
{HB_TAG('t','w',' ',' '), HB_TAG('T','W','I',' ')}, /* Twi */
|
|
204
|
+
{HB_TAG('t','w',' ',' '), HB_TAG('A','K','A',' ')}, /* Twi -> Akan */
|
|
205
|
+
{HB_TAG('t','y',' ',' '), HB_TAG('T','H','T',' ')}, /* Tahitian */
|
|
206
|
+
{HB_TAG('u','g',' ',' '), HB_TAG('U','Y','G',' ')}, /* Uyghur */
|
|
207
|
+
{HB_TAG('u','k',' ',' '), HB_TAG('U','K','R',' ')}, /* Ukrainian */
|
|
208
|
+
{HB_TAG('u','r',' ',' '), HB_TAG('U','R','D',' ')}, /* Urdu */
|
|
209
|
+
{HB_TAG('u','z',' ',' '), HB_TAG('U','Z','B',' ')}, /* Uzbek [macrolanguage] */
|
|
210
|
+
{HB_TAG('v','e',' ',' '), HB_TAG('V','E','N',' ')}, /* Venda */
|
|
211
|
+
{HB_TAG('v','i',' ',' '), HB_TAG('V','I','T',' ')}, /* Vietnamese */
|
|
212
|
+
{HB_TAG('v','o',' ',' '), HB_TAG('V','O','L',' ')}, /* Volapük */
|
|
213
|
+
{HB_TAG('w','a',' ',' '), HB_TAG('W','L','N',' ')}, /* Walloon */
|
|
214
|
+
{HB_TAG('w','o',' ',' '), HB_TAG('W','L','F',' ')}, /* Wolof */
|
|
215
|
+
{HB_TAG('x','h',' ',' '), HB_TAG('X','H','S',' ')}, /* Xhosa */
|
|
216
|
+
{HB_TAG('y','i',' ',' '), HB_TAG('J','I','I',' ')}, /* Yiddish [macrolanguage] */
|
|
217
|
+
{HB_TAG('y','o',' ',' '), HB_TAG('Y','B','A',' ')}, /* Yoruba */
|
|
218
|
+
{HB_TAG('z','a',' ',' '), HB_TAG('Z','H','A',' ')}, /* Zhuang [macrolanguage] */
|
|
219
|
+
{HB_TAG('z','h',' ',' '), HB_TAG('Z','H','S',' ')}, /* Chinese, Simplified [macrolanguage] */
|
|
220
|
+
{HB_TAG('z','u',' ',' '), HB_TAG('Z','U','L',' ')}, /* Zulu */
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
#ifndef HB_NO_LANGUAGE_LONG
|
|
224
|
+
static const LangTag ot_languages3[] = {
|
|
225
|
+
{HB_TAG('a','a','e',' '), HB_TAG('S','Q','I',' ')}, /* Arbëreshë Albanian -> Albanian */
|
|
226
|
+
{HB_TAG('a','a','o',' '), HB_TAG('A','R','A',' ')}, /* Algerian Saharan Arabic -> Arabic */
|
|
227
|
+
/*{HB_TAG('a','a','q',' '), HB_TAG('A','A','Q',' ')},*/ /* Eastern Abnaki -> Eastern Abenaki */
|
|
228
|
+
{HB_TAG('a','a','t',' '), HB_TAG('S','Q','I',' ')}, /* Arvanitika Albanian -> Albanian */
|
|
229
|
+
{HB_TAG('a','b','a',' '), HB_TAG_NONE }, /* Abé != Abaza */
|
|
230
|
+
{HB_TAG('a','b','h',' '), HB_TAG('A','R','A',' ')}, /* Tajiki Arabic -> Arabic */
|
|
231
|
+
{HB_TAG('a','b','q',' '), HB_TAG('A','B','A',' ')}, /* Abaza */
|
|
232
|
+
{HB_TAG('a','b','s',' '), HB_TAG('C','P','P',' ')}, /* Ambonese Malay -> Creoles */
|
|
233
|
+
{HB_TAG('a','b','v',' '), HB_TAG('A','R','A',' ')}, /* Baharna Arabic -> Arabic */
|
|
234
|
+
{HB_TAG('a','c','f',' '), HB_TAG('F','A','N',' ')}, /* Saint Lucian Creole French -> French Antillean */
|
|
235
|
+
{HB_TAG('a','c','f',' '), HB_TAG('C','P','P',' ')}, /* Saint Lucian Creole French -> Creoles */
|
|
236
|
+
/*{HB_TAG('a','c','h',' '), HB_TAG('A','C','H',' ')},*/ /* Acoli -> Acholi */
|
|
237
|
+
{HB_TAG('a','c','m',' '), HB_TAG('A','R','A',' ')}, /* Mesopotamian Arabic -> Arabic */
|
|
238
|
+
{HB_TAG('a','c','q',' '), HB_TAG('A','R','A',' ')}, /* Ta'izzi-Adeni Arabic -> Arabic */
|
|
239
|
+
{HB_TAG('a','c','r',' '), HB_TAG('A','C','R',' ')}, /* Achi */
|
|
240
|
+
{HB_TAG('a','c','r',' '), HB_TAG('M','Y','N',' ')}, /* Achi -> Mayan */
|
|
241
|
+
{HB_TAG('a','c','w',' '), HB_TAG('A','R','A',' ')}, /* Hijazi Arabic -> Arabic */
|
|
242
|
+
{HB_TAG('a','c','x',' '), HB_TAG('A','R','A',' ')}, /* Omani Arabic -> Arabic */
|
|
243
|
+
{HB_TAG('a','c','y',' '), HB_TAG('A','C','Y',' ')}, /* Cypriot Arabic */
|
|
244
|
+
{HB_TAG('a','c','y',' '), HB_TAG('A','R','A',' ')}, /* Cypriot Arabic -> Arabic */
|
|
245
|
+
{HB_TAG('a','d','a',' '), HB_TAG('D','N','G',' ')}, /* Adangme -> Dangme */
|
|
246
|
+
{HB_TAG('a','d','f',' '), HB_TAG('A','R','A',' ')}, /* Dhofari Arabic -> Arabic */
|
|
247
|
+
{HB_TAG('a','d','p',' '), HB_TAG('D','Z','N',' ')}, /* Adap (retired code) -> Dzongkha */
|
|
248
|
+
/*{HB_TAG('a','d','y',' '), HB_TAG('A','D','Y',' ')},*/ /* Adyghe */
|
|
249
|
+
{HB_TAG('a','e','b',' '), HB_TAG('A','R','A',' ')}, /* Tunisian Arabic -> Arabic */
|
|
250
|
+
{HB_TAG('a','e','c',' '), HB_TAG('A','R','A',' ')}, /* Saidi Arabic -> Arabic */
|
|
251
|
+
{HB_TAG('a','f','b',' '), HB_TAG('A','R','A',' ')}, /* Gulf Arabic -> Arabic */
|
|
252
|
+
{HB_TAG('a','f','k',' '), HB_TAG_NONE }, /* Nanubae != Afrikaans */
|
|
253
|
+
{HB_TAG('a','f','s',' '), HB_TAG('C','P','P',' ')}, /* Afro-Seminole Creole -> Creoles */
|
|
254
|
+
{HB_TAG('a','g','u',' '), HB_TAG('M','Y','N',' ')}, /* Aguacateco -> Mayan */
|
|
255
|
+
{HB_TAG('a','g','w',' '), HB_TAG_NONE }, /* Kahua != Agaw */
|
|
256
|
+
{HB_TAG('a','h','g',' '), HB_TAG('A','G','W',' ')}, /* Qimant -> Agaw */
|
|
257
|
+
{HB_TAG('a','h','t',' '), HB_TAG('A','T','H',' ')}, /* Ahtena -> Athapaskan */
|
|
258
|
+
{HB_TAG('a','i','g',' '), HB_TAG('C','P','P',' ')}, /* Antigua and Barbuda Creole English -> Creoles */
|
|
259
|
+
{HB_TAG('a','i','i',' '), HB_TAG('S','W','A',' ')}, /* Assyrian Neo-Aramaic -> Swadaya Aramaic */
|
|
260
|
+
{HB_TAG('a','i','i',' '), HB_TAG('S','Y','R',' ')}, /* Assyrian Neo-Aramaic -> Syriac */
|
|
261
|
+
/*{HB_TAG('a','i','o',' '), HB_TAG('A','I','O',' ')},*/ /* Aiton */
|
|
262
|
+
{HB_TAG('a','i','w',' '), HB_TAG('A','R','I',' ')}, /* Aari */
|
|
263
|
+
{HB_TAG('a','j','p',' '), HB_TAG('A','R','A',' ')}, /* South Levantine Arabic (retired code) -> Arabic */
|
|
264
|
+
{HB_TAG('a','j','t',' '), HB_TAG('A','R','A',' ')}, /* Judeo-Tunisian Arabic (retired code) -> Arabic */
|
|
265
|
+
{HB_TAG('a','k','b',' '), HB_TAG('A','K','B',' ')}, /* Batak Angkola */
|
|
266
|
+
{HB_TAG('a','k','b',' '), HB_TAG('B','T','K',' ')}, /* Batak Angkola -> Batak */
|
|
267
|
+
{HB_TAG('a','l','n',' '), HB_TAG('S','Q','I',' ')}, /* Gheg Albanian -> Albanian */
|
|
268
|
+
{HB_TAG('a','l','s',' '), HB_TAG('S','Q','I',' ')}, /* Tosk Albanian -> Albanian */
|
|
269
|
+
/*{HB_TAG('a','l','t',' '), HB_TAG('A','L','T',' ')},*/ /* Southern Altai -> Altai */
|
|
270
|
+
{HB_TAG('a','m','f',' '), HB_TAG('H','B','N',' ')}, /* Hamer-Banna -> Hammer-Banna */
|
|
271
|
+
{HB_TAG('a','m','w',' '), HB_TAG('S','Y','R',' ')}, /* Western Neo-Aramaic -> Syriac */
|
|
272
|
+
/*{HB_TAG('a','n','g',' '), HB_TAG('A','N','G',' ')},*/ /* Old English (ca. 450-1100) -> Anglo-Saxon */
|
|
273
|
+
{HB_TAG('a','o','a',' '), HB_TAG('C','P','P',' ')}, /* Angolar -> Creoles */
|
|
274
|
+
{HB_TAG('a','p','a',' '), HB_TAG('A','T','H',' ')}, /* Apache [collection] -> Athapaskan */
|
|
275
|
+
{HB_TAG('a','p','c',' '), HB_TAG('A','R','A',' ')}, /* Levantine Arabic -> Arabic */
|
|
276
|
+
{HB_TAG('a','p','d',' '), HB_TAG('A','R','A',' ')}, /* Sudanese Arabic -> Arabic */
|
|
277
|
+
{HB_TAG('a','p','j',' '), HB_TAG('A','T','H',' ')}, /* Jicarilla Apache -> Athapaskan */
|
|
278
|
+
{HB_TAG('a','p','k',' '), HB_TAG('A','T','H',' ')}, /* Kiowa Apache -> Athapaskan */
|
|
279
|
+
{HB_TAG('a','p','l',' '), HB_TAG('A','T','H',' ')}, /* Lipan Apache -> Athapaskan */
|
|
280
|
+
{HB_TAG('a','p','m',' '), HB_TAG('A','T','H',' ')}, /* Mescalero-Chiricahua Apache -> Athapaskan */
|
|
281
|
+
{HB_TAG('a','p','w',' '), HB_TAG('A','T','H',' ')}, /* Western Apache -> Athapaskan */
|
|
282
|
+
{HB_TAG('a','r','b',' '), HB_TAG('A','R','A',' ')}, /* Standard Arabic -> Arabic */
|
|
283
|
+
{HB_TAG('a','r','i',' '), HB_TAG_NONE }, /* Arikara != Aari */
|
|
284
|
+
{HB_TAG('a','r','k',' '), HB_TAG_NONE }, /* Arikapú != Rakhine */
|
|
285
|
+
{HB_TAG('a','r','n',' '), HB_TAG('M','A','P',' ')}, /* Mapudungun */
|
|
286
|
+
{HB_TAG('a','r','q',' '), HB_TAG('A','R','A',' ')}, /* Algerian Arabic -> Arabic */
|
|
287
|
+
{HB_TAG('a','r','s',' '), HB_TAG('A','R','A',' ')}, /* Najdi Arabic -> Arabic */
|
|
288
|
+
{HB_TAG('a','r','y',' '), HB_TAG('M','O','R',' ')}, /* Moroccan Arabic -> Moroccan */
|
|
289
|
+
{HB_TAG('a','r','y',' '), HB_TAG('A','R','A',' ')}, /* Moroccan Arabic -> Arabic */
|
|
290
|
+
{HB_TAG('a','r','z',' '), HB_TAG('A','R','A',' ')}, /* Egyptian Arabic -> Arabic */
|
|
291
|
+
/*{HB_TAG('a','s','t',' '), HB_TAG('A','S','T',' ')},*/ /* Asturian */
|
|
292
|
+
/*{HB_TAG('a','t','h',' '), HB_TAG('A','T','H',' ')},*/ /* Athapascan [collection] -> Athapaskan */
|
|
293
|
+
{HB_TAG('a','t','j',' '), HB_TAG('R','C','R',' ')}, /* Atikamekw -> R-Cree */
|
|
294
|
+
/*{HB_TAG('a','t','s',' '), HB_TAG('A','T','S',' ')},*/ /* Gros Ventre (Atsina) */
|
|
295
|
+
{HB_TAG('a','t','v',' '), HB_TAG('A','L','T',' ')}, /* Northern Altai -> Altai */
|
|
296
|
+
{HB_TAG('a','u','j',' '), HB_TAG('B','B','R',' ')}, /* Awjilah -> Berber */
|
|
297
|
+
{HB_TAG('a','u','z',' '), HB_TAG('A','R','A',' ')}, /* Uzbeki Arabic -> Arabic */
|
|
298
|
+
{HB_TAG('a','v','l',' '), HB_TAG('A','R','A',' ')}, /* Eastern Egyptian Bedawi Arabic -> Arabic */
|
|
299
|
+
/*{HB_TAG('a','v','n',' '), HB_TAG('A','V','N',' ')},*/ /* Avatime */
|
|
300
|
+
/*{HB_TAG('a','w','a',' '), HB_TAG('A','W','A',' ')},*/ /* Awadhi */
|
|
301
|
+
{HB_TAG('a','y','c',' '), HB_TAG('A','Y','M',' ')}, /* Southern Aymara -> Aymara */
|
|
302
|
+
{HB_TAG('a','y','h',' '), HB_TAG('A','R','A',' ')}, /* Hadrami Arabic -> Arabic */
|
|
303
|
+
{HB_TAG('a','y','l',' '), HB_TAG('A','R','A',' ')}, /* Libyan Arabic -> Arabic */
|
|
304
|
+
{HB_TAG('a','y','n',' '), HB_TAG('A','R','A',' ')}, /* Sanaani Arabic -> Arabic */
|
|
305
|
+
{HB_TAG('a','y','p',' '), HB_TAG('A','R','A',' ')}, /* North Mesopotamian Arabic -> Arabic */
|
|
306
|
+
{HB_TAG('a','y','r',' '), HB_TAG('A','Y','M',' ')}, /* Central Aymara -> Aymara */
|
|
307
|
+
{HB_TAG('a','z','b',' '), HB_TAG('A','Z','B',' ')}, /* South Azerbaijani -> Torki */
|
|
308
|
+
{HB_TAG('a','z','b',' '), HB_TAG('A','Z','E',' ')}, /* South Azerbaijani -> Azerbaijani */
|
|
309
|
+
{HB_TAG('a','z','d',' '), HB_TAG('N','A','H',' ')}, /* Eastern Durango Nahuatl -> Nahuatl */
|
|
310
|
+
{HB_TAG('a','z','j',' '), HB_TAG('A','Z','E',' ')}, /* North Azerbaijani -> Azerbaijani */
|
|
311
|
+
{HB_TAG('a','z','n',' '), HB_TAG('N','A','H',' ')}, /* Western Durango Nahuatl -> Nahuatl */
|
|
312
|
+
{HB_TAG('a','z','z',' '), HB_TAG('N','A','H',' ')}, /* Highland Puebla Nahuatl -> Nahuatl */
|
|
313
|
+
{HB_TAG('b','a','d',' '), HB_TAG('B','A','D','0')}, /* Banda [collection] */
|
|
314
|
+
{HB_TAG('b','a','g',' '), HB_TAG_NONE }, /* Tuki != Baghelkhandi */
|
|
315
|
+
{HB_TAG('b','a','h',' '), HB_TAG('C','P','P',' ')}, /* Bahamas Creole English -> Creoles */
|
|
316
|
+
{HB_TAG('b','a','i',' '), HB_TAG('B','M','L',' ')}, /* Bamileke [collection] */
|
|
317
|
+
{HB_TAG('b','a','l',' '), HB_TAG('B','L','I',' ')}, /* Baluchi [macrolanguage] */
|
|
318
|
+
/*{HB_TAG('b','a','n',' '), HB_TAG('B','A','N',' ')},*/ /* Balinese */
|
|
319
|
+
/*{HB_TAG('b','a','r',' '), HB_TAG('B','A','R',' ')},*/ /* Bavarian */
|
|
320
|
+
{HB_TAG('b','a','u',' '), HB_TAG_NONE }, /* Bada (Nigeria) != Baulé */
|
|
321
|
+
{HB_TAG('b','b','c',' '), HB_TAG('B','B','C',' ')}, /* Batak Toba */
|
|
322
|
+
{HB_TAG('b','b','c',' '), HB_TAG('B','T','K',' ')}, /* Batak Toba -> Batak */
|
|
323
|
+
{HB_TAG('b','b','j',' '), HB_TAG('B','M','L',' ')}, /* Ghomálá' -> Bamileke */
|
|
324
|
+
{HB_TAG('b','b','p',' '), HB_TAG('B','A','D','0')}, /* West Central Banda -> Banda */
|
|
325
|
+
{HB_TAG('b','b','r',' '), HB_TAG_NONE }, /* Girawa != Berber */
|
|
326
|
+
{HB_TAG('b','b','z',' '), HB_TAG('A','R','A',' ')}, /* Babalia Creole Arabic (retired code) -> Arabic */
|
|
327
|
+
{HB_TAG('b','c','c',' '), HB_TAG('B','L','I',' ')}, /* Southern Balochi -> Baluchi */
|
|
328
|
+
{HB_TAG('b','c','h',' '), HB_TAG_NONE }, /* Bariai != Bench */
|
|
329
|
+
{HB_TAG('b','c','i',' '), HB_TAG('B','A','U',' ')}, /* Baoulé -> Baulé */
|
|
330
|
+
{HB_TAG('b','c','l',' '), HB_TAG('B','I','K',' ')}, /* Central Bikol -> Bikol */
|
|
331
|
+
{HB_TAG('b','c','q',' '), HB_TAG('B','C','H',' ')}, /* Bench */
|
|
332
|
+
{HB_TAG('b','c','r',' '), HB_TAG('A','T','H',' ')}, /* Babine -> Athapaskan */
|
|
333
|
+
/*{HB_TAG('b','d','c',' '), HB_TAG('B','D','C',' ')},*/ /* Emberá-Baudó */
|
|
334
|
+
/*{HB_TAG('b','d','y',' '), HB_TAG('B','D','Y',' ')},*/ /* Bandjalang */
|
|
335
|
+
{HB_TAG('b','e','a',' '), HB_TAG('A','T','H',' ')}, /* Beaver -> Athapaskan */
|
|
336
|
+
{HB_TAG('b','e','b',' '), HB_TAG('B','T','I',' ')}, /* Bebele -> Beti */
|
|
337
|
+
/*{HB_TAG('b','e','m',' '), HB_TAG('B','E','M',' ')},*/ /* Bemba (Zambia) */
|
|
338
|
+
{HB_TAG('b','e','r',' '), HB_TAG('B','B','R',' ')}, /* Berber [collection] */
|
|
339
|
+
{HB_TAG('b','e','w',' '), HB_TAG('C','P','P',' ')}, /* Betawi -> Creoles */
|
|
340
|
+
{HB_TAG('b','f','l',' '), HB_TAG('B','A','D','0')}, /* Banda-Ndélé -> Banda */
|
|
341
|
+
{HB_TAG('b','f','q',' '), HB_TAG('B','A','D',' ')}, /* Badaga */
|
|
342
|
+
{HB_TAG('b','f','t',' '), HB_TAG('B','L','T',' ')}, /* Balti */
|
|
343
|
+
{HB_TAG('b','f','u',' '), HB_TAG('L','A','H',' ')}, /* Gahri -> Lahuli */
|
|
344
|
+
{HB_TAG('b','f','y',' '), HB_TAG('B','A','G',' ')}, /* Bagheli -> Baghelkhandi */
|
|
345
|
+
/*{HB_TAG('b','g','c',' '), HB_TAG('B','G','C',' ')},*/ /* Haryanvi */
|
|
346
|
+
{HB_TAG('b','g','n',' '), HB_TAG('B','L','I',' ')}, /* Western Balochi -> Baluchi */
|
|
347
|
+
{HB_TAG('b','g','p',' '), HB_TAG('B','L','I',' ')}, /* Eastern Balochi -> Baluchi */
|
|
348
|
+
{HB_TAG('b','g','q',' '), HB_TAG('B','G','Q',' ')}, /* Bagri */
|
|
349
|
+
{HB_TAG('b','g','q',' '), HB_TAG('R','A','J',' ')}, /* Bagri -> Rajasthani */
|
|
350
|
+
{HB_TAG('b','g','r',' '), HB_TAG('Q','I','N',' ')}, /* Bawm Chin -> Chin */
|
|
351
|
+
{HB_TAG('b','h','b',' '), HB_TAG('B','H','I',' ')}, /* Bhili */
|
|
352
|
+
/*{HB_TAG('b','h','i',' '), HB_TAG('B','H','I',' ')},*/ /* Bhilali -> Bhili */
|
|
353
|
+
{HB_TAG('b','h','k',' '), HB_TAG('B','I','K',' ')}, /* Albay Bicolano (retired code) -> Bikol */
|
|
354
|
+
/*{HB_TAG('b','h','o',' '), HB_TAG('B','H','O',' ')},*/ /* Bhojpuri */
|
|
355
|
+
{HB_TAG('b','h','r',' '), HB_TAG('M','L','G',' ')}, /* Bara Malagasy -> Malagasy */
|
|
356
|
+
/*{HB_TAG('b','i','k',' '), HB_TAG('B','I','K',' ')},*/ /* Bikol [macrolanguage] */
|
|
357
|
+
{HB_TAG('b','i','l',' '), HB_TAG_NONE }, /* Bile != Bilen */
|
|
358
|
+
{HB_TAG('b','i','n',' '), HB_TAG('E','D','O',' ')}, /* Edo */
|
|
359
|
+
{HB_TAG('b','i','u',' '), HB_TAG('Q','I','N',' ')}, /* Biete -> Chin */
|
|
360
|
+
/*{HB_TAG('b','j','j',' '), HB_TAG('B','J','J',' ')},*/ /* Kanauji */
|
|
361
|
+
{HB_TAG('b','j','n',' '), HB_TAG('M','L','Y',' ')}, /* Banjar -> Malay */
|
|
362
|
+
{HB_TAG('b','j','o',' '), HB_TAG('B','A','D','0')}, /* Mid-Southern Banda -> Banda */
|
|
363
|
+
{HB_TAG('b','j','q',' '), HB_TAG('M','L','G',' ')}, /* Southern Betsimisaraka Malagasy (retired code) -> Malagasy */
|
|
364
|
+
{HB_TAG('b','j','s',' '), HB_TAG('C','P','P',' ')}, /* Bajan -> Creoles */
|
|
365
|
+
{HB_TAG('b','j','t',' '), HB_TAG('B','L','N',' ')}, /* Balanta-Ganja -> Balante */
|
|
366
|
+
{HB_TAG('b','k','f',' '), HB_TAG_NONE }, /* Beeke != Blackfoot */
|
|
367
|
+
{HB_TAG('b','k','o',' '), HB_TAG('B','M','L',' ')}, /* Kwa' -> Bamileke */
|
|
368
|
+
{HB_TAG('b','l','a',' '), HB_TAG('B','K','F',' ')}, /* Siksika -> Blackfoot */
|
|
369
|
+
{HB_TAG('b','l','e',' '), HB_TAG('B','L','N',' ')}, /* Balanta-Kentohe -> Balante */
|
|
370
|
+
{HB_TAG('b','l','g',' '), HB_TAG('I','B','A',' ')}, /* Balau (retired code) -> Iban */
|
|
371
|
+
{HB_TAG('b','l','i',' '), HB_TAG_NONE }, /* Bolia != Baluchi */
|
|
372
|
+
{HB_TAG('b','l','k',' '), HB_TAG('B','L','K',' ')}, /* Pa’o Karen */
|
|
373
|
+
{HB_TAG('b','l','k',' '), HB_TAG('K','R','N',' ')}, /* Pa'o Karen -> Karen */
|
|
374
|
+
{HB_TAG('b','l','n',' '), HB_TAG('B','I','K',' ')}, /* Southern Catanduanes Bikol -> Bikol */
|
|
375
|
+
{HB_TAG('b','l','t',' '), HB_TAG_NONE }, /* Tai Dam != Balti */
|
|
376
|
+
{HB_TAG('b','m','b',' '), HB_TAG_NONE }, /* Bembe != Bambara (Bamanankan) */
|
|
377
|
+
{HB_TAG('b','m','l',' '), HB_TAG_NONE }, /* Bomboli != Bamileke */
|
|
378
|
+
{HB_TAG('b','m','m',' '), HB_TAG('M','L','G',' ')}, /* Northern Betsimisaraka Malagasy -> Malagasy */
|
|
379
|
+
{HB_TAG('b','p','d',' '), HB_TAG('B','A','D','0')}, /* Banda-Banda -> Banda */
|
|
380
|
+
{HB_TAG('b','p','l',' '), HB_TAG('C','P','P',' ')}, /* Broome Pearling Lugger Pidgin -> Creoles */
|
|
381
|
+
{HB_TAG('b','p','q',' '), HB_TAG('C','P','P',' ')}, /* Banda Malay -> Creoles */
|
|
382
|
+
/*{HB_TAG('b','p','y',' '), HB_TAG('B','P','Y',' ')},*/ /* Bishnupriya -> Bishnupriya Manipuri */
|
|
383
|
+
{HB_TAG('b','q','i',' '), HB_TAG('L','R','C',' ')}, /* Bakhtiari -> Luri */
|
|
384
|
+
{HB_TAG('b','q','k',' '), HB_TAG('B','A','D','0')}, /* Banda-Mbrès -> Banda */
|
|
385
|
+
{HB_TAG('b','r','a',' '), HB_TAG('B','R','I',' ')}, /* Braj -> Braj Bhasha */
|
|
386
|
+
{HB_TAG('b','r','c',' '), HB_TAG('C','P','P',' ')}, /* Berbice Creole Dutch -> Creoles */
|
|
387
|
+
/*{HB_TAG('b','r','h',' '), HB_TAG('B','R','H',' ')},*/ /* Brahui */
|
|
388
|
+
{HB_TAG('b','r','i',' '), HB_TAG_NONE }, /* Mokpwe != Braj Bhasha */
|
|
389
|
+
{HB_TAG('b','r','m',' '), HB_TAG_NONE }, /* Barambu != Burmese */
|
|
390
|
+
/*{HB_TAG('b','r','x',' '), HB_TAG('B','R','X',' ')},*/ /* Bodo (India) */
|
|
391
|
+
{HB_TAG('b','s','h',' '), HB_TAG_NONE }, /* Kati != Bashkir */
|
|
392
|
+
/*{HB_TAG('b','s','k',' '), HB_TAG('B','S','K',' ')},*/ /* Burushaski */
|
|
393
|
+
{HB_TAG('b','t','b',' '), HB_TAG('B','T','I',' ')}, /* Beti (Cameroon) (retired code) */
|
|
394
|
+
{HB_TAG('b','t','d',' '), HB_TAG('B','T','D',' ')}, /* Batak Dairi (Pakpak) */
|
|
395
|
+
{HB_TAG('b','t','d',' '), HB_TAG('B','T','K',' ')}, /* Batak Dairi -> Batak */
|
|
396
|
+
{HB_TAG('b','t','i',' '), HB_TAG_NONE }, /* Burate != Beti */
|
|
397
|
+
{HB_TAG('b','t','j',' '), HB_TAG('M','L','Y',' ')}, /* Bacanese Malay -> Malay */
|
|
398
|
+
/*{HB_TAG('b','t','k',' '), HB_TAG('B','T','K',' ')},*/ /* Batak [collection] */
|
|
399
|
+
{HB_TAG('b','t','m',' '), HB_TAG('B','T','M',' ')}, /* Batak Mandailing */
|
|
400
|
+
{HB_TAG('b','t','m',' '), HB_TAG('B','T','K',' ')}, /* Batak Mandailing -> Batak */
|
|
401
|
+
{HB_TAG('b','t','o',' '), HB_TAG('B','I','K',' ')}, /* Rinconada Bikol -> Bikol */
|
|
402
|
+
{HB_TAG('b','t','s',' '), HB_TAG('B','T','S',' ')}, /* Batak Simalungun */
|
|
403
|
+
{HB_TAG('b','t','s',' '), HB_TAG('B','T','K',' ')}, /* Batak Simalungun -> Batak */
|
|
404
|
+
{HB_TAG('b','t','x',' '), HB_TAG('B','T','X',' ')}, /* Batak Karo */
|
|
405
|
+
{HB_TAG('b','t','x',' '), HB_TAG('B','T','K',' ')}, /* Batak Karo -> Batak */
|
|
406
|
+
{HB_TAG('b','t','z',' '), HB_TAG('B','T','Z',' ')}, /* Batak Alas-Kluet */
|
|
407
|
+
{HB_TAG('b','t','z',' '), HB_TAG('B','T','K',' ')}, /* Batak Alas-Kluet -> Batak */
|
|
408
|
+
/*{HB_TAG('b','u','g',' '), HB_TAG('B','U','G',' ')},*/ /* Buginese -> Bugis */
|
|
409
|
+
{HB_TAG('b','u','m',' '), HB_TAG('B','T','I',' ')}, /* Bulu (Cameroon) -> Beti */
|
|
410
|
+
{HB_TAG('b','v','e',' '), HB_TAG('M','L','Y',' ')}, /* Berau Malay -> Malay */
|
|
411
|
+
{HB_TAG('b','v','u',' '), HB_TAG('M','L','Y',' ')}, /* Bukit Malay -> Malay */
|
|
412
|
+
{HB_TAG('b','w','e',' '), HB_TAG('K','R','N',' ')}, /* Bwe Karen -> Karen */
|
|
413
|
+
{HB_TAG('b','x','k',' '), HB_TAG('L','U','H',' ')}, /* Bukusu -> Luyia */
|
|
414
|
+
{HB_TAG('b','x','o',' '), HB_TAG('C','P','P',' ')}, /* Barikanchi -> Creoles */
|
|
415
|
+
{HB_TAG('b','x','p',' '), HB_TAG('B','T','I',' ')}, /* Bebil -> Beti */
|
|
416
|
+
{HB_TAG('b','x','r',' '), HB_TAG('R','B','U',' ')}, /* Russia Buriat -> Russian Buriat */
|
|
417
|
+
{HB_TAG('b','y','n',' '), HB_TAG('B','I','L',' ')}, /* Bilin -> Bilen */
|
|
418
|
+
{HB_TAG('b','y','v',' '), HB_TAG('B','Y','V',' ')}, /* Medumba */
|
|
419
|
+
{HB_TAG('b','y','v',' '), HB_TAG('B','M','L',' ')}, /* Medumba -> Bamileke */
|
|
420
|
+
{HB_TAG('b','z','c',' '), HB_TAG('M','L','G',' ')}, /* Southern Betsimisaraka Malagasy -> Malagasy */
|
|
421
|
+
{HB_TAG('b','z','j',' '), HB_TAG('C','P','P',' ')}, /* Belize Kriol English -> Creoles */
|
|
422
|
+
{HB_TAG('b','z','k',' '), HB_TAG('C','P','P',' ')}, /* Nicaragua Creole English -> Creoles */
|
|
423
|
+
{HB_TAG('c','a','a',' '), HB_TAG('M','Y','N',' ')}, /* Chortí -> Mayan */
|
|
424
|
+
{HB_TAG('c','a','c',' '), HB_TAG('M','Y','N',' ')}, /* Chuj -> Mayan */
|
|
425
|
+
{HB_TAG('c','a','f',' '), HB_TAG('C','R','R',' ')}, /* Southern Carrier -> Carrier */
|
|
426
|
+
{HB_TAG('c','a','f',' '), HB_TAG('A','T','H',' ')}, /* Southern Carrier -> Athapaskan */
|
|
427
|
+
{HB_TAG('c','a','k',' '), HB_TAG('C','A','K',' ')}, /* Kaqchikel */
|
|
428
|
+
{HB_TAG('c','a','k',' '), HB_TAG('M','Y','N',' ')}, /* Kaqchikel -> Mayan */
|
|
429
|
+
/*{HB_TAG('c','a','y',' '), HB_TAG('C','A','Y',' ')},*/ /* Cayuga */
|
|
430
|
+
/*{HB_TAG('c','b','g',' '), HB_TAG('C','B','G',' ')},*/ /* Chimila */
|
|
431
|
+
{HB_TAG('c','b','k',' '), HB_TAG('C','B','K',' ')}, /* Chavacano -> Zamboanga Chavacano */
|
|
432
|
+
{HB_TAG('c','b','k',' '), HB_TAG('C','P','P',' ')}, /* Chavacano -> Creoles */
|
|
433
|
+
{HB_TAG('c','b','l',' '), HB_TAG('Q','I','N',' ')}, /* Bualkhaw Chin -> Chin */
|
|
434
|
+
{HB_TAG('c','c','l',' '), HB_TAG('C','P','P',' ')}, /* Cutchi-Swahili -> Creoles */
|
|
435
|
+
{HB_TAG('c','c','m',' '), HB_TAG('C','P','P',' ')}, /* Malaccan Creole Malay -> Creoles */
|
|
436
|
+
{HB_TAG('c','c','o',' '), HB_TAG('C','C','H','N')}, /* Comaltepec Chinantec -> Chinantec */
|
|
437
|
+
{HB_TAG('c','c','q',' '), HB_TAG('A','R','K',' ')}, /* Chaungtha (retired code) -> Rakhine */
|
|
438
|
+
{HB_TAG('c','d','o',' '), HB_TAG('Z','H','S',' ')}, /* Min Dong Chinese -> Chinese, Simplified */
|
|
439
|
+
/*{HB_TAG('c','e','b',' '), HB_TAG('C','E','B',' ')},*/ /* Cebuano */
|
|
440
|
+
{HB_TAG('c','e','k',' '), HB_TAG('Q','I','N',' ')}, /* Eastern Khumi Chin -> Chin */
|
|
441
|
+
{HB_TAG('c','e','y',' '), HB_TAG('Q','I','N',' ')}, /* Ekai Chin -> Chin */
|
|
442
|
+
{HB_TAG('c','f','m',' '), HB_TAG('H','A','L',' ')}, /* Halam (Falam Chin) */
|
|
443
|
+
{HB_TAG('c','f','m',' '), HB_TAG('Q','I','N',' ')}, /* Falam Chin -> Chin */
|
|
444
|
+
/*{HB_TAG('c','g','g',' '), HB_TAG('C','G','G',' ')},*/ /* Chiga */
|
|
445
|
+
{HB_TAG('c','h','f',' '), HB_TAG('M','Y','N',' ')}, /* Tabasco Chontal -> Mayan */
|
|
446
|
+
{HB_TAG('c','h','g',' '), HB_TAG_NONE }, /* Chagatai != Chaha Gurage */
|
|
447
|
+
{HB_TAG('c','h','h',' '), HB_TAG_NONE }, /* Chinook != Chattisgarhi */
|
|
448
|
+
{HB_TAG('c','h','j',' '), HB_TAG('C','C','H','N')}, /* Ojitlán Chinantec -> Chinantec */
|
|
449
|
+
{HB_TAG('c','h','k',' '), HB_TAG('C','H','K','0')}, /* Chuukese */
|
|
450
|
+
{HB_TAG('c','h','m',' '), HB_TAG('H','M','A',' ')}, /* Mari (Russia) [macrolanguage] -> High Mari */
|
|
451
|
+
{HB_TAG('c','h','m',' '), HB_TAG('L','M','A',' ')}, /* Mari (Russia) [macrolanguage] -> Low Mari */
|
|
452
|
+
{HB_TAG('c','h','n',' '), HB_TAG('C','P','P',' ')}, /* Chinook jargon -> Creoles */
|
|
453
|
+
/*{HB_TAG('c','h','o',' '), HB_TAG('C','H','O',' ')},*/ /* Choctaw */
|
|
454
|
+
{HB_TAG('c','h','p',' '), HB_TAG('C','H','P',' ')}, /* Chipewyan */
|
|
455
|
+
{HB_TAG('c','h','p',' '), HB_TAG('S','A','Y',' ')}, /* Chipewyan -> Sayisi */
|
|
456
|
+
{HB_TAG('c','h','p',' '), HB_TAG('A','T','H',' ')}, /* Chipewyan -> Athapaskan */
|
|
457
|
+
{HB_TAG('c','h','q',' '), HB_TAG('C','C','H','N')}, /* Quiotepec Chinantec -> Chinantec */
|
|
458
|
+
/*{HB_TAG('c','h','r',' '), HB_TAG('C','H','R',' ')},*/ /* Cherokee */
|
|
459
|
+
/*{HB_TAG('c','h','y',' '), HB_TAG('C','H','Y',' ')},*/ /* Cheyenne */
|
|
460
|
+
{HB_TAG('c','h','z',' '), HB_TAG('C','C','H','N')}, /* Ozumacín Chinantec -> Chinantec */
|
|
461
|
+
{HB_TAG('c','i','w',' '), HB_TAG('O','J','B',' ')}, /* Chippewa -> Ojibway */
|
|
462
|
+
/*{HB_TAG('c','j','a',' '), HB_TAG('C','J','A',' ')},*/ /* Western Cham */
|
|
463
|
+
/*{HB_TAG('c','j','m',' '), HB_TAG('C','J','M',' ')},*/ /* Eastern Cham */
|
|
464
|
+
{HB_TAG('c','j','y',' '), HB_TAG('Z','H','S',' ')}, /* Jinyu Chinese -> Chinese, Simplified */
|
|
465
|
+
{HB_TAG('c','k','a',' '), HB_TAG('Q','I','N',' ')}, /* Khumi Awa Chin (retired code) -> Chin */
|
|
466
|
+
{HB_TAG('c','k','b',' '), HB_TAG('K','U','R',' ')}, /* Central Kurdish -> Kurdish */
|
|
467
|
+
{HB_TAG('c','k','n',' '), HB_TAG('Q','I','N',' ')}, /* Kaang Chin -> Chin */
|
|
468
|
+
{HB_TAG('c','k','s',' '), HB_TAG('C','P','P',' ')}, /* Tayo -> Creoles */
|
|
469
|
+
{HB_TAG('c','k','t',' '), HB_TAG('C','H','K',' ')}, /* Chukot -> Chukchi */
|
|
470
|
+
{HB_TAG('c','k','z',' '), HB_TAG('M','Y','N',' ')}, /* Cakchiquel-Quiché Mixed Language -> Mayan */
|
|
471
|
+
{HB_TAG('c','l','c',' '), HB_TAG('A','T','H',' ')}, /* Chilcotin -> Athapaskan */
|
|
472
|
+
{HB_TAG('c','l','d',' '), HB_TAG('S','Y','R',' ')}, /* Chaldean Neo-Aramaic -> Syriac */
|
|
473
|
+
{HB_TAG('c','l','e',' '), HB_TAG('C','C','H','N')}, /* Lealao Chinantec -> Chinantec */
|
|
474
|
+
{HB_TAG('c','l','j',' '), HB_TAG('Q','I','N',' ')}, /* Laitu Chin -> Chin */
|
|
475
|
+
{HB_TAG('c','l','s',' '), HB_TAG('S','A','N',' ')}, /* Classical Sanskrit -> Sanskrit */
|
|
476
|
+
{HB_TAG('c','l','t',' '), HB_TAG('Q','I','N',' ')}, /* Lautu Chin -> Chin */
|
|
477
|
+
/*{HB_TAG('c','m','i',' '), HB_TAG('C','M','I',' ')},*/ /* Emberá-Chamí */
|
|
478
|
+
{HB_TAG('c','m','n',' '), HB_TAG('Z','H','S',' ')}, /* Mandarin Chinese -> Chinese, Simplified */
|
|
479
|
+
{HB_TAG('c','m','r',' '), HB_TAG('Q','I','N',' ')}, /* Mro-Khimi Chin -> Chin */
|
|
480
|
+
{HB_TAG('c','n','b',' '), HB_TAG('Q','I','N',' ')}, /* Chinbon Chin -> Chin */
|
|
481
|
+
{HB_TAG('c','n','h',' '), HB_TAG('Q','I','N',' ')}, /* Hakha Chin -> Chin */
|
|
482
|
+
{HB_TAG('c','n','k',' '), HB_TAG('Q','I','N',' ')}, /* Khumi Chin -> Chin */
|
|
483
|
+
{HB_TAG('c','n','l',' '), HB_TAG('C','C','H','N')}, /* Lalana Chinantec -> Chinantec */
|
|
484
|
+
{HB_TAG('c','n','p',' '), HB_TAG('Z','H','S',' ')}, /* Northern Ping Chinese -> Chinese, Simplified */
|
|
485
|
+
{HB_TAG('c','n','r',' '), HB_TAG('S','R','B',' ')}, /* Montenegrin -> Serbian */
|
|
486
|
+
{HB_TAG('c','n','t',' '), HB_TAG('C','C','H','N')}, /* Tepetotutla Chinantec -> Chinantec */
|
|
487
|
+
{HB_TAG('c','n','u',' '), HB_TAG('B','B','R',' ')}, /* Chenoua -> Berber */
|
|
488
|
+
{HB_TAG('c','n','w',' '), HB_TAG('Q','I','N',' ')}, /* Ngawn Chin -> Chin */
|
|
489
|
+
{HB_TAG('c','o','a',' '), HB_TAG('M','L','Y',' ')}, /* Cocos Islands Malay -> Malay */
|
|
490
|
+
{HB_TAG('c','o','b',' '), HB_TAG('M','Y','N',' ')}, /* Chicomuceltec -> Mayan */
|
|
491
|
+
/*{HB_TAG('c','o','o',' '), HB_TAG('C','O','O',' ')},*/ /* Comox */
|
|
492
|
+
/*{HB_TAG('c','o','p',' '), HB_TAG('C','O','P',' ')},*/ /* Coptic */
|
|
493
|
+
{HB_TAG('c','o','q',' '), HB_TAG('A','T','H',' ')}, /* Coquille -> Athapaskan */
|
|
494
|
+
{HB_TAG('c','p','a',' '), HB_TAG('C','C','H','N')}, /* Palantla Chinantec -> Chinantec */
|
|
495
|
+
{HB_TAG('c','p','e',' '), HB_TAG('C','P','P',' ')}, /* English-based creoles and pidgins [collection] -> Creoles */
|
|
496
|
+
{HB_TAG('c','p','f',' '), HB_TAG('C','P','P',' ')}, /* French-based creoles and pidgins [collection] -> Creoles */
|
|
497
|
+
{HB_TAG('c','p','i',' '), HB_TAG('C','P','P',' ')}, /* Chinese Pidgin English -> Creoles */
|
|
498
|
+
/*{HB_TAG('c','p','p',' '), HB_TAG('C','P','P',' ')},*/ /* Portuguese-based creoles and pidgins [collection] -> Creoles */
|
|
499
|
+
{HB_TAG('c','p','x',' '), HB_TAG('Z','H','S',' ')}, /* Pu-Xian Chinese -> Chinese, Simplified */
|
|
500
|
+
{HB_TAG('c','q','d',' '), HB_TAG('H','M','N',' ')}, /* Chuanqiandian Cluster Miao -> Hmong */
|
|
501
|
+
{HB_TAG('c','q','u',' '), HB_TAG('Q','U','H',' ')}, /* Chilean Quechua (retired code) -> Quechua (Bolivia) */
|
|
502
|
+
{HB_TAG('c','q','u',' '), HB_TAG('Q','U','Z',' ')}, /* Chilean Quechua (retired code) -> Quechua */
|
|
503
|
+
{HB_TAG('c','r','h',' '), HB_TAG('C','R','T',' ')}, /* Crimean Tatar */
|
|
504
|
+
{HB_TAG('c','r','i',' '), HB_TAG('C','P','P',' ')}, /* Sãotomense -> Creoles */
|
|
505
|
+
{HB_TAG('c','r','j',' '), HB_TAG('E','C','R',' ')}, /* Southern East Cree -> Eastern Cree */
|
|
506
|
+
{HB_TAG('c','r','j',' '), HB_TAG('Y','C','R',' ')}, /* Southern East Cree -> Y-Cree */
|
|
507
|
+
{HB_TAG('c','r','j',' '), HB_TAG('C','R','E',' ')}, /* Southern East Cree -> Cree */
|
|
508
|
+
{HB_TAG('c','r','k',' '), HB_TAG('W','C','R',' ')}, /* Plains Cree -> West-Cree */
|
|
509
|
+
{HB_TAG('c','r','k',' '), HB_TAG('Y','C','R',' ')}, /* Plains Cree -> Y-Cree */
|
|
510
|
+
{HB_TAG('c','r','k',' '), HB_TAG('C','R','E',' ')}, /* Plains Cree -> Cree */
|
|
511
|
+
{HB_TAG('c','r','l',' '), HB_TAG('E','C','R',' ')}, /* Northern East Cree -> Eastern Cree */
|
|
512
|
+
{HB_TAG('c','r','l',' '), HB_TAG('Y','C','R',' ')}, /* Northern East Cree -> Y-Cree */
|
|
513
|
+
{HB_TAG('c','r','l',' '), HB_TAG('C','R','E',' ')}, /* Northern East Cree -> Cree */
|
|
514
|
+
{HB_TAG('c','r','m',' '), HB_TAG('M','C','R',' ')}, /* Moose Cree */
|
|
515
|
+
{HB_TAG('c','r','m',' '), HB_TAG('L','C','R',' ')}, /* Moose Cree -> L-Cree */
|
|
516
|
+
{HB_TAG('c','r','m',' '), HB_TAG('C','R','E',' ')}, /* Moose Cree -> Cree */
|
|
517
|
+
{HB_TAG('c','r','p',' '), HB_TAG('C','P','P',' ')}, /* Creoles and pidgins [collection] -> Creoles */
|
|
518
|
+
{HB_TAG('c','r','r',' '), HB_TAG_NONE }, /* Carolina Algonquian != Carrier */
|
|
519
|
+
{HB_TAG('c','r','s',' '), HB_TAG('C','P','P',' ')}, /* Seselwa Creole French -> Creoles */
|
|
520
|
+
{HB_TAG('c','r','t',' '), HB_TAG_NONE }, /* Iyojwa'ja Chorote != Crimean Tatar */
|
|
521
|
+
{HB_TAG('c','r','x',' '), HB_TAG('C','R','R',' ')}, /* Carrier */
|
|
522
|
+
{HB_TAG('c','r','x',' '), HB_TAG('A','T','H',' ')}, /* Carrier -> Athapaskan */
|
|
523
|
+
{HB_TAG('c','s','a',' '), HB_TAG('C','C','H','N')}, /* Chiltepec Chinantec -> Chinantec */
|
|
524
|
+
/*{HB_TAG('c','s','b',' '), HB_TAG('C','S','B',' ')},*/ /* Kashubian */
|
|
525
|
+
{HB_TAG('c','s','h',' '), HB_TAG('Q','I','N',' ')}, /* Asho Chin -> Chin */
|
|
526
|
+
{HB_TAG('c','s','j',' '), HB_TAG('Q','I','N',' ')}, /* Songlai Chin -> Chin */
|
|
527
|
+
{HB_TAG('c','s','l',' '), HB_TAG_NONE }, /* Chinese Sign Language != Church Slavonic */
|
|
528
|
+
{HB_TAG('c','s','o',' '), HB_TAG('C','C','H','N')}, /* Sochiapam Chinantec -> Chinantec */
|
|
529
|
+
{HB_TAG('c','s','p',' '), HB_TAG('Z','H','S',' ')}, /* Southern Ping Chinese -> Chinese, Simplified */
|
|
530
|
+
{HB_TAG('c','s','v',' '), HB_TAG('Q','I','N',' ')}, /* Sumtu Chin -> Chin */
|
|
531
|
+
{HB_TAG('c','s','w',' '), HB_TAG('N','C','R',' ')}, /* Swampy Cree -> N-Cree */
|
|
532
|
+
{HB_TAG('c','s','w',' '), HB_TAG('N','H','C',' ')}, /* Swampy Cree -> Norway House Cree */
|
|
533
|
+
{HB_TAG('c','s','w',' '), HB_TAG('C','R','E',' ')}, /* Swampy Cree -> Cree */
|
|
534
|
+
{HB_TAG('c','s','y',' '), HB_TAG('Q','I','N',' ')}, /* Siyin Chin -> Chin */
|
|
535
|
+
{HB_TAG('c','t','c',' '), HB_TAG('A','T','H',' ')}, /* Chetco -> Athapaskan */
|
|
536
|
+
{HB_TAG('c','t','d',' '), HB_TAG('Q','I','N',' ')}, /* Tedim Chin -> Chin */
|
|
537
|
+
{HB_TAG('c','t','e',' '), HB_TAG('C','C','H','N')}, /* Tepinapa Chinantec -> Chinantec */
|
|
538
|
+
/*{HB_TAG('c','t','g',' '), HB_TAG('C','T','G',' ')},*/ /* Chittagonian */
|
|
539
|
+
{HB_TAG('c','t','h',' '), HB_TAG('Q','I','N',' ')}, /* Thaiphum Chin -> Chin */
|
|
540
|
+
{HB_TAG('c','t','l',' '), HB_TAG('C','C','H','N')}, /* Tlacoatzintepec Chinantec -> Chinantec */
|
|
541
|
+
/*{HB_TAG('c','t','o',' '), HB_TAG('C','T','O',' ')},*/ /* Emberá-Catío */
|
|
542
|
+
{HB_TAG('c','t','s',' '), HB_TAG('B','I','K',' ')}, /* Northern Catanduanes Bikol -> Bikol */
|
|
543
|
+
/*{HB_TAG('c','t','t',' '), HB_TAG('C','T','T',' ')},*/ /* Wayanad Chetti */
|
|
544
|
+
{HB_TAG('c','t','u',' '), HB_TAG('M','Y','N',' ')}, /* Chol -> Mayan */
|
|
545
|
+
{HB_TAG('c','u','c',' '), HB_TAG('C','C','H','N')}, /* Usila Chinantec -> Chinantec */
|
|
546
|
+
/*{HB_TAG('c','u','k',' '), HB_TAG('C','U','K',' ')},*/ /* San Blas Kuna */
|
|
547
|
+
{HB_TAG('c','v','n',' '), HB_TAG('C','C','H','N')}, /* Valle Nacional Chinantec -> Chinantec */
|
|
548
|
+
{HB_TAG('c','w','d',' '), HB_TAG('D','C','R',' ')}, /* Woods Cree */
|
|
549
|
+
{HB_TAG('c','w','d',' '), HB_TAG('T','C','R',' ')}, /* Woods Cree -> TH-Cree */
|
|
550
|
+
{HB_TAG('c','w','d',' '), HB_TAG('C','R','E',' ')}, /* Woods Cree -> Cree */
|
|
551
|
+
{HB_TAG('c','z','h',' '), HB_TAG('Z','H','S',' ')}, /* Huizhou Chinese -> Chinese, Simplified */
|
|
552
|
+
{HB_TAG('c','z','o',' '), HB_TAG('Z','H','S',' ')}, /* Min Zhong Chinese -> Chinese, Simplified */
|
|
553
|
+
{HB_TAG('c','z','t',' '), HB_TAG('Q','I','N',' ')}, /* Zotung Chin -> Chin */
|
|
554
|
+
/*{HB_TAG('d','a','g',' '), HB_TAG('D','A','G',' ')},*/ /* Dagbani */
|
|
555
|
+
{HB_TAG('d','a','o',' '), HB_TAG('Q','I','N',' ')}, /* Daai Chin -> Chin */
|
|
556
|
+
{HB_TAG('d','a','p',' '), HB_TAG('N','I','S',' ')}, /* Nisi (India) (retired code) */
|
|
557
|
+
/*{HB_TAG('d','a','r',' '), HB_TAG('D','A','R',' ')},*/ /* Dargwa */
|
|
558
|
+
/*{HB_TAG('d','a','x',' '), HB_TAG('D','A','X',' ')},*/ /* Dayi */
|
|
559
|
+
{HB_TAG('d','c','r',' '), HB_TAG('C','P','P',' ')}, /* Negerhollands -> Creoles */
|
|
560
|
+
{HB_TAG('d','e','n',' '), HB_TAG('S','L','A',' ')}, /* Slave (Athapascan) [macrolanguage] -> Slavey */
|
|
561
|
+
{HB_TAG('d','e','n',' '), HB_TAG('A','T','H',' ')}, /* Slave (Athapascan) [macrolanguage] -> Athapaskan */
|
|
562
|
+
{HB_TAG('d','e','p',' '), HB_TAG('C','P','P',' ')}, /* Pidgin Delaware -> Creoles */
|
|
563
|
+
{HB_TAG('d','g','o',' '), HB_TAG('D','G','O',' ')}, /* Dogri (individual language) */
|
|
564
|
+
{HB_TAG('d','g','o',' '), HB_TAG('D','G','R',' ')}, /* Dogri (macrolanguage) */
|
|
565
|
+
{HB_TAG('d','g','r',' '), HB_TAG('A','T','H',' ')}, /* Tlicho -> Athapaskan */
|
|
566
|
+
{HB_TAG('d','h','d',' '), HB_TAG('M','A','W',' ')}, /* Dhundari -> Marwari */
|
|
567
|
+
/*{HB_TAG('d','h','g',' '), HB_TAG('D','H','G',' ')},*/ /* Dhangu */
|
|
568
|
+
{HB_TAG('d','h','v',' '), HB_TAG_NONE }, /* Dehu != Divehi (Dhivehi, Maldivian) (deprecated) */
|
|
569
|
+
{HB_TAG('d','i','b',' '), HB_TAG('D','N','K',' ')}, /* South Central Dinka -> Dinka */
|
|
570
|
+
{HB_TAG('d','i','k',' '), HB_TAG('D','N','K',' ')}, /* Southwestern Dinka -> Dinka */
|
|
571
|
+
{HB_TAG('d','i','n',' '), HB_TAG('D','N','K',' ')}, /* Dinka [macrolanguage] */
|
|
572
|
+
{HB_TAG('d','i','p',' '), HB_TAG('D','N','K',' ')}, /* Northeastern Dinka -> Dinka */
|
|
573
|
+
{HB_TAG('d','i','q',' '), HB_TAG('D','I','Q',' ')}, /* Dimli */
|
|
574
|
+
{HB_TAG('d','i','q',' '), HB_TAG('Z','Z','A',' ')}, /* Dimli -> Zazaki */
|
|
575
|
+
{HB_TAG('d','i','w',' '), HB_TAG('D','N','K',' ')}, /* Northwestern Dinka -> Dinka */
|
|
576
|
+
{HB_TAG('d','j','e',' '), HB_TAG('D','J','R',' ')}, /* Zarma */
|
|
577
|
+
{HB_TAG('d','j','k',' '), HB_TAG('C','P','P',' ')}, /* Eastern Maroon Creole -> Creoles */
|
|
578
|
+
{HB_TAG('d','j','r',' '), HB_TAG('D','J','R','0')}, /* Djambarrpuyngu */
|
|
579
|
+
{HB_TAG('d','k','s',' '), HB_TAG('D','N','K',' ')}, /* Southeastern Dinka -> Dinka */
|
|
580
|
+
{HB_TAG('d','n','g',' '), HB_TAG('D','U','N',' ')}, /* Dungan */
|
|
581
|
+
/*{HB_TAG('d','n','j',' '), HB_TAG('D','N','J',' ')},*/ /* Dan */
|
|
582
|
+
{HB_TAG('d','n','k',' '), HB_TAG_NONE }, /* Dengka != Dinka */
|
|
583
|
+
{HB_TAG('d','o','i',' '), HB_TAG('D','G','R',' ')}, /* Dogri (macrolanguage) [macrolanguage] */
|
|
584
|
+
{HB_TAG('d','r','h',' '), HB_TAG('M','N','G',' ')}, /* Darkhat (retired code) -> Mongolian */
|
|
585
|
+
{HB_TAG('d','r','i',' '), HB_TAG_NONE }, /* C'Lela != Dari */
|
|
586
|
+
{HB_TAG('d','r','w',' '), HB_TAG('D','R','I',' ')}, /* Darwazi (retired code) -> Dari */
|
|
587
|
+
{HB_TAG('d','r','w',' '), HB_TAG('F','A','R',' ')}, /* Darwazi (retired code) -> Persian */
|
|
588
|
+
{HB_TAG('d','s','b',' '), HB_TAG('L','S','B',' ')}, /* Lower Sorbian */
|
|
589
|
+
{HB_TAG('d','t','y',' '), HB_TAG('N','E','P',' ')}, /* Dotyali -> Nepali */
|
|
590
|
+
/*{HB_TAG('d','u','j',' '), HB_TAG('D','U','J',' ')},*/ /* Dhuwal (retired code) */
|
|
591
|
+
{HB_TAG('d','u','n',' '), HB_TAG_NONE }, /* Dusun Deyah != Dungan */
|
|
592
|
+
{HB_TAG('d','u','p',' '), HB_TAG('M','L','Y',' ')}, /* Duano -> Malay */
|
|
593
|
+
{HB_TAG('d','w','k',' '), HB_TAG('K','U','I',' ')}, /* Dawik Kui -> Kui */
|
|
594
|
+
{HB_TAG('d','w','u',' '), HB_TAG('D','U','J',' ')}, /* Dhuwal */
|
|
595
|
+
{HB_TAG('d','w','y',' '), HB_TAG('D','U','J',' ')}, /* Dhuwaya -> Dhuwal */
|
|
596
|
+
{HB_TAG('d','y','u',' '), HB_TAG('J','U','L',' ')}, /* Dyula -> Jula */
|
|
597
|
+
{HB_TAG('d','z','n',' '), HB_TAG_NONE }, /* Dzando != Dzongkha */
|
|
598
|
+
{HB_TAG('e','c','r',' '), HB_TAG_NONE }, /* Eteocretan != Eastern Cree */
|
|
599
|
+
/*{HB_TAG('e','f','i',' '), HB_TAG('E','F','I',' ')},*/ /* Efik */
|
|
600
|
+
{HB_TAG('e','k','k',' '), HB_TAG('E','T','I',' ')}, /* Standard Estonian -> Estonian */
|
|
601
|
+
{HB_TAG('e','k','y',' '), HB_TAG('K','R','N',' ')}, /* Eastern Kayah -> Karen */
|
|
602
|
+
{HB_TAG('e','m','k',' '), HB_TAG('E','M','K',' ')}, /* Eastern Maninkakan */
|
|
603
|
+
{HB_TAG('e','m','k',' '), HB_TAG('M','N','K',' ')}, /* Eastern Maninkakan -> Maninka */
|
|
604
|
+
/*{HB_TAG('e','m','p',' '), HB_TAG('E','M','P',' ')},*/ /* Northern Emberá */
|
|
605
|
+
{HB_TAG('e','m','y',' '), HB_TAG('M','Y','N',' ')}, /* Epigraphic Mayan -> Mayan */
|
|
606
|
+
{HB_TAG('e','n','b',' '), HB_TAG('K','A','L',' ')}, /* Markweeta -> Kalenjin */
|
|
607
|
+
{HB_TAG('e','n','f',' '), HB_TAG('F','N','E',' ')}, /* Forest Enets */
|
|
608
|
+
{HB_TAG('e','n','h',' '), HB_TAG('T','N','E',' ')}, /* Tundra Enets */
|
|
609
|
+
{HB_TAG('e','s','g',' '), HB_TAG('G','O','N',' ')}, /* Aheri Gondi -> Gondi */
|
|
610
|
+
{HB_TAG('e','s','i',' '), HB_TAG('I','P','K',' ')}, /* North Alaskan Inupiatun -> Inupiat */
|
|
611
|
+
{HB_TAG('e','s','k',' '), HB_TAG('I','P','K',' ')}, /* Northwest Alaska Inupiatun -> Inupiat */
|
|
612
|
+
/*{HB_TAG('e','s','u',' '), HB_TAG('E','S','U',' ')},*/ /* Central Yupik */
|
|
613
|
+
{HB_TAG('e','t','o',' '), HB_TAG('B','T','I',' ')}, /* Eton (Cameroon) -> Beti */
|
|
614
|
+
{HB_TAG('e','u','q',' '), HB_TAG_NONE }, /* Basque [collection] != Basque */
|
|
615
|
+
{HB_TAG('e','v','e',' '), HB_TAG('E','V','N',' ')}, /* Even */
|
|
616
|
+
{HB_TAG('e','v','n',' '), HB_TAG('E','V','K',' ')}, /* Evenki */
|
|
617
|
+
{HB_TAG('e','w','o',' '), HB_TAG('B','T','I',' ')}, /* Ewondo -> Beti */
|
|
618
|
+
{HB_TAG('e','y','o',' '), HB_TAG('K','A','L',' ')}, /* Keiyo -> Kalenjin */
|
|
619
|
+
{HB_TAG('f','a','b',' '), HB_TAG('C','P','P',' ')}, /* Fa d'Ambu -> Creoles */
|
|
620
|
+
{HB_TAG('f','a','n',' '), HB_TAG('F','A','N','0')}, /* Fang (Equatorial Guinea) */
|
|
621
|
+
{HB_TAG('f','a','n',' '), HB_TAG('B','T','I',' ')}, /* Fang (Equatorial Guinea) -> Beti */
|
|
622
|
+
{HB_TAG('f','a','r',' '), HB_TAG_NONE }, /* Fataleka != Persian */
|
|
623
|
+
{HB_TAG('f','a','t',' '), HB_TAG('F','A','T',' ')}, /* Fanti */
|
|
624
|
+
{HB_TAG('f','a','t',' '), HB_TAG('A','K','A',' ')}, /* Fanti -> Akan */
|
|
625
|
+
{HB_TAG('f','b','l',' '), HB_TAG('B','I','K',' ')}, /* West Albay Bikol -> Bikol */
|
|
626
|
+
{HB_TAG('f','f','m',' '), HB_TAG('F','U','L',' ')}, /* Maasina Fulfulde -> Fulah */
|
|
627
|
+
{HB_TAG('f','i','l',' '), HB_TAG('P','I','L',' ')}, /* Filipino */
|
|
628
|
+
{HB_TAG('f','l','m',' '), HB_TAG('H','A','L',' ')}, /* Halam (Falam Chin) (retired code) */
|
|
629
|
+
{HB_TAG('f','l','m',' '), HB_TAG('Q','I','N',' ')}, /* Falam Chin (retired code) -> Chin */
|
|
630
|
+
{HB_TAG('f','m','p',' '), HB_TAG('F','M','P',' ')}, /* Fe’fe’ */
|
|
631
|
+
{HB_TAG('f','m','p',' '), HB_TAG('B','M','L',' ')}, /* Fe'fe' -> Bamileke */
|
|
632
|
+
{HB_TAG('f','n','g',' '), HB_TAG('C','P','P',' ')}, /* Fanagalo -> Creoles */
|
|
633
|
+
/*{HB_TAG('f','o','n',' '), HB_TAG('F','O','N',' ')},*/ /* Fon */
|
|
634
|
+
{HB_TAG('f','o','s',' '), HB_TAG_NONE }, /* Siraya != Faroese */
|
|
635
|
+
{HB_TAG('f','p','e',' '), HB_TAG('C','P','P',' ')}, /* Fernando Po Creole English -> Creoles */
|
|
636
|
+
/*{HB_TAG('f','r','c',' '), HB_TAG('F','R','C',' ')},*/ /* Cajun French */
|
|
637
|
+
/*{HB_TAG('f','r','p',' '), HB_TAG('F','R','P',' ')},*/ /* Arpitan */
|
|
638
|
+
{HB_TAG('f','u','b',' '), HB_TAG('F','U','L',' ')}, /* Adamawa Fulfulde -> Fulah */
|
|
639
|
+
{HB_TAG('f','u','c',' '), HB_TAG('F','U','L',' ')}, /* Pulaar -> Fulah */
|
|
640
|
+
{HB_TAG('f','u','e',' '), HB_TAG('F','U','L',' ')}, /* Borgu Fulfulde -> Fulah */
|
|
641
|
+
{HB_TAG('f','u','f',' '), HB_TAG('F','T','A',' ')}, /* Pular -> Futa */
|
|
642
|
+
{HB_TAG('f','u','f',' '), HB_TAG('F','U','L',' ')}, /* Pular -> Fulah */
|
|
643
|
+
{HB_TAG('f','u','h',' '), HB_TAG('F','U','L',' ')}, /* Western Niger Fulfulde -> Fulah */
|
|
644
|
+
{HB_TAG('f','u','i',' '), HB_TAG('F','U','L',' ')}, /* Bagirmi Fulfulde -> Fulah */
|
|
645
|
+
{HB_TAG('f','u','q',' '), HB_TAG('F','U','L',' ')}, /* Central-Eastern Niger Fulfulde -> Fulah */
|
|
646
|
+
{HB_TAG('f','u','r',' '), HB_TAG('F','R','L',' ')}, /* Friulian */
|
|
647
|
+
{HB_TAG('f','u','v',' '), HB_TAG('F','U','V',' ')}, /* Nigerian Fulfulde */
|
|
648
|
+
{HB_TAG('f','u','v',' '), HB_TAG('F','U','L',' ')}, /* Nigerian Fulfulde -> Fulah */
|
|
649
|
+
{HB_TAG('g','a','a',' '), HB_TAG('G','A','D',' ')}, /* Ga */
|
|
650
|
+
{HB_TAG('g','a','c',' '), HB_TAG('C','P','P',' ')}, /* Mixed Great Andamanese -> Creoles */
|
|
651
|
+
{HB_TAG('g','a','d',' '), HB_TAG_NONE }, /* Gaddang != Ga */
|
|
652
|
+
{HB_TAG('g','a','e',' '), HB_TAG_NONE }, /* Guarequena != Scottish Gaelic */
|
|
653
|
+
/*{HB_TAG('g','a','g',' '), HB_TAG('G','A','G',' ')},*/ /* Gagauz */
|
|
654
|
+
{HB_TAG('g','a','l',' '), HB_TAG_NONE }, /* Galolen != Galician */
|
|
655
|
+
{HB_TAG('g','a','n',' '), HB_TAG('Z','H','S',' ')}, /* Gan Chinese -> Chinese, Simplified */
|
|
656
|
+
{HB_TAG('g','a','r',' '), HB_TAG_NONE }, /* Galeya != Garshuni */
|
|
657
|
+
{HB_TAG('g','a','w',' '), HB_TAG_NONE }, /* Nobonob != Garhwali */
|
|
658
|
+
{HB_TAG('g','a','x',' '), HB_TAG('O','R','O',' ')}, /* Borana-Arsi-Guji Oromo -> Oromo */
|
|
659
|
+
{HB_TAG('g','a','z',' '), HB_TAG('O','R','O',' ')}, /* West Central Oromo -> Oromo */
|
|
660
|
+
{HB_TAG('g','b','m',' '), HB_TAG('G','A','W',' ')}, /* Garhwali */
|
|
661
|
+
{HB_TAG('g','c','e',' '), HB_TAG('A','T','H',' ')}, /* Galice -> Athapaskan */
|
|
662
|
+
{HB_TAG('g','c','f',' '), HB_TAG('C','P','P',' ')}, /* Guadeloupean Creole French -> Creoles */
|
|
663
|
+
{HB_TAG('g','c','l',' '), HB_TAG('C','P','P',' ')}, /* Grenadian Creole English -> Creoles */
|
|
664
|
+
{HB_TAG('g','c','r',' '), HB_TAG('C','P','P',' ')}, /* Guianese Creole French -> Creoles */
|
|
665
|
+
{HB_TAG('g','d','a',' '), HB_TAG('R','A','J',' ')}, /* Gade Lohar -> Rajasthani */
|
|
666
|
+
/*{HB_TAG('g','e','z',' '), HB_TAG('G','E','Z',' ')},*/ /* Geez */
|
|
667
|
+
{HB_TAG('g','g','o',' '), HB_TAG('G','O','N',' ')}, /* Southern Gondi (retired code) -> Gondi */
|
|
668
|
+
{HB_TAG('g','h','a',' '), HB_TAG('B','B','R',' ')}, /* Ghadamès -> Berber */
|
|
669
|
+
{HB_TAG('g','h','c',' '), HB_TAG('I','R','T',' ')}, /* Hiberno-Scottish Gaelic -> Irish Traditional */
|
|
670
|
+
{HB_TAG('g','h','k',' '), HB_TAG('K','R','N',' ')}, /* Geko Karen -> Karen */
|
|
671
|
+
{HB_TAG('g','h','o',' '), HB_TAG('B','B','R',' ')}, /* Ghomara -> Berber */
|
|
672
|
+
{HB_TAG('g','i','b',' '), HB_TAG('C','P','P',' ')}, /* Gibanawa -> Creoles */
|
|
673
|
+
/*{HB_TAG('g','i','h',' '), HB_TAG('G','I','H',' ')},*/ /* Githabul */
|
|
674
|
+
{HB_TAG('g','i','l',' '), HB_TAG('G','I','L','0')}, /* Kiribati (Gilbertese) */
|
|
675
|
+
{HB_TAG('g','j','u',' '), HB_TAG('R','A','J',' ')}, /* Gujari -> Rajasthani */
|
|
676
|
+
{HB_TAG('g','k','p',' '), HB_TAG('G','K','P',' ')}, /* Guinea Kpelle -> Kpelle (Guinea) */
|
|
677
|
+
{HB_TAG('g','k','p',' '), HB_TAG('K','P','L',' ')}, /* Guinea Kpelle -> Kpelle */
|
|
678
|
+
{HB_TAG('g','l','d',' '), HB_TAG('N','A','N',' ')}, /* Nanai */
|
|
679
|
+
/*{HB_TAG('g','l','k',' '), HB_TAG('G','L','K',' ')},*/ /* Gilaki */
|
|
680
|
+
{HB_TAG('g','m','z',' '), HB_TAG_NONE }, /* Mgbolizhia != Gumuz */
|
|
681
|
+
{HB_TAG('g','n','b',' '), HB_TAG('Q','I','N',' ')}, /* Gangte -> Chin */
|
|
682
|
+
/*{HB_TAG('g','n','n',' '), HB_TAG('G','N','N',' ')},*/ /* Gumatj */
|
|
683
|
+
{HB_TAG('g','n','o',' '), HB_TAG('G','O','N',' ')}, /* Northern Gondi -> Gondi */
|
|
684
|
+
{HB_TAG('g','n','w',' '), HB_TAG('G','U','A',' ')}, /* Western Bolivian Guaraní -> Guarani */
|
|
685
|
+
/*{HB_TAG('g','o','g',' '), HB_TAG('G','O','G',' ')},*/ /* Gogo */
|
|
686
|
+
{HB_TAG('g','o','m',' '), HB_TAG('K','O','K',' ')}, /* Goan Konkani -> Konkani */
|
|
687
|
+
/*{HB_TAG('g','o','n',' '), HB_TAG('G','O','N',' ')},*/ /* Gondi [macrolanguage] */
|
|
688
|
+
{HB_TAG('g','o','q',' '), HB_TAG('C','P','P',' ')}, /* Gorap -> Creoles */
|
|
689
|
+
{HB_TAG('g','o','x',' '), HB_TAG('B','A','D','0')}, /* Gobu -> Banda */
|
|
690
|
+
{HB_TAG('g','p','e',' '), HB_TAG('C','P','P',' ')}, /* Ghanaian Pidgin English -> Creoles */
|
|
691
|
+
{HB_TAG('g','r','o',' '), HB_TAG_NONE }, /* Groma != Garo */
|
|
692
|
+
{HB_TAG('g','r','r',' '), HB_TAG('B','B','R',' ')}, /* Taznatit -> Berber */
|
|
693
|
+
{HB_TAG('g','r','t',' '), HB_TAG('G','R','O',' ')}, /* Garo */
|
|
694
|
+
{HB_TAG('g','r','u',' '), HB_TAG('S','O','G',' ')}, /* Kistane -> Sodo Gurage */
|
|
695
|
+
{HB_TAG('g','s','w',' '), HB_TAG('A','L','S',' ')}, /* Alsatian */
|
|
696
|
+
{HB_TAG('g','u','a',' '), HB_TAG_NONE }, /* Shiki != Guarani */
|
|
697
|
+
/*{HB_TAG('g','u','c',' '), HB_TAG('G','U','C',' ')},*/ /* Wayuu */
|
|
698
|
+
/*{HB_TAG('g','u','f',' '), HB_TAG('G','U','F',' ')},*/ /* Gupapuyngu */
|
|
699
|
+
{HB_TAG('g','u','g',' '), HB_TAG('G','U','A',' ')}, /* Paraguayan Guaraní -> Guarani */
|
|
700
|
+
{HB_TAG('g','u','i',' '), HB_TAG('G','U','A',' ')}, /* Eastern Bolivian Guaraní -> Guarani */
|
|
701
|
+
{HB_TAG('g','u','k',' '), HB_TAG('G','M','Z',' ')}, /* Gumuz */
|
|
702
|
+
{HB_TAG('g','u','l',' '), HB_TAG('C','P','P',' ')}, /* Sea Island Creole English -> Creoles */
|
|
703
|
+
{HB_TAG('g','u','n',' '), HB_TAG('G','U','A',' ')}, /* Mbyá Guaraní -> Guarani */
|
|
704
|
+
/*{HB_TAG('g','u','z',' '), HB_TAG('G','U','Z',' ')},*/ /* Gusii */
|
|
705
|
+
{HB_TAG('g','w','i',' '), HB_TAG('A','T','H',' ')}, /* Gwichʼin -> Athapaskan */
|
|
706
|
+
{HB_TAG('g','y','n',' '), HB_TAG('C','P','P',' ')}, /* Guyanese Creole English -> Creoles */
|
|
707
|
+
{HB_TAG('h','a','a',' '), HB_TAG('A','T','H',' ')}, /* Han -> Athapaskan */
|
|
708
|
+
{HB_TAG('h','a','e',' '), HB_TAG('O','R','O',' ')}, /* Eastern Oromo -> Oromo */
|
|
709
|
+
{HB_TAG('h','a','i',' '), HB_TAG('H','A','I','0')}, /* Haida [macrolanguage] */
|
|
710
|
+
{HB_TAG('h','a','k',' '), HB_TAG('Z','H','S',' ')}, /* Hakka Chinese -> Chinese, Simplified */
|
|
711
|
+
{HB_TAG('h','a','l',' '), HB_TAG_NONE }, /* Halang != Halam (Falam Chin) */
|
|
712
|
+
{HB_TAG('h','a','r',' '), HB_TAG('H','R','I',' ')}, /* Harari */
|
|
713
|
+
/*{HB_TAG('h','a','w',' '), HB_TAG('H','A','W',' ')},*/ /* Hawaiian */
|
|
714
|
+
{HB_TAG('h','a','x',' '), HB_TAG('H','A','I','0')}, /* Southern Haida -> Haida */
|
|
715
|
+
/*{HB_TAG('h','a','y',' '), HB_TAG('H','A','Y',' ')},*/ /* Haya */
|
|
716
|
+
/*{HB_TAG('h','a','z',' '), HB_TAG('H','A','Z',' ')},*/ /* Hazaragi */
|
|
717
|
+
{HB_TAG('h','b','n',' '), HB_TAG_NONE }, /* Heiban != Hammer-Banna */
|
|
718
|
+
{HB_TAG('h','c','a',' '), HB_TAG('C','P','P',' ')}, /* Andaman Creole Hindi -> Creoles */
|
|
719
|
+
{HB_TAG('h','d','n',' '), HB_TAG('H','A','I','0')}, /* Northern Haida -> Haida */
|
|
720
|
+
{HB_TAG('h','e','a',' '), HB_TAG('H','M','N',' ')}, /* Northern Qiandong Miao -> Hmong */
|
|
721
|
+
/*{HB_TAG('h','e','i',' '), HB_TAG('H','E','I',' ')},*/ /* Heiltsuk */
|
|
722
|
+
/*{HB_TAG('h','i','l',' '), HB_TAG('H','I','L',' ')},*/ /* Hiligaynon */
|
|
723
|
+
{HB_TAG('h','j','i',' '), HB_TAG('M','L','Y',' ')}, /* Haji -> Malay */
|
|
724
|
+
{HB_TAG('h','l','t',' '), HB_TAG('Q','I','N',' ')}, /* Matu Chin -> Chin */
|
|
725
|
+
{HB_TAG('h','m','a',' '), HB_TAG('H','M','N',' ')}, /* Southern Mashan Hmong -> Hmong */
|
|
726
|
+
{HB_TAG('h','m','c',' '), HB_TAG('H','M','N',' ')}, /* Central Huishui Hmong -> Hmong */
|
|
727
|
+
{HB_TAG('h','m','d',' '), HB_TAG('H','M','D',' ')}, /* Large Flowery Miao -> A-Hmao */
|
|
728
|
+
{HB_TAG('h','m','d',' '), HB_TAG('H','M','N',' ')}, /* Large Flowery Miao -> Hmong */
|
|
729
|
+
{HB_TAG('h','m','e',' '), HB_TAG('H','M','N',' ')}, /* Eastern Huishui Hmong -> Hmong */
|
|
730
|
+
{HB_TAG('h','m','g',' '), HB_TAG('H','M','N',' ')}, /* Southwestern Guiyang Hmong -> Hmong */
|
|
731
|
+
{HB_TAG('h','m','h',' '), HB_TAG('H','M','N',' ')}, /* Southwestern Huishui Hmong -> Hmong */
|
|
732
|
+
{HB_TAG('h','m','i',' '), HB_TAG('H','M','N',' ')}, /* Northern Huishui Hmong -> Hmong */
|
|
733
|
+
{HB_TAG('h','m','j',' '), HB_TAG('H','M','N',' ')}, /* Ge -> Hmong */
|
|
734
|
+
{HB_TAG('h','m','l',' '), HB_TAG('H','M','N',' ')}, /* Luopohe Hmong -> Hmong */
|
|
735
|
+
{HB_TAG('h','m','m',' '), HB_TAG('H','M','N',' ')}, /* Central Mashan Hmong -> Hmong */
|
|
736
|
+
/*{HB_TAG('h','m','n',' '), HB_TAG('H','M','N',' ')},*/ /* Hmong [macrolanguage] */
|
|
737
|
+
{HB_TAG('h','m','p',' '), HB_TAG('H','M','N',' ')}, /* Northern Mashan Hmong -> Hmong */
|
|
738
|
+
{HB_TAG('h','m','q',' '), HB_TAG('H','M','N',' ')}, /* Eastern Qiandong Miao -> Hmong */
|
|
739
|
+
{HB_TAG('h','m','r',' '), HB_TAG('Q','I','N',' ')}, /* Hmar -> Chin */
|
|
740
|
+
{HB_TAG('h','m','s',' '), HB_TAG('H','M','N',' ')}, /* Southern Qiandong Miao -> Hmong */
|
|
741
|
+
{HB_TAG('h','m','w',' '), HB_TAG('H','M','N',' ')}, /* Western Mashan Hmong -> Hmong */
|
|
742
|
+
{HB_TAG('h','m','y',' '), HB_TAG('H','M','N',' ')}, /* Southern Guiyang Hmong -> Hmong */
|
|
743
|
+
{HB_TAG('h','m','z',' '), HB_TAG('H','M','Z',' ')}, /* Hmong Shua -> Hmong Shuat */
|
|
744
|
+
{HB_TAG('h','m','z',' '), HB_TAG('H','M','N',' ')}, /* Hmong Shua -> Hmong */
|
|
745
|
+
/*{HB_TAG('h','n','d',' '), HB_TAG('H','N','D',' ')},*/ /* Southern Hindko -> Hindko */
|
|
746
|
+
{HB_TAG('h','n','e',' '), HB_TAG('C','H','H',' ')}, /* Chhattisgarhi -> Chattisgarhi */
|
|
747
|
+
{HB_TAG('h','n','j',' '), HB_TAG('H','M','N',' ')}, /* Hmong Njua -> Hmong */
|
|
748
|
+
{HB_TAG('h','n','o',' '), HB_TAG('H','N','D',' ')}, /* Northern Hindko -> Hindko */
|
|
749
|
+
{HB_TAG('h','o','c',' '), HB_TAG('H','O',' ',' ')}, /* Ho */
|
|
750
|
+
{HB_TAG('h','o','i',' '), HB_TAG('A','T','H',' ')}, /* Holikachuk -> Athapaskan */
|
|
751
|
+
{HB_TAG('h','o','j',' '), HB_TAG('H','A','R',' ')}, /* Hadothi -> Harauti */
|
|
752
|
+
{HB_TAG('h','o','j',' '), HB_TAG('R','A','J',' ')}, /* Hadothi -> Rajasthani */
|
|
753
|
+
{HB_TAG('h','r','a',' '), HB_TAG('Q','I','N',' ')}, /* Hrangkhol -> Chin */
|
|
754
|
+
{HB_TAG('h','r','m',' '), HB_TAG('H','M','N',' ')}, /* Horned Miao -> Hmong */
|
|
755
|
+
{HB_TAG('h','s','b',' '), HB_TAG('U','S','B',' ')}, /* Upper Sorbian */
|
|
756
|
+
{HB_TAG('h','s','n',' '), HB_TAG('Z','H','S',' ')}, /* Xiang Chinese -> Chinese, Simplified */
|
|
757
|
+
{HB_TAG('h','u','j',' '), HB_TAG('H','M','N',' ')}, /* Northern Guiyang Hmong -> Hmong */
|
|
758
|
+
{HB_TAG('h','u','p',' '), HB_TAG('A','T','H',' ')}, /* Hupa -> Athapaskan */
|
|
759
|
+
/*{HB_TAG('h','u','r',' '), HB_TAG('H','U','R',' ')},*/ /* Halkomelem */
|
|
760
|
+
{HB_TAG('h','u','s',' '), HB_TAG('M','Y','N',' ')}, /* Huastec -> Mayan */
|
|
761
|
+
{HB_TAG('h','w','c',' '), HB_TAG('C','P','P',' ')}, /* Hawai'i Creole English -> Creoles */
|
|
762
|
+
{HB_TAG('h','y','w',' '), HB_TAG('H','Y','E',' ')}, /* Western Armenian -> Armenian */
|
|
763
|
+
/*{HB_TAG('i','b','a',' '), HB_TAG('I','B','A',' ')},*/ /* Iban */
|
|
764
|
+
/*{HB_TAG('i','b','b',' '), HB_TAG('I','B','B',' ')},*/ /* Ibibio */
|
|
765
|
+
{HB_TAG('i','b','y',' '), HB_TAG('I','J','O',' ')}, /* Ibani -> Ijo */
|
|
766
|
+
{HB_TAG('i','c','r',' '), HB_TAG('C','P','P',' ')}, /* Islander Creole English -> Creoles */
|
|
767
|
+
{HB_TAG('i','d','a',' '), HB_TAG('L','U','H',' ')}, /* Idakho-Isukha-Tiriki -> Luyia */
|
|
768
|
+
{HB_TAG('i','d','b',' '), HB_TAG('C','P','P',' ')}, /* Indo-Portuguese -> Creoles */
|
|
769
|
+
{HB_TAG('i','g','b',' '), HB_TAG('E','B','I',' ')}, /* Ebira */
|
|
770
|
+
{HB_TAG('i','h','b',' '), HB_TAG('C','P','P',' ')}, /* Iha Based Pidgin -> Creoles */
|
|
771
|
+
{HB_TAG('i','j','c',' '), HB_TAG('I','J','O',' ')}, /* Izon -> Ijo */
|
|
772
|
+
{HB_TAG('i','j','e',' '), HB_TAG('I','J','O',' ')}, /* Biseni -> Ijo */
|
|
773
|
+
{HB_TAG('i','j','n',' '), HB_TAG('I','J','O',' ')}, /* Kalabari -> Ijo */
|
|
774
|
+
/*{HB_TAG('i','j','o',' '), HB_TAG('I','J','O',' ')},*/ /* Ijo [collection] */
|
|
775
|
+
{HB_TAG('i','j','s',' '), HB_TAG('I','J','O',' ')}, /* Southeast Ijo -> Ijo */
|
|
776
|
+
{HB_TAG('i','k','e',' '), HB_TAG('I','N','U',' ')}, /* Eastern Canadian Inuktitut -> Inuktitut */
|
|
777
|
+
{HB_TAG('i','k','e',' '), HB_TAG('I','N','U','K')}, /* Eastern Canadian Inuktitut -> Nunavik Inuktitut */
|
|
778
|
+
{HB_TAG('i','k','t',' '), HB_TAG('I','N','U',' ')}, /* Inuinnaqtun -> Inuktitut */
|
|
779
|
+
/*{HB_TAG('i','l','o',' '), HB_TAG('I','L','O',' ')},*/ /* Iloko -> Ilokano */
|
|
780
|
+
{HB_TAG('i','n','g',' '), HB_TAG('A','T','H',' ')}, /* Degexit'an -> Athapaskan */
|
|
781
|
+
{HB_TAG('i','n','h',' '), HB_TAG('I','N','G',' ')}, /* Ingush */
|
|
782
|
+
{HB_TAG('i','r','i',' '), HB_TAG_NONE }, /* Rigwe != Irish */
|
|
783
|
+
/*{HB_TAG('i','r','u',' '), HB_TAG('I','R','U',' ')},*/ /* Irula */
|
|
784
|
+
{HB_TAG('i','s','m',' '), HB_TAG_NONE }, /* Masimasi != Inari Sami */
|
|
785
|
+
{HB_TAG('i','t','z',' '), HB_TAG('M','Y','N',' ')}, /* Itzá -> Mayan */
|
|
786
|
+
{HB_TAG('i','x','l',' '), HB_TAG('M','Y','N',' ')}, /* Ixil -> Mayan */
|
|
787
|
+
{HB_TAG('j','a','c',' '), HB_TAG('M','Y','N',' ')}, /* Popti' -> Mayan */
|
|
788
|
+
{HB_TAG('j','a','k',' '), HB_TAG('M','L','Y',' ')}, /* Jakun -> Malay */
|
|
789
|
+
{HB_TAG('j','a','m',' '), HB_TAG('J','A','M',' ')}, /* Jamaican Creole English -> Jamaican Creole */
|
|
790
|
+
{HB_TAG('j','a','m',' '), HB_TAG('C','P','P',' ')}, /* Jamaican Creole English -> Creoles */
|
|
791
|
+
{HB_TAG('j','a','n',' '), HB_TAG_NONE }, /* Jandai != Japanese */
|
|
792
|
+
{HB_TAG('j','a','x',' '), HB_TAG('M','L','Y',' ')}, /* Jambi Malay -> Malay */
|
|
793
|
+
{HB_TAG('j','b','e',' '), HB_TAG('B','B','R',' ')}, /* Judeo-Berber -> Berber */
|
|
794
|
+
{HB_TAG('j','b','n',' '), HB_TAG('B','B','R',' ')}, /* Nafusi -> Berber */
|
|
795
|
+
/*{HB_TAG('j','b','o',' '), HB_TAG('J','B','O',' ')},*/ /* Lojban */
|
|
796
|
+
/*{HB_TAG('j','c','t',' '), HB_TAG('J','C','T',' ')},*/ /* Krymchak */
|
|
797
|
+
/*{HB_TAG('j','d','t',' '), HB_TAG('J','D','T',' ')},*/ /* Judeo-Tat */
|
|
798
|
+
{HB_TAG('j','g','o',' '), HB_TAG('B','M','L',' ')}, /* Ngomba -> Bamileke */
|
|
799
|
+
{HB_TAG('j','i','i',' '), HB_TAG_NONE }, /* Jiiddu != Yiddish */
|
|
800
|
+
{HB_TAG('j','k','m',' '), HB_TAG('K','R','N',' ')}, /* Mobwa Karen -> Karen */
|
|
801
|
+
{HB_TAG('j','k','p',' '), HB_TAG('K','R','N',' ')}, /* Paku Karen -> Karen */
|
|
802
|
+
{HB_TAG('j','u','d',' '), HB_TAG_NONE }, /* Worodougou != Ladino */
|
|
803
|
+
{HB_TAG('j','u','l',' '), HB_TAG_NONE }, /* Jirel != Jula */
|
|
804
|
+
{HB_TAG('j','v','d',' '), HB_TAG('C','P','P',' ')}, /* Javindo -> Creoles */
|
|
805
|
+
{HB_TAG('k','a','a',' '), HB_TAG('K','R','K',' ')}, /* Karakalpak */
|
|
806
|
+
{HB_TAG('k','a','b',' '), HB_TAG('K','A','B','0')}, /* Kabyle */
|
|
807
|
+
{HB_TAG('k','a','b',' '), HB_TAG('B','B','R',' ')}, /* Kabyle -> Berber */
|
|
808
|
+
{HB_TAG('k','a','c',' '), HB_TAG_NONE }, /* Kachin != Kachchi */
|
|
809
|
+
{HB_TAG('k','a','m',' '), HB_TAG('K','M','B',' ')}, /* Kamba (Kenya) */
|
|
810
|
+
{HB_TAG('k','a','r',' '), HB_TAG('K','R','N',' ')}, /* Karen [collection] */
|
|
811
|
+
/*{HB_TAG('k','a','w',' '), HB_TAG('K','A','W',' ')},*/ /* Kawi (Old Javanese) */
|
|
812
|
+
/*{HB_TAG('k','b','c',' '), HB_TAG('K','B','C',' ')},*/ /* Kadiwéu */
|
|
813
|
+
{HB_TAG('k','b','d',' '), HB_TAG('K','A','B',' ')}, /* Kabardian */
|
|
814
|
+
{HB_TAG('k','b','y',' '), HB_TAG('K','N','R',' ')}, /* Manga Kanuri -> Kanuri */
|
|
815
|
+
{HB_TAG('k','c','a',' '), HB_TAG('K','H','K',' ')}, /* Khanty -> Khanty-Kazim */
|
|
816
|
+
{HB_TAG('k','c','a',' '), HB_TAG('K','H','S',' ')}, /* Khanty -> Khanty-Shurishkar */
|
|
817
|
+
{HB_TAG('k','c','a',' '), HB_TAG('K','H','V',' ')}, /* Khanty -> Khanty-Vakhi */
|
|
818
|
+
{HB_TAG('k','c','n',' '), HB_TAG('C','P','P',' ')}, /* Nubi -> Creoles */
|
|
819
|
+
/*{HB_TAG('k','d','e',' '), HB_TAG('K','D','E',' ')},*/ /* Makonde */
|
|
820
|
+
{HB_TAG('k','d','r',' '), HB_TAG('K','R','M',' ')}, /* Karaim */
|
|
821
|
+
{HB_TAG('k','d','t',' '), HB_TAG('K','U','Y',' ')}, /* Kuy */
|
|
822
|
+
{HB_TAG('k','e','a',' '), HB_TAG('K','E','A',' ')}, /* Kabuverdianu (Crioulo) */
|
|
823
|
+
{HB_TAG('k','e','a',' '), HB_TAG('C','P','P',' ')}, /* Kabuverdianu -> Creoles */
|
|
824
|
+
{HB_TAG('k','e','b',' '), HB_TAG_NONE }, /* Kélé != Kebena */
|
|
825
|
+
{HB_TAG('k','e','k',' '), HB_TAG('K','E','K',' ')}, /* Kekchi */
|
|
826
|
+
{HB_TAG('k','e','k',' '), HB_TAG('M','Y','N',' ')}, /* Kekchí -> Mayan */
|
|
827
|
+
{HB_TAG('k','e','x',' '), HB_TAG('K','K','N',' ')}, /* Kukna -> Kokni */
|
|
828
|
+
{HB_TAG('k','f','a',' '), HB_TAG('K','O','D',' ')}, /* Kodava -> Kodagu */
|
|
829
|
+
{HB_TAG('k','f','r',' '), HB_TAG('K','A','C',' ')}, /* Kachhi -> Kachchi */
|
|
830
|
+
{HB_TAG('k','f','x',' '), HB_TAG('K','U','L',' ')}, /* Kullu Pahari -> Kulvi */
|
|
831
|
+
{HB_TAG('k','f','y',' '), HB_TAG('K','M','N',' ')}, /* Kumaoni */
|
|
832
|
+
{HB_TAG('k','g','e',' '), HB_TAG_NONE }, /* Komering != Khutsuri Georgian */
|
|
833
|
+
{HB_TAG('k','h','a',' '), HB_TAG('K','S','I',' ')}, /* Khasi */
|
|
834
|
+
{HB_TAG('k','h','b',' '), HB_TAG('X','B','D',' ')}, /* Lü */
|
|
835
|
+
{HB_TAG('k','h','k',' '), HB_TAG('M','N','G',' ')}, /* Halh Mongolian -> Mongolian */
|
|
836
|
+
{HB_TAG('k','h','n',' '), HB_TAG_NONE }, /* Khandesi != Khamti Shan (Microsoft fonts) */
|
|
837
|
+
{HB_TAG('k','h','s',' '), HB_TAG_NONE }, /* Kasua != Khanty-Shurishkar */
|
|
838
|
+
{HB_TAG('k','h','t',' '), HB_TAG('K','H','T',' ')}, /* Khamti -> Khamti Shan */
|
|
839
|
+
{HB_TAG('k','h','t',' '), HB_TAG('K','H','N',' ')}, /* Khamti -> Khamti Shan (Microsoft fonts) */
|
|
840
|
+
{HB_TAG('k','h','v',' '), HB_TAG_NONE }, /* Khvarshi != Khanty-Vakhi */
|
|
841
|
+
/*{HB_TAG('k','h','w',' '), HB_TAG('K','H','W',' ')},*/ /* Khowar */
|
|
842
|
+
{HB_TAG('k','i','s',' '), HB_TAG_NONE }, /* Kis != Kisii */
|
|
843
|
+
{HB_TAG('k','i','u',' '), HB_TAG('K','I','U',' ')}, /* Kirmanjki */
|
|
844
|
+
{HB_TAG('k','i','u',' '), HB_TAG('Z','Z','A',' ')}, /* Kirmanjki -> Zazaki */
|
|
845
|
+
{HB_TAG('k','j','b',' '), HB_TAG('M','Y','N',' ')}, /* Q'anjob'al -> Mayan */
|
|
846
|
+
/*{HB_TAG('k','j','d',' '), HB_TAG('K','J','D',' ')},*/ /* Southern Kiwai */
|
|
847
|
+
{HB_TAG('k','j','h',' '), HB_TAG('K','H','A',' ')}, /* Khakas -> Khakass */
|
|
848
|
+
/*{HB_TAG('k','j','j',' '), HB_TAG('K','J','J',' ')},*/ /* Khinalugh -> Khinalug */
|
|
849
|
+
{HB_TAG('k','j','p',' '), HB_TAG('K','J','P',' ')}, /* Pwo Eastern Karen -> Eastern Pwo Karen */
|
|
850
|
+
{HB_TAG('k','j','p',' '), HB_TAG('K','R','N',' ')}, /* Pwo Eastern Karen -> Karen */
|
|
851
|
+
{HB_TAG('k','j','t',' '), HB_TAG('K','R','N',' ')}, /* Phrae Pwo Karen -> Karen */
|
|
852
|
+
/*{HB_TAG('k','j','z',' '), HB_TAG('K','J','Z',' ')},*/ /* Bumthangkha */
|
|
853
|
+
{HB_TAG('k','k','n',' '), HB_TAG_NONE }, /* Kon Keu != Kokni */
|
|
854
|
+
{HB_TAG('k','k','z',' '), HB_TAG('A','T','H',' ')}, /* Kaska -> Athapaskan */
|
|
855
|
+
{HB_TAG('k','l','m',' '), HB_TAG_NONE }, /* Migum != Kalmyk */
|
|
856
|
+
{HB_TAG('k','l','n',' '), HB_TAG('K','A','L',' ')}, /* Kalenjin [macrolanguage] */
|
|
857
|
+
{HB_TAG('k','m','b',' '), HB_TAG('M','B','N',' ')}, /* Kimbundu -> Mbundu */
|
|
858
|
+
{HB_TAG('k','m','n',' '), HB_TAG_NONE }, /* Awtuw != Kumaoni */
|
|
859
|
+
{HB_TAG('k','m','o',' '), HB_TAG_NONE }, /* Kwoma != Komo */
|
|
860
|
+
{HB_TAG('k','m','r',' '), HB_TAG('K','U','R',' ')}, /* Northern Kurdish -> Kurdish */
|
|
861
|
+
{HB_TAG('k','m','s',' '), HB_TAG_NONE }, /* Kamasau != Komso */
|
|
862
|
+
{HB_TAG('k','m','v',' '), HB_TAG('C','P','P',' ')}, /* Karipúna Creole French -> Creoles */
|
|
863
|
+
{HB_TAG('k','m','w',' '), HB_TAG('K','M','O',' ')}, /* Komo (Democratic Republic of Congo) */
|
|
864
|
+
/*{HB_TAG('k','m','z',' '), HB_TAG('K','M','Z',' ')},*/ /* Khorasani Turkish -> Khorasani Turkic */
|
|
865
|
+
{HB_TAG('k','n','c',' '), HB_TAG('K','N','R',' ')}, /* Central Kanuri -> Kanuri */
|
|
866
|
+
{HB_TAG('k','n','g',' '), HB_TAG('K','O','N','0')}, /* Koongo -> Kongo */
|
|
867
|
+
{HB_TAG('k','n','j',' '), HB_TAG('M','Y','N',' ')}, /* Western Kanjobal -> Mayan */
|
|
868
|
+
{HB_TAG('k','n','n',' '), HB_TAG('K','O','K',' ')}, /* Konkani */
|
|
869
|
+
{HB_TAG('k','n','r',' '), HB_TAG_NONE }, /* Kaningra != Kanuri */
|
|
870
|
+
{HB_TAG('k','o','d',' '), HB_TAG_NONE }, /* Kodi != Kodagu */
|
|
871
|
+
{HB_TAG('k','o','h',' '), HB_TAG_NONE }, /* Koyo != Korean Old Hangul */
|
|
872
|
+
{HB_TAG('k','o','i',' '), HB_TAG('K','O','P',' ')}, /* Komi-Permyak */
|
|
873
|
+
{HB_TAG('k','o','i',' '), HB_TAG('K','O','M',' ')}, /* Komi-Permyak -> Komi */
|
|
874
|
+
/*{HB_TAG('k','o','k',' '), HB_TAG('K','O','K',' ')},*/ /* Konkani [macrolanguage] */
|
|
875
|
+
{HB_TAG('k','o','p',' '), HB_TAG_NONE }, /* Waube != Komi-Permyak */
|
|
876
|
+
/*{HB_TAG('k','o','s',' '), HB_TAG('K','O','S',' ')},*/ /* Kosraean */
|
|
877
|
+
{HB_TAG('k','o','y',' '), HB_TAG('A','T','H',' ')}, /* Koyukon -> Athapaskan */
|
|
878
|
+
{HB_TAG('k','o','z',' '), HB_TAG_NONE }, /* Korak != Komi-Zyrian */
|
|
879
|
+
{HB_TAG('k','p','e',' '), HB_TAG('K','P','L',' ')}, /* Kpelle [macrolanguage] */
|
|
880
|
+
{HB_TAG('k','p','l',' '), HB_TAG_NONE }, /* Kpala != Kpelle */
|
|
881
|
+
{HB_TAG('k','p','p',' '), HB_TAG('K','R','N',' ')}, /* Paku Karen (retired code) -> Karen */
|
|
882
|
+
{HB_TAG('k','p','v',' '), HB_TAG('K','O','Z',' ')}, /* Komi-Zyrian */
|
|
883
|
+
{HB_TAG('k','p','v',' '), HB_TAG('K','O','M',' ')}, /* Komi-Zyrian -> Komi */
|
|
884
|
+
{HB_TAG('k','p','y',' '), HB_TAG('K','Y','K',' ')}, /* Koryak */
|
|
885
|
+
{HB_TAG('k','q','s',' '), HB_TAG('K','I','S',' ')}, /* Northern Kissi -> Kisii */
|
|
886
|
+
{HB_TAG('k','q','y',' '), HB_TAG('K','R','T',' ')}, /* Koorete */
|
|
887
|
+
{HB_TAG('k','r','c',' '), HB_TAG('K','A','R',' ')}, /* Karachay-Balkar -> Karachay */
|
|
888
|
+
{HB_TAG('k','r','c',' '), HB_TAG('B','A','L',' ')}, /* Karachay-Balkar -> Balkar */
|
|
889
|
+
{HB_TAG('k','r','i',' '), HB_TAG('K','R','I',' ')}, /* Krio */
|
|
890
|
+
{HB_TAG('k','r','i',' '), HB_TAG('C','P','P',' ')}, /* Krio -> Creoles */
|
|
891
|
+
{HB_TAG('k','r','k',' '), HB_TAG_NONE }, /* Kerek != Karakalpak */
|
|
892
|
+
/*{HB_TAG('k','r','l',' '), HB_TAG('K','R','L',' ')},*/ /* Karelian */
|
|
893
|
+
{HB_TAG('k','r','m',' '), HB_TAG_NONE }, /* Krim (retired code) != Karaim */
|
|
894
|
+
{HB_TAG('k','r','n',' '), HB_TAG_NONE }, /* Sapo != Karen */
|
|
895
|
+
{HB_TAG('k','r','t',' '), HB_TAG('K','N','R',' ')}, /* Tumari Kanuri -> Kanuri */
|
|
896
|
+
{HB_TAG('k','r','u',' '), HB_TAG('K','U','U',' ')}, /* Kurukh */
|
|
897
|
+
{HB_TAG('k','s','h',' '), HB_TAG('K','S','H','0')}, /* Kölsch -> Ripuarian */
|
|
898
|
+
{HB_TAG('k','s','i',' '), HB_TAG_NONE }, /* Krisa != Khasi */
|
|
899
|
+
{HB_TAG('k','s','m',' '), HB_TAG_NONE }, /* Kumba != Kildin Sami */
|
|
900
|
+
{HB_TAG('k','s','s',' '), HB_TAG('K','I','S',' ')}, /* Southern Kisi -> Kisii */
|
|
901
|
+
{HB_TAG('k','s','w',' '), HB_TAG('K','S','W',' ')}, /* S’gaw Karen */
|
|
902
|
+
{HB_TAG('k','s','w',' '), HB_TAG('K','R','N',' ')}, /* S'gaw Karen -> Karen */
|
|
903
|
+
{HB_TAG('k','t','b',' '), HB_TAG('K','E','B',' ')}, /* Kambaata -> Kebena */
|
|
904
|
+
{HB_TAG('k','t','u',' '), HB_TAG('K','O','N',' ')}, /* Kituba (Democratic Republic of Congo) -> Kikongo */
|
|
905
|
+
{HB_TAG('k','t','w',' '), HB_TAG('A','T','H',' ')}, /* Kato -> Athapaskan */
|
|
906
|
+
{HB_TAG('k','u','i',' '), HB_TAG_NONE }, /* Kuikúro-Kalapálo != Kui */
|
|
907
|
+
{HB_TAG('k','u','l',' '), HB_TAG_NONE }, /* Kulere != Kulvi */
|
|
908
|
+
/*{HB_TAG('k','u','m',' '), HB_TAG('K','U','M',' ')},*/ /* Kumyk */
|
|
909
|
+
{HB_TAG('k','u','u',' '), HB_TAG('A','T','H',' ')}, /* Upper Kuskokwim -> Athapaskan */
|
|
910
|
+
{HB_TAG('k','u','w',' '), HB_TAG('B','A','D','0')}, /* Kpagua -> Banda */
|
|
911
|
+
{HB_TAG('k','u','y',' '), HB_TAG_NONE }, /* Kuuku-Ya'u != Kuy */
|
|
912
|
+
{HB_TAG('k','v','b',' '), HB_TAG('M','L','Y',' ')}, /* Kubu -> Malay */
|
|
913
|
+
{HB_TAG('k','v','l',' '), HB_TAG('K','R','N',' ')}, /* Kayaw -> Karen */
|
|
914
|
+
{HB_TAG('k','v','q',' '), HB_TAG('K','R','N',' ')}, /* Geba Karen -> Karen */
|
|
915
|
+
{HB_TAG('k','v','r',' '), HB_TAG('M','L','Y',' ')}, /* Kerinci -> Malay */
|
|
916
|
+
{HB_TAG('k','v','t',' '), HB_TAG('K','R','N',' ')}, /* Lahta Karen -> Karen */
|
|
917
|
+
{HB_TAG('k','v','u',' '), HB_TAG('K','R','N',' ')}, /* Yinbaw Karen -> Karen */
|
|
918
|
+
{HB_TAG('k','v','y',' '), HB_TAG('K','R','N',' ')}, /* Yintale Karen -> Karen */
|
|
919
|
+
/*{HB_TAG('k','w','k',' '), HB_TAG('K','W','K',' ')},*/ /* Kwakiutl -> Kwakʼwala */
|
|
920
|
+
{HB_TAG('k','w','w',' '), HB_TAG('C','P','P',' ')}, /* Kwinti -> Creoles */
|
|
921
|
+
{HB_TAG('k','w','y',' '), HB_TAG('K','O','N','0')}, /* San Salvador Kongo -> Kongo */
|
|
922
|
+
{HB_TAG('k','x','c',' '), HB_TAG('K','M','S',' ')}, /* Konso -> Komso */
|
|
923
|
+
{HB_TAG('k','x','d',' '), HB_TAG('M','L','Y',' ')}, /* Brunei -> Malay */
|
|
924
|
+
{HB_TAG('k','x','f',' '), HB_TAG('K','R','N',' ')}, /* Manumanaw Karen -> Karen */
|
|
925
|
+
{HB_TAG('k','x','k',' '), HB_TAG('K','R','N',' ')}, /* Zayein Karen -> Karen */
|
|
926
|
+
{HB_TAG('k','x','l',' '), HB_TAG('K','U','U',' ')}, /* Nepali Kurux (retired code) -> Kurukh */
|
|
927
|
+
{HB_TAG('k','x','u',' '), HB_TAG('K','U','I',' ')}, /* Kui (India) (retired code) */
|
|
928
|
+
{HB_TAG('k','y','k',' '), HB_TAG_NONE }, /* Kamayo != Koryak */
|
|
929
|
+
{HB_TAG('k','y','u',' '), HB_TAG('K','Y','U',' ')}, /* Western Kayah */
|
|
930
|
+
{HB_TAG('k','y','u',' '), HB_TAG('K','R','N',' ')}, /* Western Kayah -> Karen */
|
|
931
|
+
{HB_TAG('l','a','c',' '), HB_TAG('M','Y','N',' ')}, /* Lacandon -> Mayan */
|
|
932
|
+
{HB_TAG('l','a','d',' '), HB_TAG('J','U','D',' ')}, /* Ladino */
|
|
933
|
+
{HB_TAG('l','a','h',' '), HB_TAG_NONE }, /* Lahnda [macrolanguage] != Lahuli */
|
|
934
|
+
{HB_TAG('l','a','k',' '), HB_TAG_NONE }, /* Laka (Nigeria) (retired code) != Lak */
|
|
935
|
+
{HB_TAG('l','a','m',' '), HB_TAG_NONE }, /* Lamba != Lambani */
|
|
936
|
+
{HB_TAG('l','a','z',' '), HB_TAG_NONE }, /* Aribwatsa != Laz */
|
|
937
|
+
{HB_TAG('l','b','e',' '), HB_TAG('L','A','K',' ')}, /* Lak */
|
|
938
|
+
{HB_TAG('l','b','j',' '), HB_TAG('L','D','K',' ')}, /* Ladakhi */
|
|
939
|
+
{HB_TAG('l','b','l',' '), HB_TAG('B','I','K',' ')}, /* Libon Bikol -> Bikol */
|
|
940
|
+
{HB_TAG('l','c','e',' '), HB_TAG('M','L','Y',' ')}, /* Loncong -> Malay */
|
|
941
|
+
{HB_TAG('l','c','f',' '), HB_TAG('M','L','Y',' ')}, /* Lubu -> Malay */
|
|
942
|
+
{HB_TAG('l','d','i',' '), HB_TAG('K','O','N','0')}, /* Laari -> Kongo */
|
|
943
|
+
{HB_TAG('l','d','k',' '), HB_TAG_NONE }, /* Leelau != Ladakhi */
|
|
944
|
+
/*{HB_TAG('l','e','f',' '), HB_TAG('L','E','F',' ')},*/ /* Lelemi */
|
|
945
|
+
/*{HB_TAG('l','e','z',' '), HB_TAG('L','E','Z',' ')},*/ /* Lezghian -> Lezgi */
|
|
946
|
+
{HB_TAG('l','i','f',' '), HB_TAG('L','M','B',' ')}, /* Limbu */
|
|
947
|
+
/*{HB_TAG('l','i','j',' '), HB_TAG('L','I','J',' ')},*/ /* Ligurian */
|
|
948
|
+
{HB_TAG('l','i','r',' '), HB_TAG('C','P','P',' ')}, /* Liberian English -> Creoles */
|
|
949
|
+
/*{HB_TAG('l','i','s',' '), HB_TAG('L','I','S',' ')},*/ /* Lisu */
|
|
950
|
+
/*{HB_TAG('l','i','v',' '), HB_TAG('L','I','V',' ')},*/ /* Liv */
|
|
951
|
+
{HB_TAG('l','i','w',' '), HB_TAG('M','L','Y',' ')}, /* Col -> Malay */
|
|
952
|
+
{HB_TAG('l','i','y',' '), HB_TAG('B','A','D','0')}, /* Banda-Bambari -> Banda */
|
|
953
|
+
/*{HB_TAG('l','j','p',' '), HB_TAG('L','J','P',' ')},*/ /* Lampung Api -> Lampung */
|
|
954
|
+
{HB_TAG('l','k','b',' '), HB_TAG('L','U','H',' ')}, /* Kabras -> Luyia */
|
|
955
|
+
/*{HB_TAG('l','k','i',' '), HB_TAG('L','K','I',' ')},*/ /* Laki */
|
|
956
|
+
{HB_TAG('l','k','o',' '), HB_TAG('L','U','H',' ')}, /* Khayo -> Luyia */
|
|
957
|
+
{HB_TAG('l','k','s',' '), HB_TAG('L','U','H',' ')}, /* Kisa -> Luyia */
|
|
958
|
+
{HB_TAG('l','l','d',' '), HB_TAG('L','A','D',' ')}, /* Ladin */
|
|
959
|
+
{HB_TAG('l','m','a',' '), HB_TAG_NONE }, /* East Limba != Low Mari */
|
|
960
|
+
{HB_TAG('l','m','b',' '), HB_TAG_NONE }, /* Merei != Limbu */
|
|
961
|
+
{HB_TAG('l','m','n',' '), HB_TAG('L','A','M',' ')}, /* Lambadi -> Lambani */
|
|
962
|
+
/*{HB_TAG('l','m','o',' '), HB_TAG('L','M','O',' ')},*/ /* Lombard */
|
|
963
|
+
{HB_TAG('l','m','w',' '), HB_TAG_NONE }, /* Lake Miwok != Lomwe */
|
|
964
|
+
{HB_TAG('l','n','a',' '), HB_TAG('B','A','D','0')}, /* Langbashe -> Banda */
|
|
965
|
+
{HB_TAG('l','n','l',' '), HB_TAG('B','A','D','0')}, /* South Central Banda -> Banda */
|
|
966
|
+
/*{HB_TAG('l','o','m',' '), HB_TAG('L','O','M',' ')},*/ /* Loma (Liberia) */
|
|
967
|
+
{HB_TAG('l','o','u',' '), HB_TAG('C','P','P',' ')}, /* Louisiana Creole -> Creoles */
|
|
968
|
+
/*{HB_TAG('l','p','o',' '), HB_TAG('L','P','O',' ')},*/ /* Lipo */
|
|
969
|
+
/*{HB_TAG('l','r','c',' '), HB_TAG('L','R','C',' ')},*/ /* Northern Luri -> Luri */
|
|
970
|
+
{HB_TAG('l','r','i',' '), HB_TAG('L','U','H',' ')}, /* Marachi -> Luyia */
|
|
971
|
+
{HB_TAG('l','r','m',' '), HB_TAG('L','U','H',' ')}, /* Marama -> Luyia */
|
|
972
|
+
{HB_TAG('l','r','t',' '), HB_TAG('C','P','P',' ')}, /* Larantuka Malay -> Creoles */
|
|
973
|
+
{HB_TAG('l','s','b',' '), HB_TAG_NONE }, /* Burundian Sign Language != Lower Sorbian */
|
|
974
|
+
{HB_TAG('l','s','m',' '), HB_TAG('L','U','H',' ')}, /* Saamia -> Luyia */
|
|
975
|
+
{HB_TAG('l','t','g',' '), HB_TAG('L','V','I',' ')}, /* Latgalian -> Latvian */
|
|
976
|
+
{HB_TAG('l','t','h',' '), HB_TAG_NONE }, /* Thur != Lithuanian */
|
|
977
|
+
{HB_TAG('l','t','o',' '), HB_TAG('L','U','H',' ')}, /* Tsotso -> Luyia */
|
|
978
|
+
{HB_TAG('l','t','s',' '), HB_TAG('L','U','H',' ')}, /* Tachoni -> Luyia */
|
|
979
|
+
/*{HB_TAG('l','u','a',' '), HB_TAG('L','U','A',' ')},*/ /* Luba-Lulua */
|
|
980
|
+
/*{HB_TAG('l','u','o',' '), HB_TAG('L','U','O',' ')},*/ /* Luo (Kenya and Tanzania) */
|
|
981
|
+
{HB_TAG('l','u','s',' '), HB_TAG('M','I','Z',' ')}, /* Lushai -> Mizo */
|
|
982
|
+
{HB_TAG('l','u','s',' '), HB_TAG('Q','I','N',' ')}, /* Lushai -> Chin */
|
|
983
|
+
{HB_TAG('l','u','y',' '), HB_TAG('L','U','H',' ')}, /* Luyia [macrolanguage] */
|
|
984
|
+
{HB_TAG('l','u','z',' '), HB_TAG('L','R','C',' ')}, /* Southern Luri -> Luri */
|
|
985
|
+
{HB_TAG('l','v','i',' '), HB_TAG_NONE }, /* Lavi != Latvian */
|
|
986
|
+
{HB_TAG('l','v','s',' '), HB_TAG('L','V','I',' ')}, /* Standard Latvian -> Latvian */
|
|
987
|
+
{HB_TAG('l','w','g',' '), HB_TAG('L','U','H',' ')}, /* Wanga -> Luyia */
|
|
988
|
+
{HB_TAG('l','z','h',' '), HB_TAG('Z','H','T',' ')}, /* Literary Chinese -> Chinese, Traditional */
|
|
989
|
+
{HB_TAG('l','z','z',' '), HB_TAG('L','A','Z',' ')}, /* Laz */
|
|
990
|
+
/*{HB_TAG('m','a','d',' '), HB_TAG('M','A','D',' ')},*/ /* Madurese -> Madura */
|
|
991
|
+
/*{HB_TAG('m','a','g',' '), HB_TAG('M','A','G',' ')},*/ /* Magahi */
|
|
992
|
+
{HB_TAG('m','a','i',' '), HB_TAG('M','T','H',' ')}, /* Maithili */
|
|
993
|
+
{HB_TAG('m','a','j',' '), HB_TAG_NONE }, /* Jalapa De Díaz Mazatec != Majang */
|
|
994
|
+
{HB_TAG('m','a','k',' '), HB_TAG('M','K','R',' ')}, /* Makasar */
|
|
995
|
+
{HB_TAG('m','a','m',' '), HB_TAG('M','A','M',' ')}, /* Mam */
|
|
996
|
+
{HB_TAG('m','a','m',' '), HB_TAG('M','Y','N',' ')}, /* Mam -> Mayan */
|
|
997
|
+
{HB_TAG('m','a','n',' '), HB_TAG('M','N','K',' ')}, /* Mandingo [macrolanguage] -> Maninka */
|
|
998
|
+
{HB_TAG('m','a','p',' '), HB_TAG_NONE }, /* Austronesian [collection] != Mapudungun */
|
|
999
|
+
{HB_TAG('m','a','w',' '), HB_TAG_NONE }, /* Mampruli != Marwari */
|
|
1000
|
+
{HB_TAG('m','a','x',' '), HB_TAG('M','L','Y',' ')}, /* North Moluccan Malay -> Malay */
|
|
1001
|
+
{HB_TAG('m','a','x',' '), HB_TAG('C','P','P',' ')}, /* North Moluccan Malay -> Creoles */
|
|
1002
|
+
{HB_TAG('m','b','f',' '), HB_TAG('C','P','P',' ')}, /* Baba Malay -> Creoles */
|
|
1003
|
+
{HB_TAG('m','b','n',' '), HB_TAG_NONE }, /* Macaguán != Mbundu */
|
|
1004
|
+
/*{HB_TAG('m','b','o',' '), HB_TAG('M','B','O',' ')},*/ /* Mbo (Cameroon) */
|
|
1005
|
+
{HB_TAG('m','c','h',' '), HB_TAG_NONE }, /* Maquiritari != Manchu */
|
|
1006
|
+
{HB_TAG('m','c','m',' '), HB_TAG('C','P','P',' ')}, /* Malaccan Creole Portuguese -> Creoles */
|
|
1007
|
+
{HB_TAG('m','c','r',' '), HB_TAG_NONE }, /* Menya != Moose Cree */
|
|
1008
|
+
{HB_TAG('m','c','t',' '), HB_TAG('B','T','I',' ')}, /* Mengisa -> Beti */
|
|
1009
|
+
{HB_TAG('m','d','e',' '), HB_TAG_NONE }, /* Maba (Chad) != Mende */
|
|
1010
|
+
{HB_TAG('m','d','f',' '), HB_TAG('M','O','K',' ')}, /* Moksha */
|
|
1011
|
+
/*{HB_TAG('m','d','r',' '), HB_TAG('M','D','R',' ')},*/ /* Mandar */
|
|
1012
|
+
{HB_TAG('m','d','y',' '), HB_TAG('M','L','E',' ')}, /* Male (Ethiopia) */
|
|
1013
|
+
{HB_TAG('m','e','n',' '), HB_TAG('M','D','E',' ')}, /* Mende (Sierra Leone) */
|
|
1014
|
+
{HB_TAG('m','e','o',' '), HB_TAG('M','L','Y',' ')}, /* Kedah Malay -> Malay */
|
|
1015
|
+
/*{HB_TAG('m','e','r',' '), HB_TAG('M','E','R',' ')},*/ /* Meru */
|
|
1016
|
+
/*{HB_TAG('m','e','v',' '), HB_TAG('M','E','V',' ')},*/ /* Mano */
|
|
1017
|
+
{HB_TAG('m','f','a',' '), HB_TAG('M','F','A',' ')}, /* Pattani Malay */
|
|
1018
|
+
{HB_TAG('m','f','a',' '), HB_TAG('M','L','Y',' ')}, /* Pattani Malay -> Malay */
|
|
1019
|
+
{HB_TAG('m','f','b',' '), HB_TAG('M','L','Y',' ')}, /* Bangka -> Malay */
|
|
1020
|
+
{HB_TAG('m','f','e',' '), HB_TAG('M','F','E',' ')}, /* Morisyen */
|
|
1021
|
+
{HB_TAG('m','f','e',' '), HB_TAG('C','P','P',' ')}, /* Morisyen -> Creoles */
|
|
1022
|
+
{HB_TAG('m','f','p',' '), HB_TAG('C','P','P',' ')}, /* Makassar Malay -> Creoles */
|
|
1023
|
+
{HB_TAG('m','g','a',' '), HB_TAG('S','G','A',' ')}, /* Middle Irish (900-1200) -> Old Irish */
|
|
1024
|
+
{HB_TAG('m','h','c',' '), HB_TAG('M','Y','N',' ')}, /* Mocho -> Mayan */
|
|
1025
|
+
{HB_TAG('m','h','r',' '), HB_TAG('L','M','A',' ')}, /* Eastern Mari -> Low Mari */
|
|
1026
|
+
{HB_TAG('m','h','v',' '), HB_TAG('A','R','K',' ')}, /* Arakanese (retired code) -> Rakhine */
|
|
1027
|
+
{HB_TAG('m','i','n',' '), HB_TAG('M','I','N',' ')}, /* Minangkabau */
|
|
1028
|
+
{HB_TAG('m','i','n',' '), HB_TAG('M','L','Y',' ')}, /* Minangkabau -> Malay */
|
|
1029
|
+
{HB_TAG('m','i','z',' '), HB_TAG_NONE }, /* Coatzospan Mixtec != Mizo */
|
|
1030
|
+
{HB_TAG('m','k','n',' '), HB_TAG('C','P','P',' ')}, /* Kupang Malay -> Creoles */
|
|
1031
|
+
{HB_TAG('m','k','r',' '), HB_TAG_NONE }, /* Malas != Makasar */
|
|
1032
|
+
{HB_TAG('m','k','u',' '), HB_TAG('M','N','K',' ')}, /* Konyanka Maninka -> Maninka */
|
|
1033
|
+
/*{HB_TAG('m','k','w',' '), HB_TAG('M','K','W',' ')},*/ /* Kituba (Congo) */
|
|
1034
|
+
{HB_TAG('m','l','e',' '), HB_TAG_NONE }, /* Manambu != Male */
|
|
1035
|
+
{HB_TAG('m','l','n',' '), HB_TAG_NONE }, /* Malango != Malinke */
|
|
1036
|
+
{HB_TAG('m','l','q',' '), HB_TAG('M','L','N',' ')}, /* Western Maninkakan -> Malinke */
|
|
1037
|
+
{HB_TAG('m','l','q',' '), HB_TAG('M','N','K',' ')}, /* Western Maninkakan -> Maninka */
|
|
1038
|
+
{HB_TAG('m','l','r',' '), HB_TAG_NONE }, /* Vame != Malayalam Reformed */
|
|
1039
|
+
{HB_TAG('m','m','r',' '), HB_TAG('H','M','N',' ')}, /* Western Xiangxi Miao -> Hmong */
|
|
1040
|
+
{HB_TAG('m','n','c',' '), HB_TAG('M','C','H',' ')}, /* Manchu */
|
|
1041
|
+
{HB_TAG('m','n','d',' '), HB_TAG_NONE }, /* Mondé != Mandinka */
|
|
1042
|
+
{HB_TAG('m','n','g',' '), HB_TAG_NONE }, /* Eastern Mnong != Mongolian */
|
|
1043
|
+
{HB_TAG('m','n','h',' '), HB_TAG('B','A','D','0')}, /* Mono (Democratic Republic of Congo) -> Banda */
|
|
1044
|
+
/*{HB_TAG('m','n','i',' '), HB_TAG('M','N','I',' ')},*/ /* Manipuri */
|
|
1045
|
+
{HB_TAG('m','n','k',' '), HB_TAG('M','N','D',' ')}, /* Mandinka */
|
|
1046
|
+
{HB_TAG('m','n','k',' '), HB_TAG('M','N','K',' ')}, /* Mandinka -> Maninka */
|
|
1047
|
+
{HB_TAG('m','n','p',' '), HB_TAG('Z','H','S',' ')}, /* Min Bei Chinese -> Chinese, Simplified */
|
|
1048
|
+
{HB_TAG('m','n','s',' '), HB_TAG('M','A','N',' ')}, /* Mansi */
|
|
1049
|
+
{HB_TAG('m','n','w',' '), HB_TAG('M','O','N',' ')}, /* Mon */
|
|
1050
|
+
{HB_TAG('m','n','w',' '), HB_TAG('M','O','N','T')}, /* Mon -> Thailand Mon */
|
|
1051
|
+
{HB_TAG('m','n','x',' '), HB_TAG_NONE }, /* Manikion != Manx */
|
|
1052
|
+
{HB_TAG('m','o','d',' '), HB_TAG('C','P','P',' ')}, /* Mobilian -> Creoles */
|
|
1053
|
+
/*{HB_TAG('m','o','h',' '), HB_TAG('M','O','H',' ')},*/ /* Mohawk */
|
|
1054
|
+
{HB_TAG('m','o','k',' '), HB_TAG_NONE }, /* Morori != Moksha */
|
|
1055
|
+
{HB_TAG('m','o','p',' '), HB_TAG('M','Y','N',' ')}, /* Mopán Maya -> Mayan */
|
|
1056
|
+
{HB_TAG('m','o','r',' '), HB_TAG_NONE }, /* Moro != Moroccan */
|
|
1057
|
+
/*{HB_TAG('m','o','s',' '), HB_TAG('M','O','S',' ')},*/ /* Mossi */
|
|
1058
|
+
{HB_TAG('m','p','e',' '), HB_TAG('M','A','J',' ')}, /* Majang */
|
|
1059
|
+
{HB_TAG('m','q','g',' '), HB_TAG('M','L','Y',' ')}, /* Kota Bangun Kutai Malay -> Malay */
|
|
1060
|
+
{HB_TAG('m','r','h',' '), HB_TAG('Q','I','N',' ')}, /* Mara Chin -> Chin */
|
|
1061
|
+
{HB_TAG('m','r','j',' '), HB_TAG('H','M','A',' ')}, /* Western Mari -> High Mari */
|
|
1062
|
+
{HB_TAG('m','s','c',' '), HB_TAG('M','N','K',' ')}, /* Sankaran Maninka -> Maninka */
|
|
1063
|
+
{HB_TAG('m','s','h',' '), HB_TAG('M','L','G',' ')}, /* Masikoro Malagasy -> Malagasy */
|
|
1064
|
+
{HB_TAG('m','s','i',' '), HB_TAG('M','L','Y',' ')}, /* Sabah Malay -> Malay */
|
|
1065
|
+
{HB_TAG('m','s','i',' '), HB_TAG('C','P','P',' ')}, /* Sabah Malay -> Creoles */
|
|
1066
|
+
{HB_TAG('m','t','h',' '), HB_TAG_NONE }, /* Munggui != Maithili */
|
|
1067
|
+
{HB_TAG('m','t','r',' '), HB_TAG('M','A','W',' ')}, /* Mewari -> Marwari */
|
|
1068
|
+
{HB_TAG('m','t','s',' '), HB_TAG_NONE }, /* Yora != Maltese */
|
|
1069
|
+
{HB_TAG('m','u','d',' '), HB_TAG('C','P','P',' ')}, /* Mednyj Aleut -> Creoles */
|
|
1070
|
+
{HB_TAG('m','u','i',' '), HB_TAG('M','L','Y',' ')}, /* Musi -> Malay */
|
|
1071
|
+
{HB_TAG('m','u','n',' '), HB_TAG_NONE }, /* Munda [collection] != Mundari */
|
|
1072
|
+
{HB_TAG('m','u','p',' '), HB_TAG('R','A','J',' ')}, /* Malvi -> Rajasthani */
|
|
1073
|
+
{HB_TAG('m','u','q',' '), HB_TAG('H','M','N',' ')}, /* Eastern Xiangxi Miao -> Hmong */
|
|
1074
|
+
/*{HB_TAG('m','u','s',' '), HB_TAG('M','U','S',' ')},*/ /* Creek -> Muscogee */
|
|
1075
|
+
{HB_TAG('m','v','b',' '), HB_TAG('A','T','H',' ')}, /* Mattole -> Athapaskan */
|
|
1076
|
+
{HB_TAG('m','v','e',' '), HB_TAG('M','A','W',' ')}, /* Marwari (Pakistan) */
|
|
1077
|
+
{HB_TAG('m','v','f',' '), HB_TAG('M','N','G',' ')}, /* Peripheral Mongolian -> Mongolian */
|
|
1078
|
+
{HB_TAG('m','w','k',' '), HB_TAG('M','N','K',' ')}, /* Kita Maninkakan -> Maninka */
|
|
1079
|
+
/*{HB_TAG('m','w','l',' '), HB_TAG('M','W','L',' ')},*/ /* Mirandese */
|
|
1080
|
+
{HB_TAG('m','w','q',' '), HB_TAG('Q','I','N',' ')}, /* Mün Chin -> Chin */
|
|
1081
|
+
{HB_TAG('m','w','r',' '), HB_TAG('M','A','W',' ')}, /* Marwari [macrolanguage] */
|
|
1082
|
+
{HB_TAG('m','w','w',' '), HB_TAG('M','W','W',' ')}, /* Hmong Daw */
|
|
1083
|
+
{HB_TAG('m','w','w',' '), HB_TAG('H','M','N',' ')}, /* Hmong Daw -> Hmong */
|
|
1084
|
+
{HB_TAG('m','y','m',' '), HB_TAG('M','E','N',' ')}, /* Me’en */
|
|
1085
|
+
/*{HB_TAG('m','y','n',' '), HB_TAG('M','Y','N',' ')},*/ /* Mayan [collection] */
|
|
1086
|
+
{HB_TAG('m','y','q',' '), HB_TAG('M','N','K',' ')}, /* Forest Maninka (retired code) -> Maninka */
|
|
1087
|
+
{HB_TAG('m','y','v',' '), HB_TAG('E','R','Z',' ')}, /* Erzya */
|
|
1088
|
+
{HB_TAG('m','z','b',' '), HB_TAG('B','B','R',' ')}, /* Tumzabt -> Berber */
|
|
1089
|
+
/*{HB_TAG('m','z','n',' '), HB_TAG('M','Z','N',' ')},*/ /* Mazanderani */
|
|
1090
|
+
{HB_TAG('m','z','s',' '), HB_TAG('C','P','P',' ')}, /* Macanese -> Creoles */
|
|
1091
|
+
{HB_TAG('n','a','g',' '), HB_TAG('N','A','G',' ')}, /* Naga Pidgin -> Naga-Assamese */
|
|
1092
|
+
{HB_TAG('n','a','g',' '), HB_TAG('C','P','P',' ')}, /* Naga Pidgin -> Creoles */
|
|
1093
|
+
/*{HB_TAG('n','a','h',' '), HB_TAG('N','A','H',' ')},*/ /* Nahuatl [collection] */
|
|
1094
|
+
{HB_TAG('n','a','n',' '), HB_TAG('Z','H','S',' ')}, /* Min Nan Chinese -> Chinese, Simplified */
|
|
1095
|
+
/*{HB_TAG('n','a','p',' '), HB_TAG('N','A','P',' ')},*/ /* Neapolitan */
|
|
1096
|
+
{HB_TAG('n','a','s',' '), HB_TAG_NONE }, /* Naasioi != Naskapi */
|
|
1097
|
+
{HB_TAG('n','a','z',' '), HB_TAG('N','A','H',' ')}, /* Coatepec Nahuatl -> Nahuatl */
|
|
1098
|
+
{HB_TAG('n','c','h',' '), HB_TAG('N','A','H',' ')}, /* Central Huasteca Nahuatl -> Nahuatl */
|
|
1099
|
+
{HB_TAG('n','c','i',' '), HB_TAG('N','A','H',' ')}, /* Classical Nahuatl -> Nahuatl */
|
|
1100
|
+
{HB_TAG('n','c','j',' '), HB_TAG('N','A','H',' ')}, /* Northern Puebla Nahuatl -> Nahuatl */
|
|
1101
|
+
{HB_TAG('n','c','l',' '), HB_TAG('N','A','H',' ')}, /* Michoacán Nahuatl -> Nahuatl */
|
|
1102
|
+
{HB_TAG('n','c','r',' '), HB_TAG_NONE }, /* Ncane != N-Cree */
|
|
1103
|
+
{HB_TAG('n','c','x',' '), HB_TAG('N','A','H',' ')}, /* Central Puebla Nahuatl -> Nahuatl */
|
|
1104
|
+
{HB_TAG('n','d','b',' '), HB_TAG_NONE }, /* Kenswei Nsei != Ndebele */
|
|
1105
|
+
/*{HB_TAG('n','d','c',' '), HB_TAG('N','D','C',' ')},*/ /* Ndau */
|
|
1106
|
+
{HB_TAG('n','d','g',' '), HB_TAG_NONE }, /* Ndengereko != Ndonga */
|
|
1107
|
+
/*{HB_TAG('n','d','s',' '), HB_TAG('N','D','S',' ')},*/ /* Low Saxon */
|
|
1108
|
+
{HB_TAG('n','e','f',' '), HB_TAG('C','P','P',' ')}, /* Nefamese -> Creoles */
|
|
1109
|
+
/*{HB_TAG('n','e','w',' '), HB_TAG('N','E','W',' ')},*/ /* Newari */
|
|
1110
|
+
/*{HB_TAG('n','g','a',' '), HB_TAG('N','G','A',' ')},*/ /* Ngbaka */
|
|
1111
|
+
{HB_TAG('n','g','l',' '), HB_TAG('L','M','W',' ')}, /* Lomwe */
|
|
1112
|
+
{HB_TAG('n','g','m',' '), HB_TAG('C','P','P',' ')}, /* Ngatik Men's Creole -> Creoles */
|
|
1113
|
+
{HB_TAG('n','g','o',' '), HB_TAG('S','X','T',' ')}, /* Ngoni (retired code) -> Sutu */
|
|
1114
|
+
{HB_TAG('n','g','r',' '), HB_TAG_NONE }, /* Engdewu != Nagari */
|
|
1115
|
+
{HB_TAG('n','g','u',' '), HB_TAG('N','A','H',' ')}, /* Guerrero Nahuatl -> Nahuatl */
|
|
1116
|
+
{HB_TAG('n','h','c',' '), HB_TAG('N','A','H',' ')}, /* Tabasco Nahuatl -> Nahuatl */
|
|
1117
|
+
{HB_TAG('n','h','d',' '), HB_TAG('G','U','A',' ')}, /* Chiripá -> Guarani */
|
|
1118
|
+
{HB_TAG('n','h','e',' '), HB_TAG('N','A','H',' ')}, /* Eastern Huasteca Nahuatl -> Nahuatl */
|
|
1119
|
+
{HB_TAG('n','h','g',' '), HB_TAG('N','A','H',' ')}, /* Tetelcingo Nahuatl -> Nahuatl */
|
|
1120
|
+
{HB_TAG('n','h','i',' '), HB_TAG('N','A','H',' ')}, /* Zacatlán-Ahuacatlán-Tepetzintla Nahuatl -> Nahuatl */
|
|
1121
|
+
{HB_TAG('n','h','k',' '), HB_TAG('N','A','H',' ')}, /* Isthmus-Cosoleacaque Nahuatl -> Nahuatl */
|
|
1122
|
+
{HB_TAG('n','h','m',' '), HB_TAG('N','A','H',' ')}, /* Morelos Nahuatl -> Nahuatl */
|
|
1123
|
+
{HB_TAG('n','h','n',' '), HB_TAG('N','A','H',' ')}, /* Central Nahuatl -> Nahuatl */
|
|
1124
|
+
{HB_TAG('n','h','p',' '), HB_TAG('N','A','H',' ')}, /* Isthmus-Pajapan Nahuatl -> Nahuatl */
|
|
1125
|
+
{HB_TAG('n','h','q',' '), HB_TAG('N','A','H',' ')}, /* Huaxcaleca Nahuatl -> Nahuatl */
|
|
1126
|
+
{HB_TAG('n','h','t',' '), HB_TAG('N','A','H',' ')}, /* Ometepec Nahuatl -> Nahuatl */
|
|
1127
|
+
{HB_TAG('n','h','v',' '), HB_TAG('N','A','H',' ')}, /* Temascaltepec Nahuatl -> Nahuatl */
|
|
1128
|
+
{HB_TAG('n','h','w',' '), HB_TAG('N','A','H',' ')}, /* Western Huasteca Nahuatl -> Nahuatl */
|
|
1129
|
+
{HB_TAG('n','h','x',' '), HB_TAG('N','A','H',' ')}, /* Isthmus-Mecayapan Nahuatl -> Nahuatl */
|
|
1130
|
+
{HB_TAG('n','h','y',' '), HB_TAG('N','A','H',' ')}, /* Northern Oaxaca Nahuatl -> Nahuatl */
|
|
1131
|
+
{HB_TAG('n','h','z',' '), HB_TAG('N','A','H',' ')}, /* Santa María La Alta Nahuatl -> Nahuatl */
|
|
1132
|
+
{HB_TAG('n','i','q',' '), HB_TAG('K','A','L',' ')}, /* Nandi -> Kalenjin */
|
|
1133
|
+
{HB_TAG('n','i','s',' '), HB_TAG_NONE }, /* Nimi != Nisi */
|
|
1134
|
+
/*{HB_TAG('n','i','u',' '), HB_TAG('N','I','U',' ')},*/ /* Niuean */
|
|
1135
|
+
{HB_TAG('n','i','v',' '), HB_TAG('G','I','L',' ')}, /* Gilyak */
|
|
1136
|
+
{HB_TAG('n','j','t',' '), HB_TAG('C','P','P',' ')}, /* Ndyuka-Trio Pidgin -> Creoles */
|
|
1137
|
+
{HB_TAG('n','j','z',' '), HB_TAG('N','I','S',' ')}, /* Nyishi -> Nisi */
|
|
1138
|
+
{HB_TAG('n','k','o',' '), HB_TAG_NONE }, /* Nkonya != N’Ko */
|
|
1139
|
+
{HB_TAG('n','k','x',' '), HB_TAG('I','J','O',' ')}, /* Nkoroo -> Ijo */
|
|
1140
|
+
{HB_TAG('n','l','a',' '), HB_TAG('B','M','L',' ')}, /* Ngombale -> Bamileke */
|
|
1141
|
+
{HB_TAG('n','l','e',' '), HB_TAG('L','U','H',' ')}, /* East Nyala -> Luyia */
|
|
1142
|
+
{HB_TAG('n','l','n',' '), HB_TAG('N','A','H',' ')}, /* Durango Nahuatl (retired code) -> Nahuatl */
|
|
1143
|
+
{HB_TAG('n','l','v',' '), HB_TAG('N','A','H',' ')}, /* Orizaba Nahuatl -> Nahuatl */
|
|
1144
|
+
{HB_TAG('n','n','h',' '), HB_TAG('B','M','L',' ')}, /* Ngiemboon -> Bamileke */
|
|
1145
|
+
{HB_TAG('n','n','z',' '), HB_TAG('B','M','L',' ')}, /* Nda'nda' -> Bamileke */
|
|
1146
|
+
{HB_TAG('n','o','d',' '), HB_TAG('N','T','A',' ')}, /* Northern Thai -> Northern Tai */
|
|
1147
|
+
/*{HB_TAG('n','o','e',' '), HB_TAG('N','O','E',' ')},*/ /* Nimadi */
|
|
1148
|
+
/*{HB_TAG('n','o','g',' '), HB_TAG('N','O','G',' ')},*/ /* Nogai */
|
|
1149
|
+
/*{HB_TAG('n','o','v',' '), HB_TAG('N','O','V',' ')},*/ /* Novial */
|
|
1150
|
+
{HB_TAG('n','p','i',' '), HB_TAG('N','E','P',' ')}, /* Nepali */
|
|
1151
|
+
{HB_TAG('n','p','l',' '), HB_TAG('N','A','H',' ')}, /* Southeastern Puebla Nahuatl -> Nahuatl */
|
|
1152
|
+
{HB_TAG('n','q','o',' '), HB_TAG('N','K','O',' ')}, /* N’Ko */
|
|
1153
|
+
{HB_TAG('n','s','k',' '), HB_TAG('N','A','S',' ')}, /* Naskapi */
|
|
1154
|
+
{HB_TAG('n','s','m',' '), HB_TAG_NONE }, /* Sumi Naga != Northern Sami */
|
|
1155
|
+
/*{HB_TAG('n','s','o',' '), HB_TAG('N','S','O',' ')},*/ /* Northern Sotho */
|
|
1156
|
+
{HB_TAG('n','s','u',' '), HB_TAG('N','A','H',' ')}, /* Sierra Negra Nahuatl -> Nahuatl */
|
|
1157
|
+
{HB_TAG('n','t','o',' '), HB_TAG_NONE }, /* Ntomba != Esperanto */
|
|
1158
|
+
{HB_TAG('n','u','e',' '), HB_TAG('B','A','D','0')}, /* Ngundu -> Banda */
|
|
1159
|
+
{HB_TAG('n','u','u',' '), HB_TAG('B','A','D','0')}, /* Ngbundu -> Banda */
|
|
1160
|
+
{HB_TAG('n','u','z',' '), HB_TAG('N','A','H',' ')}, /* Tlamacazapa Nahuatl -> Nahuatl */
|
|
1161
|
+
{HB_TAG('n','w','e',' '), HB_TAG('B','M','L',' ')}, /* Ngwe -> Bamileke */
|
|
1162
|
+
{HB_TAG('n','y','d',' '), HB_TAG('L','U','H',' ')}, /* Nyore -> Luyia */
|
|
1163
|
+
/*{HB_TAG('n','y','m',' '), HB_TAG('N','Y','M',' ')},*/ /* Nyamwezi */
|
|
1164
|
+
{HB_TAG('n','y','n',' '), HB_TAG('N','K','L',' ')}, /* Nyankole */
|
|
1165
|
+
/*{HB_TAG('n','z','a',' '), HB_TAG('N','Z','A',' ')},*/ /* Tigon Mbembe -> Mbembe Tigon */
|
|
1166
|
+
/*{HB_TAG('o','j','b',' '), HB_TAG('O','J','B',' ')},*/ /* Northwestern Ojibwa -> Ojibway */
|
|
1167
|
+
{HB_TAG('o','j','c',' '), HB_TAG('O','J','B',' ')}, /* Central Ojibwa -> Ojibway */
|
|
1168
|
+
{HB_TAG('o','j','g',' '), HB_TAG('O','J','B',' ')}, /* Eastern Ojibwa -> Ojibway */
|
|
1169
|
+
{HB_TAG('o','j','s',' '), HB_TAG('O','C','R',' ')}, /* Severn Ojibwa -> Oji-Cree */
|
|
1170
|
+
{HB_TAG('o','j','s',' '), HB_TAG('O','J','B',' ')}, /* Severn Ojibwa -> Ojibway */
|
|
1171
|
+
{HB_TAG('o','j','w',' '), HB_TAG('O','J','B',' ')}, /* Western Ojibwa -> Ojibway */
|
|
1172
|
+
{HB_TAG('o','k','d',' '), HB_TAG('I','J','O',' ')}, /* Okodia -> Ijo */
|
|
1173
|
+
{HB_TAG('o','k','i',' '), HB_TAG('K','A','L',' ')}, /* Okiek -> Kalenjin */
|
|
1174
|
+
{HB_TAG('o','k','m',' '), HB_TAG('K','O','H',' ')}, /* Middle Korean (10th-16th cent.) -> Korean Old Hangul */
|
|
1175
|
+
{HB_TAG('o','k','r',' '), HB_TAG('I','J','O',' ')}, /* Kirike -> Ijo */
|
|
1176
|
+
/*{HB_TAG('o','n','e',' '), HB_TAG('O','N','E',' ')},*/ /* Oneida */
|
|
1177
|
+
/*{HB_TAG('o','n','o',' '), HB_TAG('O','N','O',' ')},*/ /* Onondaga */
|
|
1178
|
+
{HB_TAG('o','n','x',' '), HB_TAG('C','P','P',' ')}, /* Onin Based Pidgin -> Creoles */
|
|
1179
|
+
{HB_TAG('o','o','r',' '), HB_TAG('C','P','P',' ')}, /* Oorlams -> Creoles */
|
|
1180
|
+
{HB_TAG('o','r','c',' '), HB_TAG('O','R','O',' ')}, /* Orma -> Oromo */
|
|
1181
|
+
{HB_TAG('o','r','n',' '), HB_TAG('M','L','Y',' ')}, /* Orang Kanaq -> Malay */
|
|
1182
|
+
{HB_TAG('o','r','o',' '), HB_TAG_NONE }, /* Orokolo != Oromo */
|
|
1183
|
+
{HB_TAG('o','r','r',' '), HB_TAG('I','J','O',' ')}, /* Oruma -> Ijo */
|
|
1184
|
+
{HB_TAG('o','r','s',' '), HB_TAG('M','L','Y',' ')}, /* Orang Seletar -> Malay */
|
|
1185
|
+
{HB_TAG('o','r','y',' '), HB_TAG('O','R','I',' ')}, /* Odia */
|
|
1186
|
+
{HB_TAG('o','t','w',' '), HB_TAG('O','J','B',' ')}, /* Ottawa -> Ojibway */
|
|
1187
|
+
{HB_TAG('o','u','a',' '), HB_TAG('B','B','R',' ')}, /* Tagargrent -> Berber */
|
|
1188
|
+
{HB_TAG('p','a','a',' '), HB_TAG_NONE }, /* Papuan [collection] != Palestinian Aramaic */
|
|
1189
|
+
/*{HB_TAG('p','a','g',' '), HB_TAG('P','A','G',' ')},*/ /* Pangasinan */
|
|
1190
|
+
{HB_TAG('p','a','l',' '), HB_TAG_NONE }, /* Pahlavi != Pali */
|
|
1191
|
+
/*{HB_TAG('p','a','m',' '), HB_TAG('P','A','M',' ')},*/ /* Pampanga -> Pampangan */
|
|
1192
|
+
{HB_TAG('p','a','p',' '), HB_TAG('P','A','P','0')}, /* Papiamento -> Papiamentu */
|
|
1193
|
+
{HB_TAG('p','a','p',' '), HB_TAG('C','P','P',' ')}, /* Papiamento -> Creoles */
|
|
1194
|
+
{HB_TAG('p','a','s',' '), HB_TAG_NONE }, /* Papasena != Pashto */
|
|
1195
|
+
/*{HB_TAG('p','a','u',' '), HB_TAG('P','A','U',' ')},*/ /* Palauan */
|
|
1196
|
+
{HB_TAG('p','b','t',' '), HB_TAG('P','A','S',' ')}, /* Southern Pashto -> Pashto */
|
|
1197
|
+
{HB_TAG('p','b','u',' '), HB_TAG('P','A','S',' ')}, /* Northern Pashto -> Pashto */
|
|
1198
|
+
/*{HB_TAG('p','c','c',' '), HB_TAG('P','C','C',' ')},*/ /* Bouyei */
|
|
1199
|
+
/*{HB_TAG('p','c','d',' '), HB_TAG('P','C','D',' ')},*/ /* Picard */
|
|
1200
|
+
{HB_TAG('p','c','e',' '), HB_TAG('P','L','G',' ')}, /* Ruching Palaung -> Palaung */
|
|
1201
|
+
{HB_TAG('p','c','k',' '), HB_TAG('Q','I','N',' ')}, /* Paite Chin -> Chin */
|
|
1202
|
+
{HB_TAG('p','c','m',' '), HB_TAG('C','P','P',' ')}, /* Nigerian Pidgin -> Creoles */
|
|
1203
|
+
/*{HB_TAG('p','d','c',' '), HB_TAG('P','D','C',' ')},*/ /* Pennsylvania German */
|
|
1204
|
+
{HB_TAG('p','d','u',' '), HB_TAG('K','R','N',' ')}, /* Kayan -> Karen */
|
|
1205
|
+
{HB_TAG('p','e','a',' '), HB_TAG('C','P','P',' ')}, /* Peranakan Indonesian -> Creoles */
|
|
1206
|
+
{HB_TAG('p','e','l',' '), HB_TAG('M','L','Y',' ')}, /* Pekal -> Malay */
|
|
1207
|
+
{HB_TAG('p','e','s',' '), HB_TAG('F','A','R',' ')}, /* Iranian Persian -> Persian */
|
|
1208
|
+
{HB_TAG('p','e','y',' '), HB_TAG('C','P','P',' ')}, /* Petjo -> Creoles */
|
|
1209
|
+
{HB_TAG('p','g','a',' '), HB_TAG('A','R','A',' ')}, /* Sudanese Creole Arabic -> Arabic */
|
|
1210
|
+
{HB_TAG('p','g','a',' '), HB_TAG('C','P','P',' ')}, /* Sudanese Creole Arabic -> Creoles */
|
|
1211
|
+
/*{HB_TAG('p','h','k',' '), HB_TAG('P','H','K',' ')},*/ /* Phake */
|
|
1212
|
+
{HB_TAG('p','i','h',' '), HB_TAG('P','I','H',' ')}, /* Pitcairn-Norfolk -> Norfolk */
|
|
1213
|
+
{HB_TAG('p','i','h',' '), HB_TAG('C','P','P',' ')}, /* Pitcairn-Norfolk -> Creoles */
|
|
1214
|
+
{HB_TAG('p','i','l',' '), HB_TAG_NONE }, /* Yom != Filipino */
|
|
1215
|
+
{HB_TAG('p','i','s',' '), HB_TAG('C','P','P',' ')}, /* Pijin -> Creoles */
|
|
1216
|
+
{HB_TAG('p','k','h',' '), HB_TAG('Q','I','N',' ')}, /* Pankhu -> Chin */
|
|
1217
|
+
{HB_TAG('p','k','o',' '), HB_TAG('K','A','L',' ')}, /* Pökoot -> Kalenjin */
|
|
1218
|
+
{HB_TAG('p','l','g',' '), HB_TAG('P','L','G','0')}, /* Pilagá */
|
|
1219
|
+
{HB_TAG('p','l','k',' '), HB_TAG_NONE }, /* Kohistani Shina != Polish */
|
|
1220
|
+
{HB_TAG('p','l','l',' '), HB_TAG('P','L','G',' ')}, /* Shwe Palaung -> Palaung */
|
|
1221
|
+
{HB_TAG('p','l','n',' '), HB_TAG('C','P','P',' ')}, /* Palenquero -> Creoles */
|
|
1222
|
+
{HB_TAG('p','l','p',' '), HB_TAG('P','A','P',' ')}, /* Palpa (retired code) */
|
|
1223
|
+
{HB_TAG('p','l','t',' '), HB_TAG('M','L','G',' ')}, /* Plateau Malagasy -> Malagasy */
|
|
1224
|
+
{HB_TAG('p','m','l',' '), HB_TAG('C','P','P',' ')}, /* Lingua Franca -> Creoles */
|
|
1225
|
+
/*{HB_TAG('p','m','s',' '), HB_TAG('P','M','S',' ')},*/ /* Piemontese */
|
|
1226
|
+
{HB_TAG('p','m','y',' '), HB_TAG('C','P','P',' ')}, /* Papuan Malay -> Creoles */
|
|
1227
|
+
/*{HB_TAG('p','n','b',' '), HB_TAG('P','N','B',' ')},*/ /* Western Panjabi */
|
|
1228
|
+
{HB_TAG('p','o','c',' '), HB_TAG('M','Y','N',' ')}, /* Poqomam -> Mayan */
|
|
1229
|
+
{HB_TAG('p','o','h',' '), HB_TAG('P','O','H',' ')}, /* Poqomchi' -> Pocomchi */
|
|
1230
|
+
{HB_TAG('p','o','h',' '), HB_TAG('M','Y','N',' ')}, /* Poqomchi' -> Mayan */
|
|
1231
|
+
/*{HB_TAG('p','o','n',' '), HB_TAG('P','O','N',' ')},*/ /* Pohnpeian */
|
|
1232
|
+
{HB_TAG('p','o','v',' '), HB_TAG('C','P','P',' ')}, /* Upper Guinea Crioulo -> Creoles */
|
|
1233
|
+
{HB_TAG('p','p','a',' '), HB_TAG('B','A','G',' ')}, /* Pao (retired code) -> Baghelkhandi */
|
|
1234
|
+
{HB_TAG('p','r','e',' '), HB_TAG('C','P','P',' ')}, /* Principense -> Creoles */
|
|
1235
|
+
/*{HB_TAG('p','r','o',' '), HB_TAG('P','R','O',' ')},*/ /* Old Provençal (to 1500) -> Provençal / Old Provençal */
|
|
1236
|
+
{HB_TAG('p','r','p',' '), HB_TAG('G','U','J',' ')}, /* Parsi (retired code) -> Gujarati */
|
|
1237
|
+
{HB_TAG('p','r','s',' '), HB_TAG('D','R','I',' ')}, /* Dari */
|
|
1238
|
+
{HB_TAG('p','r','s',' '), HB_TAG('F','A','R',' ')}, /* Dari -> Persian */
|
|
1239
|
+
{HB_TAG('p','s','e',' '), HB_TAG('M','L','Y',' ')}, /* Central Malay -> Malay */
|
|
1240
|
+
{HB_TAG('p','s','t',' '), HB_TAG('P','A','S',' ')}, /* Central Pashto -> Pashto */
|
|
1241
|
+
{HB_TAG('p','u','b',' '), HB_TAG('Q','I','N',' ')}, /* Purum -> Chin */
|
|
1242
|
+
{HB_TAG('p','u','z',' '), HB_TAG('Q','I','N',' ')}, /* Purum Naga (retired code) -> Chin */
|
|
1243
|
+
{HB_TAG('p','w','o',' '), HB_TAG('P','W','O',' ')}, /* Pwo Western Karen -> Western Pwo Karen */
|
|
1244
|
+
{HB_TAG('p','w','o',' '), HB_TAG('K','R','N',' ')}, /* Pwo Western Karen -> Karen */
|
|
1245
|
+
{HB_TAG('p','w','w',' '), HB_TAG('K','R','N',' ')}, /* Pwo Northern Karen -> Karen */
|
|
1246
|
+
{HB_TAG('q','u','b',' '), HB_TAG('Q','W','H',' ')}, /* Huallaga Huánuco Quechua -> Quechua (Peru) */
|
|
1247
|
+
{HB_TAG('q','u','b',' '), HB_TAG('Q','U','Z',' ')}, /* Huallaga Huánuco Quechua -> Quechua */
|
|
1248
|
+
{HB_TAG('q','u','c',' '), HB_TAG('Q','U','C',' ')}, /* K’iche’ */
|
|
1249
|
+
{HB_TAG('q','u','c',' '), HB_TAG('M','Y','N',' ')}, /* K'iche' -> Mayan */
|
|
1250
|
+
{HB_TAG('q','u','d',' '), HB_TAG('Q','V','I',' ')}, /* Calderón Highland Quichua -> Quechua (Ecuador) */
|
|
1251
|
+
{HB_TAG('q','u','d',' '), HB_TAG('Q','U','Z',' ')}, /* Calderón Highland Quichua -> Quechua */
|
|
1252
|
+
{HB_TAG('q','u','f',' '), HB_TAG('Q','U','Z',' ')}, /* Lambayeque Quechua -> Quechua */
|
|
1253
|
+
{HB_TAG('q','u','g',' '), HB_TAG('Q','V','I',' ')}, /* Chimborazo Highland Quichua -> Quechua (Ecuador) */
|
|
1254
|
+
{HB_TAG('q','u','g',' '), HB_TAG('Q','U','Z',' ')}, /* Chimborazo Highland Quichua -> Quechua */
|
|
1255
|
+
{HB_TAG('q','u','h',' '), HB_TAG('Q','U','H',' ')}, /* South Bolivian Quechua -> Quechua (Bolivia) */
|
|
1256
|
+
{HB_TAG('q','u','h',' '), HB_TAG('Q','U','Z',' ')}, /* South Bolivian Quechua -> Quechua */
|
|
1257
|
+
{HB_TAG('q','u','k',' '), HB_TAG('Q','U','Z',' ')}, /* Chachapoyas Quechua -> Quechua */
|
|
1258
|
+
{HB_TAG('q','u','l',' '), HB_TAG('Q','U','H',' ')}, /* North Bolivian Quechua -> Quechua (Bolivia) */
|
|
1259
|
+
{HB_TAG('q','u','l',' '), HB_TAG('Q','U','Z',' ')}, /* North Bolivian Quechua -> Quechua */
|
|
1260
|
+
{HB_TAG('q','u','m',' '), HB_TAG('M','Y','N',' ')}, /* Sipacapense -> Mayan */
|
|
1261
|
+
{HB_TAG('q','u','p',' '), HB_TAG('Q','V','I',' ')}, /* Southern Pastaza Quechua -> Quechua (Ecuador) */
|
|
1262
|
+
{HB_TAG('q','u','p',' '), HB_TAG('Q','U','Z',' ')}, /* Southern Pastaza Quechua -> Quechua */
|
|
1263
|
+
{HB_TAG('q','u','r',' '), HB_TAG('Q','W','H',' ')}, /* Yanahuanca Pasco Quechua -> Quechua (Peru) */
|
|
1264
|
+
{HB_TAG('q','u','r',' '), HB_TAG('Q','U','Z',' ')}, /* Yanahuanca Pasco Quechua -> Quechua */
|
|
1265
|
+
{HB_TAG('q','u','s',' '), HB_TAG('Q','U','H',' ')}, /* Santiago del Estero Quichua -> Quechua (Bolivia) */
|
|
1266
|
+
{HB_TAG('q','u','s',' '), HB_TAG('Q','U','Z',' ')}, /* Santiago del Estero Quichua -> Quechua */
|
|
1267
|
+
{HB_TAG('q','u','v',' '), HB_TAG('M','Y','N',' ')}, /* Sacapulteco -> Mayan */
|
|
1268
|
+
{HB_TAG('q','u','w',' '), HB_TAG('Q','V','I',' ')}, /* Tena Lowland Quichua -> Quechua (Ecuador) */
|
|
1269
|
+
{HB_TAG('q','u','w',' '), HB_TAG('Q','U','Z',' ')}, /* Tena Lowland Quichua -> Quechua */
|
|
1270
|
+
{HB_TAG('q','u','x',' '), HB_TAG('Q','W','H',' ')}, /* Yauyos Quechua -> Quechua (Peru) */
|
|
1271
|
+
{HB_TAG('q','u','x',' '), HB_TAG('Q','U','Z',' ')}, /* Yauyos Quechua -> Quechua */
|
|
1272
|
+
{HB_TAG('q','u','y',' '), HB_TAG('Q','U','Z',' ')}, /* Ayacucho Quechua -> Quechua */
|
|
1273
|
+
/*{HB_TAG('q','u','z',' '), HB_TAG('Q','U','Z',' ')},*/ /* Cusco Quechua -> Quechua */
|
|
1274
|
+
{HB_TAG('q','v','a',' '), HB_TAG('Q','W','H',' ')}, /* Ambo-Pasco Quechua -> Quechua (Peru) */
|
|
1275
|
+
{HB_TAG('q','v','a',' '), HB_TAG('Q','U','Z',' ')}, /* Ambo-Pasco Quechua -> Quechua */
|
|
1276
|
+
{HB_TAG('q','v','c',' '), HB_TAG('Q','U','Z',' ')}, /* Cajamarca Quechua -> Quechua */
|
|
1277
|
+
{HB_TAG('q','v','e',' '), HB_TAG('Q','U','Z',' ')}, /* Eastern Apurímac Quechua -> Quechua */
|
|
1278
|
+
{HB_TAG('q','v','h',' '), HB_TAG('Q','W','H',' ')}, /* Huamalíes-Dos de Mayo Huánuco Quechua -> Quechua (Peru) */
|
|
1279
|
+
{HB_TAG('q','v','h',' '), HB_TAG('Q','U','Z',' ')}, /* Huamalíes-Dos de Mayo Huánuco Quechua -> Quechua */
|
|
1280
|
+
{HB_TAG('q','v','i',' '), HB_TAG('Q','V','I',' ')}, /* Imbabura Highland Quichua -> Quechua (Ecuador) */
|
|
1281
|
+
{HB_TAG('q','v','i',' '), HB_TAG('Q','U','Z',' ')}, /* Imbabura Highland Quichua -> Quechua */
|
|
1282
|
+
{HB_TAG('q','v','j',' '), HB_TAG('Q','V','I',' ')}, /* Loja Highland Quichua -> Quechua (Ecuador) */
|
|
1283
|
+
{HB_TAG('q','v','j',' '), HB_TAG('Q','U','Z',' ')}, /* Loja Highland Quichua -> Quechua */
|
|
1284
|
+
{HB_TAG('q','v','l',' '), HB_TAG('Q','W','H',' ')}, /* Cajatambo North Lima Quechua -> Quechua (Peru) */
|
|
1285
|
+
{HB_TAG('q','v','l',' '), HB_TAG('Q','U','Z',' ')}, /* Cajatambo North Lima Quechua -> Quechua */
|
|
1286
|
+
{HB_TAG('q','v','m',' '), HB_TAG('Q','W','H',' ')}, /* Margos-Yarowilca-Lauricocha Quechua -> Quechua (Peru) */
|
|
1287
|
+
{HB_TAG('q','v','m',' '), HB_TAG('Q','U','Z',' ')}, /* Margos-Yarowilca-Lauricocha Quechua -> Quechua */
|
|
1288
|
+
{HB_TAG('q','v','n',' '), HB_TAG('Q','W','H',' ')}, /* North Junín Quechua -> Quechua (Peru) */
|
|
1289
|
+
{HB_TAG('q','v','n',' '), HB_TAG('Q','U','Z',' ')}, /* North Junín Quechua -> Quechua */
|
|
1290
|
+
{HB_TAG('q','v','o',' '), HB_TAG('Q','V','I',' ')}, /* Napo Lowland Quechua -> Quechua (Ecuador) */
|
|
1291
|
+
{HB_TAG('q','v','o',' '), HB_TAG('Q','U','Z',' ')}, /* Napo Lowland Quechua -> Quechua */
|
|
1292
|
+
{HB_TAG('q','v','p',' '), HB_TAG('Q','W','H',' ')}, /* Pacaraos Quechua -> Quechua (Peru) */
|
|
1293
|
+
{HB_TAG('q','v','p',' '), HB_TAG('Q','U','Z',' ')}, /* Pacaraos Quechua -> Quechua */
|
|
1294
|
+
{HB_TAG('q','v','s',' '), HB_TAG('Q','U','Z',' ')}, /* San Martín Quechua -> Quechua */
|
|
1295
|
+
{HB_TAG('q','v','w',' '), HB_TAG('Q','W','H',' ')}, /* Huaylla Wanca Quechua -> Quechua (Peru) */
|
|
1296
|
+
{HB_TAG('q','v','w',' '), HB_TAG('Q','U','Z',' ')}, /* Huaylla Wanca Quechua -> Quechua */
|
|
1297
|
+
{HB_TAG('q','v','z',' '), HB_TAG('Q','V','I',' ')}, /* Northern Pastaza Quichua -> Quechua (Ecuador) */
|
|
1298
|
+
{HB_TAG('q','v','z',' '), HB_TAG('Q','U','Z',' ')}, /* Northern Pastaza Quichua -> Quechua */
|
|
1299
|
+
{HB_TAG('q','w','a',' '), HB_TAG('Q','W','H',' ')}, /* Corongo Ancash Quechua -> Quechua (Peru) */
|
|
1300
|
+
{HB_TAG('q','w','a',' '), HB_TAG('Q','U','Z',' ')}, /* Corongo Ancash Quechua -> Quechua */
|
|
1301
|
+
{HB_TAG('q','w','c',' '), HB_TAG('Q','U','Z',' ')}, /* Classical Quechua -> Quechua */
|
|
1302
|
+
{HB_TAG('q','w','h',' '), HB_TAG('Q','W','H',' ')}, /* Huaylas Ancash Quechua -> Quechua (Peru) */
|
|
1303
|
+
{HB_TAG('q','w','h',' '), HB_TAG('Q','U','Z',' ')}, /* Huaylas Ancash Quechua -> Quechua */
|
|
1304
|
+
{HB_TAG('q','w','s',' '), HB_TAG('Q','W','H',' ')}, /* Sihuas Ancash Quechua -> Quechua (Peru) */
|
|
1305
|
+
{HB_TAG('q','w','s',' '), HB_TAG('Q','U','Z',' ')}, /* Sihuas Ancash Quechua -> Quechua */
|
|
1306
|
+
{HB_TAG('q','w','t',' '), HB_TAG('A','T','H',' ')}, /* Kwalhioqua-Tlatskanai -> Athapaskan */
|
|
1307
|
+
{HB_TAG('q','x','a',' '), HB_TAG('Q','W','H',' ')}, /* Chiquián Ancash Quechua -> Quechua (Peru) */
|
|
1308
|
+
{HB_TAG('q','x','a',' '), HB_TAG('Q','U','Z',' ')}, /* Chiquián Ancash Quechua -> Quechua */
|
|
1309
|
+
{HB_TAG('q','x','c',' '), HB_TAG('Q','W','H',' ')}, /* Chincha Quechua -> Quechua (Peru) */
|
|
1310
|
+
{HB_TAG('q','x','c',' '), HB_TAG('Q','U','Z',' ')}, /* Chincha Quechua -> Quechua */
|
|
1311
|
+
{HB_TAG('q','x','h',' '), HB_TAG('Q','W','H',' ')}, /* Panao Huánuco Quechua -> Quechua (Peru) */
|
|
1312
|
+
{HB_TAG('q','x','h',' '), HB_TAG('Q','U','Z',' ')}, /* Panao Huánuco Quechua -> Quechua */
|
|
1313
|
+
{HB_TAG('q','x','l',' '), HB_TAG('Q','V','I',' ')}, /* Salasaca Highland Quichua -> Quechua (Ecuador) */
|
|
1314
|
+
{HB_TAG('q','x','l',' '), HB_TAG('Q','U','Z',' ')}, /* Salasaca Highland Quichua -> Quechua */
|
|
1315
|
+
{HB_TAG('q','x','n',' '), HB_TAG('Q','W','H',' ')}, /* Northern Conchucos Ancash Quechua -> Quechua (Peru) */
|
|
1316
|
+
{HB_TAG('q','x','n',' '), HB_TAG('Q','U','Z',' ')}, /* Northern Conchucos Ancash Quechua -> Quechua */
|
|
1317
|
+
{HB_TAG('q','x','o',' '), HB_TAG('Q','W','H',' ')}, /* Southern Conchucos Ancash Quechua -> Quechua (Peru) */
|
|
1318
|
+
{HB_TAG('q','x','o',' '), HB_TAG('Q','U','Z',' ')}, /* Southern Conchucos Ancash Quechua -> Quechua */
|
|
1319
|
+
{HB_TAG('q','x','p',' '), HB_TAG('Q','U','Z',' ')}, /* Puno Quechua -> Quechua */
|
|
1320
|
+
{HB_TAG('q','x','r',' '), HB_TAG('Q','V','I',' ')}, /* Cañar Highland Quichua -> Quechua (Ecuador) */
|
|
1321
|
+
{HB_TAG('q','x','r',' '), HB_TAG('Q','U','Z',' ')}, /* Cañar Highland Quichua -> Quechua */
|
|
1322
|
+
{HB_TAG('q','x','t',' '), HB_TAG('Q','W','H',' ')}, /* Santa Ana de Tusi Pasco Quechua -> Quechua (Peru) */
|
|
1323
|
+
{HB_TAG('q','x','t',' '), HB_TAG('Q','U','Z',' ')}, /* Santa Ana de Tusi Pasco Quechua -> Quechua */
|
|
1324
|
+
{HB_TAG('q','x','u',' '), HB_TAG('Q','U','Z',' ')}, /* Arequipa-La Unión Quechua -> Quechua */
|
|
1325
|
+
{HB_TAG('q','x','w',' '), HB_TAG('Q','W','H',' ')}, /* Jauja Wanca Quechua -> Quechua (Peru) */
|
|
1326
|
+
{HB_TAG('q','x','w',' '), HB_TAG('Q','U','Z',' ')}, /* Jauja Wanca Quechua -> Quechua */
|
|
1327
|
+
{HB_TAG('r','a','g',' '), HB_TAG('L','U','H',' ')}, /* Logooli -> Luyia */
|
|
1328
|
+
/*{HB_TAG('r','a','j',' '), HB_TAG('R','A','J',' ')},*/ /* Rajasthani [macrolanguage] */
|
|
1329
|
+
{HB_TAG('r','a','l',' '), HB_TAG('Q','I','N',' ')}, /* Ralte -> Chin */
|
|
1330
|
+
/*{HB_TAG('r','a','r',' '), HB_TAG('R','A','R',' ')},*/ /* Rarotongan */
|
|
1331
|
+
{HB_TAG('r','b','b',' '), HB_TAG('P','L','G',' ')}, /* Rumai Palaung -> Palaung */
|
|
1332
|
+
{HB_TAG('r','b','l',' '), HB_TAG('B','I','K',' ')}, /* Miraya Bikol -> Bikol */
|
|
1333
|
+
{HB_TAG('r','c','f',' '), HB_TAG('C','P','P',' ')}, /* Réunion Creole French -> Creoles */
|
|
1334
|
+
/*{HB_TAG('r','e','j',' '), HB_TAG('R','E','J',' ')},*/ /* Rejang */
|
|
1335
|
+
/*{HB_TAG('r','h','g',' '), HB_TAG('R','H','G',' ')},*/ /* Rohingya */
|
|
1336
|
+
/*{HB_TAG('r','i','a',' '), HB_TAG('R','I','A',' ')},*/ /* Riang (India) */
|
|
1337
|
+
{HB_TAG('r','i','f',' '), HB_TAG('R','I','F',' ')}, /* Tarifit */
|
|
1338
|
+
{HB_TAG('r','i','f',' '), HB_TAG('B','B','R',' ')}, /* Tarifit -> Berber */
|
|
1339
|
+
/*{HB_TAG('r','i','t',' '), HB_TAG('R','I','T',' ')},*/ /* Ritharrngu -> Ritarungo */
|
|
1340
|
+
{HB_TAG('r','k','i',' '), HB_TAG('A','R','K',' ')}, /* Rakhine */
|
|
1341
|
+
/*{HB_TAG('r','k','w',' '), HB_TAG('R','K','W',' ')},*/ /* Arakwal */
|
|
1342
|
+
{HB_TAG('r','m','c',' '), HB_TAG('R','O','Y',' ')}, /* Carpathian Romani -> Romany */
|
|
1343
|
+
{HB_TAG('r','m','f',' '), HB_TAG('R','O','Y',' ')}, /* Kalo Finnish Romani -> Romany */
|
|
1344
|
+
{HB_TAG('r','m','l',' '), HB_TAG('R','O','Y',' ')}, /* Baltic Romani -> Romany */
|
|
1345
|
+
{HB_TAG('r','m','n',' '), HB_TAG('R','O','Y',' ')}, /* Balkan Romani -> Romany */
|
|
1346
|
+
{HB_TAG('r','m','o',' '), HB_TAG('R','O','Y',' ')}, /* Sinte Romani -> Romany */
|
|
1347
|
+
{HB_TAG('r','m','s',' '), HB_TAG_NONE }, /* Romanian Sign Language != Romansh */
|
|
1348
|
+
{HB_TAG('r','m','w',' '), HB_TAG('R','O','Y',' ')}, /* Welsh Romani -> Romany */
|
|
1349
|
+
{HB_TAG('r','m','y',' '), HB_TAG('R','M','Y',' ')}, /* Vlax Romani */
|
|
1350
|
+
{HB_TAG('r','m','y',' '), HB_TAG('R','O','Y',' ')}, /* Vlax Romani -> Romany */
|
|
1351
|
+
{HB_TAG('r','m','z',' '), HB_TAG('A','R','K',' ')}, /* Marma -> Rakhine */
|
|
1352
|
+
{HB_TAG('r','o','m',' '), HB_TAG('R','O','Y',' ')}, /* Romany [macrolanguage] */
|
|
1353
|
+
{HB_TAG('r','o','p',' '), HB_TAG('C','P','P',' ')}, /* Kriol -> Creoles */
|
|
1354
|
+
{HB_TAG('r','t','c',' '), HB_TAG('Q','I','N',' ')}, /* Rungtu Chin -> Chin */
|
|
1355
|
+
/*{HB_TAG('r','t','m',' '), HB_TAG('R','T','M',' ')},*/ /* Rotuman */
|
|
1356
|
+
{HB_TAG('r','u','e',' '), HB_TAG('R','S','Y',' ')}, /* Rusyn */
|
|
1357
|
+
/*{HB_TAG('r','u','p',' '), HB_TAG('R','U','P',' ')},*/ /* Aromanian */
|
|
1358
|
+
{HB_TAG('r','w','r',' '), HB_TAG('M','A','W',' ')}, /* Marwari (India) */
|
|
1359
|
+
{HB_TAG('s','a','d',' '), HB_TAG_NONE }, /* Sandawe != Sadri */
|
|
1360
|
+
{HB_TAG('s','a','h',' '), HB_TAG('Y','A','K',' ')}, /* Yakut -> Sakha */
|
|
1361
|
+
{HB_TAG('s','a','m',' '), HB_TAG('P','A','A',' ')}, /* Samaritan Aramaic -> Palestinian Aramaic */
|
|
1362
|
+
/*{HB_TAG('s','a','s',' '), HB_TAG('S','A','S',' ')},*/ /* Sasak */
|
|
1363
|
+
/*{HB_TAG('s','a','t',' '), HB_TAG('S','A','T',' ')},*/ /* Santali */
|
|
1364
|
+
{HB_TAG('s','a','y',' '), HB_TAG_NONE }, /* Saya != Sayisi */
|
|
1365
|
+
{HB_TAG('s','c','f',' '), HB_TAG('C','P','P',' ')}, /* San Miguel Creole French -> Creoles */
|
|
1366
|
+
{HB_TAG('s','c','h',' '), HB_TAG('Q','I','N',' ')}, /* Sakachep -> Chin */
|
|
1367
|
+
{HB_TAG('s','c','i',' '), HB_TAG('C','P','P',' ')}, /* Sri Lankan Creole Malay -> Creoles */
|
|
1368
|
+
{HB_TAG('s','c','k',' '), HB_TAG('S','A','D',' ')}, /* Sadri */
|
|
1369
|
+
/*{HB_TAG('s','c','n',' '), HB_TAG('S','C','N',' ')},*/ /* Sicilian */
|
|
1370
|
+
/*{HB_TAG('s','c','o',' '), HB_TAG('S','C','O',' ')},*/ /* Scots */
|
|
1371
|
+
{HB_TAG('s','c','s',' '), HB_TAG('S','C','S',' ')}, /* North Slavey */
|
|
1372
|
+
{HB_TAG('s','c','s',' '), HB_TAG('S','L','A',' ')}, /* North Slavey -> Slavey */
|
|
1373
|
+
{HB_TAG('s','c','s',' '), HB_TAG('A','T','H',' ')}, /* North Slavey -> Athapaskan */
|
|
1374
|
+
{HB_TAG('s','d','c',' '), HB_TAG('S','R','D',' ')}, /* Sassarese Sardinian -> Sardinian */
|
|
1375
|
+
{HB_TAG('s','d','h',' '), HB_TAG('K','U','R',' ')}, /* Southern Kurdish -> Kurdish */
|
|
1376
|
+
{HB_TAG('s','d','n',' '), HB_TAG('S','R','D',' ')}, /* Gallurese Sardinian -> Sardinian */
|
|
1377
|
+
{HB_TAG('s','d','s',' '), HB_TAG('B','B','R',' ')}, /* Sened -> Berber */
|
|
1378
|
+
/*{HB_TAG('s','e','e',' '), HB_TAG('S','E','E',' ')},*/ /* Seneca */
|
|
1379
|
+
{HB_TAG('s','e','h',' '), HB_TAG('S','N','A',' ')}, /* Sena */
|
|
1380
|
+
{HB_TAG('s','e','k',' '), HB_TAG('A','T','H',' ')}, /* Sekani -> Athapaskan */
|
|
1381
|
+
/*{HB_TAG('s','e','l',' '), HB_TAG('S','E','L',' ')},*/ /* Selkup */
|
|
1382
|
+
{HB_TAG('s','e','z',' '), HB_TAG('Q','I','N',' ')}, /* Senthang Chin -> Chin */
|
|
1383
|
+
{HB_TAG('s','f','m',' '), HB_TAG('S','F','M',' ')}, /* Small Flowery Miao */
|
|
1384
|
+
{HB_TAG('s','f','m',' '), HB_TAG('H','M','N',' ')}, /* Small Flowery Miao -> Hmong */
|
|
1385
|
+
/*{HB_TAG('s','g','a',' '), HB_TAG('S','G','A',' ')},*/ /* Old Irish (to 900) */
|
|
1386
|
+
{HB_TAG('s','g','c',' '), HB_TAG('K','A','L',' ')}, /* Kipsigis -> Kalenjin */
|
|
1387
|
+
{HB_TAG('s','g','o',' '), HB_TAG_NONE }, /* Songa (retired code) != Sango */
|
|
1388
|
+
/*{HB_TAG('s','g','s',' '), HB_TAG('S','G','S',' ')},*/ /* Samogitian */
|
|
1389
|
+
{HB_TAG('s','g','w',' '), HB_TAG('C','H','G',' ')}, /* Sebat Bet Gurage -> Chaha Gurage */
|
|
1390
|
+
{HB_TAG('s','h','i',' '), HB_TAG('S','H','I',' ')}, /* Tachelhit */
|
|
1391
|
+
{HB_TAG('s','h','i',' '), HB_TAG('B','B','R',' ')}, /* Tachelhit -> Berber */
|
|
1392
|
+
{HB_TAG('s','h','l',' '), HB_TAG('Q','I','N',' ')}, /* Shendu -> Chin */
|
|
1393
|
+
/*{HB_TAG('s','h','n',' '), HB_TAG('S','H','N',' ')},*/ /* Shan */
|
|
1394
|
+
{HB_TAG('s','h','u',' '), HB_TAG('A','R','A',' ')}, /* Chadian Arabic -> Arabic */
|
|
1395
|
+
{HB_TAG('s','h','y',' '), HB_TAG('B','B','R',' ')}, /* Tachawit -> Berber */
|
|
1396
|
+
{HB_TAG('s','i','b',' '), HB_TAG_NONE }, /* Sebop != Sibe */
|
|
1397
|
+
/*{HB_TAG('s','i','d',' '), HB_TAG('S','I','D',' ')},*/ /* Sidamo */
|
|
1398
|
+
{HB_TAG('s','i','g',' '), HB_TAG_NONE }, /* Paasaal != Silte Gurage */
|
|
1399
|
+
{HB_TAG('s','i','z',' '), HB_TAG('B','B','R',' ')}, /* Siwi -> Berber */
|
|
1400
|
+
/*{HB_TAG('s','j','a',' '), HB_TAG('S','J','A',' ')},*/ /* Epena */
|
|
1401
|
+
{HB_TAG('s','j','d',' '), HB_TAG('K','S','M',' ')}, /* Kildin Sami */
|
|
1402
|
+
{HB_TAG('s','j','o',' '), HB_TAG('S','I','B',' ')}, /* Xibe -> Sibe */
|
|
1403
|
+
{HB_TAG('s','j','s',' '), HB_TAG('B','B','R',' ')}, /* Senhaja De Srair -> Berber */
|
|
1404
|
+
{HB_TAG('s','k','g',' '), HB_TAG('M','L','G',' ')}, /* Sakalava Malagasy -> Malagasy */
|
|
1405
|
+
{HB_TAG('s','k','r',' '), HB_TAG('S','R','K',' ')}, /* Saraiki */
|
|
1406
|
+
{HB_TAG('s','k','s',' '), HB_TAG_NONE }, /* Maia != Skolt Sami */
|
|
1407
|
+
{HB_TAG('s','k','w',' '), HB_TAG('C','P','P',' ')}, /* Skepi Creole Dutch -> Creoles */
|
|
1408
|
+
{HB_TAG('s','k','y',' '), HB_TAG_NONE }, /* Sikaiana != Slovak */
|
|
1409
|
+
{HB_TAG('s','l','a',' '), HB_TAG_NONE }, /* Slavic [collection] != Slavey */
|
|
1410
|
+
{HB_TAG('s','m','a',' '), HB_TAG('S','S','M',' ')}, /* Southern Sami */
|
|
1411
|
+
{HB_TAG('s','m','d',' '), HB_TAG('M','B','N',' ')}, /* Sama (retired code) -> Mbundu */
|
|
1412
|
+
{HB_TAG('s','m','j',' '), HB_TAG('L','S','M',' ')}, /* Lule Sami */
|
|
1413
|
+
{HB_TAG('s','m','l',' '), HB_TAG_NONE }, /* Central Sama != Somali */
|
|
1414
|
+
{HB_TAG('s','m','n',' '), HB_TAG('I','S','M',' ')}, /* Inari Sami */
|
|
1415
|
+
{HB_TAG('s','m','s',' '), HB_TAG('S','K','S',' ')}, /* Skolt Sami */
|
|
1416
|
+
{HB_TAG('s','m','t',' '), HB_TAG('Q','I','N',' ')}, /* Simte -> Chin */
|
|
1417
|
+
{HB_TAG('s','n','b',' '), HB_TAG('I','B','A',' ')}, /* Sebuyau (retired code) -> Iban */
|
|
1418
|
+
{HB_TAG('s','n','h',' '), HB_TAG_NONE }, /* Shinabo (retired code) != Sinhala (Sinhalese) */
|
|
1419
|
+
/*{HB_TAG('s','n','k',' '), HB_TAG('S','N','K',' ')},*/ /* Soninke */
|
|
1420
|
+
{HB_TAG('s','o','g',' '), HB_TAG_NONE }, /* Sogdian != Sodo Gurage */
|
|
1421
|
+
/*{HB_TAG('s','o','p',' '), HB_TAG('S','O','P',' ')},*/ /* Songe */
|
|
1422
|
+
{HB_TAG('s','p','v',' '), HB_TAG('O','R','I',' ')}, /* Sambalpuri -> Odia */
|
|
1423
|
+
{HB_TAG('s','p','y',' '), HB_TAG('K','A','L',' ')}, /* Sabaot -> Kalenjin */
|
|
1424
|
+
{HB_TAG('s','r','b',' '), HB_TAG_NONE }, /* Sora != Serbian */
|
|
1425
|
+
{HB_TAG('s','r','c',' '), HB_TAG('S','R','D',' ')}, /* Logudorese Sardinian -> Sardinian */
|
|
1426
|
+
{HB_TAG('s','r','k',' '), HB_TAG_NONE }, /* Serudung Murut != Saraiki */
|
|
1427
|
+
{HB_TAG('s','r','m',' '), HB_TAG('C','P','P',' ')}, /* Saramaccan -> Creoles */
|
|
1428
|
+
{HB_TAG('s','r','n',' '), HB_TAG('C','P','P',' ')}, /* Sranan Tongo -> Creoles */
|
|
1429
|
+
{HB_TAG('s','r','o',' '), HB_TAG('S','R','D',' ')}, /* Campidanese Sardinian -> Sardinian */
|
|
1430
|
+
/*{HB_TAG('s','r','r',' '), HB_TAG('S','R','R',' ')},*/ /* Serer */
|
|
1431
|
+
{HB_TAG('s','r','s',' '), HB_TAG('A','T','H',' ')}, /* Sarsi -> Athapaskan */
|
|
1432
|
+
{HB_TAG('s','s','h',' '), HB_TAG('A','R','A',' ')}, /* Shihhi Arabic -> Arabic */
|
|
1433
|
+
{HB_TAG('s','s','l',' '), HB_TAG_NONE }, /* Western Sisaala != South Slavey */
|
|
1434
|
+
{HB_TAG('s','s','m',' '), HB_TAG_NONE }, /* Semnam != Southern Sami */
|
|
1435
|
+
{HB_TAG('s','t','a',' '), HB_TAG('C','P','P',' ')}, /* Settla -> Creoles */
|
|
1436
|
+
/*{HB_TAG('s','t','q',' '), HB_TAG('S','T','Q',' ')},*/ /* Saterfriesisch -> Saterland Frisian */
|
|
1437
|
+
/*{HB_TAG('s','t','r',' '), HB_TAG('S','T','R',' ')},*/ /* Straits Salish */
|
|
1438
|
+
{HB_TAG('s','t','v',' '), HB_TAG('S','I','G',' ')}, /* Silt'e -> Silte Gurage */
|
|
1439
|
+
/*{HB_TAG('s','u','k',' '), HB_TAG('S','U','K',' ')},*/ /* Sukuma */
|
|
1440
|
+
{HB_TAG('s','u','q',' '), HB_TAG('S','U','R',' ')}, /* Suri */
|
|
1441
|
+
{HB_TAG('s','u','r',' '), HB_TAG_NONE }, /* Mwaghavul != Suri */
|
|
1442
|
+
/*{HB_TAG('s','v','a',' '), HB_TAG('S','V','A',' ')},*/ /* Svan */
|
|
1443
|
+
{HB_TAG('s','v','c',' '), HB_TAG('C','P','P',' ')}, /* Vincentian Creole English -> Creoles */
|
|
1444
|
+
{HB_TAG('s','v','e',' '), HB_TAG_NONE }, /* Serili != Swedish */
|
|
1445
|
+
{HB_TAG('s','w','b',' '), HB_TAG('C','M','R',' ')}, /* Maore Comorian -> Comorian */
|
|
1446
|
+
{HB_TAG('s','w','c',' '), HB_TAG('S','W','K',' ')}, /* Congo Swahili -> Swahili */
|
|
1447
|
+
{HB_TAG('s','w','h',' '), HB_TAG('S','W','K',' ')}, /* Swahili */
|
|
1448
|
+
{HB_TAG('s','w','k',' '), HB_TAG_NONE }, /* Malawi Sena != Swahili */
|
|
1449
|
+
{HB_TAG('s','w','n',' '), HB_TAG('B','B','R',' ')}, /* Sawknah -> Berber */
|
|
1450
|
+
{HB_TAG('s','w','v',' '), HB_TAG('M','A','W',' ')}, /* Shekhawati -> Marwari */
|
|
1451
|
+
/*{HB_TAG('s','x','u',' '), HB_TAG('S','X','U',' ')},*/ /* Upper Saxon */
|
|
1452
|
+
{HB_TAG('s','y','c',' '), HB_TAG('S','Y','R',' ')}, /* Classical Syriac -> Syriac */
|
|
1453
|
+
/*{HB_TAG('s','y','l',' '), HB_TAG('S','Y','L',' ')},*/ /* Sylheti */
|
|
1454
|
+
/*{HB_TAG('s','y','r',' '), HB_TAG('S','Y','R',' ')},*/ /* Syriac [macrolanguage] */
|
|
1455
|
+
/*{HB_TAG('s','z','l',' '), HB_TAG('S','Z','L',' ')},*/ /* Silesian */
|
|
1456
|
+
{HB_TAG('t','a','a',' '), HB_TAG('A','T','H',' ')}, /* Lower Tanana -> Athapaskan */
|
|
1457
|
+
/*{HB_TAG('t','a','b',' '), HB_TAG('T','A','B',' ')},*/ /* Tabassaran -> Tabasaran */
|
|
1458
|
+
{HB_TAG('t','a','j',' '), HB_TAG_NONE }, /* Eastern Tamang != Tajiki */
|
|
1459
|
+
{HB_TAG('t','a','q',' '), HB_TAG('T','A','Q',' ')}, /* Tamasheq */
|
|
1460
|
+
{HB_TAG('t','a','q',' '), HB_TAG('T','M','H',' ')}, /* Tamasheq -> Tamashek */
|
|
1461
|
+
{HB_TAG('t','a','q',' '), HB_TAG('B','B','R',' ')}, /* Tamasheq -> Berber */
|
|
1462
|
+
{HB_TAG('t','a','s',' '), HB_TAG('C','P','P',' ')}, /* Tay Boi -> Creoles */
|
|
1463
|
+
{HB_TAG('t','a','u',' '), HB_TAG('A','T','H',' ')}, /* Upper Tanana -> Athapaskan */
|
|
1464
|
+
{HB_TAG('t','c','b',' '), HB_TAG('A','T','H',' ')}, /* Tanacross -> Athapaskan */
|
|
1465
|
+
{HB_TAG('t','c','e',' '), HB_TAG('A','T','H',' ')}, /* Southern Tutchone -> Athapaskan */
|
|
1466
|
+
{HB_TAG('t','c','h',' '), HB_TAG('C','P','P',' ')}, /* Turks And Caicos Creole English -> Creoles */
|
|
1467
|
+
{HB_TAG('t','c','p',' '), HB_TAG('Q','I','N',' ')}, /* Tawr Chin -> Chin */
|
|
1468
|
+
{HB_TAG('t','c','s',' '), HB_TAG('C','P','P',' ')}, /* Torres Strait Creole -> Creoles */
|
|
1469
|
+
{HB_TAG('t','c','y',' '), HB_TAG('T','U','L',' ')}, /* Tulu */
|
|
1470
|
+
{HB_TAG('t','c','z',' '), HB_TAG('Q','I','N',' ')}, /* Thado Chin -> Chin */
|
|
1471
|
+
/*{HB_TAG('t','d','c',' '), HB_TAG('T','D','C',' ')},*/ /* Emberá-Tadó */
|
|
1472
|
+
/*{HB_TAG('t','d','d',' '), HB_TAG('T','D','D',' ')},*/ /* Tai Nüa -> Dehong Dai */
|
|
1473
|
+
{HB_TAG('t','d','x',' '), HB_TAG('M','L','G',' ')}, /* Tandroy-Mahafaly Malagasy -> Malagasy */
|
|
1474
|
+
{HB_TAG('t','e','c',' '), HB_TAG('K','A','L',' ')}, /* Terik -> Kalenjin */
|
|
1475
|
+
{HB_TAG('t','e','m',' '), HB_TAG('T','M','N',' ')}, /* Timne -> Temne */
|
|
1476
|
+
/*{HB_TAG('t','e','t',' '), HB_TAG('T','E','T',' ')},*/ /* Tetum */
|
|
1477
|
+
{HB_TAG('t','e','z',' '), HB_TAG('B','B','R',' ')}, /* Tetserret -> Berber */
|
|
1478
|
+
{HB_TAG('t','f','n',' '), HB_TAG('A','T','H',' ')}, /* Tanaina -> Athapaskan */
|
|
1479
|
+
{HB_TAG('t','g','h',' '), HB_TAG('C','P','P',' ')}, /* Tobagonian Creole English -> Creoles */
|
|
1480
|
+
{HB_TAG('t','g','j',' '), HB_TAG('N','I','S',' ')}, /* Tagin -> Nisi */
|
|
1481
|
+
{HB_TAG('t','g','n',' '), HB_TAG_NONE }, /* Tandaganon != Tongan */
|
|
1482
|
+
{HB_TAG('t','g','r',' '), HB_TAG_NONE }, /* Tareng != Tigre */
|
|
1483
|
+
{HB_TAG('t','g','x',' '), HB_TAG('A','T','H',' ')}, /* Tagish -> Athapaskan */
|
|
1484
|
+
{HB_TAG('t','g','y',' '), HB_TAG_NONE }, /* Togoyo != Tigrinya */
|
|
1485
|
+
/*{HB_TAG('t','h','p',' '), HB_TAG('T','H','P',' ')},*/ /* Thompson */
|
|
1486
|
+
{HB_TAG('t','h','t',' '), HB_TAG('A','T','H',' ')}, /* Tahltan -> Athapaskan */
|
|
1487
|
+
{HB_TAG('t','h','v',' '), HB_TAG('T','H','V',' ')}, /* Tahaggart Tamahaq */
|
|
1488
|
+
{HB_TAG('t','h','v',' '), HB_TAG('T','M','H',' ')}, /* Tahaggart Tamahaq -> Tamashek */
|
|
1489
|
+
{HB_TAG('t','h','v',' '), HB_TAG('B','B','R',' ')}, /* Tahaggart Tamahaq -> Berber */
|
|
1490
|
+
{HB_TAG('t','h','z',' '), HB_TAG('T','H','Z',' ')}, /* Tayart Tamajeq */
|
|
1491
|
+
{HB_TAG('t','h','z',' '), HB_TAG('T','M','H',' ')}, /* Tayart Tamajeq -> Tamashek */
|
|
1492
|
+
{HB_TAG('t','h','z',' '), HB_TAG('B','B','R',' ')}, /* Tayart Tamajeq -> Berber */
|
|
1493
|
+
{HB_TAG('t','i','a',' '), HB_TAG('B','B','R',' ')}, /* Tidikelt Tamazight -> Berber */
|
|
1494
|
+
{HB_TAG('t','i','g',' '), HB_TAG('T','G','R',' ')}, /* Tigre */
|
|
1495
|
+
/*{HB_TAG('t','i','v',' '), HB_TAG('T','I','V',' ')},*/ /* Tiv */
|
|
1496
|
+
/*{HB_TAG('t','j','l',' '), HB_TAG('T','J','L',' ')},*/ /* Tai Laing */
|
|
1497
|
+
{HB_TAG('t','j','o',' '), HB_TAG('B','B','R',' ')}, /* Temacine Tamazight -> Berber */
|
|
1498
|
+
{HB_TAG('t','k','g',' '), HB_TAG('M','L','G',' ')}, /* Tesaka Malagasy -> Malagasy */
|
|
1499
|
+
{HB_TAG('t','k','m',' '), HB_TAG_NONE }, /* Takelma != Turkmen */
|
|
1500
|
+
/*{HB_TAG('t','l','i',' '), HB_TAG('T','L','I',' ')},*/ /* Tlingit */
|
|
1501
|
+
/*{HB_TAG('t','l','y',' '), HB_TAG('T','L','Y',' ')},*/ /* Talysh */
|
|
1502
|
+
{HB_TAG('t','m','g',' '), HB_TAG('C','P','P',' ')}, /* Ternateño -> Creoles */
|
|
1503
|
+
{HB_TAG('t','m','h',' '), HB_TAG('T','M','H',' ')}, /* Tamashek [macrolanguage] */
|
|
1504
|
+
{HB_TAG('t','m','h',' '), HB_TAG('B','B','R',' ')}, /* Tamashek [macrolanguage] -> Berber */
|
|
1505
|
+
{HB_TAG('t','m','n',' '), HB_TAG_NONE }, /* Taman (Indonesia) != Temne */
|
|
1506
|
+
{HB_TAG('t','m','w',' '), HB_TAG('M','L','Y',' ')}, /* Temuan -> Malay */
|
|
1507
|
+
{HB_TAG('t','n','a',' '), HB_TAG_NONE }, /* Tacana != Tswana */
|
|
1508
|
+
{HB_TAG('t','n','e',' '), HB_TAG_NONE }, /* Tinoc Kallahan (retired code) != Tundra Enets */
|
|
1509
|
+
{HB_TAG('t','n','f',' '), HB_TAG('D','R','I',' ')}, /* Tangshewi (retired code) -> Dari */
|
|
1510
|
+
{HB_TAG('t','n','f',' '), HB_TAG('F','A','R',' ')}, /* Tangshewi (retired code) -> Persian */
|
|
1511
|
+
{HB_TAG('t','n','g',' '), HB_TAG_NONE }, /* Tobanga != Tonga */
|
|
1512
|
+
{HB_TAG('t','o','d',' '), HB_TAG('T','O','D','0')}, /* Toma */
|
|
1513
|
+
{HB_TAG('t','o','i',' '), HB_TAG('T','N','G',' ')}, /* Tonga (Zambia) */
|
|
1514
|
+
{HB_TAG('t','o','j',' '), HB_TAG('M','Y','N',' ')}, /* Tojolabal -> Mayan */
|
|
1515
|
+
{HB_TAG('t','o','l',' '), HB_TAG('A','T','H',' ')}, /* Tolowa -> Athapaskan */
|
|
1516
|
+
{HB_TAG('t','o','r',' '), HB_TAG('B','A','D','0')}, /* Togbo-Vara Banda -> Banda */
|
|
1517
|
+
{HB_TAG('t','p','i',' '), HB_TAG('T','P','I',' ')}, /* Tok Pisin */
|
|
1518
|
+
{HB_TAG('t','p','i',' '), HB_TAG('C','P','P',' ')}, /* Tok Pisin -> Creoles */
|
|
1519
|
+
{HB_TAG('t','r','f',' '), HB_TAG('C','P','P',' ')}, /* Trinidadian Creole English -> Creoles */
|
|
1520
|
+
{HB_TAG('t','r','k',' '), HB_TAG_NONE }, /* Turkic [collection] != Turkish */
|
|
1521
|
+
{HB_TAG('t','r','u',' '), HB_TAG('T','U','A',' ')}, /* Turoyo -> Turoyo Aramaic */
|
|
1522
|
+
{HB_TAG('t','r','u',' '), HB_TAG('S','Y','R',' ')}, /* Turoyo -> Syriac */
|
|
1523
|
+
{HB_TAG('t','s','g',' '), HB_TAG_NONE }, /* Tausug != Tsonga */
|
|
1524
|
+
/*{HB_TAG('t','s','j',' '), HB_TAG('T','S','J',' ')},*/ /* Tshangla */
|
|
1525
|
+
{HB_TAG('t','t','c',' '), HB_TAG('M','Y','N',' ')}, /* Tektiteko -> Mayan */
|
|
1526
|
+
{HB_TAG('t','t','m',' '), HB_TAG('A','T','H',' ')}, /* Northern Tutchone -> Athapaskan */
|
|
1527
|
+
{HB_TAG('t','t','q',' '), HB_TAG('T','T','Q',' ')}, /* Tawallammat Tamajaq */
|
|
1528
|
+
{HB_TAG('t','t','q',' '), HB_TAG('T','M','H',' ')}, /* Tawallammat Tamajaq -> Tamashek */
|
|
1529
|
+
{HB_TAG('t','t','q',' '), HB_TAG('B','B','R',' ')}, /* Tawallammat Tamajaq -> Berber */
|
|
1530
|
+
{HB_TAG('t','u','a',' '), HB_TAG_NONE }, /* Wiarumus != Turoyo Aramaic */
|
|
1531
|
+
{HB_TAG('t','u','l',' '), HB_TAG_NONE }, /* Tula != Tulu */
|
|
1532
|
+
/*{HB_TAG('t','u','m',' '), HB_TAG('T','U','M',' ')},*/ /* Tumbuka */
|
|
1533
|
+
/*{HB_TAG('t','u','s',' '), HB_TAG('T','U','S',' ')},*/ /* Tuscarora */
|
|
1534
|
+
{HB_TAG('t','u','u',' '), HB_TAG('A','T','H',' ')}, /* Tututni -> Athapaskan */
|
|
1535
|
+
{HB_TAG('t','u','v',' '), HB_TAG_NONE }, /* Turkana != Tuvin */
|
|
1536
|
+
{HB_TAG('t','u','y',' '), HB_TAG('K','A','L',' ')}, /* Tugen -> Kalenjin */
|
|
1537
|
+
/*{HB_TAG('t','v','l',' '), HB_TAG('T','V','L',' ')},*/ /* Tuvalu */
|
|
1538
|
+
{HB_TAG('t','v','y',' '), HB_TAG('C','P','P',' ')}, /* Timor Pidgin -> Creoles */
|
|
1539
|
+
{HB_TAG('t','x','c',' '), HB_TAG('A','T','H',' ')}, /* Tsetsaut -> Athapaskan */
|
|
1540
|
+
{HB_TAG('t','x','y',' '), HB_TAG('M','L','G',' ')}, /* Tanosy Malagasy -> Malagasy */
|
|
1541
|
+
{HB_TAG('t','y','v',' '), HB_TAG('T','U','V',' ')}, /* Tuvinian -> Tuvin */
|
|
1542
|
+
/*{HB_TAG('t','y','z',' '), HB_TAG('T','Y','Z',' ')},*/ /* Tày */
|
|
1543
|
+
{HB_TAG('t','z','h',' '), HB_TAG('M','Y','N',' ')}, /* Tzeltal -> Mayan */
|
|
1544
|
+
{HB_TAG('t','z','j',' '), HB_TAG('M','Y','N',' ')}, /* Tz'utujil -> Mayan */
|
|
1545
|
+
{HB_TAG('t','z','m',' '), HB_TAG('T','Z','M',' ')}, /* Central Atlas Tamazight -> Tamazight */
|
|
1546
|
+
{HB_TAG('t','z','m',' '), HB_TAG('B','B','R',' ')}, /* Central Atlas Tamazight -> Berber */
|
|
1547
|
+
{HB_TAG('t','z','o',' '), HB_TAG('T','Z','O',' ')}, /* Tzotzil */
|
|
1548
|
+
{HB_TAG('t','z','o',' '), HB_TAG('M','Y','N',' ')}, /* Tzotzil -> Mayan */
|
|
1549
|
+
{HB_TAG('u','b','l',' '), HB_TAG('B','I','K',' ')}, /* Buhi'non Bikol -> Bikol */
|
|
1550
|
+
/*{HB_TAG('u','d','i',' '), HB_TAG('U','D','I',' ')},*/ /* Udi */
|
|
1551
|
+
/*{HB_TAG('u','d','m',' '), HB_TAG('U','D','M',' ')},*/ /* Udmurt */
|
|
1552
|
+
{HB_TAG('u','k','i',' '), HB_TAG('K','U','I',' ')}, /* Kui (India) */
|
|
1553
|
+
{HB_TAG('u','l','n',' '), HB_TAG('C','P','P',' ')}, /* Unserdeutsch -> Creoles */
|
|
1554
|
+
/*{HB_TAG('u','m','b',' '), HB_TAG('U','M','B',' ')},*/ /* Umbundu */
|
|
1555
|
+
{HB_TAG('u','n','r',' '), HB_TAG('M','U','N',' ')}, /* Mundari */
|
|
1556
|
+
{HB_TAG('u','r','k',' '), HB_TAG('M','L','Y',' ')}, /* Urak Lawoi' -> Malay */
|
|
1557
|
+
{HB_TAG('u','s','p',' '), HB_TAG('M','Y','N',' ')}, /* Uspanteco -> Mayan */
|
|
1558
|
+
{HB_TAG('u','z','n',' '), HB_TAG('U','Z','B',' ')}, /* Northern Uzbek -> Uzbek */
|
|
1559
|
+
{HB_TAG('u','z','s',' '), HB_TAG('U','Z','B',' ')}, /* Southern Uzbek -> Uzbek */
|
|
1560
|
+
{HB_TAG('v','a','p',' '), HB_TAG('Q','I','N',' ')}, /* Vaiphei -> Chin */
|
|
1561
|
+
/*{HB_TAG('v','e','c',' '), HB_TAG('V','E','C',' ')},*/ /* Venetian */
|
|
1562
|
+
{HB_TAG('v','i','c',' '), HB_TAG('C','P','P',' ')}, /* Virgin Islands Creole English -> Creoles */
|
|
1563
|
+
{HB_TAG('v','i','t',' '), HB_TAG_NONE }, /* Viti != Vietnamese */
|
|
1564
|
+
{HB_TAG('v','k','k',' '), HB_TAG('M','L','Y',' ')}, /* Kaur -> Malay */
|
|
1565
|
+
{HB_TAG('v','k','p',' '), HB_TAG('C','P','P',' ')}, /* Korlai Creole Portuguese -> Creoles */
|
|
1566
|
+
{HB_TAG('v','k','t',' '), HB_TAG('M','L','Y',' ')}, /* Tenggarong Kutai Malay -> Malay */
|
|
1567
|
+
{HB_TAG('v','l','s',' '), HB_TAG('F','L','E',' ')}, /* Vlaams -> Dutch (Flemish) */
|
|
1568
|
+
{HB_TAG('v','m','w',' '), HB_TAG('M','A','K',' ')}, /* Makhuwa */
|
|
1569
|
+
{HB_TAG('v','r','o',' '), HB_TAG('V','R','O',' ')}, /* Võro */
|
|
1570
|
+
{HB_TAG('v','r','o',' '), HB_TAG('E','T','I',' ')}, /* Võro -> Estonian */
|
|
1571
|
+
{HB_TAG('v','s','n',' '), HB_TAG('S','A','N',' ')}, /* Vedic Sanskrit -> Sanskrit */
|
|
1572
|
+
{HB_TAG('w','a','g',' '), HB_TAG_NONE }, /* Wa'ema != Wagdi */
|
|
1573
|
+
/*{HB_TAG('w','a','r',' '), HB_TAG('W','A','R',' ')},*/ /* Waray (Philippines) -> Waray-Waray */
|
|
1574
|
+
/*{HB_TAG('w','b','l',' '), HB_TAG('W','B','L',' ')},*/ /* Wakhi */
|
|
1575
|
+
{HB_TAG('w','b','m',' '), HB_TAG('W','A',' ',' ')}, /* Wa */
|
|
1576
|
+
{HB_TAG('w','b','r',' '), HB_TAG('W','A','G',' ')}, /* Wagdi */
|
|
1577
|
+
{HB_TAG('w','b','r',' '), HB_TAG('R','A','J',' ')}, /* Wagdi -> Rajasthani */
|
|
1578
|
+
/*{HB_TAG('w','c','i',' '), HB_TAG('W','C','I',' ')},*/ /* Waci Gbe */
|
|
1579
|
+
/*{HB_TAG('w','d','t',' '), HB_TAG('W','D','T',' ')},*/ /* Wendat */
|
|
1580
|
+
{HB_TAG('w','e','a',' '), HB_TAG('K','R','N',' ')}, /* Wewaw -> Karen */
|
|
1581
|
+
{HB_TAG('w','e','s',' '), HB_TAG('C','P','P',' ')}, /* Cameroon Pidgin -> Creoles */
|
|
1582
|
+
{HB_TAG('w','e','u',' '), HB_TAG('Q','I','N',' ')}, /* Rawngtu Chin -> Chin */
|
|
1583
|
+
{HB_TAG('w','l','c',' '), HB_TAG('C','M','R',' ')}, /* Mwali Comorian -> Comorian */
|
|
1584
|
+
{HB_TAG('w','l','e',' '), HB_TAG('S','I','G',' ')}, /* Wolane -> Silte Gurage */
|
|
1585
|
+
{HB_TAG('w','l','k',' '), HB_TAG('A','T','H',' ')}, /* Wailaki -> Athapaskan */
|
|
1586
|
+
{HB_TAG('w','n','i',' '), HB_TAG('C','M','R',' ')}, /* Ndzwani Comorian -> Comorian */
|
|
1587
|
+
{HB_TAG('w','r','y',' '), HB_TAG('M','A','W',' ')}, /* Merwari -> Marwari */
|
|
1588
|
+
{HB_TAG('w','s','g',' '), HB_TAG('G','O','N',' ')}, /* Adilabad Gondi -> Gondi */
|
|
1589
|
+
/*{HB_TAG('w','t','m',' '), HB_TAG('W','T','M',' ')},*/ /* Mewati */
|
|
1590
|
+
{HB_TAG('w','u','u',' '), HB_TAG('Z','H','S',' ')}, /* Wu Chinese -> Chinese, Simplified */
|
|
1591
|
+
{HB_TAG('w','y','a',' '), HB_TAG('W','D','T',' ')}, /* Wyandot (retired code) -> Wendat */
|
|
1592
|
+
{HB_TAG('w','y','a',' '), HB_TAG('W','Y','N',' ')}, /* Wyandot (retired code) */
|
|
1593
|
+
/*{HB_TAG('w','y','n',' '), HB_TAG('W','Y','N',' ')},*/ /* Wyandot */
|
|
1594
|
+
{HB_TAG('x','a','l',' '), HB_TAG('K','L','M',' ')}, /* Kalmyk */
|
|
1595
|
+
{HB_TAG('x','a','l',' '), HB_TAG('T','O','D',' ')}, /* Kalmyk -> Todo */
|
|
1596
|
+
{HB_TAG('x','a','n',' '), HB_TAG('S','E','K',' ')}, /* Xamtanga -> Sekota */
|
|
1597
|
+
{HB_TAG('x','b','d',' '), HB_TAG_NONE }, /* Bindal != Lü */
|
|
1598
|
+
/*{HB_TAG('x','j','b',' '), HB_TAG('X','J','B',' ')},*/ /* Minjungbal -> Minjangbal */
|
|
1599
|
+
/*{HB_TAG('x','k','f',' '), HB_TAG('X','K','F',' ')},*/ /* Khengkha */
|
|
1600
|
+
{HB_TAG('x','m','g',' '), HB_TAG('B','M','L',' ')}, /* Mengaka -> Bamileke */
|
|
1601
|
+
{HB_TAG('x','m','m',' '), HB_TAG('M','L','Y',' ')}, /* Manado Malay -> Malay */
|
|
1602
|
+
{HB_TAG('x','m','m',' '), HB_TAG('C','P','P',' ')}, /* Manado Malay -> Creoles */
|
|
1603
|
+
{HB_TAG('x','m','v',' '), HB_TAG('M','L','G',' ')}, /* Antankarana Malagasy -> Malagasy */
|
|
1604
|
+
{HB_TAG('x','m','w',' '), HB_TAG('M','L','G',' ')}, /* Tsimihety Malagasy -> Malagasy */
|
|
1605
|
+
{HB_TAG('x','n','j',' '), HB_TAG('S','X','T',' ')}, /* Ngoni (Tanzania) -> Sutu */
|
|
1606
|
+
{HB_TAG('x','n','q',' '), HB_TAG('S','X','T',' ')}, /* Ngoni (Mozambique) -> Sutu */
|
|
1607
|
+
{HB_TAG('x','n','r',' '), HB_TAG('D','G','R',' ')}, /* Kangri -> Dogri (macrolanguage) */
|
|
1608
|
+
/*{HB_TAG('x','o','g',' '), HB_TAG('X','O','G',' ')},*/ /* Soga */
|
|
1609
|
+
{HB_TAG('x','p','e',' '), HB_TAG('X','P','E',' ')}, /* Liberia Kpelle -> Kpelle (Liberia) */
|
|
1610
|
+
{HB_TAG('x','p','e',' '), HB_TAG('K','P','L',' ')}, /* Liberia Kpelle -> Kpelle */
|
|
1611
|
+
{HB_TAG('x','s','l',' '), HB_TAG('S','S','L',' ')}, /* South Slavey */
|
|
1612
|
+
{HB_TAG('x','s','l',' '), HB_TAG('S','L','A',' ')}, /* South Slavey -> Slavey */
|
|
1613
|
+
{HB_TAG('x','s','l',' '), HB_TAG('A','T','H',' ')}, /* South Slavey -> Athapaskan */
|
|
1614
|
+
{HB_TAG('x','s','t',' '), HB_TAG('S','I','G',' ')}, /* Silt'e (retired code) -> Silte Gurage */
|
|
1615
|
+
/*{HB_TAG('x','u','b',' '), HB_TAG('X','U','B',' ')},*/ /* Betta Kurumba -> Bette Kuruma */
|
|
1616
|
+
/*{HB_TAG('x','u','j',' '), HB_TAG('X','U','J',' ')},*/ /* Jennu Kurumba -> Jennu Kuruma */
|
|
1617
|
+
{HB_TAG('x','u','p',' '), HB_TAG('A','T','H',' ')}, /* Upper Umpqua -> Athapaskan */
|
|
1618
|
+
{HB_TAG('x','w','o',' '), HB_TAG('T','O','D',' ')}, /* Written Oirat -> Todo */
|
|
1619
|
+
{HB_TAG('y','a','j',' '), HB_TAG('B','A','D','0')}, /* Banda-Yangere -> Banda */
|
|
1620
|
+
{HB_TAG('y','a','k',' '), HB_TAG_NONE }, /* Yakama != Sakha */
|
|
1621
|
+
/*{HB_TAG('y','a','o',' '), HB_TAG('Y','A','O',' ')},*/ /* Yao */
|
|
1622
|
+
/*{HB_TAG('y','a','p',' '), HB_TAG('Y','A','P',' ')},*/ /* Yapese */
|
|
1623
|
+
{HB_TAG('y','b','a',' '), HB_TAG_NONE }, /* Yala != Yoruba */
|
|
1624
|
+
{HB_TAG('y','b','b',' '), HB_TAG('B','M','L',' ')}, /* Yemba -> Bamileke */
|
|
1625
|
+
{HB_TAG('y','b','d',' '), HB_TAG('A','R','K',' ')}, /* Yangbye (retired code) -> Rakhine */
|
|
1626
|
+
{HB_TAG('y','c','r',' '), HB_TAG_NONE }, /* Yilan Creole != Y-Cree */
|
|
1627
|
+
{HB_TAG('y','d','d',' '), HB_TAG('J','I','I',' ')}, /* Eastern Yiddish -> Yiddish */
|
|
1628
|
+
/*{HB_TAG('y','g','p',' '), HB_TAG('Y','G','P',' ')},*/ /* Gepo */
|
|
1629
|
+
{HB_TAG('y','i','h',' '), HB_TAG('J','I','I',' ')}, /* Western Yiddish -> Yiddish */
|
|
1630
|
+
{HB_TAG('y','i','m',' '), HB_TAG_NONE }, /* Yimchungru Naga != Yi Modern */
|
|
1631
|
+
/*{HB_TAG('y','n','a',' '), HB_TAG('Y','N','A',' ')},*/ /* Aluo */
|
|
1632
|
+
{HB_TAG('y','o','s',' '), HB_TAG('Q','I','N',' ')}, /* Yos (retired code) -> Chin */
|
|
1633
|
+
{HB_TAG('y','u','a',' '), HB_TAG('M','Y','N',' ')}, /* Yucateco -> Mayan */
|
|
1634
|
+
{HB_TAG('y','u','e',' '), HB_TAG('Z','H','H',' ')}, /* Yue Chinese -> Chinese, Traditional, Hong Kong SAR */
|
|
1635
|
+
/*{HB_TAG('y','u','f',' '), HB_TAG('Y','U','F',' ')},*/ /* Havasupai-Walapai-Yavapai */
|
|
1636
|
+
/*{HB_TAG('y','w','q',' '), HB_TAG('Y','W','Q',' ')},*/ /* Wuding-Luquan Yi */
|
|
1637
|
+
{HB_TAG('z','c','h',' '), HB_TAG('Z','H','A',' ')}, /* Central Hongshuihe Zhuang -> Zhuang */
|
|
1638
|
+
{HB_TAG('z','d','j',' '), HB_TAG('C','M','R',' ')}, /* Ngazidja Comorian -> Comorian */
|
|
1639
|
+
/*{HB_TAG('z','e','a',' '), HB_TAG('Z','E','A',' ')},*/ /* Zeeuws -> Zealandic */
|
|
1640
|
+
{HB_TAG('z','e','h',' '), HB_TAG('Z','H','A',' ')}, /* Eastern Hongshuihe Zhuang -> Zhuang */
|
|
1641
|
+
{HB_TAG('z','e','n',' '), HB_TAG('B','B','R',' ')}, /* Zenaga -> Berber */
|
|
1642
|
+
{HB_TAG('z','g','b',' '), HB_TAG('Z','H','A',' ')}, /* Guibei Zhuang -> Zhuang */
|
|
1643
|
+
{HB_TAG('z','g','h',' '), HB_TAG('Z','G','H',' ')}, /* Standard Moroccan Tamazight */
|
|
1644
|
+
{HB_TAG('z','g','h',' '), HB_TAG('B','B','R',' ')}, /* Standard Moroccan Tamazight -> Berber */
|
|
1645
|
+
{HB_TAG('z','g','m',' '), HB_TAG('Z','H','A',' ')}, /* Minz Zhuang -> Zhuang */
|
|
1646
|
+
{HB_TAG('z','g','n',' '), HB_TAG('Z','H','A',' ')}, /* Guibian Zhuang -> Zhuang */
|
|
1647
|
+
{HB_TAG('z','h','d',' '), HB_TAG('Z','H','A',' ')}, /* Dai Zhuang -> Zhuang */
|
|
1648
|
+
{HB_TAG('z','h','n',' '), HB_TAG('Z','H','A',' ')}, /* Nong Zhuang -> Zhuang */
|
|
1649
|
+
{HB_TAG('z','k','b',' '), HB_TAG('K','H','A',' ')}, /* Koibal (retired code) -> Khakass */
|
|
1650
|
+
{HB_TAG('z','l','j',' '), HB_TAG('Z','H','A',' ')}, /* Liujiang Zhuang -> Zhuang */
|
|
1651
|
+
{HB_TAG('z','l','m',' '), HB_TAG('M','L','Y',' ')}, /* Malay */
|
|
1652
|
+
{HB_TAG('z','l','n',' '), HB_TAG('Z','H','A',' ')}, /* Lianshan Zhuang -> Zhuang */
|
|
1653
|
+
{HB_TAG('z','l','q',' '), HB_TAG('Z','H','A',' ')}, /* Liuqian Zhuang -> Zhuang */
|
|
1654
|
+
{HB_TAG('z','m','i',' '), HB_TAG('M','L','Y',' ')}, /* Negeri Sembilan Malay -> Malay */
|
|
1655
|
+
{HB_TAG('z','m','z',' '), HB_TAG('B','A','D','0')}, /* Mbandja -> Banda */
|
|
1656
|
+
{HB_TAG('z','n','d',' '), HB_TAG_NONE }, /* Zande [collection] != Zande */
|
|
1657
|
+
{HB_TAG('z','n','e',' '), HB_TAG('Z','N','D',' ')}, /* Zande */
|
|
1658
|
+
{HB_TAG('z','o','m',' '), HB_TAG('Q','I','N',' ')}, /* Zou -> Chin */
|
|
1659
|
+
{HB_TAG('z','q','e',' '), HB_TAG('Z','H','A',' ')}, /* Qiubei Zhuang -> Zhuang */
|
|
1660
|
+
{HB_TAG('z','s','m',' '), HB_TAG('M','L','Y',' ')}, /* Standard Malay -> Malay */
|
|
1661
|
+
{HB_TAG('z','u','m',' '), HB_TAG('L','R','C',' ')}, /* Kumzari -> Luri */
|
|
1662
|
+
{HB_TAG('z','y','b',' '), HB_TAG('Z','H','A',' ')}, /* Yongbei Zhuang -> Zhuang */
|
|
1663
|
+
{HB_TAG('z','y','g',' '), HB_TAG('Z','H','A',' ')}, /* Yang Zhuang -> Zhuang */
|
|
1664
|
+
{HB_TAG('z','y','j',' '), HB_TAG('Z','H','A',' ')}, /* Youjiang Zhuang -> Zhuang */
|
|
1665
|
+
{HB_TAG('z','y','n',' '), HB_TAG('Z','H','A',' ')}, /* Yongnan Zhuang -> Zhuang */
|
|
1666
|
+
{HB_TAG('z','y','p',' '), HB_TAG('Q','I','N',' ')}, /* Zyphe Chin -> Chin */
|
|
1667
|
+
/*{HB_TAG('z','z','a',' '), HB_TAG('Z','Z','A',' ')},*/ /* Zazaki [macrolanguage] */
|
|
1668
|
+
{HB_TAG('z','z','j',' '), HB_TAG('Z','H','A',' ')}, /* Zuojiang Zhuang -> Zhuang */
|
|
1669
|
+
};
|
|
1670
|
+
#endif
|
|
1671
|
+
|
|
1672
|
+
/**
|
|
1673
|
+
* hb_ot_tags_from_complex_language:
|
|
1674
|
+
* @lang_str: a BCP 47 language tag to convert.
|
|
1675
|
+
* @limit: a pointer to the end of the substring of @lang_str to consider for
|
|
1676
|
+
* conversion.
|
|
1677
|
+
* @count: maximum number of language tags to retrieve (IN) and actual number of
|
|
1678
|
+
* language tags retrieved (OUT). If no tags are retrieved, it is not modified.
|
|
1679
|
+
* @tags: array of size at least @language_count to store the language tag
|
|
1680
|
+
* results
|
|
1681
|
+
*
|
|
1682
|
+
* Converts a multi-subtag BCP 47 language tag to language tags.
|
|
1683
|
+
*
|
|
1684
|
+
* Return value: Whether any language systems were retrieved.
|
|
1685
|
+
**/
|
|
1686
|
+
static inline bool
|
|
1687
|
+
hb_ot_tags_from_complex_language (const char *lang_str,
|
|
1688
|
+
const char *limit,
|
|
1689
|
+
unsigned int *count /* IN/OUT */,
|
|
1690
|
+
hb_tag_t *tags /* OUT */)
|
|
1691
|
+
{
|
|
1692
|
+
if (limit - lang_str >= 7)
|
|
1693
|
+
{
|
|
1694
|
+
const char *p = strchr (lang_str, '-');
|
|
1695
|
+
if (!p || p >= limit || limit - p < 5) goto out;
|
|
1696
|
+
if (subtag_matches (p, limit, "-fonnapa", 8))
|
|
1697
|
+
{
|
|
1698
|
+
/* Undetermined; North American Phonetic Alphabet */
|
|
1699
|
+
tags[0] = HB_TAG('A','P','P','H'); /* Phonetic transcription—Americanist conventions */
|
|
1700
|
+
*count = 1;
|
|
1701
|
+
return true;
|
|
1702
|
+
}
|
|
1703
|
+
if (subtag_matches (p, limit, "-polyton", 8))
|
|
1704
|
+
{
|
|
1705
|
+
/* Modern Greek (1453-); Polytonic Greek */
|
|
1706
|
+
tags[0] = HB_TAG('P','G','R',' '); /* Polytonic Greek */
|
|
1707
|
+
*count = 1;
|
|
1708
|
+
return true;
|
|
1709
|
+
}
|
|
1710
|
+
if (subtag_matches (p, limit, "-arevmda", 8))
|
|
1711
|
+
{
|
|
1712
|
+
/* Armenian; Western Armenian (retired code) */
|
|
1713
|
+
tags[0] = HB_TAG('H','Y','E',' '); /* Armenian */
|
|
1714
|
+
*count = 1;
|
|
1715
|
+
return true;
|
|
1716
|
+
}
|
|
1717
|
+
if (subtag_matches (p, limit, "-provenc", 8))
|
|
1718
|
+
{
|
|
1719
|
+
/* Occitan (post 1500); Provençal */
|
|
1720
|
+
tags[0] = HB_TAG('P','R','O',' '); /* Provençal / Old Provençal */
|
|
1721
|
+
*count = 1;
|
|
1722
|
+
return true;
|
|
1723
|
+
}
|
|
1724
|
+
if (subtag_matches (p, limit, "-fonipa", 7))
|
|
1725
|
+
{
|
|
1726
|
+
/* Undetermined; International Phonetic Alphabet */
|
|
1727
|
+
tags[0] = HB_TAG('I','P','P','H'); /* Phonetic transcription—IPA conventions */
|
|
1728
|
+
*count = 1;
|
|
1729
|
+
return true;
|
|
1730
|
+
}
|
|
1731
|
+
if (subtag_matches (p, limit, "-geok", 5))
|
|
1732
|
+
{
|
|
1733
|
+
/* Undetermined; Khutsuri (Asomtavruli and Nuskhuri) */
|
|
1734
|
+
tags[0] = HB_TAG('K','G','E',' '); /* Khutsuri Georgian */
|
|
1735
|
+
*count = 1;
|
|
1736
|
+
return true;
|
|
1737
|
+
}
|
|
1738
|
+
if (subtag_matches (p, limit, "-syre", 5))
|
|
1739
|
+
{
|
|
1740
|
+
/* Undetermined; Syriac (Estrangelo variant) */
|
|
1741
|
+
tags[0] = HB_TAG('S','Y','R','E'); /* Syriac, Estrangela script-variant (equivalent to ISO 15924 'Syre') */
|
|
1742
|
+
*count = 1;
|
|
1743
|
+
return true;
|
|
1744
|
+
}
|
|
1745
|
+
if (subtag_matches (p, limit, "-syrj", 5))
|
|
1746
|
+
{
|
|
1747
|
+
/* Undetermined; Syriac (Western variant) */
|
|
1748
|
+
tags[0] = HB_TAG('S','Y','R','J'); /* Syriac, Western script-variant (equivalent to ISO 15924 'Syrj') */
|
|
1749
|
+
*count = 1;
|
|
1750
|
+
return true;
|
|
1751
|
+
}
|
|
1752
|
+
if (subtag_matches (p, limit, "-syrn", 5))
|
|
1753
|
+
{
|
|
1754
|
+
/* Undetermined; Syriac (Eastern variant) */
|
|
1755
|
+
tags[0] = HB_TAG('S','Y','R','N'); /* Syriac, Eastern script-variant (equivalent to ISO 15924 'Syrn') */
|
|
1756
|
+
*count = 1;
|
|
1757
|
+
return true;
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
out:
|
|
1761
|
+
switch (lang_str[0])
|
|
1762
|
+
{
|
|
1763
|
+
case 'a':
|
|
1764
|
+
if (0 == strcmp (&lang_str[1], "rt-lojban"))
|
|
1765
|
+
{
|
|
1766
|
+
/* Lojban (retired code) */
|
|
1767
|
+
tags[0] = HB_TAG('J','B','O',' '); /* Lojban */
|
|
1768
|
+
*count = 1;
|
|
1769
|
+
return true;
|
|
1770
|
+
}
|
|
1771
|
+
break;
|
|
1772
|
+
case 'c':
|
|
1773
|
+
if (lang_matches (&lang_str[1], limit, "do-hant-hk", 10))
|
|
1774
|
+
{
|
|
1775
|
+
/* Min Dong Chinese; Han (Traditional variant); Hong Kong */
|
|
1776
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1777
|
+
*count = 1;
|
|
1778
|
+
return true;
|
|
1779
|
+
}
|
|
1780
|
+
if (lang_matches (&lang_str[1], limit, "do-hant-mo", 10))
|
|
1781
|
+
{
|
|
1782
|
+
/* Min Dong Chinese; Han (Traditional variant); Macao */
|
|
1783
|
+
unsigned int i;
|
|
1784
|
+
hb_tag_t possible_tags[] = {
|
|
1785
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1786
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1787
|
+
};
|
|
1788
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1789
|
+
tags[i] = possible_tags[i];
|
|
1790
|
+
*count = i;
|
|
1791
|
+
return true;
|
|
1792
|
+
}
|
|
1793
|
+
if (lang_matches (&lang_str[1], limit, "jy-hant-hk", 10))
|
|
1794
|
+
{
|
|
1795
|
+
/* Jinyu Chinese; Han (Traditional variant); Hong Kong */
|
|
1796
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1797
|
+
*count = 1;
|
|
1798
|
+
return true;
|
|
1799
|
+
}
|
|
1800
|
+
if (lang_matches (&lang_str[1], limit, "jy-hant-mo", 10))
|
|
1801
|
+
{
|
|
1802
|
+
/* Jinyu Chinese; Han (Traditional variant); Macao */
|
|
1803
|
+
unsigned int i;
|
|
1804
|
+
hb_tag_t possible_tags[] = {
|
|
1805
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1806
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1807
|
+
};
|
|
1808
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1809
|
+
tags[i] = possible_tags[i];
|
|
1810
|
+
*count = i;
|
|
1811
|
+
return true;
|
|
1812
|
+
}
|
|
1813
|
+
if (lang_matches (&lang_str[1], limit, "mn-hant-hk", 10))
|
|
1814
|
+
{
|
|
1815
|
+
/* Mandarin Chinese; Han (Traditional variant); Hong Kong */
|
|
1816
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1817
|
+
*count = 1;
|
|
1818
|
+
return true;
|
|
1819
|
+
}
|
|
1820
|
+
if (lang_matches (&lang_str[1], limit, "mn-hant-mo", 10))
|
|
1821
|
+
{
|
|
1822
|
+
/* Mandarin Chinese; Han (Traditional variant); Macao */
|
|
1823
|
+
unsigned int i;
|
|
1824
|
+
hb_tag_t possible_tags[] = {
|
|
1825
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1826
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1827
|
+
};
|
|
1828
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1829
|
+
tags[i] = possible_tags[i];
|
|
1830
|
+
*count = i;
|
|
1831
|
+
return true;
|
|
1832
|
+
}
|
|
1833
|
+
if (lang_matches (&lang_str[1], limit, "np-hant-hk", 10))
|
|
1834
|
+
{
|
|
1835
|
+
/* Northern Ping Chinese; Han (Traditional variant); Hong Kong */
|
|
1836
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1837
|
+
*count = 1;
|
|
1838
|
+
return true;
|
|
1839
|
+
}
|
|
1840
|
+
if (lang_matches (&lang_str[1], limit, "np-hant-mo", 10))
|
|
1841
|
+
{
|
|
1842
|
+
/* Northern Ping Chinese; Han (Traditional variant); Macao */
|
|
1843
|
+
unsigned int i;
|
|
1844
|
+
hb_tag_t possible_tags[] = {
|
|
1845
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1846
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1847
|
+
};
|
|
1848
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1849
|
+
tags[i] = possible_tags[i];
|
|
1850
|
+
*count = i;
|
|
1851
|
+
return true;
|
|
1852
|
+
}
|
|
1853
|
+
if (lang_matches (&lang_str[1], limit, "px-hant-hk", 10))
|
|
1854
|
+
{
|
|
1855
|
+
/* Pu-Xian Chinese; Han (Traditional variant); Hong Kong */
|
|
1856
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1857
|
+
*count = 1;
|
|
1858
|
+
return true;
|
|
1859
|
+
}
|
|
1860
|
+
if (lang_matches (&lang_str[1], limit, "px-hant-mo", 10))
|
|
1861
|
+
{
|
|
1862
|
+
/* Pu-Xian Chinese; Han (Traditional variant); Macao */
|
|
1863
|
+
unsigned int i;
|
|
1864
|
+
hb_tag_t possible_tags[] = {
|
|
1865
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1866
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1867
|
+
};
|
|
1868
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1869
|
+
tags[i] = possible_tags[i];
|
|
1870
|
+
*count = i;
|
|
1871
|
+
return true;
|
|
1872
|
+
}
|
|
1873
|
+
if (lang_matches (&lang_str[1], limit, "sp-hant-hk", 10))
|
|
1874
|
+
{
|
|
1875
|
+
/* Southern Ping Chinese; Han (Traditional variant); Hong Kong */
|
|
1876
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1877
|
+
*count = 1;
|
|
1878
|
+
return true;
|
|
1879
|
+
}
|
|
1880
|
+
if (lang_matches (&lang_str[1], limit, "sp-hant-mo", 10))
|
|
1881
|
+
{
|
|
1882
|
+
/* Southern Ping Chinese; Han (Traditional variant); Macao */
|
|
1883
|
+
unsigned int i;
|
|
1884
|
+
hb_tag_t possible_tags[] = {
|
|
1885
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1886
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1887
|
+
};
|
|
1888
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1889
|
+
tags[i] = possible_tags[i];
|
|
1890
|
+
*count = i;
|
|
1891
|
+
return true;
|
|
1892
|
+
}
|
|
1893
|
+
if (lang_matches (&lang_str[1], limit, "zh-hant-hk", 10))
|
|
1894
|
+
{
|
|
1895
|
+
/* Huizhou Chinese; Han (Traditional variant); Hong Kong */
|
|
1896
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1897
|
+
*count = 1;
|
|
1898
|
+
return true;
|
|
1899
|
+
}
|
|
1900
|
+
if (lang_matches (&lang_str[1], limit, "zh-hant-mo", 10))
|
|
1901
|
+
{
|
|
1902
|
+
/* Huizhou Chinese; Han (Traditional variant); Macao */
|
|
1903
|
+
unsigned int i;
|
|
1904
|
+
hb_tag_t possible_tags[] = {
|
|
1905
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1906
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1907
|
+
};
|
|
1908
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1909
|
+
tags[i] = possible_tags[i];
|
|
1910
|
+
*count = i;
|
|
1911
|
+
return true;
|
|
1912
|
+
}
|
|
1913
|
+
if (lang_matches (&lang_str[1], limit, "zo-hant-hk", 10))
|
|
1914
|
+
{
|
|
1915
|
+
/* Min Zhong Chinese; Han (Traditional variant); Hong Kong */
|
|
1916
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
1917
|
+
*count = 1;
|
|
1918
|
+
return true;
|
|
1919
|
+
}
|
|
1920
|
+
if (lang_matches (&lang_str[1], limit, "zo-hant-mo", 10))
|
|
1921
|
+
{
|
|
1922
|
+
/* Min Zhong Chinese; Han (Traditional variant); Macao */
|
|
1923
|
+
unsigned int i;
|
|
1924
|
+
hb_tag_t possible_tags[] = {
|
|
1925
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
1926
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
1927
|
+
};
|
|
1928
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
1929
|
+
tags[i] = possible_tags[i];
|
|
1930
|
+
*count = i;
|
|
1931
|
+
return true;
|
|
1932
|
+
}
|
|
1933
|
+
if (lang_matches (&lang_str[1], limit, "do-hans", 7))
|
|
1934
|
+
{
|
|
1935
|
+
/* Min Dong Chinese; Han (Simplified variant) */
|
|
1936
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
1937
|
+
*count = 1;
|
|
1938
|
+
return true;
|
|
1939
|
+
}
|
|
1940
|
+
if (lang_matches (&lang_str[1], limit, "do-hant", 7))
|
|
1941
|
+
{
|
|
1942
|
+
/* Min Dong Chinese; Han (Traditional variant) */
|
|
1943
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
1944
|
+
*count = 1;
|
|
1945
|
+
return true;
|
|
1946
|
+
}
|
|
1947
|
+
if (lang_matches (&lang_str[1], limit, "jy-hans", 7))
|
|
1948
|
+
{
|
|
1949
|
+
/* Jinyu Chinese; Han (Simplified variant) */
|
|
1950
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
1951
|
+
*count = 1;
|
|
1952
|
+
return true;
|
|
1953
|
+
}
|
|
1954
|
+
if (lang_matches (&lang_str[1], limit, "jy-hant", 7))
|
|
1955
|
+
{
|
|
1956
|
+
/* Jinyu Chinese; Han (Traditional variant) */
|
|
1957
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
1958
|
+
*count = 1;
|
|
1959
|
+
return true;
|
|
1960
|
+
}
|
|
1961
|
+
if (lang_matches (&lang_str[1], limit, "mn-hans", 7))
|
|
1962
|
+
{
|
|
1963
|
+
/* Mandarin Chinese; Han (Simplified variant) */
|
|
1964
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
1965
|
+
*count = 1;
|
|
1966
|
+
return true;
|
|
1967
|
+
}
|
|
1968
|
+
if (lang_matches (&lang_str[1], limit, "mn-hant", 7))
|
|
1969
|
+
{
|
|
1970
|
+
/* Mandarin Chinese; Han (Traditional variant) */
|
|
1971
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
1972
|
+
*count = 1;
|
|
1973
|
+
return true;
|
|
1974
|
+
}
|
|
1975
|
+
if (lang_matches (&lang_str[1], limit, "np-hans", 7))
|
|
1976
|
+
{
|
|
1977
|
+
/* Northern Ping Chinese; Han (Simplified variant) */
|
|
1978
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
1979
|
+
*count = 1;
|
|
1980
|
+
return true;
|
|
1981
|
+
}
|
|
1982
|
+
if (lang_matches (&lang_str[1], limit, "np-hant", 7))
|
|
1983
|
+
{
|
|
1984
|
+
/* Northern Ping Chinese; Han (Traditional variant) */
|
|
1985
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
1986
|
+
*count = 1;
|
|
1987
|
+
return true;
|
|
1988
|
+
}
|
|
1989
|
+
if (lang_matches (&lang_str[1], limit, "px-hans", 7))
|
|
1990
|
+
{
|
|
1991
|
+
/* Pu-Xian Chinese; Han (Simplified variant) */
|
|
1992
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
1993
|
+
*count = 1;
|
|
1994
|
+
return true;
|
|
1995
|
+
}
|
|
1996
|
+
if (lang_matches (&lang_str[1], limit, "px-hant", 7))
|
|
1997
|
+
{
|
|
1998
|
+
/* Pu-Xian Chinese; Han (Traditional variant) */
|
|
1999
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2000
|
+
*count = 1;
|
|
2001
|
+
return true;
|
|
2002
|
+
}
|
|
2003
|
+
if (lang_matches (&lang_str[1], limit, "sp-hans", 7))
|
|
2004
|
+
{
|
|
2005
|
+
/* Southern Ping Chinese; Han (Simplified variant) */
|
|
2006
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2007
|
+
*count = 1;
|
|
2008
|
+
return true;
|
|
2009
|
+
}
|
|
2010
|
+
if (lang_matches (&lang_str[1], limit, "sp-hant", 7))
|
|
2011
|
+
{
|
|
2012
|
+
/* Southern Ping Chinese; Han (Traditional variant) */
|
|
2013
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2014
|
+
*count = 1;
|
|
2015
|
+
return true;
|
|
2016
|
+
}
|
|
2017
|
+
if (lang_matches (&lang_str[1], limit, "zh-hans", 7))
|
|
2018
|
+
{
|
|
2019
|
+
/* Huizhou Chinese; Han (Simplified variant) */
|
|
2020
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2021
|
+
*count = 1;
|
|
2022
|
+
return true;
|
|
2023
|
+
}
|
|
2024
|
+
if (lang_matches (&lang_str[1], limit, "zh-hant", 7))
|
|
2025
|
+
{
|
|
2026
|
+
/* Huizhou Chinese; Han (Traditional variant) */
|
|
2027
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2028
|
+
*count = 1;
|
|
2029
|
+
return true;
|
|
2030
|
+
}
|
|
2031
|
+
if (lang_matches (&lang_str[1], limit, "zo-hans", 7))
|
|
2032
|
+
{
|
|
2033
|
+
/* Min Zhong Chinese; Han (Simplified variant) */
|
|
2034
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2035
|
+
*count = 1;
|
|
2036
|
+
return true;
|
|
2037
|
+
}
|
|
2038
|
+
if (lang_matches (&lang_str[1], limit, "zo-hant", 7))
|
|
2039
|
+
{
|
|
2040
|
+
/* Min Zhong Chinese; Han (Traditional variant) */
|
|
2041
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2042
|
+
*count = 1;
|
|
2043
|
+
return true;
|
|
2044
|
+
}
|
|
2045
|
+
if (0 == strncmp (&lang_str[1], "do-", 3)
|
|
2046
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2047
|
+
{
|
|
2048
|
+
/* Min Dong Chinese; Hong Kong */
|
|
2049
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2050
|
+
*count = 1;
|
|
2051
|
+
return true;
|
|
2052
|
+
}
|
|
2053
|
+
if (0 == strncmp (&lang_str[1], "do-", 3)
|
|
2054
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2055
|
+
{
|
|
2056
|
+
/* Min Dong Chinese; Macao */
|
|
2057
|
+
unsigned int i;
|
|
2058
|
+
hb_tag_t possible_tags[] = {
|
|
2059
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2060
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2061
|
+
};
|
|
2062
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2063
|
+
tags[i] = possible_tags[i];
|
|
2064
|
+
*count = i;
|
|
2065
|
+
return true;
|
|
2066
|
+
}
|
|
2067
|
+
if (0 == strncmp (&lang_str[1], "do-", 3)
|
|
2068
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2069
|
+
{
|
|
2070
|
+
/* Min Dong Chinese; Taiwan, Province of China */
|
|
2071
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2072
|
+
*count = 1;
|
|
2073
|
+
return true;
|
|
2074
|
+
}
|
|
2075
|
+
if (0 == strncmp (&lang_str[1], "jy-", 3)
|
|
2076
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2077
|
+
{
|
|
2078
|
+
/* Jinyu Chinese; Hong Kong */
|
|
2079
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2080
|
+
*count = 1;
|
|
2081
|
+
return true;
|
|
2082
|
+
}
|
|
2083
|
+
if (0 == strncmp (&lang_str[1], "jy-", 3)
|
|
2084
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2085
|
+
{
|
|
2086
|
+
/* Jinyu Chinese; Macao */
|
|
2087
|
+
unsigned int i;
|
|
2088
|
+
hb_tag_t possible_tags[] = {
|
|
2089
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2090
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2091
|
+
};
|
|
2092
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2093
|
+
tags[i] = possible_tags[i];
|
|
2094
|
+
*count = i;
|
|
2095
|
+
return true;
|
|
2096
|
+
}
|
|
2097
|
+
if (0 == strncmp (&lang_str[1], "jy-", 3)
|
|
2098
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2099
|
+
{
|
|
2100
|
+
/* Jinyu Chinese; Taiwan, Province of China */
|
|
2101
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2102
|
+
*count = 1;
|
|
2103
|
+
return true;
|
|
2104
|
+
}
|
|
2105
|
+
if (0 == strncmp (&lang_str[1], "mn-", 3)
|
|
2106
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2107
|
+
{
|
|
2108
|
+
/* Mandarin Chinese; Hong Kong */
|
|
2109
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2110
|
+
*count = 1;
|
|
2111
|
+
return true;
|
|
2112
|
+
}
|
|
2113
|
+
if (0 == strncmp (&lang_str[1], "mn-", 3)
|
|
2114
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2115
|
+
{
|
|
2116
|
+
/* Mandarin Chinese; Macao */
|
|
2117
|
+
unsigned int i;
|
|
2118
|
+
hb_tag_t possible_tags[] = {
|
|
2119
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2120
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2121
|
+
};
|
|
2122
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2123
|
+
tags[i] = possible_tags[i];
|
|
2124
|
+
*count = i;
|
|
2125
|
+
return true;
|
|
2126
|
+
}
|
|
2127
|
+
if (0 == strncmp (&lang_str[1], "mn-", 3)
|
|
2128
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2129
|
+
{
|
|
2130
|
+
/* Mandarin Chinese; Taiwan, Province of China */
|
|
2131
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2132
|
+
*count = 1;
|
|
2133
|
+
return true;
|
|
2134
|
+
}
|
|
2135
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2136
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2137
|
+
{
|
|
2138
|
+
/* Northern Ping Chinese; Hong Kong */
|
|
2139
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2140
|
+
*count = 1;
|
|
2141
|
+
return true;
|
|
2142
|
+
}
|
|
2143
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2144
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2145
|
+
{
|
|
2146
|
+
/* Northern Ping Chinese; Macao */
|
|
2147
|
+
unsigned int i;
|
|
2148
|
+
hb_tag_t possible_tags[] = {
|
|
2149
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2150
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2151
|
+
};
|
|
2152
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2153
|
+
tags[i] = possible_tags[i];
|
|
2154
|
+
*count = i;
|
|
2155
|
+
return true;
|
|
2156
|
+
}
|
|
2157
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2158
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2159
|
+
{
|
|
2160
|
+
/* Northern Ping Chinese; Taiwan, Province of China */
|
|
2161
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2162
|
+
*count = 1;
|
|
2163
|
+
return true;
|
|
2164
|
+
}
|
|
2165
|
+
if (0 == strncmp (&lang_str[1], "px-", 3)
|
|
2166
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2167
|
+
{
|
|
2168
|
+
/* Pu-Xian Chinese; Hong Kong */
|
|
2169
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2170
|
+
*count = 1;
|
|
2171
|
+
return true;
|
|
2172
|
+
}
|
|
2173
|
+
if (0 == strncmp (&lang_str[1], "px-", 3)
|
|
2174
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2175
|
+
{
|
|
2176
|
+
/* Pu-Xian Chinese; Macao */
|
|
2177
|
+
unsigned int i;
|
|
2178
|
+
hb_tag_t possible_tags[] = {
|
|
2179
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2180
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2181
|
+
};
|
|
2182
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2183
|
+
tags[i] = possible_tags[i];
|
|
2184
|
+
*count = i;
|
|
2185
|
+
return true;
|
|
2186
|
+
}
|
|
2187
|
+
if (0 == strncmp (&lang_str[1], "px-", 3)
|
|
2188
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2189
|
+
{
|
|
2190
|
+
/* Pu-Xian Chinese; Taiwan, Province of China */
|
|
2191
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2192
|
+
*count = 1;
|
|
2193
|
+
return true;
|
|
2194
|
+
}
|
|
2195
|
+
if (0 == strncmp (&lang_str[1], "sp-", 3)
|
|
2196
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2197
|
+
{
|
|
2198
|
+
/* Southern Ping Chinese; Hong Kong */
|
|
2199
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2200
|
+
*count = 1;
|
|
2201
|
+
return true;
|
|
2202
|
+
}
|
|
2203
|
+
if (0 == strncmp (&lang_str[1], "sp-", 3)
|
|
2204
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2205
|
+
{
|
|
2206
|
+
/* Southern Ping Chinese; Macao */
|
|
2207
|
+
unsigned int i;
|
|
2208
|
+
hb_tag_t possible_tags[] = {
|
|
2209
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2210
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2211
|
+
};
|
|
2212
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2213
|
+
tags[i] = possible_tags[i];
|
|
2214
|
+
*count = i;
|
|
2215
|
+
return true;
|
|
2216
|
+
}
|
|
2217
|
+
if (0 == strncmp (&lang_str[1], "sp-", 3)
|
|
2218
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2219
|
+
{
|
|
2220
|
+
/* Southern Ping Chinese; Taiwan, Province of China */
|
|
2221
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2222
|
+
*count = 1;
|
|
2223
|
+
return true;
|
|
2224
|
+
}
|
|
2225
|
+
if (0 == strncmp (&lang_str[1], "zh-", 3)
|
|
2226
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2227
|
+
{
|
|
2228
|
+
/* Huizhou Chinese; Hong Kong */
|
|
2229
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2230
|
+
*count = 1;
|
|
2231
|
+
return true;
|
|
2232
|
+
}
|
|
2233
|
+
if (0 == strncmp (&lang_str[1], "zh-", 3)
|
|
2234
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2235
|
+
{
|
|
2236
|
+
/* Huizhou Chinese; Macao */
|
|
2237
|
+
unsigned int i;
|
|
2238
|
+
hb_tag_t possible_tags[] = {
|
|
2239
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2240
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2241
|
+
};
|
|
2242
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2243
|
+
tags[i] = possible_tags[i];
|
|
2244
|
+
*count = i;
|
|
2245
|
+
return true;
|
|
2246
|
+
}
|
|
2247
|
+
if (0 == strncmp (&lang_str[1], "zh-", 3)
|
|
2248
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2249
|
+
{
|
|
2250
|
+
/* Huizhou Chinese; Taiwan, Province of China */
|
|
2251
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2252
|
+
*count = 1;
|
|
2253
|
+
return true;
|
|
2254
|
+
}
|
|
2255
|
+
if (0 == strncmp (&lang_str[1], "zo-", 3)
|
|
2256
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2257
|
+
{
|
|
2258
|
+
/* Min Zhong Chinese; Hong Kong */
|
|
2259
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2260
|
+
*count = 1;
|
|
2261
|
+
return true;
|
|
2262
|
+
}
|
|
2263
|
+
if (0 == strncmp (&lang_str[1], "zo-", 3)
|
|
2264
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2265
|
+
{
|
|
2266
|
+
/* Min Zhong Chinese; Macao */
|
|
2267
|
+
unsigned int i;
|
|
2268
|
+
hb_tag_t possible_tags[] = {
|
|
2269
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2270
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2271
|
+
};
|
|
2272
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2273
|
+
tags[i] = possible_tags[i];
|
|
2274
|
+
*count = i;
|
|
2275
|
+
return true;
|
|
2276
|
+
}
|
|
2277
|
+
if (0 == strncmp (&lang_str[1], "zo-", 3)
|
|
2278
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2279
|
+
{
|
|
2280
|
+
/* Min Zhong Chinese; Taiwan, Province of China */
|
|
2281
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2282
|
+
*count = 1;
|
|
2283
|
+
return true;
|
|
2284
|
+
}
|
|
2285
|
+
break;
|
|
2286
|
+
case 'g':
|
|
2287
|
+
if (lang_matches (&lang_str[1], limit, "an-hant-hk", 10))
|
|
2288
|
+
{
|
|
2289
|
+
/* Gan Chinese; Han (Traditional variant); Hong Kong */
|
|
2290
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2291
|
+
*count = 1;
|
|
2292
|
+
return true;
|
|
2293
|
+
}
|
|
2294
|
+
if (lang_matches (&lang_str[1], limit, "an-hant-mo", 10))
|
|
2295
|
+
{
|
|
2296
|
+
/* Gan Chinese; Han (Traditional variant); Macao */
|
|
2297
|
+
unsigned int i;
|
|
2298
|
+
hb_tag_t possible_tags[] = {
|
|
2299
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2300
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2301
|
+
};
|
|
2302
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2303
|
+
tags[i] = possible_tags[i];
|
|
2304
|
+
*count = i;
|
|
2305
|
+
return true;
|
|
2306
|
+
}
|
|
2307
|
+
if (lang_matches (&lang_str[1], limit, "an-hans", 7))
|
|
2308
|
+
{
|
|
2309
|
+
/* Gan Chinese; Han (Simplified variant) */
|
|
2310
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2311
|
+
*count = 1;
|
|
2312
|
+
return true;
|
|
2313
|
+
}
|
|
2314
|
+
if (lang_matches (&lang_str[1], limit, "an-hant", 7))
|
|
2315
|
+
{
|
|
2316
|
+
/* Gan Chinese; Han (Traditional variant) */
|
|
2317
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2318
|
+
*count = 1;
|
|
2319
|
+
return true;
|
|
2320
|
+
}
|
|
2321
|
+
if (lang_matches (&lang_str[1], limit, "a-latg", 6))
|
|
2322
|
+
{
|
|
2323
|
+
/* Irish; Latin (Gaelic variant) */
|
|
2324
|
+
tags[0] = HB_TAG('I','R','T',' '); /* Irish Traditional */
|
|
2325
|
+
*count = 1;
|
|
2326
|
+
return true;
|
|
2327
|
+
}
|
|
2328
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2329
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2330
|
+
{
|
|
2331
|
+
/* Gan Chinese; Hong Kong */
|
|
2332
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2333
|
+
*count = 1;
|
|
2334
|
+
return true;
|
|
2335
|
+
}
|
|
2336
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2337
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2338
|
+
{
|
|
2339
|
+
/* Gan Chinese; Macao */
|
|
2340
|
+
unsigned int i;
|
|
2341
|
+
hb_tag_t possible_tags[] = {
|
|
2342
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2343
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2344
|
+
};
|
|
2345
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2346
|
+
tags[i] = possible_tags[i];
|
|
2347
|
+
*count = i;
|
|
2348
|
+
return true;
|
|
2349
|
+
}
|
|
2350
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2351
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2352
|
+
{
|
|
2353
|
+
/* Gan Chinese; Taiwan, Province of China */
|
|
2354
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2355
|
+
*count = 1;
|
|
2356
|
+
return true;
|
|
2357
|
+
}
|
|
2358
|
+
break;
|
|
2359
|
+
case 'h':
|
|
2360
|
+
if (lang_matches (&lang_str[1], limit, "ak-hant-hk", 10))
|
|
2361
|
+
{
|
|
2362
|
+
/* Hakka Chinese; Han (Traditional variant); Hong Kong */
|
|
2363
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2364
|
+
*count = 1;
|
|
2365
|
+
return true;
|
|
2366
|
+
}
|
|
2367
|
+
if (lang_matches (&lang_str[1], limit, "ak-hant-mo", 10))
|
|
2368
|
+
{
|
|
2369
|
+
/* Hakka Chinese; Han (Traditional variant); Macao */
|
|
2370
|
+
unsigned int i;
|
|
2371
|
+
hb_tag_t possible_tags[] = {
|
|
2372
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2373
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2374
|
+
};
|
|
2375
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2376
|
+
tags[i] = possible_tags[i];
|
|
2377
|
+
*count = i;
|
|
2378
|
+
return true;
|
|
2379
|
+
}
|
|
2380
|
+
if (lang_matches (&lang_str[1], limit, "sn-hant-hk", 10))
|
|
2381
|
+
{
|
|
2382
|
+
/* Xiang Chinese; Han (Traditional variant); Hong Kong */
|
|
2383
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2384
|
+
*count = 1;
|
|
2385
|
+
return true;
|
|
2386
|
+
}
|
|
2387
|
+
if (lang_matches (&lang_str[1], limit, "sn-hant-mo", 10))
|
|
2388
|
+
{
|
|
2389
|
+
/* Xiang Chinese; Han (Traditional variant); Macao */
|
|
2390
|
+
unsigned int i;
|
|
2391
|
+
hb_tag_t possible_tags[] = {
|
|
2392
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2393
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2394
|
+
};
|
|
2395
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2396
|
+
tags[i] = possible_tags[i];
|
|
2397
|
+
*count = i;
|
|
2398
|
+
return true;
|
|
2399
|
+
}
|
|
2400
|
+
if (lang_matches (&lang_str[1], limit, "ak-hans", 7))
|
|
2401
|
+
{
|
|
2402
|
+
/* Hakka Chinese; Han (Simplified variant) */
|
|
2403
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2404
|
+
*count = 1;
|
|
2405
|
+
return true;
|
|
2406
|
+
}
|
|
2407
|
+
if (lang_matches (&lang_str[1], limit, "ak-hant", 7))
|
|
2408
|
+
{
|
|
2409
|
+
/* Hakka Chinese; Han (Traditional variant) */
|
|
2410
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2411
|
+
*count = 1;
|
|
2412
|
+
return true;
|
|
2413
|
+
}
|
|
2414
|
+
if (lang_matches (&lang_str[1], limit, "sn-hans", 7))
|
|
2415
|
+
{
|
|
2416
|
+
/* Xiang Chinese; Han (Simplified variant) */
|
|
2417
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2418
|
+
*count = 1;
|
|
2419
|
+
return true;
|
|
2420
|
+
}
|
|
2421
|
+
if (lang_matches (&lang_str[1], limit, "sn-hant", 7))
|
|
2422
|
+
{
|
|
2423
|
+
/* Xiang Chinese; Han (Traditional variant) */
|
|
2424
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2425
|
+
*count = 1;
|
|
2426
|
+
return true;
|
|
2427
|
+
}
|
|
2428
|
+
if (0 == strncmp (&lang_str[1], "ak-", 3)
|
|
2429
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2430
|
+
{
|
|
2431
|
+
/* Hakka Chinese; Hong Kong */
|
|
2432
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2433
|
+
*count = 1;
|
|
2434
|
+
return true;
|
|
2435
|
+
}
|
|
2436
|
+
if (0 == strncmp (&lang_str[1], "ak-", 3)
|
|
2437
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2438
|
+
{
|
|
2439
|
+
/* Hakka Chinese; Macao */
|
|
2440
|
+
unsigned int i;
|
|
2441
|
+
hb_tag_t possible_tags[] = {
|
|
2442
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2443
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2444
|
+
};
|
|
2445
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2446
|
+
tags[i] = possible_tags[i];
|
|
2447
|
+
*count = i;
|
|
2448
|
+
return true;
|
|
2449
|
+
}
|
|
2450
|
+
if (0 == strncmp (&lang_str[1], "ak-", 3)
|
|
2451
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2452
|
+
{
|
|
2453
|
+
/* Hakka Chinese; Taiwan, Province of China */
|
|
2454
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2455
|
+
*count = 1;
|
|
2456
|
+
return true;
|
|
2457
|
+
}
|
|
2458
|
+
if (0 == strncmp (&lang_str[1], "sn-", 3)
|
|
2459
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2460
|
+
{
|
|
2461
|
+
/* Xiang Chinese; Hong Kong */
|
|
2462
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2463
|
+
*count = 1;
|
|
2464
|
+
return true;
|
|
2465
|
+
}
|
|
2466
|
+
if (0 == strncmp (&lang_str[1], "sn-", 3)
|
|
2467
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2468
|
+
{
|
|
2469
|
+
/* Xiang Chinese; Macao */
|
|
2470
|
+
unsigned int i;
|
|
2471
|
+
hb_tag_t possible_tags[] = {
|
|
2472
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2473
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2474
|
+
};
|
|
2475
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2476
|
+
tags[i] = possible_tags[i];
|
|
2477
|
+
*count = i;
|
|
2478
|
+
return true;
|
|
2479
|
+
}
|
|
2480
|
+
if (0 == strncmp (&lang_str[1], "sn-", 3)
|
|
2481
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2482
|
+
{
|
|
2483
|
+
/* Xiang Chinese; Taiwan, Province of China */
|
|
2484
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2485
|
+
*count = 1;
|
|
2486
|
+
return true;
|
|
2487
|
+
}
|
|
2488
|
+
break;
|
|
2489
|
+
case 'i':
|
|
2490
|
+
if (0 == strcmp (&lang_str[1], "-navajo"))
|
|
2491
|
+
{
|
|
2492
|
+
/* Navajo (retired code) */
|
|
2493
|
+
unsigned int i;
|
|
2494
|
+
hb_tag_t possible_tags[] = {
|
|
2495
|
+
HB_TAG('N','A','V',' '), /* Navajo */
|
|
2496
|
+
HB_TAG('A','T','H',' '), /* Athapaskan */
|
|
2497
|
+
};
|
|
2498
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2499
|
+
tags[i] = possible_tags[i];
|
|
2500
|
+
*count = i;
|
|
2501
|
+
return true;
|
|
2502
|
+
}
|
|
2503
|
+
if (0 == strcmp (&lang_str[1], "-hak"))
|
|
2504
|
+
{
|
|
2505
|
+
/* Hakka (retired code) */
|
|
2506
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2507
|
+
*count = 1;
|
|
2508
|
+
return true;
|
|
2509
|
+
}
|
|
2510
|
+
if (0 == strcmp (&lang_str[1], "-lux"))
|
|
2511
|
+
{
|
|
2512
|
+
/* Luxembourgish (retired code) */
|
|
2513
|
+
tags[0] = HB_TAG('L','T','Z',' '); /* Luxembourgish */
|
|
2514
|
+
*count = 1;
|
|
2515
|
+
return true;
|
|
2516
|
+
}
|
|
2517
|
+
break;
|
|
2518
|
+
case 'l':
|
|
2519
|
+
if (lang_matches (&lang_str[1], limit, "zh-hans", 7))
|
|
2520
|
+
{
|
|
2521
|
+
/* Literary Chinese; Han (Simplified variant) */
|
|
2522
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2523
|
+
*count = 1;
|
|
2524
|
+
return true;
|
|
2525
|
+
}
|
|
2526
|
+
break;
|
|
2527
|
+
case 'm':
|
|
2528
|
+
if (lang_matches (&lang_str[1], limit, "np-hant-hk", 10))
|
|
2529
|
+
{
|
|
2530
|
+
/* Min Bei Chinese; Han (Traditional variant); Hong Kong */
|
|
2531
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2532
|
+
*count = 1;
|
|
2533
|
+
return true;
|
|
2534
|
+
}
|
|
2535
|
+
if (lang_matches (&lang_str[1], limit, "np-hant-mo", 10))
|
|
2536
|
+
{
|
|
2537
|
+
/* Min Bei Chinese; Han (Traditional variant); Macao */
|
|
2538
|
+
unsigned int i;
|
|
2539
|
+
hb_tag_t possible_tags[] = {
|
|
2540
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2541
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2542
|
+
};
|
|
2543
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2544
|
+
tags[i] = possible_tags[i];
|
|
2545
|
+
*count = i;
|
|
2546
|
+
return true;
|
|
2547
|
+
}
|
|
2548
|
+
if (lang_matches (&lang_str[1], limit, "np-hans", 7))
|
|
2549
|
+
{
|
|
2550
|
+
/* Min Bei Chinese; Han (Simplified variant) */
|
|
2551
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2552
|
+
*count = 1;
|
|
2553
|
+
return true;
|
|
2554
|
+
}
|
|
2555
|
+
if (lang_matches (&lang_str[1], limit, "np-hant", 7))
|
|
2556
|
+
{
|
|
2557
|
+
/* Min Bei Chinese; Han (Traditional variant) */
|
|
2558
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2559
|
+
*count = 1;
|
|
2560
|
+
return true;
|
|
2561
|
+
}
|
|
2562
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2563
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2564
|
+
{
|
|
2565
|
+
/* Min Bei Chinese; Hong Kong */
|
|
2566
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2567
|
+
*count = 1;
|
|
2568
|
+
return true;
|
|
2569
|
+
}
|
|
2570
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2571
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2572
|
+
{
|
|
2573
|
+
/* Min Bei Chinese; Macao */
|
|
2574
|
+
unsigned int i;
|
|
2575
|
+
hb_tag_t possible_tags[] = {
|
|
2576
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2577
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2578
|
+
};
|
|
2579
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2580
|
+
tags[i] = possible_tags[i];
|
|
2581
|
+
*count = i;
|
|
2582
|
+
return true;
|
|
2583
|
+
}
|
|
2584
|
+
if (0 == strncmp (&lang_str[1], "np-", 3)
|
|
2585
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2586
|
+
{
|
|
2587
|
+
/* Min Bei Chinese; Taiwan, Province of China */
|
|
2588
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2589
|
+
*count = 1;
|
|
2590
|
+
return true;
|
|
2591
|
+
}
|
|
2592
|
+
if (0 == strncmp (&lang_str[1], "nw-", 3)
|
|
2593
|
+
&& subtag_matches (lang_str, limit, "-th", 3))
|
|
2594
|
+
{
|
|
2595
|
+
/* Mon; Thailand */
|
|
2596
|
+
tags[0] = HB_TAG('M','O','N','T'); /* Thailand Mon */
|
|
2597
|
+
*count = 1;
|
|
2598
|
+
return true;
|
|
2599
|
+
}
|
|
2600
|
+
break;
|
|
2601
|
+
case 'n':
|
|
2602
|
+
if (lang_matches (&lang_str[1], limit, "an-hant-hk", 10))
|
|
2603
|
+
{
|
|
2604
|
+
/* Min Nan Chinese; Han (Traditional variant); Hong Kong */
|
|
2605
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2606
|
+
*count = 1;
|
|
2607
|
+
return true;
|
|
2608
|
+
}
|
|
2609
|
+
if (lang_matches (&lang_str[1], limit, "an-hant-mo", 10))
|
|
2610
|
+
{
|
|
2611
|
+
/* Min Nan Chinese; Han (Traditional variant); Macao */
|
|
2612
|
+
unsigned int i;
|
|
2613
|
+
hb_tag_t possible_tags[] = {
|
|
2614
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2615
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2616
|
+
};
|
|
2617
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2618
|
+
tags[i] = possible_tags[i];
|
|
2619
|
+
*count = i;
|
|
2620
|
+
return true;
|
|
2621
|
+
}
|
|
2622
|
+
if (lang_matches (&lang_str[1], limit, "an-hans", 7))
|
|
2623
|
+
{
|
|
2624
|
+
/* Min Nan Chinese; Han (Simplified variant) */
|
|
2625
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2626
|
+
*count = 1;
|
|
2627
|
+
return true;
|
|
2628
|
+
}
|
|
2629
|
+
if (lang_matches (&lang_str[1], limit, "an-hant", 7))
|
|
2630
|
+
{
|
|
2631
|
+
/* Min Nan Chinese; Han (Traditional variant) */
|
|
2632
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2633
|
+
*count = 1;
|
|
2634
|
+
return true;
|
|
2635
|
+
}
|
|
2636
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2637
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2638
|
+
{
|
|
2639
|
+
/* Min Nan Chinese; Hong Kong */
|
|
2640
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2641
|
+
*count = 1;
|
|
2642
|
+
return true;
|
|
2643
|
+
}
|
|
2644
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2645
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2646
|
+
{
|
|
2647
|
+
/* Min Nan Chinese; Macao */
|
|
2648
|
+
unsigned int i;
|
|
2649
|
+
hb_tag_t possible_tags[] = {
|
|
2650
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2651
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2652
|
+
};
|
|
2653
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2654
|
+
tags[i] = possible_tags[i];
|
|
2655
|
+
*count = i;
|
|
2656
|
+
return true;
|
|
2657
|
+
}
|
|
2658
|
+
if (0 == strncmp (&lang_str[1], "an-", 3)
|
|
2659
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2660
|
+
{
|
|
2661
|
+
/* Min Nan Chinese; Taiwan, Province of China */
|
|
2662
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2663
|
+
*count = 1;
|
|
2664
|
+
return true;
|
|
2665
|
+
}
|
|
2666
|
+
if (0 == strcmp (&lang_str[1], "o-bok"))
|
|
2667
|
+
{
|
|
2668
|
+
/* Norwegian Bokmal (retired code) */
|
|
2669
|
+
tags[0] = HB_TAG('N','O','R',' '); /* Norwegian */
|
|
2670
|
+
*count = 1;
|
|
2671
|
+
return true;
|
|
2672
|
+
}
|
|
2673
|
+
if (0 == strcmp (&lang_str[1], "o-nyn"))
|
|
2674
|
+
{
|
|
2675
|
+
/* Norwegian Nynorsk (retired code) */
|
|
2676
|
+
tags[0] = HB_TAG('N','Y','N',' '); /* Norwegian Nynorsk (Nynorsk, Norwegian) */
|
|
2677
|
+
*count = 1;
|
|
2678
|
+
return true;
|
|
2679
|
+
}
|
|
2680
|
+
break;
|
|
2681
|
+
case 'r':
|
|
2682
|
+
if (0 == strncmp (&lang_str[1], "o-", 2)
|
|
2683
|
+
&& subtag_matches (lang_str, limit, "-md", 3))
|
|
2684
|
+
{
|
|
2685
|
+
/* Romanian; Moldova */
|
|
2686
|
+
unsigned int i;
|
|
2687
|
+
hb_tag_t possible_tags[] = {
|
|
2688
|
+
HB_TAG('M','O','L',' '), /* Moldavian */
|
|
2689
|
+
HB_TAG('R','O','M',' '), /* Romanian */
|
|
2690
|
+
};
|
|
2691
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2692
|
+
tags[i] = possible_tags[i];
|
|
2693
|
+
*count = i;
|
|
2694
|
+
return true;
|
|
2695
|
+
}
|
|
2696
|
+
break;
|
|
2697
|
+
case 'w':
|
|
2698
|
+
if (lang_matches (&lang_str[1], limit, "uu-hant-hk", 10))
|
|
2699
|
+
{
|
|
2700
|
+
/* Wu Chinese; Han (Traditional variant); Hong Kong */
|
|
2701
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2702
|
+
*count = 1;
|
|
2703
|
+
return true;
|
|
2704
|
+
}
|
|
2705
|
+
if (lang_matches (&lang_str[1], limit, "uu-hant-mo", 10))
|
|
2706
|
+
{
|
|
2707
|
+
/* Wu Chinese; Han (Traditional variant); Macao */
|
|
2708
|
+
unsigned int i;
|
|
2709
|
+
hb_tag_t possible_tags[] = {
|
|
2710
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2711
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2712
|
+
};
|
|
2713
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2714
|
+
tags[i] = possible_tags[i];
|
|
2715
|
+
*count = i;
|
|
2716
|
+
return true;
|
|
2717
|
+
}
|
|
2718
|
+
if (lang_matches (&lang_str[1], limit, "uu-hans", 7))
|
|
2719
|
+
{
|
|
2720
|
+
/* Wu Chinese; Han (Simplified variant) */
|
|
2721
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2722
|
+
*count = 1;
|
|
2723
|
+
return true;
|
|
2724
|
+
}
|
|
2725
|
+
if (lang_matches (&lang_str[1], limit, "uu-hant", 7))
|
|
2726
|
+
{
|
|
2727
|
+
/* Wu Chinese; Han (Traditional variant) */
|
|
2728
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2729
|
+
*count = 1;
|
|
2730
|
+
return true;
|
|
2731
|
+
}
|
|
2732
|
+
if (0 == strncmp (&lang_str[1], "uu-", 3)
|
|
2733
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2734
|
+
{
|
|
2735
|
+
/* Wu Chinese; Hong Kong */
|
|
2736
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2737
|
+
*count = 1;
|
|
2738
|
+
return true;
|
|
2739
|
+
}
|
|
2740
|
+
if (0 == strncmp (&lang_str[1], "uu-", 3)
|
|
2741
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2742
|
+
{
|
|
2743
|
+
/* Wu Chinese; Macao */
|
|
2744
|
+
unsigned int i;
|
|
2745
|
+
hb_tag_t possible_tags[] = {
|
|
2746
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2747
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2748
|
+
};
|
|
2749
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2750
|
+
tags[i] = possible_tags[i];
|
|
2751
|
+
*count = i;
|
|
2752
|
+
return true;
|
|
2753
|
+
}
|
|
2754
|
+
if (0 == strncmp (&lang_str[1], "uu-", 3)
|
|
2755
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2756
|
+
{
|
|
2757
|
+
/* Wu Chinese; Taiwan, Province of China */
|
|
2758
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2759
|
+
*count = 1;
|
|
2760
|
+
return true;
|
|
2761
|
+
}
|
|
2762
|
+
break;
|
|
2763
|
+
case 'y':
|
|
2764
|
+
if (lang_matches (&lang_str[1], limit, "ue-hans", 7))
|
|
2765
|
+
{
|
|
2766
|
+
/* Yue Chinese; Han (Simplified variant) */
|
|
2767
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2768
|
+
*count = 1;
|
|
2769
|
+
return true;
|
|
2770
|
+
}
|
|
2771
|
+
break;
|
|
2772
|
+
case 'z':
|
|
2773
|
+
if (lang_matches (&lang_str[1], limit, "h-hant-hk", 9))
|
|
2774
|
+
{
|
|
2775
|
+
/* Chinese [macrolanguage]; Han (Traditional variant); Hong Kong */
|
|
2776
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2777
|
+
*count = 1;
|
|
2778
|
+
return true;
|
|
2779
|
+
}
|
|
2780
|
+
if (lang_matches (&lang_str[1], limit, "h-hant-mo", 9))
|
|
2781
|
+
{
|
|
2782
|
+
/* Chinese [macrolanguage]; Han (Traditional variant); Macao */
|
|
2783
|
+
unsigned int i;
|
|
2784
|
+
hb_tag_t possible_tags[] = {
|
|
2785
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2786
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2787
|
+
};
|
|
2788
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2789
|
+
tags[i] = possible_tags[i];
|
|
2790
|
+
*count = i;
|
|
2791
|
+
return true;
|
|
2792
|
+
}
|
|
2793
|
+
if (0 == strcmp (&lang_str[1], "h-min-nan"))
|
|
2794
|
+
{
|
|
2795
|
+
/* Minnan, Hokkien, Amoy, Taiwanese, Southern Min, Southern Fujian, Hoklo, Southern Fukien, Ho-lo (retired code) */
|
|
2796
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2797
|
+
*count = 1;
|
|
2798
|
+
return true;
|
|
2799
|
+
}
|
|
2800
|
+
if (lang_matches (&lang_str[1], limit, "h-hans", 6))
|
|
2801
|
+
{
|
|
2802
|
+
/* Chinese [macrolanguage]; Han (Simplified variant) */
|
|
2803
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2804
|
+
*count = 1;
|
|
2805
|
+
return true;
|
|
2806
|
+
}
|
|
2807
|
+
if (lang_matches (&lang_str[1], limit, "h-hant", 6))
|
|
2808
|
+
{
|
|
2809
|
+
/* Chinese [macrolanguage]; Han (Traditional variant) */
|
|
2810
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2811
|
+
*count = 1;
|
|
2812
|
+
return true;
|
|
2813
|
+
}
|
|
2814
|
+
if (0 == strcmp (&lang_str[1], "h-min"))
|
|
2815
|
+
{
|
|
2816
|
+
/* Min, Fuzhou, Hokkien, Amoy, or Taiwanese (retired code) */
|
|
2817
|
+
tags[0] = HB_TAG('Z','H','S',' '); /* Chinese, Simplified */
|
|
2818
|
+
*count = 1;
|
|
2819
|
+
return true;
|
|
2820
|
+
}
|
|
2821
|
+
if (0 == strncmp (&lang_str[1], "h-", 2)
|
|
2822
|
+
&& subtag_matches (lang_str, limit, "-hk", 3))
|
|
2823
|
+
{
|
|
2824
|
+
/* Chinese [macrolanguage]; Hong Kong */
|
|
2825
|
+
tags[0] = HB_TAG('Z','H','H',' '); /* Chinese, Traditional, Hong Kong SAR */
|
|
2826
|
+
*count = 1;
|
|
2827
|
+
return true;
|
|
2828
|
+
}
|
|
2829
|
+
if (0 == strncmp (&lang_str[1], "h-", 2)
|
|
2830
|
+
&& subtag_matches (lang_str, limit, "-mo", 3))
|
|
2831
|
+
{
|
|
2832
|
+
/* Chinese [macrolanguage]; Macao */
|
|
2833
|
+
unsigned int i;
|
|
2834
|
+
hb_tag_t possible_tags[] = {
|
|
2835
|
+
HB_TAG('Z','H','T','M'), /* Chinese, Traditional, Macao SAR */
|
|
2836
|
+
HB_TAG('Z','H','H',' '), /* Chinese, Traditional, Hong Kong SAR */
|
|
2837
|
+
};
|
|
2838
|
+
for (i = 0; i < 2 && i < *count; i++)
|
|
2839
|
+
tags[i] = possible_tags[i];
|
|
2840
|
+
*count = i;
|
|
2841
|
+
return true;
|
|
2842
|
+
}
|
|
2843
|
+
if (0 == strncmp (&lang_str[1], "h-", 2)
|
|
2844
|
+
&& subtag_matches (lang_str, limit, "-tw", 3))
|
|
2845
|
+
{
|
|
2846
|
+
/* Chinese [macrolanguage]; Taiwan, Province of China */
|
|
2847
|
+
tags[0] = HB_TAG('Z','H','T',' '); /* Chinese, Traditional */
|
|
2848
|
+
*count = 1;
|
|
2849
|
+
return true;
|
|
2850
|
+
}
|
|
2851
|
+
break;
|
|
2852
|
+
}
|
|
2853
|
+
return false;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2856
|
+
/**
|
|
2857
|
+
* hb_ot_ambiguous_tag_to_language
|
|
2858
|
+
* @tag: A language tag.
|
|
2859
|
+
*
|
|
2860
|
+
* Converts @tag to a BCP 47 language tag if it is ambiguous (it corresponds to
|
|
2861
|
+
* many language tags) and the best tag is not the first (sorted alphabetically,
|
|
2862
|
+
* with two-letter tags having priority over all three-letter tags), or if the
|
|
2863
|
+
* best tag consists of multiple subtags, or if the best tag does not appear in
|
|
2864
|
+
* #ot_languages2 or #ot_languages3.
|
|
2865
|
+
*
|
|
2866
|
+
* Return value: The #hb_language_t corresponding to the BCP 47 language tag,
|
|
2867
|
+
* or #HB_LANGUAGE_INVALID if @tag is not ambiguous.
|
|
2868
|
+
**/
|
|
2869
|
+
static inline hb_language_t
|
|
2870
|
+
hb_ot_ambiguous_tag_to_language (hb_tag_t tag)
|
|
2871
|
+
{
|
|
2872
|
+
switch (tag)
|
|
2873
|
+
{
|
|
2874
|
+
case HB_TAG('A','L','T',' '): /* Altai */
|
|
2875
|
+
return hb_language_from_string ("alt", -1); /* Southern Altai */
|
|
2876
|
+
case HB_TAG('A','P','P','H'): /* Phonetic transcription—Americanist conventions */
|
|
2877
|
+
return hb_language_from_string ("und-fonnapa", -1); /* Undetermined; North American Phonetic Alphabet */
|
|
2878
|
+
case HB_TAG('A','R','K',' '): /* Rakhine */
|
|
2879
|
+
return hb_language_from_string ("rki", -1); /* Rakhine */
|
|
2880
|
+
case HB_TAG('A','T','H',' '): /* Athapaskan */
|
|
2881
|
+
return hb_language_from_string ("ath", -1); /* Athapascan [collection] */
|
|
2882
|
+
case HB_TAG('B','B','R',' '): /* Berber */
|
|
2883
|
+
return hb_language_from_string ("ber", -1); /* Berber [collection] */
|
|
2884
|
+
case HB_TAG('B','I','K',' '): /* Bikol */
|
|
2885
|
+
return hb_language_from_string ("bik", -1); /* Bikol [macrolanguage] */
|
|
2886
|
+
case HB_TAG('B','T','K',' '): /* Batak */
|
|
2887
|
+
return hb_language_from_string ("btk", -1); /* Batak [collection] */
|
|
2888
|
+
case HB_TAG('C','P','P',' '): /* Creoles */
|
|
2889
|
+
return hb_language_from_string ("crp", -1); /* Creoles and pidgins [collection] */
|
|
2890
|
+
case HB_TAG('C','R','R',' '): /* Carrier */
|
|
2891
|
+
return hb_language_from_string ("crx", -1); /* Carrier */
|
|
2892
|
+
case HB_TAG('D','G','R',' '): /* Dogri (macrolanguage) */
|
|
2893
|
+
return hb_language_from_string ("doi", -1); /* Dogri [macrolanguage] */
|
|
2894
|
+
case HB_TAG('D','N','K',' '): /* Dinka */
|
|
2895
|
+
return hb_language_from_string ("din", -1); /* Dinka [macrolanguage] */
|
|
2896
|
+
case HB_TAG('D','R','I',' '): /* Dari */
|
|
2897
|
+
return hb_language_from_string ("prs", -1); /* Dari */
|
|
2898
|
+
case HB_TAG('G','O','N',' '): /* Gondi */
|
|
2899
|
+
return hb_language_from_string ("gon", -1); /* Gondi [macrolanguage] */
|
|
2900
|
+
case HB_TAG('H','M','A',' '): /* High Mari */
|
|
2901
|
+
return hb_language_from_string ("mrj", -1); /* Western Mari */
|
|
2902
|
+
case HB_TAG('H','M','N',' '): /* Hmong */
|
|
2903
|
+
return hb_language_from_string ("hmn", -1); /* Hmong [macrolanguage] */
|
|
2904
|
+
case HB_TAG('H','N','D',' '): /* Hindko */
|
|
2905
|
+
return hb_language_from_string ("hnd", -1); /* Southern Hindko */
|
|
2906
|
+
case HB_TAG('H','Y','E',' '): /* Armenian */
|
|
2907
|
+
return hb_language_from_string ("hyw", -1); /* Western Armenian */
|
|
2908
|
+
case HB_TAG('I','B','A',' '): /* Iban */
|
|
2909
|
+
return hb_language_from_string ("iba", -1); /* Iban */
|
|
2910
|
+
case HB_TAG('I','J','O',' '): /* Ijo */
|
|
2911
|
+
return hb_language_from_string ("ijo", -1); /* Ijo [collection] */
|
|
2912
|
+
case HB_TAG('I','P','P','H'): /* Phonetic transcription—IPA conventions */
|
|
2913
|
+
return hb_language_from_string ("und-fonipa", -1); /* Undetermined; International Phonetic Alphabet */
|
|
2914
|
+
case HB_TAG('I','R','T',' '): /* Irish Traditional */
|
|
2915
|
+
return hb_language_from_string ("ghc", -1); /* Hiberno-Scottish Gaelic */
|
|
2916
|
+
case HB_TAG('J','I','I',' '): /* Yiddish */
|
|
2917
|
+
return hb_language_from_string ("yi", -1); /* Yiddish [macrolanguage] */
|
|
2918
|
+
case HB_TAG('K','A','L',' '): /* Kalenjin */
|
|
2919
|
+
return hb_language_from_string ("kln", -1); /* Kalenjin [macrolanguage] */
|
|
2920
|
+
case HB_TAG('K','G','E',' '): /* Khutsuri Georgian */
|
|
2921
|
+
return hb_language_from_string ("und-Geok", -1); /* Undetermined; Khutsuri (Asomtavruli and Nuskhuri) */
|
|
2922
|
+
case HB_TAG('K','O','H',' '): /* Korean Old Hangul */
|
|
2923
|
+
return hb_language_from_string ("okm", -1); /* Middle Korean (10th-16th cent.) */
|
|
2924
|
+
case HB_TAG('K','O','K',' '): /* Konkani */
|
|
2925
|
+
return hb_language_from_string ("kok", -1); /* Konkani [macrolanguage] */
|
|
2926
|
+
case HB_TAG('K','P','L',' '): /* Kpelle */
|
|
2927
|
+
return hb_language_from_string ("kpe", -1); /* Kpelle [macrolanguage] */
|
|
2928
|
+
case HB_TAG('K','R','N',' '): /* Karen */
|
|
2929
|
+
return hb_language_from_string ("kar", -1); /* Karen [collection] */
|
|
2930
|
+
case HB_TAG('K','U','I',' '): /* Kui */
|
|
2931
|
+
return hb_language_from_string ("uki", -1); /* Kui (India) */
|
|
2932
|
+
case HB_TAG('L','M','A',' '): /* Low Mari */
|
|
2933
|
+
return hb_language_from_string ("mhr", -1); /* Eastern Mari */
|
|
2934
|
+
case HB_TAG('L','U','H',' '): /* Luyia */
|
|
2935
|
+
return hb_language_from_string ("luy", -1); /* Luyia [macrolanguage] */
|
|
2936
|
+
case HB_TAG('M','A','W',' '): /* Marwari */
|
|
2937
|
+
return hb_language_from_string ("mwr", -1); /* Marwari [macrolanguage] */
|
|
2938
|
+
case HB_TAG('M','L','Y',' '): /* Malay */
|
|
2939
|
+
return hb_language_from_string ("ms", -1); /* Malay [macrolanguage] */
|
|
2940
|
+
case HB_TAG('M','N','K',' '): /* Maninka */
|
|
2941
|
+
return hb_language_from_string ("man", -1); /* Mandingo [macrolanguage] */
|
|
2942
|
+
case HB_TAG('M','O','L',' '): /* Moldavian */
|
|
2943
|
+
return hb_language_from_string ("ro-MD", -1); /* Romanian; Moldova */
|
|
2944
|
+
case HB_TAG('M','O','N','T'): /* Thailand Mon */
|
|
2945
|
+
return hb_language_from_string ("mnw-TH", -1); /* Mon; Thailand */
|
|
2946
|
+
case HB_TAG('M','Y','N',' '): /* Mayan */
|
|
2947
|
+
return hb_language_from_string ("myn", -1); /* Mayan [collection] */
|
|
2948
|
+
case HB_TAG('N','A','H',' '): /* Nahuatl */
|
|
2949
|
+
return hb_language_from_string ("nah", -1); /* Nahuatl [collection] */
|
|
2950
|
+
case HB_TAG('N','I','S',' '): /* Nisi */
|
|
2951
|
+
return hb_language_from_string ("njz", -1); /* Nyishi */
|
|
2952
|
+
case HB_TAG('N','O','R',' '): /* Norwegian */
|
|
2953
|
+
return hb_language_from_string ("no", -1); /* Norwegian [macrolanguage] */
|
|
2954
|
+
case HB_TAG('P','G','R',' '): /* Polytonic Greek */
|
|
2955
|
+
return hb_language_from_string ("el-polyton", -1); /* Modern Greek (1453-); Polytonic Greek */
|
|
2956
|
+
case HB_TAG('P','R','O',' '): /* Provençal / Old Provençal */
|
|
2957
|
+
return hb_language_from_string ("pro", -1); /* Old Provençal (to 1500) */
|
|
2958
|
+
case HB_TAG('Q','U','H',' '): /* Quechua (Bolivia) */
|
|
2959
|
+
return hb_language_from_string ("quh", -1); /* South Bolivian Quechua */
|
|
2960
|
+
case HB_TAG('Q','V','I',' '): /* Quechua (Ecuador) */
|
|
2961
|
+
return hb_language_from_string ("qvi", -1); /* Imbabura Highland Quichua */
|
|
2962
|
+
case HB_TAG('Q','W','H',' '): /* Quechua (Peru) */
|
|
2963
|
+
return hb_language_from_string ("qwh", -1); /* Huaylas Ancash Quechua */
|
|
2964
|
+
case HB_TAG('R','A','J',' '): /* Rajasthani */
|
|
2965
|
+
return hb_language_from_string ("raj", -1); /* Rajasthani [macrolanguage] */
|
|
2966
|
+
case HB_TAG('R','O','M',' '): /* Romanian */
|
|
2967
|
+
return hb_language_from_string ("ro", -1); /* Romanian */
|
|
2968
|
+
case HB_TAG('R','O','Y',' '): /* Romany */
|
|
2969
|
+
return hb_language_from_string ("rom", -1); /* Romany [macrolanguage] */
|
|
2970
|
+
case HB_TAG('S','G','A',' '): /* Old Irish */
|
|
2971
|
+
return hb_language_from_string ("sga", -1); /* Old Irish (to 900) */
|
|
2972
|
+
case HB_TAG('S','R','B',' '): /* Serbian */
|
|
2973
|
+
return hb_language_from_string ("sr", -1); /* Serbian */
|
|
2974
|
+
case HB_TAG('S','X','T',' '): /* Sutu */
|
|
2975
|
+
return hb_language_from_string ("xnj", -1); /* Ngoni (Tanzania) */
|
|
2976
|
+
case HB_TAG('S','Y','R',' '): /* Syriac */
|
|
2977
|
+
return hb_language_from_string ("syr", -1); /* Syriac [macrolanguage] */
|
|
2978
|
+
case HB_TAG('S','Y','R','E'): /* Syriac, Estrangela script-variant (equivalent to ISO 15924 'Syre') */
|
|
2979
|
+
return hb_language_from_string ("und-Syre", -1); /* Undetermined; Syriac (Estrangelo variant) */
|
|
2980
|
+
case HB_TAG('S','Y','R','J'): /* Syriac, Western script-variant (equivalent to ISO 15924 'Syrj') */
|
|
2981
|
+
return hb_language_from_string ("und-Syrj", -1); /* Undetermined; Syriac (Western variant) */
|
|
2982
|
+
case HB_TAG('S','Y','R','N'): /* Syriac, Eastern script-variant (equivalent to ISO 15924 'Syrn') */
|
|
2983
|
+
return hb_language_from_string ("und-Syrn", -1); /* Undetermined; Syriac (Eastern variant) */
|
|
2984
|
+
case HB_TAG('T','M','H',' '): /* Tamashek */
|
|
2985
|
+
return hb_language_from_string ("tmh", -1); /* Tamashek [macrolanguage] */
|
|
2986
|
+
case HB_TAG('T','O','D',' '): /* Todo */
|
|
2987
|
+
return hb_language_from_string ("xwo", -1); /* Written Oirat */
|
|
2988
|
+
case HB_TAG('W','D','T',' '): /* Wendat */
|
|
2989
|
+
return hb_language_from_string ("wdt", -1); /* Wendat */
|
|
2990
|
+
case HB_TAG('W','Y','N',' '): /* Wyandot */
|
|
2991
|
+
return hb_language_from_string ("wyn", -1); /* Wyandot */
|
|
2992
|
+
case HB_TAG('Z','H','H',' '): /* Chinese, Traditional, Hong Kong SAR */
|
|
2993
|
+
return hb_language_from_string ("zh-HK", -1); /* Chinese [macrolanguage]; Hong Kong */
|
|
2994
|
+
case HB_TAG('Z','H','S',' '): /* Chinese, Simplified */
|
|
2995
|
+
return hb_language_from_string ("zh-Hans", -1); /* Chinese [macrolanguage]; Han (Simplified variant) */
|
|
2996
|
+
case HB_TAG('Z','H','T',' '): /* Chinese, Traditional */
|
|
2997
|
+
return hb_language_from_string ("zh-Hant", -1); /* Chinese [macrolanguage]; Han (Traditional variant) */
|
|
2998
|
+
case HB_TAG('Z','H','T','M'): /* Chinese, Traditional, Macao SAR */
|
|
2999
|
+
return hb_language_from_string ("zh-MO", -1); /* Chinese [macrolanguage]; Macao */
|
|
3000
|
+
case HB_TAG('Z','Z','A',' '): /* Zazaki */
|
|
3001
|
+
return hb_language_from_string ("zza", -1); /* Zazaki [macrolanguage] */
|
|
3002
|
+
default:
|
|
3003
|
+
return HB_LANGUAGE_INVALID;
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
#endif /* HB_OT_TAG_TABLE_HH */
|
|
3008
|
+
|
|
3009
|
+
/* == End of generated table == */
|