Home
last modified time | relevance | path

Searched refs:Index (Results 1 – 25 of 63) sorted by relevance

123

/frameworks/base/core/java/android/view/
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.SYNC_QUEUED,
[all …]
/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/
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.SYNC_QUEUED,
[all …]
/frameworks/support/room/runtime/src/main/java/androidx/room/util/
DTableInfo.java70 public final Set<Index> indices;
74 Set<Index> indices) { in TableInfo()
86 this(name, columns, foreignKeys, Collections.<Index>emptySet()); in TableInfo()
142 Set<Index> indices = readIndices(database, tableName); in read()
240 private static Set<Index> readIndices(SupportSQLiteDatabase database, String tableName) { in readIndices()
250 HashSet<Index> indices = new HashSet<>(); in readIndices()
259 Index index = readIndex(database, name, unique); in readIndices()
276 private static Index readIndex(SupportSQLiteDatabase database, String name, boolean unique) { in readIndex()
300 return new Index(name, unique, columns); in readIndex()
538 public static class Index { class in TableInfo
[all …]
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
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"),
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
DLVREV_ApplyNewSettings.c379 LVM_INT32 Index=0; in LVREV_ApplyNewSettings() local
409 Index=i; in LVREV_ApplyNewSettings()
415 if(RoomSize==LVREV_GainPolyTable[Index][0]) in LVREV_ApplyNewSettings()
420 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; in LVREV_ApplyNewSettings()
432 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0]; in LVREV_ApplyNewSettings()
433 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0]; in LVREV_ApplyNewSettings()
439 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i]; in LVREV_ApplyNewSettings()
448 Coefs[i-1]=LVREV_GainPolyTable[Index][i]; in LVREV_ApplyNewSettings()
473 Index=((32767*100)/(100+pPrivate->NewParams.Level)); in LVREV_ApplyNewSettings()
474 pPrivate->Gain=(LVM_INT16)((pPrivate->Gain*Index)>>15); in LVREV_ApplyNewSettings()
[all …]
/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
DDependency.java22 import android.arch.persistence.room.Index;
47 @Index(value = {"work_spec_id"}),
48 @Index(value = {"prerequisite_id"})})
DWorkTag.java22 import android.arch.persistence.room.Index;
40 indices = {@Index(value = {"work_spec_id"})})
DWorkName.java22 import android.arch.persistence.room.Index;
40 indices = {@Index(value = {"work_spec_id"})})
/frameworks/compile/slang/
Dslang_rs_export_func.cpp143 unsigned Index = 0; in checkParameterPacketType() local
145 FE = ERT->fields_end(); FI != FE; FI++, Index++) { in checkParameterPacketType()
149 llvm::Type *T2 = ParamTy->getTypeAtIndex(Index); in checkParameterPacketType()
157 size_t T2Offset = ParamTySL->getElementOffset(Index); in checkParameterPacketType()
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
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; in MethodIndex()
Dfunction_traits.h34 template <std::size_t Index>
35 using Arg = typename std::tuple_element<Index, Args>::type;
Dserialization.h68 struct Index {}; struct
405 inline std::size_t GetTupleSize(const std::tuple<T...>&, Index<0>) {
411 inline std::size_t GetTupleSize(const std::tuple<T...>& tuple, Index<index>) {
412 return GetTupleSize(tuple, Index<index - 1>()) +
421 GetTupleSize(tuple, Index<sizeof...(T)>());
427 inline std::size_t GetMemberSize(const T&, Index<0>) {
433 inline std::size_t GetMemberSize(const T& object, Index<index>) {
434 return GetMemberSize<Members>(object, Index<index - 1>()) +
442 return GetMemberSize<Members>(object, Index<Members::MemberCount>());
1032 Index<0>) {}
[all …]
Dthread_local_buffer.h18 template <typename T, std::size_t Index>
26 template <std::size_t Index>
Dserializable.h60 template <std::size_t Index>
61 using At = typename std::tuple_element<Index, Members>::type;
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/vo/
DIndexTest.kt31 val index = Index("foo", false, listOf(mockField("bar"), mockField("baz"))) in createSimpleSQL()
39 val index = Index("foo", true, listOf(mockField("bar"), mockField("baz"))) in createUnique()
/frameworks/support/room/compiler/src/test/kotlin/androidx/room/processor/
DEntityProcessorTest.kt26 import androidx.room.vo.Index in <lambda>()
357 listOf(Index(name = "index_MyEntity_foo", in <lambda>()
373 listOf(Index(name = "index_MyEntity_foo", in <lambda>()
393 listOf(Index(name = "index_MyEntity_foo_id", in <lambda>()
415 listOf(Index(name = "index_MyEntity_foo_id", in <lambda>()
418 Index(name = "index_MyEntity_bar_column_foo", in <lambda>()
438 listOf(Index( in <lambda>()
459 listOf(Index(name = "myName", in <lambda>()
480 listOf(Index(name = "index_MyTable_foo", in <lambda>()
601 `is`(Index(name = "index_MyEntity_name_lastName", in <lambda>()
[all …]
/frameworks/support/room/compiler/src/test/data/databasewriter/output/
DComplexDatabase.java10 import androidx.room.util.TableInfo.Index;
71 final HashSet<TableInfo.Index> _indicesUser = new HashSet<TableInfo.Index>(0); in createOpenHelper()
/frameworks/rs/rsov/compiler/
DWrapper.cpp103 Instruction *Index = nullptr; in AddWrapper() local
162 Index = b.MakeIAdd(UIntTy, NumCellsFromYZ, XValue); in AddWrapper()
163 Blk->addInstruction(Index); in AddWrapper()
178 b.MakeAccessChain(PtrTy, inputBuffer, {ConstZero, Index}); in AddWrapper()
208 b.MakeAccessChain(resultPtrType, OutputBuffer, {ConstZero, Index}); in AddWrapper()
223 if (Index != nullptr) { in AddWrapper()
/frameworks/rs/rsov/compiler/spirit/
Dbuilder_test.cpp141 auto Index = b.MakeIAdd(UIntTy, OffsetY, XValue); in TEST() local
142 Blk->addInstruction(Index); in TEST()
145 auto Ptr = b.MakeAccessChain(VF4PtrTy, InputBuffer, {ConstZero, Index}); in TEST()
159 auto OutPtr = b.MakeAccessChain(VF4PtrTy, OutputBuffer, {ConstZero, Index}); in TEST()
/frameworks/support/room/runtime/src/androidTest/java/androidx/room/migration/
DTableInfoTest.java194 "CREATE INDEX " + TableInfo.Index.DEFAULT_PREFIX + "foo_composite_indexed" in readIndices()
206 toSet(new TableInfo.Index("index_foo_blahblah", false, in readIndices()
208 new TableInfo.Index("foo_unique_indexed", true, in readIndices()
210 new TableInfo.Index("foo_indexed", false, in readIndices()
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/migration/
DMigrationDbKotlin.kt26 import androidx.room.Index
40 @Entity(indices = arrayOf(Index(value = "name", unique = true))) in dao()
/frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/migration/
DMigrationDb.java28 import androidx.room.Index;
44 @Entity(indices = {@Index(value = "name", unique = true)})
/frameworks/native/libs/binder/include/binder/
DSafeInterface.h335 template <size_t Index, typename T, typename U>
338 using FirstT = typename std::tuple_element<Index, T>::type;
340 using FirstU = typename std::tuple_element<Index, U>::type;
358 template <size_t Index>
359 static constexpr typename std::enable_if<(Index < sizeof...(Args)), bool>::type
361 if (!DecayedElementsMatch<Index, std::tuple<Args...>, std::tuple<Params...>>::value) {
364 return elementsMatch<Index + 1>();
366 template <size_t Index>
367 static constexpr typename std::enable_if<(Index >= sizeof...(Args)), bool>::type
/frameworks/support/room/common/src/main/java/androidx/room/
DIndex.java45 public @interface Index { annotation
DEntity.java85 Index[] indices() default {}; in indices()

123