Home
last modified time | relevance | path

Searched defs:path (Results 1 – 3 of 3) sorted by relevance

/appsearch/appsearch/src/androidTest/java/androidx/appsearch/cts/app/
DPropertyPathCtsTest.java70 PropertyPath path = new PropertyPath("foo.bar[1]"); in testPropertyPathValid() local
86 PropertyPath path = new PropertyPath("我.每天.走路.上班[2]"); in testPropertyPathCJKTValid() local
99 PropertyPath path = new PropertyPath("foo.bar[2].bat.baz"); in testPropertyPathIterator() local
165 PropertyPath path = new PropertyPath(list); in testBuildPropertyPathFromSegmentList() local
173 PropertyPath path = new PropertyPath("foo[1].bar"); in testPropertyPathEquality() local
/appsearch/appsearch/src/main/java/androidx/appsearch/app/
DGenericDocument.java376 public @Nullable Object getProperty(@NonNull String path) { in getProperty()
427 private static @Nullable Object getRawPropertyFromRawDocument( in getRawPropertyFromRawDocument()
680 public @Nullable String getPropertyString(@NonNull String path) { in getPropertyString()
699 public long getPropertyLong(@NonNull String path) { in getPropertyLong()
718 public double getPropertyDouble(@NonNull String path) { in getPropertyDouble()
737 public boolean getPropertyBoolean(@NonNull String path) { in getPropertyBoolean()
756 public @Nullable byte[] getPropertyBytes(@NonNull String path) { in getPropertyBytes()
775 public @Nullable GenericDocument getPropertyDocument(@NonNull String path) { in getPropertyDocument()
795 public @Nullable EmbeddingVector getPropertyEmbedding(@NonNull String path) { in getPropertyEmbedding()
819 public @Nullable AppSearchBlobHandle getPropertyBlobHandle(@NonNull String path) { in getPropertyBlobHandle()
[all …]
DPropertyPath.java67 public PropertyPath(@NonNull String path) { in PropertyPath()
80 private void recursivePathScan(@UnderInitialization PropertyPath this, String path) in recursivePathScan()
137 @UnderInitialization PropertyPath this, @NonNull String path, int controlPos) { in consumePropertyWithIndex()