Home
last modified time | relevance | path

Searched full:getdocumentsentiment (Results 1 – 11 of 11) sorted by relevance

/aosp_15_r20/external/google-cloud-java/java-language/proto-google-cloud-language-v1beta2/src/main/java/com/google/cloud/language/v1beta2/
H A DAnalyzeSentimentResponse.java100 public com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnalyzeSentimentResponse
262 output.writeMessage(1, getDocumentSentiment()); in writeTo()
280 size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getDocumentSentiment()); in getSerializedSize()
306 if (!getDocumentSentiment().equals(other.getDocumentSentiment())) return false; in equals()
323 hash = (53 * hash) + getDocumentSentiment().hashCode(); in hashCode()
592 mergeDocumentSentiment(other.getDocumentSentiment()); in mergeFrom()
728 public com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnalyzeSentimentResponse.Builder
876 getDocumentSentiment(), getParentForChildren(), isClean()); in getDocumentSentimentFieldBuilder()
H A DAnnotateTextResponse.java343 public com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnnotateTextResponse
517 output.writeMessage(4, getDocumentSentiment()); in writeTo()
544 size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getDocumentSentiment()); in getSerializedSize()
573 if (!getDocumentSentiment().equals(other.getDocumentSentiment())) return false; in equals()
602 hash = (53 * hash) + getDocumentSentiment().hashCode(); in hashCode()
1000 mergeDocumentSentiment(other.getDocumentSentiment()); in mergeFrom()
2316 public com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnnotateTextResponse.Builder
2471 getDocumentSentiment(), getParentForChildren(), isClean()); in getDocumentSentimentFieldBuilder()
H A DAnalyzeSentimentResponseOrBuilder.java49 com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment(); in getDocumentSentiment() method
H A DAnnotateTextResponseOrBuilder.java232 com.google.cloud.language.v1beta2.Sentiment getDocumentSentiment(); in getDocumentSentiment() method
/aosp_15_r20/external/google-cloud-java/java-language/proto-google-cloud-language-v1/src/main/java/com/google/cloud/language/v1/
H A DAnalyzeSentimentResponse.java100 public com.google.cloud.language.v1.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnalyzeSentimentResponse
264 output.writeMessage(1, getDocumentSentiment()); in writeTo()
282 size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getDocumentSentiment()); in getSerializedSize()
308 if (!getDocumentSentiment().equals(other.getDocumentSentiment())) return false; in equals()
325 hash = (53 * hash) + getDocumentSentiment().hashCode(); in hashCode()
594 mergeDocumentSentiment(other.getDocumentSentiment()); in mergeFrom()
730 public com.google.cloud.language.v1.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnalyzeSentimentResponse.Builder
877 getDocumentSentiment(), getParentForChildren(), isClean()); in getDocumentSentimentFieldBuilder()
H A DAnnotateTextResponse.java343 public com.google.cloud.language.v1.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnnotateTextResponse
518 output.writeMessage(4, getDocumentSentiment()); in writeTo()
545 size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getDocumentSentiment()); in getSerializedSize()
574 if (!getDocumentSentiment().equals(other.getDocumentSentiment())) return false; in equals()
603 hash = (53 * hash) + getDocumentSentiment().hashCode(); in hashCode()
1000 mergeDocumentSentiment(other.getDocumentSentiment()); in mergeFrom()
2312 public com.google.cloud.language.v1.Sentiment getDocumentSentiment() { in getDocumentSentiment() method in AnnotateTextResponse.Builder
2466 getDocumentSentiment(), getParentForChildren(), isClean()); in getDocumentSentimentFieldBuilder()
H A DAnalyzeSentimentResponseOrBuilder.java49 com.google.cloud.language.v1.Sentiment getDocumentSentiment(); in getDocumentSentiment() method
H A DAnnotateTextResponseOrBuilder.java230 com.google.cloud.language.v1.Sentiment getDocumentSentiment(); in getDocumentSentiment() method
/aosp_15_r20/external/google-cloud-java/java-language/
H A D.readme-partials.yaml22 Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment();
H A DREADME.md114 Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment();
/aosp_15_r20/external/google-cloud-java/google-cloud-examples/src/main/java/com/google/cloud/examples/language/snippets/
H A DAnalyzeSentiment.java42 Sentiment sentiment = language.analyzeSentiment(doc).getDocumentSentiment(); in main()