| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/ |
| H A D | ABI47_0_0MessageTypes.cpp | 103 return obj; in toDynamic() 126 return obj; in toDynamic() 145 return obj; in toDynamic() 160 return obj; in toDynamic() 187 return obj; in toDynamic() 206 return obj; in toDynamic() 231 return obj; in toDynamic() 249 return obj; in toDynamic() 265 return obj; in toDynamic() 278 return obj; in toDynamic() [all …]
|
| H A D | ABI47_0_0MessageTypesInlines.h | 37 return T(obj); 42 const dynamic &obj) { 43 return obj.asInt(); 49 return obj.asDouble(); 55 return obj.asString(); 61 return obj; 89 auto it = obj.find(key); 90 if (it != obj.items().end()) { 99 auto it = obj.find(key); 142 obj.erase(key); [all …]
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/ |
| H A D | ABI49_0_0MessageTypes.cpp | 106 return obj; in toDynamic() 129 return obj; in toDynamic() 148 return obj; in toDynamic() 163 return obj; in toDynamic() 190 return obj; in toDynamic() 209 return obj; in toDynamic() 234 return obj; in toDynamic() 252 return obj; in toDynamic() 268 return obj; in toDynamic() 281 return obj; in toDynamic() [all …]
|
| H A D | ABI49_0_0MessageTypesInlines.h | 38 return T(obj); 43 const dynamic &obj) { 44 return obj.asInt(); 50 return obj.asDouble(); 56 return obj.asString(); 62 return obj; 90 auto it = obj.find(key); 91 if (it != obj.items().end()) { 100 auto it = obj.find(key); 143 obj.erase(key); [all …]
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/hermes/inspector/chrome/ |
| H A D | ABI48_0_0MessageTypes.cpp | 106 return obj; in toDynamic() 129 return obj; in toDynamic() 148 return obj; in toDynamic() 163 return obj; in toDynamic() 190 return obj; in toDynamic() 209 return obj; in toDynamic() 234 return obj; in toDynamic() 252 return obj; in toDynamic() 268 return obj; in toDynamic() 281 return obj; in toDynamic() [all …]
|
| H A D | ABI48_0_0MessageTypesInlines.h | 37 return T(obj); 42 const dynamic &obj) { 43 return obj.asInt(); 49 return obj.asDouble(); 55 return obj.asString(); 61 return obj; 89 auto it = obj.find(key); 90 if (it != obj.items().end()) { 99 auto it = obj.find(key); 142 obj.erase(key); [all …]
|
| /expo/packages/@expo/config/build/ |
| H A D | getUserState.js | 38 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 39 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/core/tests/ |
| H A D | ABI47_0_0PrimitivesTest.cpp | 16 Sealable obj; in TEST() local 17 ABI47_0_0EXPECT_FALSE(obj.getSealed()); in TEST() 19 obj.seal(); in TEST() 20 ABI47_0_0EXPECT_TRUE(obj.getSealed()); in TEST() 24 Sealable obj; in TEST() local 28 obj = other; in TEST() 31 obj.seal(); in TEST() 35 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 41 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 44 Sealable other3(obj); in TEST()
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/core/tests/ |
| H A D | ABI48_0_0PrimitivesTest.cpp | 16 Sealable obj; in TEST() local 17 ABI48_0_0EXPECT_FALSE(obj.getSealed()); in TEST() 19 obj.seal(); in TEST() 20 ABI48_0_0EXPECT_TRUE(obj.getSealed()); in TEST() 24 Sealable obj; in TEST() local 28 obj = other; in TEST() 31 obj.seal(); in TEST() 35 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 41 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 44 Sealable other3(obj); in TEST()
|
| /expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/core/tests/ |
| H A D | ABI49_0_0PrimitivesTest.cpp | 16 Sealable obj; in TEST() local 17 ABI49_0_0EXPECT_FALSE(obj.getSealed()); in TEST() 19 obj.seal(); in TEST() 20 ABI49_0_0EXPECT_TRUE(obj.getSealed()); in TEST() 24 Sealable obj; in TEST() local 28 obj = other; in TEST() 31 obj.seal(); in TEST() 35 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 41 { obj = other2; }, "Attempt to mutate a sealed object."); in TEST() 44 Sealable other3(obj); in TEST()
|
| /expo/packages/@expo/config-plugins/build/android/ |
| H A D | EasBuild.js | 38 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 39 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| H A D | Paths.js | 64 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 65 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/packages/@expo/config-plugins/src/utils/ |
| H A D | sortObject.ts | 2 obj: T, 5 return Object.keys(obj) 10 [key]: obj[key], 17 obj: T, 20 const sorted = sortWithOrder(Object.keys(obj), order); 25 [key]: obj[key], 31 export function sortWithOrder(obj: string[], order: string[]): string[] { 32 const groupOrder = [...new Set(order.concat(obj))]; 37 const index = obj.indexOf(key); 39 const [item] = obj.splice(index, 1);
|
| /expo/packages/@expo/config-plugins/build/utils/ |
| H A D | sortObject.js | 10 function sortObject(obj, compareFn) { argument 11 return Object.keys(obj).sort(compareFn).reduce((acc, key) => ({ 13 [key]: obj[key] 16 function sortObjWithOrder(obj, order) { argument 17 const sorted = sortWithOrder(Object.keys(obj), order); 20 [key]: obj[key] 23 function sortWithOrder(obj, order) { argument 24 const groupOrder = [...new Set(order.concat(obj))]; 28 const index = obj.indexOf(key); 30 const [item] = obj.splice(index, 1);
|
| H A D | plugin-resolver.js | 57 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 58 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/packages/@expo/prebuild-config/build/plugins/unversioned/expo-splash-screen/ |
| H A D | withIosSplashScreenStoryboard.js | 45 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument
|
| /expo/packages/@expo/config-plugins/build/ios/ |
| H A D | Updates.js | 44 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument 46 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument
|
| /expo/packages/@expo/env/build/ |
| H A D | env.js | 52 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 53 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/packages/@expo/prebuild-config/build/plugins/icons/ |
| H A D | withIosIcons.js | 46 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | obj.ts | 2 export function get(obj: any, key: string): any | null { 4 let current: any = obj; 16 export function set(obj: any, key: string, value: any): any | null { 18 let current: any = obj; 23 return obj; 37 obj: { [key: string]: T }, 40 return Object.entries(obj).reduce(
|
| /expo/apps/native-component-list/src/screens/Clipboard/ |
| H A D | ImagePreview.tsx | 17 obj: unknown 18 ): obj is { data: string; size: { width: string; height: string } } { 20 obj !== null && 21 typeof obj === 'object' && 22 typeof (obj as any).data === 'string' && 23 typeof (obj as any).size === 'object' && 24 typeof (obj as any).size.width === 'number' && 25 typeof (obj as any).size.height === 'number'
|
| /expo/packages/@expo/config-plugins/build/plugins/ |
| H A D | mod-compiler.js | 67 …obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null ||… argument 68 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/packages/@expo/metro-config/build/utils/ |
| H A D | hash.js | 14 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } argument
|
| /expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/ports/ |
| H A D | SkCFObject.h | 25 if (obj) { in SkCFSafeRetain() 26 CFRetain(obj); in SkCFSafeRetain() 28 return obj; in SkCFSafeRetain() 32 if (obj) { in SkCFSafeRelease() 33 CFRelease(obj); in SkCFSafeRelease() 61 explicit sk_cfp(T obj) { in sk_cfp() argument 62 fObject = obj; in sk_cfp() 134 T obj = fObject; in release() local 136 return obj; in release() 175 template <typename T> sk_cfp<T> sk_ret_cfp(T obj) { in sk_ret_cfp() argument [all …]
|
| /expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/ports/ |
| H A D | SkCFObject.h | 25 if (obj) { in SkCFSafeRetain() 26 CFRetain(obj); in SkCFSafeRetain() 28 return obj; in SkCFSafeRetain() 32 if (obj) { in SkCFSafeRelease() 33 CFRelease(obj); in SkCFSafeRelease() 61 explicit sk_cfp(T obj) { in sk_cfp() argument 62 fObject = obj; in sk_cfp() 134 T obj = fObject; in release() local 136 return obj; in release() 175 template <typename T> sk_cfp<T> sk_ret_cfp(T obj) { in sk_ret_cfp() argument [all …]
|