Searched refs:topicIds (Results 1 – 10 of 10) sorted by relevance
100 List<Integer> topicIds = mAppTopics.getOrDefault(app, ImmutableList.of()); in classify() local104 for (int topicId : topicIds) { in classify()123 topicIds.isEmpty() in classify()
140 ImmutableList.Builder<Integer> topicIds = ImmutableList.builder(); in logEpochComputationClassifierStats() local142 topicIds.add(topic.getTopic()); in logEpochComputationClassifierStats()146 .setTopicIds(topicIds.build()) in logEpochComputationClassifierStats()
291 private static List<Topic> createDummyTopics(List<Integer> topicIds) { in createDummyTopics() argument292 return topicIds.stream() in createDummyTopics()304 private List<Topic> createRealTopics(List<Integer> topicIds) { in createRealTopics() argument305 return topicIds.stream().map(this::createRealTopic).collect(Collectors.toList()); in createRealTopics()
592 private List<Topic> getTestTopics(List<Integer> topicIds) { in getTestTopics() argument593 return topicIds.stream().map(this::getTestTopic).collect(Collectors.toList()); in getTestTopics()600 private List<Topic> getProductionTopics(List<Integer> topicIds) { in getProductionTopics() argument601 return topicIds.stream().map(this::getProductionTopic).collect(Collectors.toList()); in getProductionTopics()
592 private static List<Topic> createDummyTopics(List<Integer> topicIds) { in createDummyTopics() argument593 return topicIds.stream() in createDummyTopics()605 private List<Topic> createRealTopics(List<Integer> topicIds) { in createRealTopics() argument606 return topicIds.stream().map(this::createRealTopic).collect(Collectors.toList()); in createRealTopics()
465 private List<Topic> createTopics(/* TopicIds */ Integer... topicIds) { in createTopics() argument466 return Arrays.stream(topicIds) in createTopics()
85 int[] topicIds = topics.stream().mapToInt(Topic::getTopicId).toArray(); in sendGetTopicsResponseBroadcast() local86 sendGetTopicsResponseBroadcast.putExtra(TOPIC_RESPONSE_BROADCAST_KEY, topicIds); in sendGetTopicsResponseBroadcast()
213 List<Integer> topicIds = new ArrayList<>(combinedTopics.size()); in getTopics() local223 topicIds.add(combinedTopic.getTopic().getTopic()); in getTopics()240 .setTopics(topicIds) in getTopics()
325 int[] topicIds = new int[] {}; in logGetTopicsReportedStats() local327 topicIds = stats.getTopicIds().stream().mapToInt(Integer::intValue).toArray(); in logGetTopicsReportedStats()345 toBytes(modeBytesFieldId, topicIds)); in logGetTopicsReportedStats()353 topicIds, in logGetTopicsReportedStats()372 int[] topicIds = stats.getTopicIds().stream().mapToInt(Integer::intValue).toArray(); in logEpochComputationClassifierStats() local385 toBytes(modeBytesFieldId, topicIds), in logEpochComputationClassifierStats()398 topicIds, in logEpochComputationClassifierStats()
1450 private List<Topic> createTopics(List<Integer> topicIds) { in createTopics() argument1451 return topicIds.stream().map(this::createTopic).collect(Collectors.toList()); in createTopics()