text
stringlengths
1
24.5M
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <cstdint> #include <functional> #include <string_view> #include <react/utils/toLower.h> namespace facebo...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> #include <type_traits> namespace facebook::react { template <typename T> concept Hashable =...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <react/utils/toLower.h> #include <string_view> namespace facebook::react { /** * constexpr check for ca...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "jsi-utils.h" namespace facebook::react { void defineReadOnlyGlobal( jsi::Runtime& runtime, const std::string&...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <jsi/jsi.h> #include <string> namespace facebook::react { /** * Defines a property on the global object...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <react/debug/react_native_assert.h> #if defined(__APPLE__) #include <TargetConditionals.h> #endif #if de...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <utility> namespace facebook::react { template <typename Lambda> class OnScopeExit { public: explicit...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <type_traits> namespace facebook::react::traits { template <typename ExpectedT> static constexpr bool co...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "RunLoopObserver.h" #include <react/debug/react_native_assert.h> namespace facebook::react { RunLoopObserver::RunLoop...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <atomic> #include <functional> #include <memory> namespace facebook::react { /* * A cross-platform abst...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> #include <memory> #include <mutex> #include <shared_mutex> namespace facebook::react { /* ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <concepts> #include <list> #include <mutex> #include <unordered_map> namespace facebook::react { templat...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <chrono> #include <type_traits> namespace facebook::react { /* * Represents a monotonic clock suitable ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <algorithm> #include <array> #include <string_view> namespace facebook::react { /** * Helper to allow p...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once namespace facebook::react { /** * constexpr version of tolower */ constexpr char toLower(char c) { if (c >= 'A...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <type_traits> namespace facebook::react { /** * Polyfill of C++ 23 to_underlying() * https://en.cppref...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "Uuid.h" #include <array> #include <iomanip> #include <random> #include <sstream> namespace { std::mt19937& getThread...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <string> namespace facebook::react { /** * Generates a random UUID version 4 string in the format * xx...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <pthread.h> #include <sched.h> #include <condition_variable> #include <mutex> #include <queue> #include <thread> #includ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once namespace facebook::react::LowPriorityExecutor { void execute(std::function<void()> &&workItem); } // namespace f...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> namespace facebook::react::LowPriorityExecutor { inline void execute(std::function<void()> ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import <Foundation/Foundation.h> #include <folly/dynamic.h> namespace facebook::react { folly::dynamic convertIdToFollyDynami...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <functional> namespace facebook::react::LowPriorityExecutor { void execute(std::function<void()> &&workI...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <gtest/gtest.h> #include <react/utils/fnv1a.h> namespace facebook::react { TEST(fnv1aTests, testBasicHashing) { EXPE...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <gtest/gtest.h> #include <react/utils/hash_combine.h> struct Person { std::string firstName; std::string lastName; ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <gtest/gtest.h> #include <react/utils/SimpleThreadSafeCache.h> namespace facebook::react { TEST(EvictingCacheMapTest, ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <react/utils/Uuid.h> #include <gmock/gmock.h> #include <gtest/gtest.h> using namespace ::testing; namespace facebook:...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <folly/json.h> #include <fstream> #include <mutex> #include <unordered_map> #include "FuseboxTracer.h" namespace faceb...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include "folly/json/dynamic.h" #include <functional> #include <optional> #include <vector> namespace facebook::r...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <gtest/gtest.h> #include <reactperflogger/fusebox/FuseboxTracer.h> using namespace ::testing; namespace facebook::rea...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "BridgeNativeModulePerfLogger.h" namespace facebook::react::BridgeNativeModulePerfLogger { std::unique_ptr<NativeModul...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <memory> #include "NativeModulePerfLogger.h" namespace facebook::react::BridgeNativeModulePerfLogger { voi...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifdef WITH_PERFETTO #if defined(__ANDROID__) #include <android/log.h> #endif // __ANDROID__ #include <folly/json.h> #include <h...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #ifdef WITH_PERFETTO #include <perfetto.h> namespace facebook::react { /** * This is a special datasource that ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifdef WITH_PERFETTO #include <folly/json.h> #include <hermes/hermes.h> #include <perfetto.h> #include <iostream> #include "Her...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #ifdef WITH_PERFETTO #include <perfetto.h> namespace facebook::react { class HermesPerfettoDataSource : public p...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <cstdint> namespace facebook::react { /** * A platform-agnostic interface to do performance logging on N...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifdef WITH_PERFETTO #include "ReactPerfetto.h" #include <perfetto.h> #include <unordered_map> #include "FuseboxPerfettoDataSo...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #ifdef WITH_PERFETTO #include <perfetto.h> #include <react/timing/primitives.h> #include <reactperflogger/ReactPer...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #ifdef WITH_PERFETTO #include "ReactPerfettoCategories.h" PERFETTO_TRACK_EVENT_STATIC_STORAGE_IN_NAMESPACE(facebook::react); PE...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #ifdef WITH_PERFETTO #include <perfetto.h> PERFETTO_DEFINE_CATEGORIES_IN_NAMESPACE( facebook::react, perf...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "ReactPerfettoLogger.h" #if defined(WITH_PERFETTO) #include "ReactPerfetto.h" #elif defined(WITH_FBSYSTRACE) #include <...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <react/timing/primitives.h> #include <reactperflogger/ReactPerfettoCategories.h> #include <optional> #inc...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <ReactCommon/RuntimeExecutorSyncUIThreadUtils.h> #include <future> #include <thread> namespace facebook::react { /* *...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <ReactCommon/RuntimeExecutor.h> #include <jsi/jsi.h> namespace facebook::react { /* * Schedules `runti...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <ReactCommon/RuntimeExecutor.h> #include <jsi/jsi.h> namespace facebook::react { /* * Schedules `runti...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <jsi/jsi.h> namespace facebook::react { /* * Takes a function and calls it with a reference to a Runtim...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/debug/AssertFatal.h> #include <yoga/debug/Log.h> using namespace facebook; using namespace...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stdarg.h> #include <stdbool.h> #include <stddef.h> #include <yoga/YGEnums.h> #include <yoga/YGMacros.h> ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #include <yoga/YGEnums.h> const char* YGAlignToString(const YGAlign value) { swi...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <yoga/YGMacros.h> YG_EXTERN_C_BEGIN YG_ENUM_DECL( YGAli...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #ifdef __cplusplus #include <type_traits> #endif #ifdef __cplusplus #define YG_EXTERN_C_BEGIN extern "C" { #define...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/algorithm/Cache.h> #include <yoga/algorithm/CalculateLayout.h> #include <yoga/debug/Assert...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stdbool.h> #include <stddef.h> #include <yoga/YGConfig.h> #include <yoga/YGEnums.h> #include <yoga/YGMac...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/debug/AssertFatal.h> #include <yoga/enums/Edge.h> #include <yoga/node/Node.h> using namesp...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stdbool.h> #include <yoga/YGConfig.h> #include <yoga/YGEnums.h> #include <yoga/YGMacros.h> YG_EXTERN_C_...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/debug/AssertFatal.h> #include <yoga/node/Node.h> using namespace facebook; using namespace...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stddef.h> #include <yoga/YGNode.h> #include <yoga/YGValue.h> YG_EXTERN_C_BEGIN YG_EXPORT void YGNodeCo...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/algorithm/PixelGrid.h> using namespace facebook; using namespace facebook::yoga; float Y...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stdbool.h> #include <yoga/YGConfig.h> #include <yoga/YGEnums.h> #include <yoga/YGMacros.h> YG_EXTERN_C_...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/YGValue.h> #include <yoga/numeric/Comparison.h> using namespace facebook; using namespace facebook::yoga; const ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <stdbool.h> #include <yoga/YGEnums.h> #include <yoga/YGMacros.h> /** * Float value to represent "undefi...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once /** * `#include <yoga/Yoga.h>` includes all of Yoga's public headers. */ #include <yoga/YGConfig.h> // IWYU prag...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/algorithm/AbsoluteLayout.h> #include <yoga/algorithm/Align.h> #include <yoga/algorithm/BoundAxis.h> #include <yoga...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/event/event.h> #include <yoga/node/Node.h> namespace facebook::yoga { void layoutAbsoluteChild( ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/algorithm/FlexDirection.h> #include <yoga/node/Node.h> namespace facebook::...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/algorithm/Align.h> #include <yoga/algorithm/Baseline.h> #include <yoga/debug/AssertFatal.h...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/node/Node.h> namespace facebook::yoga { // Calculate baseline represented a...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/algorithm/FlexDirection.h> #include <yoga/enums/Dimension.h> #include <yoga/enums/FlexDirection.h> #...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/algorithm/Cache.h> #include <yoga/algorithm/PixelGrid.h> #include <yoga/numeric/Comparison.h> namespace facebook:...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/algorithm/SizingMode.h> #include <yoga/config/Config.h> namespace facebook::yoga { bool canUseCach...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <algorithm> #include <atomic> #include <cfloat> #include <cmath> #include <cstring> #include <yoga/Yoga.h> #include <y...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/algorithm/FlexDirection.h> #include <yoga/event/event.h> #include <yoga/node/...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/debug/AssertFatal.h> #include <yoga/enums/Dimension.h> #include <yoga/enums/...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/algorithm/BoundAxis.h> #include <yoga/algorithm/FlexDirection.h> #include <yoga/algorithm/...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <vector> #include <yoga/Yoga.h> #include <yoga/node/Node.h> namespace facebook::yoga { struct FlexLineR...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/Yoga.h> #include <yoga/algorithm/PixelGrid.h> #include <yoga/numeric/Comparison.h> namespace facebook::yoga { f...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/node/Node.h> namespace facebook::yoga { // Round a point value to the neare...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/debug/AssertFatal.h> #include <yoga/enums/MeasureMode.h> namespace facebook::yoga { /** * Corresp...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/algorithm/FlexDirection.h> #include <yoga/event/event.h> #include <yoga/node/...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/config/Config.h> #include <yoga/debug/Log.h> #include <yoga/node/Node.h> namespace facebook::yoga { bool configU...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <bitset> #include <yoga/Yoga.h> #include <yoga/enums/Errata.h> #include <yoga/enums/ExperimentalFeature.h...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <exception> #include <stdexcept> #include <yoga/config/Config.h> #include <yoga/debug/AssertFatal.h> #include <yoga/deb...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> namespace facebook::yoga { class Node; class Config; [[noreturn]] void fatalWithMessage(c...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include <yoga/debug/Log.h> #ifdef ANDROID #include <android/log.h> #endif namespace facebook::yoga { namespace { void vlog( ...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <yoga/Yoga.h> #include <yoga/config/Config.h> #include <yoga/enums/LogLevel.h> #include <yoga/node/Node.h...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include <cstdint> #include <yoga/YGEnums.h> #include <yoga/enums/Yog...