Home
last modified time | relevance | path

Searched refs:sample (Results 1 – 25 of 58) sorted by relevance

123

/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h108 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
112 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
116 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
120 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/packages/expo-av/android/src/main/cpp/
H A DJAVManager.cpp99 auto sample = std::make_shared<jsi::Object>(runtime); in installJSIBindings() local
100 sample->setProperty(runtime, "channels", channels); in installJSIBindings()
101 sample->setProperty(runtime, "timestamp", jsi::Value(positionSeconds)); in installJSIBindings()
103 callInvoker->invokeAsync([callbackShared, &runtime, sample]() { in installJSIBindings()
105 jsi::Object *s = sample.get(); in installJSIBindings()
/expo/packages/expo-module-template-local/ios/
H A D{%- project.name %}.podspec4 s.summary = 'A sample project summary'
5 s.description = 'A sample project description'
/expo/ios/versioned/sdk47/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm71 auto sample = jsi::Object(rt);
72 sample.setProperty(rt, "channels", std::move(channels));
73 sample.setProperty(rt, "timestamp", jsi::Value(timestamp));
75 jsiCallbackWrapper->callback().call(rt, std::move(sample));
/expo/packages/expo-av/ios/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm71 auto sample = jsi::Object(rt);
72 sample.setProperty(rt, "channels", std::move(channels));
73 sample.setProperty(rt, "timestamp", jsi::Value(timestamp));
75 jsiCallbackWrapper->callback().call(rt, std::move(sample));
/expo/ios/versioned/sdk48/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm71 auto sample = jsi::Object(rt);
72 sample.setProperty(rt, "channels", std::move(channels));
73 sample.setProperty(rt, "timestamp", jsi::Value(timestamp));
75 jsiCallbackWrapper->callback().call(rt, std::move(sample));
/expo/ios/versioned/sdk49/EXAV/EXAV/AudioSampleCallback/
H A DAudioSampleCallbackWrapper.mm71 auto sample = jsi::Object(rt);
72 sample.setProperty(rt, "channels", std::move(channels));
73 sample.setProperty(rt, "timestamp", jsi::Value(timestamp));
75 jsiCallbackWrapper->callback().call(rt, std::move(sample));
/expo/apps/native-component-list/src/screens/AV/
H A DJsiAudioBar.tsx16 // for some reason, iOS returns much smaller sample values
54 sound?.setOnAudioSampleReceived((sample) => {
55 const frames = sample.channels[0].frames;
H A DVideoScreen.tsx14 { uri: 'http://techslides.com/demos/sample-videos/small.mp4' },
/expo/apps/native-component-list/src/screens/Video/
H A DVideoScreen.tsx15 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4'
28 'http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4'
/expo/apps/native-component-list/src/screens/ExpoMaps/screens/
H A DGeoJsonExample.tsx14 geoJsonString={JSON.stringify(require('../../../../assets/expo-maps/sample.geo.json'))}
/expo/apps/native-component-list/src/screens/
H A DLocalizationScreen.tsx74 const sample = this.state.isoCurrencyCodes.slice(0, 100);
75 const grouped = chunk(sample, 10);
80 if (seenCount === sample.length) return buffer;
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h405 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
409 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
413 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
417 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/cxxreact/
H A DABI49_0_0SampleCxxModule.h40 SampleCxxModule(std::unique_ptr<Sample> sample);
H A DABI49_0_0SampleCxxModule.cpp70 SampleCxxModule::SampleCxxModule(std::unique_ptr<Sample> sample) in SampleCxxModule() argument
71 : sample_(std::move(sample)) {} in SampleCxxModule()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/cxxreact/
H A DABI47_0_0SampleCxxModule.h40 SampleCxxModule(std::unique_ptr<Sample> sample);
H A DABI47_0_0SampleCxxModule.cpp70 SampleCxxModule::SampleCxxModule(std::unique_ptr<Sample> sample) in SampleCxxModule() argument
71 : sample_(std::move(sample)) {} in SampleCxxModule()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/cxxreact/
H A DABI48_0_0SampleCxxModule.h40 SampleCxxModule(std::unique_ptr<Sample> sample);
H A DABI48_0_0SampleCxxModule.cpp70 SampleCxxModule::SampleCxxModule(std::unique_ptr<Sample> sample) in SampleCxxModule() argument
71 : sample_(std::move(sample)) {} in SampleCxxModule()
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/core/
H A DSkTypes.h413 # define SK_HISTOGRAM_BOOLEAN(name, sample) argument
417 # define SK_HISTOGRAM_ENUMERATION(name, sample, enum_size) argument
421 # define SK_HISTOGRAM_EXACT_LINEAR(name, sample, value_max) argument
425 # define SK_HISTOGRAM_MEMORY_KB(name, sample) argument

123