Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 274) sorted by relevance

1234567891011

/expo/packages/expo-modules-core/android/src/main/java/expo/modules/core/logging/
H A DOSLogHandler.kt9 category: String
11 category
15 println("[${type.type}] $category\t$message") in log()
22 Log.DEBUG -> Log.d(category, message, cause) in log()
23 Log.INFO -> Log.i(category, message, cause) in log()
24 Log.WARN -> Log.w(category, message, cause) in log()
25 Log.ERROR -> Log.e(category, message, cause) in log()
26 Log.ASSERT -> Log.e(category, message, cause) in log()
/expo/packages/expo-modules-core/ios/Swift/Logging/
H A DLogHandlers.swift9 init(category: String)
21 required init(category: String) { in log()
22 osLogger = os.Logger(subsystem: Logger.EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
34 required init(category: String) {}
47 required init(category: String) {
48 self.persistentLog = PersistentFileLog(category: category)
H A DLogger.swift5 public let log = Logger(category: Logger.EXPO_LOG_CATEGORY)
44 private let category: String variable
48 public init(category: String = "main", options: LoggerOptions = [.logToOS]) {
49 self.category = category
68 addHandler(LogHandlerType(category: category)) in addHandler<LogHandlerType: LogHandler>()
193 public func category(_ category: String) -> Logger { in category() function
194 return Logger(category: category) in category()
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift9 init(category: String)
21 required init(category: String) { in log()
22 osLogger = os.Logger(subsystem: Logger.ABI47_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
34 required init(category: String) {}
47 required init(category: String) {
48 self.persistentLog = PersistentFileLog(category: category)
H A DLogger.swift5 public let log = Logger(category: Logger.ABI47_0_0EXPO_LOG_CATEGORY)
44 private let category: String variable
48 public init(category: String = "main", options: LoggerOptions = [.logToOS]) {
49 self.category = category
68 addHandler(LogHandlerType(category: category)) in addHandler<LogHandlerType: LogHandler>()
193 public func category(_ category: String) -> Logger { in category() function
194 return Logger(category: category) in category()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/core/logging/
H A DOSLogHandler.kt9 category: String
11 category
15 println("[${type.type}] $category\t$message") in log()
22 Log.DEBUG -> Log.d(category, message, cause) in log()
23 Log.INFO -> Log.i(category, message, cause) in log()
24 Log.WARN -> Log.w(category, message, cause) in log()
25 Log.ERROR -> Log.e(category, message, cause) in log()
26 Log.ASSERT -> Log.e(category, message, cause) in log()
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift9 init(category: String)
21 required init(category: String) { in log()
22 osLogger = os.Logger(subsystem: Logger.ABI49_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
34 required init(category: String) {}
47 required init(category: String) {
48 self.persistentLog = PersistentFileLog(category: category)
H A DLogger.swift5 public let log = Logger(category: Logger.ABI49_0_0EXPO_LOG_CATEGORY)
44 private let category: String variable
48 public init(category: String = "main", options: LoggerOptions = [.logToOS]) {
49 self.category = category
68 addHandler(LogHandlerType(category: category)) in addHandler<LogHandlerType: LogHandler>()
193 public func category(_ category: String) -> Logger { in category() function
194 return Logger(category: category) in category()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/core/logging/
H A DOSLogHandler.kt9 category: String
11 category
15 println("[${type.type}] $category\t$message") in log()
22 Log.DEBUG -> Log.d(category, message, cause) in log()
23 Log.INFO -> Log.i(category, message, cause) in log()
24 Log.WARN -> Log.w(category, message, cause) in log()
25 Log.ERROR -> Log.e(category, message, cause) in log()
26 Log.ASSERT -> Log.e(category, message, cause) in log()
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/Logging/
H A DLogHandlers.swift9 init(category: String)
21 required init(category: String) { in log()
22 osLogger = os.Logger(subsystem: Logger.ABI48_0_0EXPO_MODULES_LOG_SUBSYSTEM, category: category) in log()
34 required init(category: String) {}
47 required init(category: String) {
48 self.persistentLog = PersistentFileLog(category: category)
H A DLogger.swift5 public let log = Logger(category: Logger.ABI48_0_0EXPO_LOG_CATEGORY)
44 private let category: String variable
48 public init(category: String = "main", options: LoggerOptions = [.logToOS]) {
49 self.category = category
68 addHandler(LogHandlerType(category: category)) in addHandler<LogHandlerType: LogHandler>()
193 public func category(_ category: String) -> Logger { in category() function
194 return Logger(category: category) in category()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/core/logging/
H A DOSLogHandler.kt9 category: String
11 category
15 println("[${type.type}] $category\t$message") in log()
22 Log.DEBUG -> Log.d(category, message, cause) in log()
23 Log.INFO -> Log.i(category, message, cause) in log()
24 Log.WARN -> Log.w(category, message, cause) in log()
25 Log.ERROR -> Log.e(category, message, cause) in log()
26 Log.ASSERT -> Log.e(category, message, cause) in log()
/expo/packages/expo-notifications/ios/EXNotifications/Notifications/Categories/
H A DEXNotificationCategoriesModule.m17 for (UNNotificationCategory *category in categories) {
18 [existingCategories addObject:[self serializeCategory:category]];
36 for (UNNotificationCategory *category in newCategories) {
37 if ([category.identifier isEqualToString:newCategory.identifier]) {
38 [newCategories removeObject:category];
55 for (UNNotificationCategory *category in newCategories) {
56 if ([category.identifier isEqualToString:categoryId]) {
57 [newCategories removeObject:category];
158 - (NSMutableDictionary *)serializeCategory:(UNNotificationCategory *)category
161 serializedCategory[@"identifier"] = category.identifier;
[all …]
/expo/ios/versioned/sdk47/EXNotifications/EXNotifications/Notifications/Categories/
H A DABI47_0_0EXNotificationCategoriesModule.m17 for (UNNotificationCategory *category in categories) {
18 [existingCategories addObject:[self serializeCategory:category]];
36 for (UNNotificationCategory *category in newCategories) {
37 if ([category.identifier isEqualToString:newCategory.identifier]) {
38 [newCategories removeObject:category];
55 for (UNNotificationCategory *category in newCategories) {
56 if ([category.identifier isEqualToString:categoryId]) {
57 [newCategories removeObject:category];
158 - (NSMutableDictionary *)serializeCategory:(UNNotificationCategory *)category
161 serializedCategory[@"identifier"] = category.identifier;
[all …]
/expo/ios/versioned/sdk49/EXNotifications/EXNotifications/Notifications/Categories/
H A DABI49_0_0EXNotificationCategoriesModule.m17 for (UNNotificationCategory *category in categories) {
18 [existingCategories addObject:[self serializeCategory:category]];
36 for (UNNotificationCategory *category in newCategories) {
37 if ([category.identifier isEqualToString:newCategory.identifier]) {
38 [newCategories removeObject:category];
55 for (UNNotificationCategory *category in newCategories) {
56 if ([category.identifier isEqualToString:categoryId]) {
57 [newCategories removeObject:category];
158 - (NSMutableDictionary *)serializeCategory:(UNNotificationCategory *)category
161 serializedCategory[@"identifier"] = category.identifier;
[all …]
/expo/ios/versioned/sdk48/EXNotifications/EXNotifications/Notifications/Categories/
H A DABI48_0_0EXNotificationCategoriesModule.m17 for (UNNotificationCategory *category in categories) {
18 [existingCategories addObject:[self serializeCategory:category]];
36 for (UNNotificationCategory *category in newCategories) {
37 if ([category.identifier isEqualToString:newCategory.identifier]) {
38 [newCategories removeObject:category];
55 for (UNNotificationCategory *category in newCategories) {
56 if ([category.identifier isEqualToString:categoryId]) {
57 [newCategories removeObject:category];
158 - (NSMutableDictionary *)serializeCategory:(UNNotificationCategory *)category
161 serializedCategory[@"identifier"] = category.identifier;
[all …]
/expo/packages/@expo/config-plugins/src/android/
H A DIntentFilters.ts64 category: renderIntentFilterCategory(intentFilter.category),
80 function renderIntentFilterCategory(category?: string | string[]) {
81 return (Array.isArray(category) ? category : [category]).filter(Boolean).map((cat) => ({
/expo/packages/@expo/config-plugins/build/android/
H A DIntentFilters.js66 category: renderIntentFilterCategory(intentFilter.category)
82 function renderIntentFilterCategory(category) { argument
83 return (Array.isArray(category) ? category : [category]).filter(Boolean).map(cat => ({
/expo/ios/versioned-react-native/ABI47_0_0/ReactNative/ReactCommon/react/renderer/core/
H A DABI47_0_0RawEvent.cpp17 Category category) in RawEvent() argument
21 category(category) {} in RawEvent()
/expo/ios/versioned-react-native/ABI48_0_0/ReactNative/ReactCommon/react/renderer/core/
H A DABI48_0_0RawEvent.cpp16 Category category) in RawEvent() argument
20 category(category) {} in RawEvent()
/expo/ios/versioned-react-native/ABI49_0_0/ReactNative/ReactCommon/react/renderer/core/
H A DABI49_0_0RawEvent.cpp16 Category category) in RawEvent() argument
20 category(category) {} in RawEvent()
/expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/categories/serializers/
H A DExpoNotificationsCategoriesSerializer.java25 public Bundle toBundle(@Nullable NotificationCategory category) { in toBundle() argument
26 if (category == null) { in toBundle()
30 serializedCategory.putString("identifier", getIdentifier(category)); in toBundle()
31 serializedCategory.putParcelableArrayList("actions", toBundleList(category.getActions())); in toBundle()
37 protected String getIdentifier(@NonNull NotificationCategory category) { in getIdentifier() argument
38 return category.getIdentifier(); in getIdentifier()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/categories/serializers/
H A DExpoNotificationsCategoriesSerializer.java25 public Bundle toBundle(@Nullable NotificationCategory category) { in toBundle() argument
26 if (category == null) { in toBundle()
30 serializedCategory.putString("identifier", getIdentifier(category)); in toBundle()
31 serializedCategory.putParcelableArrayList("actions", toBundleList(category.getActions())); in toBundle()
37 protected String getIdentifier(@NonNull NotificationCategory category) { in getIdentifier() argument
38 return category.getIdentifier(); in getIdentifier()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/categories/serializers/
H A DExpoNotificationsCategoriesSerializer.java25 public Bundle toBundle(@Nullable NotificationCategory category) { in toBundle() argument
26 if (category == null) { in toBundle()
30 serializedCategory.putString("identifier", getIdentifier(category)); in toBundle()
31 serializedCategory.putParcelableArrayList("actions", toBundleList(category.getActions())); in toBundle()
37 protected String getIdentifier(@NonNull NotificationCategory category) { in getIdentifier() argument
38 return category.getIdentifier(); in getIdentifier()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/categories/serializers/
H A DExpoNotificationsCategoriesSerializer.java25 public Bundle toBundle(@Nullable NotificationCategory category) { in toBundle() argument
26 if (category == null) { in toBundle()
30 serializedCategory.putString("identifier", getIdentifier(category)); in toBundle()
31 serializedCategory.putParcelableArrayList("actions", toBundleList(category.getActions())); in toBundle()
37 protected String getIdentifier(@NonNull NotificationCategory category) { in getIdentifier() argument
38 return category.getIdentifier(); in getIdentifier()

1234567891011