text stringlengths 1 24.5M |
|---|
//
// Created by Hanno Gödecke on 26.03.24.
//
#include "RNFFilamentInstanceWrapper.h"
#include "RNFAnimatorWrapper.h"
#include <map>
namespace margelo {
void FilamentInstanceWrapper::loadHybridMethods() {
registerHybridGetter("entityCount", &FilamentInstanceWrapper::getEntityCount, this);
registerHybridMethod... |
//
// Created by Hanno Gödecke on 26.03.24.
//
#pragma once
#include "RNFAABBWrapper.h"
#include "RNFNameComponentManagerWrapper.h"
#include "jsi/RNFHybridObject.h"
#include "utils/RNFEntityWrapper.h"
#include <gltfio/FilamentInstance.h>
namespace margelo {
using namespace filament;
using namespace gltfio;
class... |
//
// Created by Hanno Gödecke on 29.02.24.
//
#pragma once
#include "jsi/RNFEnumMapper.h"
#include <filament/LightManager.h>
namespace margelo {
namespace EnumMapper {
using namespace filament;
static void convertJSUnionToEnum(const std::string& inUnion, LightManager::Type* outEnum) {
if (inUnion == "dir... |
//
// Created by Hanno Gödecke on 12.04.24.
//
#include "RNFLightManagerWrapper.h"
#include "RNFLightEnum.h"
#include "RNFReferences.h"
#include "utils/RNFConverter.h"
#include <utils/Entity.h>
#include <utils/EntityManager.h>
namespace margelo {
void LightManagerWrapper::loadHybridMethods() {
registerHybridMeth... |
//
// Created by Hanno Gödecke on 12.04.24.
//
#pragma once
#include "core/utils/RNFEntityWrapper.h"
#include "jsi/RNFPointerHolder.h"
#include <filament/Engine.h>
#include <filament/LightManager.h>
namespace margelo {
using namespace filament;
class LightManagerWrapper : public PointerHolder<Engine> {
public:
... |
#include "RNFMaterialImpl.h"
#include <filament/Engine.h>
#include <filament/TextureSampler.h>
#include <math/mat3.h>
namespace margelo {
std::shared_ptr<MaterialInstanceWrapper> MaterialImpl::createInstance() {
std::unique_lock lock(_mutex);
MaterialInstance* materialInstance = _material->createInstance();
a... |
//
// Created by Hanno Gödecke on 25.03.24.
//
#pragma once
#include "RNFMaterialInstanceWrapper.h"
#include "jsi/RNFHybridObject.h"
#include <filament/Material.h>
namespace margelo {
using namespace filament;
class MaterialImpl {
public:
explicit MaterialImpl(std::shared_ptr<Material> material) : _material(ma... |
//
// Created by Hanno Gödecke on 20.03.24.
//
#include "RNFMaterialInstanceWrapper.h"
#include "RNFCullingModeEnum.h"
#include "RNFTransparencyModeEnum.h"
#include <filament/Material.h>
#include <math/mat3.h>
namespace margelo {
void MaterialInstanceWrapper::loadHybridMethods() {
registerHybridMethod("setCullingM... |
//
// Created by Hanno Gödecke on 20.03.24.
//
#pragma once
#include <filament/MaterialInstance.h>
#include "jsi/RNFHybridObject.h"
namespace margelo {
using namespace filament;
class MaterialInstanceWrapper : public HybridObject {
public:
explicit MaterialInstanceWrapper(MaterialInstance* materialInstance)
... |
//
// Created by Hanno Gödecke on 17.04.24.
//
#include "RNFMaterialWrapper.h"
#include "RNFRenderableManagerWrapper.h"
#include <filament/Texture.h>
namespace margelo {
void MaterialWrapper::loadHybridMethods() {
registerHybridMethod("createInstance", &MaterialWrapper::createInstance, this);
registerHybridMeth... |
//
// Created by Hanno Gödecke on 17.04.24.
//
#pragma once
#include "RNFFilamentBuffer.h"
#include "RNFMaterialImpl.h"
#include "jsi/RNFPointerHolder.h"
namespace margelo {
class RenderableManagerWrapper;
class MaterialWrapper : public PointerHolder<MaterialImpl> {
public:
explicit MaterialWrapper(std::shared_... |
//
// Created by Hanno Gödecke on 18.07.24.
//
#include "RNFNameComponentManagerWrapper.h"
namespace margelo {
void NameComponentManagerWrapper::loadHybridMethods() {
registerHybridMethod("getEntityName", &NameComponentManagerWrapper::getEntityName, this);
}
// TODO: This code is similar to Enti... |
//
// Created by Hanno Gödecke on 16.05.24.
//
#pragma once
#include "jsi/RNFPointerHolder.h"
#include "core/utils/RNFEntityWrapper.h"
#include <utils/NameComponentManager.h>
namespace margelo {
using namespace utils;
class NameComponentManagerWrapper : public PointerHolder<NameComponentManager> {
public:
expli... |
//
// Created by Hanno Gödecke on 29.02.24.
//
#pragma once
#include "jsi/RNFEnumMapper.h"
#include <filament/Options.h>
namespace margelo {
namespace EnumMapper {
using namespace filament;
static void convertJSUnionToEnum(const std::string& inUnion, QualityLevel* outEnum) {
if (inUnion == "LOW")
*o... |
//
// Created by Hanno Gödecke on 20.03.24.
//
#include "RNFRenderableManagerImpl.h"
#include "RNFEngineWrapper.h"
#include "RNFReferences.h"
#include "RNFTextureFlagsEnum.h"
#include "VertexEntity.h"
#include "core/RNFFilamentInstanceWrapper.h"
#include <cmath>
#include <filament/IndexBuffer.h>
#include <filament/... |
//
// Created by Hanno Gödecke on 30.04.24.
//
#include "RNFRenderableManagerImpl.h"
#include <cmath>
#include <filament/IndexBuffer.h>
#include <filament/VertexBuffer.h>
#include <utils/EntityManager.h>
namespace margelo {
using namespace filament;
using namespace math;
std::shared_ptr<EntityWrapper>
RenderableMa... |
//
// Created by Hanno Gödecke on 20.03.24.
//
#pragma once
#include "RNFFilamentAssetWrapper.h"
#include "RNFFilamentBuffer.h"
#include "RNFMaterialInstanceWrapper.h"
#include "RNFMaterialWrapper.h"
#include "VertexEntity.h"
#include "core/utils/RNFEntityWrapper.h"
#include "jsi/RNFPointerHolder.h"
#include <filam... |
//
// Created by Hanno Gödecke on 17.04.24.
//
#include "RNFRenderableManagerWrapper.h"
#include "RNFReferences.h"
#include "VertexEntity.h"
#include "core/RNFFilamentInstanceWrapper.h"
#include "utils/RNFConverter.h"
namespace margelo {
void RenderableManagerWrapper::loadHybridMethods() {
registerHybridMethod("ge... |
//
// Created by Hanno Gödecke on 17.04.24.
//
#pragma once
#include "RNFBoxWrapper.h"
#include "RNFRenderableManagerImpl.h"
#include "jsi/RNFPointerHolder.h"
namespace margelo {
class RenderableManagerWrapper : public PointerHolder<RenderableManagerImpl> {
public:
RenderableManagerWrapper(std::shared_ptr<Render... |
//
// Created by Hanno Gödecke on 24.04.24.
//
#include "RNFRendererWrapper.h"
namespace margelo {
void RendererWrapper::loadHybridMethods() {
registerHybridMethod("setFrameRateOptions", &RendererWrapper::setFrameRateOptions, this);
registerHybridMethod("setClearContent", &RendererWrapper::setClearContent, this)... |
//
// Created by Hanno Gödecke on 24.04.24.
//
#pragma once
#include "RNFSwapChainWrapper.h"
#include "RNFViewWrapper.h"
#include "jsi/RNFPointerHolder.h"
#include <filament/Renderer.h>
namespace margelo {
using namespace filament;
class RendererWrapper : public PointerHolder<Renderer> {
public:
explicit Render... |
#include "RNFSceneWrapper.h"
#include <filament/TransformManager.h>
#include <utils/Entity.h>
namespace margelo {
void margelo::SceneWrapper::loadHybridMethods() {
registerHybridMethod("addEntity", &SceneWrapper::addEntity, this);
registerHybridMethod("addEntities", &SceneWrapper::addEntities, this);
registerHy... |
#pragma once
#include "RNFFilamentAssetWrapper.h"
#include "core/utils/RNFEntityWrapper.h"
#include "jsi/RNFPointerHolder.h"
#include <filament/Scene.h>
#include <gltfio/AssetLoader.h>
#include <gltfio/FilamentAsset.h>
#include <utils/Entity.h>
namespace margelo {
using namespace filament;
class SceneWrapper : publ... |
#include "RNFSwapChainWrapper.h"
|
#pragma once
#include "jsi/RNFPointerHolder.h"
#include <filament/SwapChain.h>
namespace margelo {
using namespace filament;
class SwapChainWrapper : public PointerHolder<SwapChain> {
public:
explicit SwapChainWrapper(std::shared_ptr<SwapChain> swapChain) : PointerHolder("SwapChainWrapper", swapChain) {}
void ... |
//
// Created by Hanno Gödecke on 22.03.24.
//
#pragma once
#include <gltfio/TextureProvider.h>
namespace margelo {
using namespace filament;
using namespace gltfio;
namespace EnumMapper {
static void convertJSUnionToEnum(const std::string& inUnion, TextureProvider::TextureFlags* outEnum) {
if (inUnion == "n... |
//
// Created by Hanno Gödecke on 15.03.24.
//
#include "RNFTransformManagerImpl.h"
#include "RNFAABBWrapper.h"
#include "core/utils/RNFConverter.h"
#include <filament/TransformManager.h>
#include <math/mat4.h>
#include <utils/EntityInstance.h>
namespace margelo {
std::shared_ptr<TMat44Wrapper> TransformManagerImpl... |
//
// Created by Hanno Gödecke on 15.03.24.
//
#pragma once
#include "bullet/RNFRigidBodyWrapper.h"
#include "core/math/RNFTMat44Wrapper.h"
#include "core/utils/RNFEntityWrapper.h"
#include <filament/Engine.h>
#include <filament/TransformManager.h>
namespace margelo {
using namespace filament;
class TransformMana... |
//
// Created by Hanno Gödecke on 20.04.24.
//
#include "RNFTransformManagerWrapper.h"
namespace margelo {
void TransformManagerWrapper::loadHybridMethods() {
registerHybridMethod("getTransform", &TransformManagerWrapper::getTransform, this);
registerHybridMethod("getWorldTransform", &TransformManagerWrapper::g... |
//
// Created by Hanno Gödecke on 20.04.24.
//
#pragma once
#include "RNFTransformManagerImpl.h"
#include "jsi/RNFPointerHolder.h"
namespace margelo {
class TransformManagerWrapper : public PointerHolder<TransformManagerImpl> {
public:
explicit TransformManagerWrapper(std::shared_ptr<TransformManagerImpl> transf... |
//
// Created by Marc Rousavy on 22.02.24.
//
#pragma once
#include "jsi/RNFEnumMapper.h"
#include <filament/Material.h>
namespace margelo {
using namespace filament;
namespace EnumMapper {
static void convertJSUnionToEnum(const std::string& inUnion, TransparencyMode* outEnum) {
if (inUnion == "default")
... |
#include "RNFViewWrapper.h"
namespace margelo {
void ViewWrapper::loadHybridMethods() {
registerHybridMethod("getAspectRatio", &ViewWrapper::getAspectRatio, this);
registerHybridMethod("createAmbientOcclusionOptions", &ViewWrapper::createAmbientOcclusionOptions, this);
registerHybridMethod("setAmbientOcclusionO... |
#pragma once
#include "RNFAmbientOcclusionOptionsWrapper.h"
#include "RNFBloomOptionsWrapper.h"
#include "RNFAntiAliasingEnum.h"
#include "RNFCameraWrapper.h"
#include "RNFDitheringEnum.h"
#include "RNFDynamicResolutionOptions.h"
#include "RNFQualityLevel.h"
#include "RNFSceneWrapper.h"
#include "jsi/RNFPointerHolder.... |
//
// Created by Hanno Gödecke on 06.06.24.
//
#pragma once
#include <filament/IndexBuffer.h>
#include <filament/VertexBuffer.h>
#include <utils/Entity.h>
#include <memory>
struct VertexEntity {
utils::Entity entity;
std::shared_ptr<filament::VertexBuffer> vertexBuffer;
std::shared_ptr<filament::IndexBuffer>... |
#include "RNFTMat44Wrapper.h"
#include "core/utils/RNFConverter.h"
namespace margelo {
void margelo::TMat44Wrapper::loadHybridMethods() {
registerHybridGetter("data", &TMat44Wrapper::getMatrixData, this);
registerHybridMethod("scaling", &TMat44Wrapper::scaling, this);
registerHybridMethod("translate", &TMat44W... |
//
// Created by Hanno Gödecke on 15.03.24.
//
#pragma once
#include "jsi/RNFHybridObject.h"
#include <math/mat4.h>
namespace margelo {
using namespace filament;
class TMat44Wrapper : public HybridObject {
public:
explicit TMat44Wrapper(math::mat4f matrix) : HybridObject("TMat44Wrapper"), _matrix(matrix) {}
v... |
//
// Created by Hanno Gödecke on 29.02.24.
//
#pragma once
#include <math/vec3.h>
namespace margelo {
class Converter {
public:
static math::float3 VecToFloat3(std::vector<double> vec) {
if (vec.size() != 3) {
throw std::invalid_argument("Point must have 3 elements");
}
return math::float3(ve... |
#include "RNFEntityWrapper.h"
void margelo::EntityWrapper::loadHybridMethods() {
registerHybridGetter("id", &EntityWrapper::getId, this);
}
int margelo::EntityWrapper::getId() {
return _entity.getId();
}
|
#pragma once
#include "jsi/RNFHybridObject.h"
#include <core/VertexEntity.h>
#include <filament/IndexBuffer.h>
#include <filament/VertexBuffer.h>
#include <utils/Entity.h>
namespace margelo {
using namespace utils;
using namespace filament;
class EntityWrapper : public HybridObject {
public:
explicit EntityWrappe... |
#include "RNFManipulatorWrapper.h"
namespace margelo {
void ManipulatorWrapper::loadHybridMethods() {
registerHybridMethod("grabBegin", &ManipulatorWrapper::grabBegin, this);
registerHybridMethod("grabUpdate", &ManipulatorWrapper::grabUpdate, this);
registerHybridMethod("grabEnd", &ManipulatorWrapper::grabEnd, t... |
#pragma once
#include "jsi/RNFPointerHolder.h"
#include <camutils/Manipulator.h>
namespace margelo {
using namespace filament;
using namespace camutils;
class ManipulatorWrapper : public PointerHolder<Manipulator<float>> {
public:
explicit ManipulatorWrapper(std::shared_ptr<Manipulator<float>> manipulator, float ... |
//
// Created by Marc Rousavy on 22.02.24.
//
#pragma once
#include <stdexcept>
#include <string>
namespace margelo {
namespace EnumMapper {
// Add these two methods in namespace "EnumMapper" to allow parsing a custom enum:
// 1. `static void convertJSUnionToEnum(const std::string& inUnion, Enum* outEnum)`
//... |
//
// Created by Marc Rousavy on 21.02.24.
//
#include "RNFHybridObject.h"
#include "RNFJSIConverter.h"
#include "RNFLogger.h"
namespace margelo {
#if DEBUG && RNF_ENABLE_LOGS
static std::unordered_map<const char*, int> _instanceIds;
static std::mutex _mutex;
static int getId(const char* name) {
std::unique_lock ... |
//
// Created by Marc Rousavy on 21.02.24.
//
#pragma once
#include "RNFJSIConverter.h"
#include "RNFLogger.h"
#include "jsi/RNFWorkletRuntimeRegistry.h"
#include <functional>
#include <jsi/jsi.h>
#include <memory>
#include <mutex>
#include <type_traits>
#include <unordered_map>
namespace margelo {
using namespace ... |
//
// Created by Marc Rousavy on 21.02.24.
//
#pragma once
#include "RNFEnumMapper.h"
#include "RNFHybridObject.h"
#include "RNFJSIHelper.h"
#include "RNFPromise.h"
#include "RNFPromiseFactory.h"
#include "RNFWorkletRuntimeRegistry.h"
#include "threading/RNFDispatcher.h"
#include <array>
#include <future>
#include <j... |
//
// Created by Hanno Gödecke on 15.05.24.
//
#pragma once
#include "RNFWorkletRuntimeRegistry.h"
#include <jsi/jsi.h>
#include <memory>
namespace margelo {
using namespace facebook;
class JSIHelper {
public:
/**
* Takes a jsi::Function and wraps it in a shared_ptr so its shareable.
* Every jsi::Function... |
//
// Created by Marc Rousavy on 16.04.24.
//
#pragma once
#include "RNFHybridObject.h"
#include "RNFLogger.h"
#include <memory>
#include <mutex>
namespace margelo {
using namespace facebook;
template <typename T> class PointerHolder : public HybridObject {
protected:
// no default constructor
PointerHolder() ... |
#include "RNFPromise.h"
#include <future>
#include <jsi/jsi.h>
#include <utility>
#include <vector>
namespace margelo {
using namespace facebook;
Promise::Promise(jsi::Runtime& runtime, jsi::Function&& resolver, jsi::Function&& rejecter)
: runtime(runtime), _resolver(std::move(resolver)), _rejecter(std::move(rej... |
#pragma once
#include <jsi/jsi.h>
#include <utility>
#include <vector>
namespace margelo {
using namespace facebook;
class Promise {
public:
Promise(jsi::Runtime& runtime, jsi::Function&& resolver, jsi::Function&& rejecter);
void resolve(jsi::Value&& result);
void reject(std::string error);
public:
jsi::R... |
//
// PromiseFactory.cpp
// react-native-filament
//
// Created by Marc Rousavy on 11.03.24.
//
#include "RNFPromiseFactory.h"
#include "RNFLogger.h"
#include "threading/RNFDispatcher.h"
namespace margelo {
jsi::Value PromiseFactory::createPromise(jsi::Runtime& runtime, RunPromise&& run) {
std::shared_ptr<Dispa... |
//
// PromiseFactory.hpp
// react-native-filament
//
// Created by Marc Rousavy on 11.03.24.
//
#pragma once
#include "RNFPromise.h"
#include "threading/RNFDispatcher.h"
#include <jsi/jsi.h>
#include <memory>
namespace margelo {
class PromiseFactory {
public:
using RunPromise = std::function<void(jsi::Runtime&... |
#pragma once
#include <jsi/jsi.h>
#include <memory>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include "RNFRuntimeCache.h"
namespace margelo {
static std::unordered_map<jsi::Runtime*, std::unordered_set<RuntimeLifecycleListener*>> listeners;
struct RuntimeLifecycleMonitorObject : public... |
#pragma once
#include <jsi/jsi.h>
#include <memory>
#include <unordered_map>
#include <unordered_set>
#include <utility>
namespace margelo {
namespace jsi = facebook::jsi;
/**
* Listener interface that allows for getting notified when a jsi::Runtime
* instance is destroyed.
*/
struct RuntimeLifecycleListener {
... |
#pragma once
#include "RNFWorkletRuntimeRegistry.h"
#include <jsi/jsi.h>
#include <memory>
namespace margelo {
// From:
// https://github.com/software-mansion/react-native-reanimated/blob/6cb1a66f1a68cac8079de2b6b305d22359847e51/Common/cpp/ReanimatedRuntime/WorkletRuntimeCollector.h
class WorkletRuntimeCollector :... |
#include "RNFWorkletRuntimeRegistry.h"
namespace margelo {
std::set<jsi::Runtime*> RNFWorkletRuntimeRegistry::registry_{};
std::mutex RNFWorkletRuntimeRegistry::mutex_{};
} // namespace margelo
|
#pragma once
#include <jsi/jsi.h>
#include <mutex>
#include <set>
using namespace facebook;
namespace margelo {
// From:
// https://github.com/software-mansion/react-native-reanimated/blob/6cb1a66f1a68cac8079de2b6b305d22359847e51/Common/cpp/ReanimatedRuntime/WorkletRuntimeRegistry.h
class RNFWorkletRuntimeRegistry... |
//
// Created by Marc Rousavy on 22.02.24.
//
#pragma once
#include "jsi/RNFEnumMapper.h"
namespace margelo {
enum class TestEnum : uint8_t { FIRST, SECOND, THIRD };
namespace EnumMapper {
static void convertJSUnionToEnum(const std::string& inUnion, TestEnum* outEnum) {
if (inUnion == "first")
*outEnum... |
//
// Created by Marc Rousavy on 20.02.24.
//
#include "RNFTestHybridObject.h"
namespace margelo {
void TestHybridObject::loadHybridMethods() {
// this.int get & set
registerHybridGetter("int", &TestHybridObject::getInt, this);
registerHybridSetter("int", &TestHybridObject::setInt, this);
// this.string get &... |
//
// Created by Marc Rousavy on 22.02.24.
//
#pragma once
#include "RNFTestEnum.h"
#include "jsi/RNFHybridObject.h"
#include <optional>
#include <string>
#include <vector>
namespace margelo {
class TestHybridObject : public HybridObject {
public:
explicit TestHybridObject() : HybridObject("TestHybridObject") {}
... |
//
// Created by Marc Rousavy on 27.03.24.
//
#pragma once
#include "RNFDispatcher.h"
#include <ReactCommon/CallInvoker.h>
namespace margelo {
using namespace facebook;
/**
* A Dispatcher that uses react::CallInvoker for it's implementation
*/
class CallInvokerDispatcher : public Dispatcher {
public:
explicit ... |
#include "RNFDispatcher.h"
#include "RNFLogger.h"
#include "jsi/RNFWorkletRuntimeCollector.h"
namespace margelo {
using namespace facebook;
static constexpr auto GLOBAL_DISPATCHER_HOLDER_NAME = "__globalDispatcher";
void Dispatcher::installRuntimeGlobalDispatcher(jsi::Runtime& runtime, std::shared_ptr<Dispatcher> d... |
//
// Created by Marc Rousavy on 12.03.24.
//
#pragma once
#include <functional>
#include <future>
#include <jsi/jsi.h>
#include <queue>
namespace margelo {
using namespace facebook;
class Dispatcher : public jsi::NativeState {
public:
/**
Installs the Dispatcher into the given Runtime.
It can be accessed ... |
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
|
#import <RCTAppDelegate.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : RCTAppDelegate
@end
|
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//
|
#import <RCTAppDelegate.h>
#import <UIKit/UIKit.h>
@interface AppDelegate : RCTAppDelegate
@end
|
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.