/external/libtextclassifier/java/com/google/android/textclassifier/ |
D | ActionsSuggestionsModel.java | 68 Conversation conversation, ActionSuggestionOptions options, AnnotatorModel annotator) { in suggestActions() argument 73 (annotator != null ? annotator.getNativeAnnotator() : 0), in suggestActions() 84 AnnotatorModel annotator) { in suggestActionsWithIntents() argument 89 (annotator != null ? annotator.getNativeAnnotator() : 0), in suggestActionsWithIntents()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | SectionAnnotator.java | 44 @Nonnull public final DexAnnotator annotator; field in SectionAnnotator 52 public SectionAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem mapItem) { in SectionAnnotator() argument 53 this.annotator = annotator; in SectionAnnotator() 54 this.dexFile = annotator.dexFile; in SectionAnnotator()
|
D | ClassDefItem.java | 56 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 57 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 61 classDataAnnotator = annotator.getAnnotator(ItemType.CLASS_DATA_ITEM); in makeAnnotator()
|
D | EncodedArrayItem.java | 43 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 44 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | StringDataItem.java | 44 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 45 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationSetRefList.java | 46 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationSetItem.java | 46 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationItem.java | 47 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 48 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | ClassDataItem.java | 45 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator() 50 codeItemAnnotator = annotator.getAnnotator(ItemType.CODE_ITEM); in makeAnnotator()
|
D | TypeIdItem.java | 45 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | MapItem.java | 74 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 75 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | TypeListItem.java | 46 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | ProtoIdItem.java | 49 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | StringIdItem.java | 46 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 47 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | MethodIdItem.java | 49 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | FieldIdItem.java | 49 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 50 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | AnnotationDirectoryItem.java | 47 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 48 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
D | DebugInfoItem.java | 45 …public static SectionAnnotator makeAnnotator(@Nonnull DexAnnotator annotator, @Nonnull MapItem map… in makeAnnotator() argument 46 return new SectionAnnotator(annotator, mapItem) { in makeAnnotator()
|
/external/libtextclassifier/ |
D | Android.bp | 170 srcs: ["annotator/entity-data.fbs"], 171 out: ["annotator/entity-data_generated.h"], 191 srcs: ["annotator/model.fbs"], 192 out: ["annotator/model_generated.h"], 268 "annotator/test_data/**/*",
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
D | DumpCommand.java | 103 DexAnnotator annotator = new DexAnnotator(rawDexFile, consoleWidth); in dump() local 104 annotator.writeAnnotations(writer); in dump()
|
/external/libtextclassifier/actions/ |
D | actions-suggestions.cc | 1027 const Annotator* annotator, std::vector<ActionSuggestion>* actions) const { in SuggestActionsFromAnnotations() argument 1073 if (annotations.empty() && annotator != nullptr) { in SuggestActionsFromAnnotations() 1074 annotations = annotator->Annotate(message.text, in SuggestActionsFromAnnotations() 1321 const Conversation& conversation, const Annotator* annotator, in GatherActionsSuggestions() argument 1336 SuggestActionsFromAnnotations(conversation, options, annotator, in GatherActionsSuggestions() 1395 annotator != nullptr ? annotator->entity_data_schema() : nullptr, in GatherActionsSuggestions() 1416 const Conversation& conversation, const Annotator* annotator, in SuggestActions() argument 1419 if (!GatherActionsSuggestions(conversation, annotator, options, &response)) { in SuggestActions() 1423 annotator != nullptr in SuggestActions() 1424 ? annotator->entity_data_schema() in SuggestActions()
|
D | actions-suggestions.h | 105 const Conversation& conversation, const Annotator* annotator, 216 const Annotator* annotator, std::vector<ActionSuggestion>* actions) const; 239 const Annotator* annotator,
|
D | actions_jni.cc | 370 const Annotator* annotator = reinterpret_cast<Annotator*>(annotatorPtr); in TC3_JNI_METHOD() local 373 context->model()->SuggestActions(conversation, annotator, options); in TC3_JNI_METHOD() 376 annotator ? annotator->entity_data_schema() : nullptr; in TC3_JNI_METHOD()
|
/external/libchrome/base/debug/ |
D | task_annotator_unittest.cc | 40 TaskAnnotator annotator; in TEST() local 41 annotator.WillQueueTask("TaskAnnotatorTest::Queue", &pending_task); in TEST() 43 annotator.RunTask("TaskAnnotatorTest::Queue", &pending_task); in TEST()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/util/ |
D | DexAnnotator.java | 165 SectionAnnotator annotator = annotators.get(mapItem.getType()); in writeAnnotations() local 166 annotator.annotateSection(this); in writeAnnotations()
|