Home
last modified time | relevance | path

Searched refs:items (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/components/image/
H A DABI48_0_0conversions.h39 if (items.find("__packager_asset") != items.end()) { in fromRawValue()
43 if (items.find("width") != items.end() && in fromRawValue()
44 items.find("height") != items.end() && in fromRawValue()
47 items.at("width").hasType<Float>() && in fromRawValue()
49 result.size = {(Float)items.at("width"), (Float)items.at("height")}; in fromRawValue()
52 if (items.find("scale") != items.end() && in fromRawValue()
55 items.at("scale").hasType<Float>()) { in fromRawValue()
58 result.scale = items.find("deprecated") != items.end() ? 0.0f : 1.0f; in fromRawValue()
61 if (items.find("url") != items.end() && in fromRawValue()
68 if (items.find("uri") != items.end() && in fromRawValue()
[all …]
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/components/image/
H A DABI49_0_0conversions.h39 if (items.find("__packager_asset") != items.end()) { in fromRawValue()
43 if (items.find("width") != items.end() && in fromRawValue()
44 items.find("height") != items.end() && in fromRawValue()
47 items.at("width").hasType<Float>() && in fromRawValue()
49 result.size = {(Float)items.at("width"), (Float)items.at("height")}; in fromRawValue()
52 if (items.find("scale") != items.end() && in fromRawValue()
55 items.at("scale").hasType<Float>()) { in fromRawValue()
58 result.scale = items.find("deprecated") != items.end() ? 0.0f : 1.0f; in fromRawValue()
61 if (items.find("url") != items.end() && in fromRawValue()
68 if (items.find("uri") != items.end() && in fromRawValue()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/components/image/
H A DABI47_0_0conversions.h39 if (items.find("__packager_asset") != items.end()) { in fromRawValue()
43 if (items.find("width") != items.end() && in fromRawValue()
44 items.find("height") != items.end() && in fromRawValue()
47 items.at("width").hasType<Float>() && in fromRawValue()
49 result.size = {(Float)items.at("width"), (Float)items.at("height")}; in fromRawValue()
52 if (items.find("scale") != items.end() && in fromRawValue()
55 items.at("scale").hasType<Float>()) { in fromRawValue()
58 result.scale = items.find("deprecated") != items.end() ? 0.0f : 1.0f; in fromRawValue()
61 if (items.find("url") != items.end() && in fromRawValue()
68 if (items.find("uri") != items.end() && in fromRawValue()
[all …]
/expo/packages/expo-dev-menu-interface/ios/Tests/
H A DDevMenuItemsContainerTest.swift20 let items = container.getRootItems() in spec() variable
22 expect(items.count).to(equal(3)) in spec()
35 let items = container.getAllItems() in spec() variable
37 expect(items.count).to(equal(3)) in spec()
38 expect(items[0] as? DevMenuAction).toNot(beNil()) in spec()
39 expect(items[1] as? DevMenuGroup).toNot(beNil()) in spec()
40 expect(items[2] as? DevMenuAction).toNot(beNil()) in spec()
50 let items = container.serializeItems() in spec() variable
52 expect(items.count).to(equal(2)) in spec()
54 expect(items[0]["actionId"] as? String).to(equal("action-1")) in spec()
[all …]
/expo/packages/expo-modules-core/ios/Swift/Logging/
H A DLogger.swift79 log(type: .trace, items) in trace()
87 log(type: .debug, items) in debug()
94 public func info(_ items: Any...) { in info()
95 log(type: .info, items) in info()
101 public func warn(_ items: Any...) { in warn()
102 log(type: .warn, items) in warn()
109 log(type: .error, items) in error()
116 log(type: .fatal, items) in fatal()
143 log(type: .debug, items) in callAsFunction()
203 let messages = items in log()
[all …]
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/Logging/
H A DLogger.swift79 log(type: .trace, items) in trace()
87 log(type: .debug, items) in debug()
94 public func info(_ items: Any...) { in info()
95 log(type: .info, items) in info()
101 public func warn(_ items: Any...) { in warn()
102 log(type: .warn, items) in warn()
109 log(type: .error, items) in error()
116 log(type: .fatal, items) in fatal()
143 log(type: .debug, items) in callAsFunction()
203 let messages = items in log()
[all …]
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/Logging/
H A DLogger.swift79 log(type: .trace, items) in trace()
87 log(type: .debug, items) in debug()
94 public func info(_ items: Any...) { in info()
95 log(type: .info, items) in info()
101 public func warn(_ items: Any...) { in warn()
102 log(type: .warn, items) in warn()
109 log(type: .error, items) in error()
116 log(type: .fatal, items) in fatal()
143 log(type: .debug, items) in callAsFunction()
203 let messages = items in log()
[all …]
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/Logging/
H A DLogger.swift79 log(type: .trace, items) in trace()
87 log(type: .debug, items) in debug()
94 public func info(_ items: Any...) { in info()
95 log(type: .info, items) in info()
101 public func warn(_ items: Any...) { in warn()
102 log(type: .warn, items) in warn()
109 log(type: .error, items) in error()
116 log(type: .fatal, items) in fatal()
143 log(type: .debug, items) in callAsFunction()
203 let messages = items in log()
[all …]
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/graphics/platform/ios/
H A DABI47_0_0PlatformColorParser.h22 auto items = (butter::map<std::string, RawValue>)value; in parsePlatformColor() local
23 if (items.find("semantic") != items.end() && in parsePlatformColor()
24 items.at("semantic").hasType<std::vector<std::string>>()) { in parsePlatformColor()
25 auto semanticItems = (std::vector<std::string>)items.at("semantic"); in parsePlatformColor()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/graphics/platform/ios/react/renderer/graphics/
H A DABI49_0_0PlatformColorParser.h22 auto items = (butter::map<std::string, RawValue>)value; in parsePlatformColor() local
23 if (items.find("semantic") != items.end() && in parsePlatformColor()
24 items.at("semantic").hasType<std::vector<std::string>>()) { in parsePlatformColor()
25 auto semanticItems = (std::vector<std::string>)items.at("semantic"); in parsePlatformColor()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/graphics/platform/ios/
H A DABI48_0_0PlatformColorParser.h22 auto items = (butter::map<std::string, RawValue>)value; in parsePlatformColor() local
23 if (items.find("semantic") != items.end() && in parsePlatformColor()
24 items.at("semantic").hasType<std::vector<std::string>>()) { in parsePlatformColor()
25 auto semanticItems = (std::vector<std::string>)items.at("semantic"); in parsePlatformColor()
/expo/packages/expo-dev-menu-interface/android/src/main/java/expo/interfaces/devmenu/items/
H A DDevMenuItemsContainer.kt1 package expo.interfaces.devmenu.items
6 private val items = mutableListOf<DevMenuScreenItem>() constant in expo.interfaces.devmenu.items.DevMenuItemsContainer
9 items.sortedWith(compareBy { it.importance }) in getRootItems()
10 return items in getRootItems()
16 items.forEach { in getAllItems()
27 items.add(item) in addItem()
/expo/packages/expo-dev-launcher/bundle/functions/
H A DcreateAsyncStack.ts31 items: StackItem<T>[];
106 const items: StackItem[] = []; constant
126 items.push(item);
129 return items;
167 items.push(item);
171 return items;
212 const items = keys.map((key) => lookup[key]); constant
215 items,
230 const [items, setItems] = React.useState<StackItem<T>[]>(stack.getState().items); constant
234 setItems(state.items);
[all …]
/expo/packages/expo-dev-menu-interface/ios/MenuItems/
H A DDevMenuItemsContainer.swift7 private var items: [DevMenuScreenItem] = [] variable
10 return items.sorted { $0.importance > $1.importance } in getRootItems()
15 for item in items { in getAllItems()
26 items.append(item) in addItem()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI48_0_0conversions.h75 if (typeIt == config.items().end()) { in parseAnimationConfig()
95 if (propertyIt == config.items().end()) { in parseAnimationConfig()
122 if (durationIt != config.items().end()) { in parseAnimationConfig()
133 if (delayIt != config.items().end()) { in parseAnimationConfig()
144 if (springDampingIt != config.items().end() && in parseAnimationConfig()
156 if (initialVelocityIt != config.items().end()) { in parseAnimationConfig()
183 if (durationIt == config.items().end() || !durationIt->second.isDouble()) { in parseLayoutAnimationConfig()
189 const auto createConfig = createConfigIt == config.items().end() in parseLayoutAnimationConfig()
194 const auto updateConfig = updateConfigIt == config.items().end() in parseLayoutAnimationConfig()
199 const auto deleteConfig = deleteConfigIt == config.items().end() in parseLayoutAnimationConfig()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI49_0_0conversions.h75 if (typeIt == config.items().end()) { in parseAnimationConfig()
95 if (propertyIt == config.items().end()) { in parseAnimationConfig()
122 if (durationIt != config.items().end()) { in parseAnimationConfig()
133 if (delayIt != config.items().end()) { in parseAnimationConfig()
144 if (springDampingIt != config.items().end() && in parseAnimationConfig()
156 if (initialVelocityIt != config.items().end()) { in parseAnimationConfig()
183 if (durationIt == config.items().end() || !durationIt->second.isDouble()) { in parseLayoutAnimationConfig()
189 const auto createConfig = createConfigIt == config.items().end() in parseLayoutAnimationConfig()
194 const auto updateConfig = updateConfigIt == config.items().end() in parseLayoutAnimationConfig()
199 const auto deleteConfig = deleteConfigIt == config.items().end() in parseLayoutAnimationConfig()
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/animations/
H A DABI47_0_0conversions.h75 if (typeIt == config.items().end()) { in parseAnimationConfig()
95 if (propertyIt == config.items().end()) { in parseAnimationConfig()
122 if (durationIt != config.items().end()) { in parseAnimationConfig()
133 if (delayIt != config.items().end()) { in parseAnimationConfig()
144 if (springDampingIt != config.items().end() && in parseAnimationConfig()
156 if (initialVelocityIt != config.items().end()) { in parseAnimationConfig()
183 if (durationIt == config.items().end() || !durationIt->second.isDouble()) { in parseLayoutAnimationConfig()
189 const auto createConfig = createConfigIt == config.items().end() in parseLayoutAnimationConfig()
194 const auto updateConfig = updateConfigIt == config.items().end() in parseLayoutAnimationConfig()
199 const auto deleteConfig = deleteConfigIt == config.items().end() in parseLayoutAnimationConfig()
/expo/packages/expo-build-properties/src/
H A DpluginConfig.ts307 pickFirst: { type: 'array', items: { type: 'string' }, nullable: true },
308 exclude: { type: 'array', items: { type: 'string' }, nullable: true },
309 merge: { type: 'array', items: { type: 'string' }, nullable: true },
310 doNotStrip: { type: 'array', items: { type: 'string' }, nullable: true },
317 extraMavenRepos: { type: 'array', items: { type: 'string' }, nullable: true },
339 items: {
345 configurations: { type: 'array', items: { type: 'string' }, nullable: true },
350 testspecs: { type: 'array', items: { type: 'string' }, nullable: true },
/expo/packages/expo-dev-menu-interface/android/src/main/java/expo/interfaces/devmenu/
H A DDevMenuExtensionInterface.kt3 import expo.interfaces.devmenu.items.DevMenuDataSourceInterface
4 import expo.interfaces.devmenu.items.DevMenuItemsContainerInterface
5 import expo.interfaces.devmenu.items.DevMenuScreen
/expo/packages/@expo/cli/src/utils/
H A Dstrings.ts7 export function joinWithCommasAnd(items: string[], limit: number | undefined = 10): string {
8 if (!items.length) {
12 const uniqueItems = items.filter((value, index, array) => array.indexOf(value) === index);
/expo/packages/expo-build-properties/build/
H A DpluginConfig.js46 pickFirst: { type: 'array', items: { type: 'string' }, nullable: true }, property
47 exclude: { type: 'array', items: { type: 'string' }, nullable: true }, property
48 merge: { type: 'array', items: { type: 'string' }, nullable: true }, property
49 doNotStrip: { type: 'array', items: { type: 'string' }, nullable: true }, property
54 extraMavenRepos: { type: 'array', items: { type: 'string' }, nullable: true }, property
72 items: { property
78 … configurations: { type: 'array', items: { type: 'string' }, nullable: true }, property
83 testspecs: { type: 'array', items: { type: 'string' }, nullable: true }, property
/expo/packages/expo-clipboard/ios/Tests/
H A DMockUIPasteboard.swift6 override var items: [[String: Any]] { variable
62 override func setItems(_ items: [[String: Any]], options: [UIPasteboard.OptionsKey: Any] = [:]) { in setItems()
63 self.items = items in setItems()
/expo/ios/versioned/sdk48/ExpoClipboard/Tests/
H A DMockUIPasteboard.swift6 override var items: [[String: Any]] { variable
62 override func setItems(_ items: [[String: Any]], options: [UIPasteboard.OptionsKey: Any] = [:]) { in setItems()
63 self.items = items in setItems()
/expo/ios/versioned/sdk47/ExpoClipboard/Tests/
H A DMockUIPasteboard.swift6 override var items: [[String: Any]] { variable
62 override func setItems(_ items: [[String: Any]], options: [UIPasteboard.OptionsKey: Any] = [:]) { in setItems()
63 self.items = items in setItems()
/expo/ios/versioned/sdk49/ExpoClipboard/Tests/
H A DMockUIPasteboard.swift6 override var items: [[String: Any]] { variable
62 override func setItems(_ items: [[String: Any]], options: [UIPasteboard.OptionsKey: Any] = [:]) { in setItems()
63 self.items = items in setItems()

12345678910>>...13