Home
last modified time | relevance | path

Searched refs:_name (Results 1 – 25 of 48) sorted by relevance

12

/expo/apps/native-component-list/src/screens/GL/
H A DGLScreen.tsx7 _name: 'ClearToBlue',
13 _name: 'BasicTexture',
19 _name: 'GLViewScreen',
25 _name: 'Mask',
32 _name: 'Snapshots',
39 _name: 'THREEComposer',
52 _name: 'THREESprite',
70 _name: 'PIXIBasic',
76 _name: 'PIXISprite',
82 _name: 'GLCamera',
[all …]
/expo/apps/native-component-list/src/screens/Contacts/
H A DContactsAvatar.tsx23 const _name = name.toUpperCase().split(' ');
25 if (_name.length === 1) {
26 initials = `${_name[0].charAt(0)}`;
27 } else if (_name.length > 1) {
28 initials = `${_name[0].charAt(0)}${_name[1].charAt(0)}`;
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h23 : _name(JsiPropId::get(name)), BaseNodeProp() {} in NodeProp()
34 _value = std::make_shared<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
42 std::make_shared<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
117 std::string getName() override { return std::string(_name); } in getName()
120 PropId _name;
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h23 : _name(JsiPropId::get(name)), BaseNodeProp() {} in NodeProp()
34 _value = std::make_shared<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
42 std::make_shared<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
117 std::string getName() override { return std::string(_name); } in getName()
120 PropId _name;
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/utils/
H A DRNSkMeasureTime.h19 : _name(name), _start(high_resolution_clock::now()){} in RNSkMeasureTime()
24 RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~RNSkMeasureTime()
28 std::string _name;
H A DRNSkTimingInfo.h16 RNSkTimingInfo(const std::string &name): _name(std::move(name)) { in RNSkTimingInfo()
42 …RNSkLogger::logToConsole("%s: Skipped frame. Previous frame time: %lldms", _name.c_str(), _lastDur… in stopTiming()
100 std::string _name; variable
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/utils/
H A DABI47_0_0RNSkMeasureTime.h19 : _name(name), _start(high_resolution_clock::now()){} in ABI47_0_0RNSkMeasureTime()
24 ABI47_0_0RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~ABI47_0_0RNSkMeasureTime()
28 std::string _name;
H A DABI47_0_0RNSkTimingInfo.h16 ABI47_0_0RNSkTimingInfo(const std::string &name): _name(std::move(name)) { in ABI47_0_0RNSkTimingInfo()
42 …ABI47_0_0RNSkLogger::logToConsole("%s: Skipped frame. Previous frame time: %lldms", _name.c_str(),… in stopTiming()
100 std::string _name; variable
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h25 : _name(JsiPropId::get(name)), _onChange(onChange), BaseNodeProp() {} in NodeProp()
36 _value = std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
46 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
125 std::string getName() override { return std::string(_name); } in getName()
128 PropId _name;
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h25 : _name(JsiPropId::get(name)), _onChange(onChange), BaseNodeProp() {} in NodeProp()
36 _value = std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
46 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
125 std::string getName() override { return std::string(_name); } in getName()
128 PropId _name;
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h25 : _name(JsiPropId::get(name)), _onChange(onChange), BaseNodeProp() {} in NodeProp()
36 _value = std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
46 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
125 std::string getName() override { return std::string(_name); } in getName()
128 PropId _name;
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/rnskia/dom/base/
H A DNodeProp.h25 : _name(JsiPropId::get(name)), _onChange(onChange), BaseNodeProp() {} in NodeProp()
36 _value = std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
44 std::make_unique<JsiValue>(runtime, read(runtime, _name, this)); in readValueFromJs()
46 _buffer->setCurrent(runtime, read(runtime, _name, this)); in readValueFromJs()
125 std::string getName() override { return std::string(_name); } in getName()
128 PropId _name;
/expo/packages/expo-sqlite/build/
H A DSQLite.js16 _name; field in SQLiteDatabase
19 this._name = name;
28 … ExpoSQLite.exec(this._name, queries.map(_serializeQuery), readOnly).then((nativeResultSets) => {
44 …ExpoSQLite.execRawQuery(this._name, queries.map(_serializeQuery), readOnly).then((nativeResultSets…
57 …const nativeResultSets = await ExpoSQLite.exec(this._name, queries.map(_serializeQuery), readOnly);
69 return ExpoSQLite.close(this._name);
76 return ExpoSQLite.closeSync(this._name);
84 …throw new Error(`Unable to delete '${this._name}' database that is currently open. Close it prior …
86 return ExpoSQLite.deleteAsync(this._name);
/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/utils/
H A DABI49_0_0RNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in ABI49_0_0RNSkMeasureTime()
24 ABI49_0_0RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~ABI49_0_0RNSkMeasureTime()
28 std::string _name;
H A DABI49_0_0RNSkTimingInfo.h18 explicit ABI49_0_0RNSkTimingInfo(const std::string &name) : _name(std::move(name)) { in ABI49_0_0RNSkTimingInfo()
47 _name.c_str(), _lastDuration); in stopTiming()
104 std::string _name; variable
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/utils/
H A DRNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in RNSkMeasureTime()
24 RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~RNSkMeasureTime()
28 std::string _name;
H A DRNSkTimingInfo.h18 explicit RNSkTimingInfo(const std::string &name) : _name(std::move(name)) { in RNSkTimingInfo()
47 _name.c_str(), _lastDuration); in stopTiming()
104 std::string _name; variable
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/utils/
H A DRNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in RNSkMeasureTime()
24 RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~RNSkMeasureTime()
28 std::string _name;
H A DRNSkTimingInfo.h18 explicit RNSkTimingInfo(const std::string &name) : _name(std::move(name)) { in RNSkTimingInfo()
47 _name.c_str(), _lastDuration); in stopTiming()
104 std::string _name; variable
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/utils/
H A DABI48_0_0RNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in ABI48_0_0RNSkMeasureTime()
24 ABI48_0_0RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~ABI48_0_0RNSkMeasureTime()
28 std::string _name;
H A DABI48_0_0RNSkTimingInfo.h18 explicit ABI48_0_0RNSkTimingInfo(const std::string &name) : _name(std::move(name)) { in ABI48_0_0RNSkTimingInfo()
47 _name.c_str(), _lastDuration); in stopTiming()
104 std::string _name; variable
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/utils/
H A DRNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in RNSkMeasureTime()
24 RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~RNSkMeasureTime()
28 std::string _name;
H A DRNSkTimingInfo.h18 explicit RNSkTimingInfo(const std::string &name) : _name(std::move(name)) { in RNSkTimingInfo()
47 _name.c_str(), _lastDuration); in stopTiming()
104 std::string _name; variable
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/utils/
H A DRNSkMeasureTime.h17 : _name(name), _start(std::chrono::high_resolution_clock::now()) {} in RNSkMeasureTime()
24 RNSkLogger::logToConsole("%s: %lld ms\n", _name.c_str(), duration); in ~RNSkMeasureTime()
28 std::string _name;
/expo/packages/expo-sqlite/src/
H A DSQLite.ts31 _name: string; property in SQLiteDatabase
35 this._name = name;
46 ExpoSQLite.exec(this._name, queries.map(_serializeQuery), readOnly).then(
67 ExpoSQLite.execRawQuery(this._name, queries.map(_serializeQuery), readOnly).then(
86 this._name,
103 return ExpoSQLite.close(this._name);
111 return ExpoSQLite.closeSync(this._name);
121 … `Unable to delete '${this._name}' database that is currently open. Close it prior to deletion.`
125 return ExpoSQLite.deleteAsync(this._name);

12