Searched refs:Index (Results 1 - 25 of 46) sorted by relevance

12

/frameworks/base/core/java/android/view/
H A DFrameMetrics.java190 Index.FLAGS,
191 Index.INTENDED_VSYNC,
192 Index.VSYNC,
193 Index.OLDEST_INPUT_EVENT,
194 Index.NEWEST_INPUT_EVENT,
195 Index.HANDLE_INPUT_START,
196 Index.ANIMATION_START,
197 Index.PERFORM_TRAVERSALS_START,
198 Index.DRAW_START,
199 Index
206 private @interface Index { interface in class:FrameMetrics
[all...]
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
H A DFrameTimingStats.java28 Index.FLAGS,
29 Index.INTENDED_VSYNC,
30 Index.VSYNC,
31 Index.OLDEST_INPUT_EVENT,
32 Index.NEWEST_INPUT_EVENT,
33 Index.HANDLE_INPUT_START,
34 Index.ANIMATION_START,
35 Index.PERFORM_TRAVERSALS_START,
36 Index.DRAW_START,
37 Index
43 public @interface Index { interface in class:FrameTimingStats
[all...]
/frameworks/support/room/common/src/main/java/androidx/room/
H A DIndex.java25 * see: <a href="https://sqlite.org/lang_createindex.html">SQLite Index Documentation</a>
45 public @interface Index { interface
47 * List of column names in the Index.
53 * @return The list of column names in the Index.
H A DEntity.java68 * @see Index
85 Index[] indices() default {};
88 * If set to {@code true}, any Index defined in parent classes of this class will be carried
95 * multiple tables. See {@link Index} for the details of the default name.
/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
H A DWorkName.java22 import android.arch.persistence.room.Index;
40 indices = {@Index(value = {"work_spec_id"})})
H A DWorkTag.java22 import android.arch.persistence.room.Index;
40 indices = {@Index(value = {"work_spec_id"})})
H A DDependency.java22 import android.arch.persistence.room.Index;
47 @Index(value = {"work_spec_id"}),
48 @Index(value = {"prerequisite_id"})})
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/vo/
H A DIndexTest.kt31 val index = Index("foo", false, listOf(mockField("bar"), mockField("baz")))
39 val index = Index("foo", true, listOf(mockField("bar"), mockField("baz")))
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dremote_method_type.h51 template <std::size_t Index>
52 using Method = typename std::tuple_element<Index, Methods>::type;
56 return ElementForType<MethodType, MethodTypes...>::Index;
H A Dfunction_traits.h34 template <std::size_t Index>
35 using Arg = typename std::tuple_element<Index, Args>::type;
H A Dserializable.h60 template <std::size_t Index>
61 using At = typename std::tuple_element<Index, Members>::type;
H A Dthread_local_buffer.h17 // by (T,Index) and is independent of any other slot.
18 template <typename T, std::size_t Index>
26 template <std::size_t Index>
H A Denumeration.h20 static constexpr std::size_t Index = I; member in struct:android::pdx::rpc::detail::IndexedElement
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
H A DIndexingTest.java31 import androidx.room.Index;
48 @Index({"field1", "field2"}),
49 @Index(value = {"field2", "mId"}, unique = true),
50 @Index(value = {"field2"}, unique = true, name = "customIndex"),
H A DRelationWithReservedKeywordTest.java34 import androidx.room.Index;
145 indices = @Index("category_id"))
/frameworks/support/room/runtime/src/main/java/androidx/room/util/
H A DTableInfo.java66 * Sometimes, Index information is not available (older versions). If so, we skip their
70 public final Set<Index> indices;
74 Set<Index> indices) {
86 this(name, columns, foreignKeys, Collections.<Index>emptySet());
142 Set<Index> indices = readIndices(database, tableName);
240 private static Set<Index> readIndices(SupportSQLiteDatabase database, String tableName) {
250 HashSet<Index> indices = new HashSet<>();
259 Index index = readIndex(database, name, unique);
276 private static Index readIndex(SupportSQLiteDatabase database, String name, boolean unique) {
300 return new Index(nam
538 public static class Index { class in class:TableInfo
545 public Index(String name, boolean unique, List<String> columns) { method in class:TableInfo.Index
[all...]
/frameworks/compile/slang/
H A Dslang_rs_export_func.cpp143 unsigned Index = 0; local
145 FE = ERT->fields_end(); FI != FE; FI++, Index++) {
149 llvm::Type *T2 = ParamTy->getTypeAtIndex(Index);
157 size_t T2Offset = ParamTySL->getElementOffset(Index);
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DIndex.kt25 data class Index(val name: String, val unique: Boolean, val fields: List<Field>) :
28 // should match the value in TableInfo.Index.DEFAULT_PREFIX
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_ApplyNewSettings.c379 LVM_INT32 Index=0; local
409 Index=i;
415 if(RoomSize==LVREV_GainPolyTable[Index][0])
420 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
432 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0];
433 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
439 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i];
448 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
473 Index
956 LVM_INT32 Index=0; local
[all...]
/frameworks/support/room/compiler/src/test/data/databasewriter/output/
H A DComplexDatabase.java10 import androidx.room.util.TableInfo.Index;
71 final HashSet<TableInfo.Index> _indicesUser = new HashSet<TableInfo.Index>(0);
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/migration/
H A DMigrationDb.java28 import androidx.room.Index;
44 @Entity(indices = {@Index(value = "name", unique = true)})
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/migration/
H A DMigrationDbKotlin.kt26 import androidx.room.Index
40 @Entity(indices = arrayOf(Index(value = "name", unique = true)))
/frameworks/support/room/runtime/src/androidTest/java/androidx/room/migration/
H A DTableInfoTest.java194 "CREATE INDEX " + TableInfo.Index.DEFAULT_PREFIX + "foo_composite_indexed"
206 toSet(new TableInfo.Index("index_foo_blahblah", false,
208 new TableInfo.Index("foo_unique_indexed", true,
210 new TableInfo.Index("foo_indexed", false,
/frameworks/rs/rsov/compiler/
H A DWrapper.cpp103 Instruction *Index = nullptr; local
162 Index = b.MakeIAdd(UIntTy, NumCellsFromYZ, XValue);
163 Blk->addInstruction(Index);
178 b.MakeAccessChain(PtrTy, inputBuffer, {ConstZero, Index});
208 b.MakeAccessChain(resultPtrType, OutputBuffer, {ConstZero, Index});
223 if (Index != nullptr) {
/frameworks/rs/rsov/compiler/spirit/
H A Dbuilder_test.cpp141 auto Index = b.MakeIAdd(UIntTy, OffsetY, XValue); local
142 Blk->addInstruction(Index);
145 auto Ptr = b.MakeAccessChain(VF4PtrTy, InputBuffer, {ConstZero, Index});
159 auto OutPtr = b.MakeAccessChain(VF4PtrTy, OutputBuffer, {ConstZero, Index});

Completed in 444 milliseconds

12