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. */ #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...
/* * 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. */ #pragma once #include <yoga/enums/Edge.h> namespace facebook::yoga { enum class PhysicalEdge : uint32_t { Left = yoga::to_un...
/* * 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. */ #pragma once #include <bit> #include <iterator> #include <type_traits> namespace facebook::yoga { /** * Concept for any enum/...
/* * 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 "event.h" #include <atomic> #include <memory> namespace facebook::yoga { const char* LayoutPassReasonToString(const La...
/* * 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 <array> #include <cstdint> #include <functional> #include <vector> namespace face...
/* * 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 <cmath> #include <yoga/Yoga.h> #include <yoga/algorithm/SizingMode.h> #include <yoga/numeric/Comparison....
/* * 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 <forward_list> #include <utility> #include <yoga/enums/Display.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 <cmath> #include <yoga/node/LayoutResults.h> #include <yoga/numeric/Comparison.h> namespace facebook::yoga { bool Lay...
/* * 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 <array> #include <yoga/debug/AssertFatal.h> #include <yoga/enums/Dimension.h> #include <yoga/enums/Direct...
/* * 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 <cstddef> #include <iostream> #include <yoga/algorithm/FlexDirection.h> #include <yoga/debug/Asser...
/* * 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 <cstdio> #include <vector> #include <yoga/Yoga.h> #include <yoga/node/LayoutableChildr...
/* * 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 <cmath> #include <concepts> #include <yoga/Yoga.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 <yoga/numeric/Comparison.h> #include <limits> namespace facebook::yoga { struct FloatOptional { private...
/* * 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 <array> #include <bitset> #include <cassert> #include <cstdint> #include <memory> #include <vector> names...
/* * 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 <array> #include <cstdint> #include <type_traits> #include <yoga/Yoga.h> #include <yoga/algorithm/FlexDi...
/* * 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/enums/Unit.h> #include <yoga/numeric/FloatOptional.h> namespace facebook::yoga { /** * Style::Len...
/* * 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/enums/Unit.h> #include <yoga/numeric/FloatOptional.h> namespace facebook::yoga { /** * This class...
/* * 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 <yoga/Yoga.h> #include <yoga/numeric/FloatOptional.h> #include <yoga/style/SmallValue...