Searched refs:val (Results 1 - 25 of 886) sorted by relevance

1234567891011>>

/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/
H A DLibraryGroups.kt23 const val ANNOTATION = "androidx.annotation"
24 const val APPCOMPAT = "androidx.appcompat"
25 const val ASYNCLAYOUTINFLATER = "androidx.asynclayoutinflater"
26 const val BROWSER = "androidx.browser"
27 const val CAR = "androidx.car"
28 const val CARDVIEW = "androidx.cardview"
29 const val COLLECTION = "androidx.collection"
30 const val CONTENTPAGER = "androidx.contentpager"
31 const val COORDINATORLAYOUT = "androidx.coordinatorlayout"
32 const val COR
[all...]
H A DLibraryVersions.kt26 val SUPPORT_LIBRARY = Version("1.0.0-alpha1")
31 val ROOM = Version("2.0.0-alpha1")
36 val LIFECYCLES_EXT = Version("2.0.0-alpha1")
41 val LIFECYCLES_LIVEDATA = LIFECYCLES_EXT
46 val LIFECYCLES_VIEWMODEL = LIFECYCLES_EXT
51 val PAGING = Version("2.0.0-alpha1")
53 val PAGING_RX = Version("1.0.0-alpha1")
55 private val LIFECYCLES = Version("2.0.0-alpha1")
60 val LIFECYCLES_CORE = LIFECYCLES
65 val LIFECYCLES_RUNTIM
[all...]
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/
H A DLibraryGroups.kt23 const val ANNOTATION = "androidx.annotation"
24 const val APPCOMPAT = "androidx.appcompat"
25 const val ASYNCLAYOUTINFLATER = "androidx.asynclayoutinflater"
26 const val BROWSER = "androidx.browser"
27 const val CAR = "androidx.car"
28 const val CARDVIEW = "androidx.cardview"
29 const val COLLECTION = "androidx.collection"
30 const val CONTENTPAGER = "androidx.contentpager"
31 const val COORDINATORLAYOUT = "androidx.coordinatorlayout"
32 const val COR
[all...]
H A DLibraryVersions.kt26 val SUPPORT_LIBRARY = Version("1.0.0-alpha1")
31 val ROOM = Version("2.0.0-alpha1")
36 val LIFECYCLES_EXT = Version("2.0.0-alpha1")
41 val LIFECYCLES_LIVEDATA = LIFECYCLES_EXT
46 val LIFECYCLES_VIEWMODEL = LIFECYCLES_EXT
51 val PAGING = Version("2.0.0-alpha1")
53 val PAGING_RX = Version("1.0.0-alpha1")
55 private val LIFECYCLES = Version("2.0.0-alpha1")
60 val LIFECYCLES_CORE = LIFECYCLES
65 val LIFECYCLES_RUNTIM
[all...]
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/dependencies/
H A DDependencies.kt19 const val AUTO_COMMON = "com.google.auto:auto-common:0.6"
20 const val ANTLR = "org.antlr:antlr4:4.5.3"
21 const val APACHE_COMMONS_CODEC = "commons-codec:commons-codec:1.10"
22 const val CONSTRAINT_LAYOUT = "androidx.constraintlayout:constraintlayout:1.1.0@aar"
23 const val DEXMAKER_MOCKITO = "com.linkedin.dexmaker:dexmaker-mockito:2.16.1-SNAPSHOT"
24 const val ESPRESSO_CONTRIB = "com.android.support.test.espresso:espresso-contrib:3.0.1"
25 const val ESPRESSO_CORE = "com.android.support.test.espresso:espresso-core:3.0.1"
26 const val FIREBASE_JOBDISPATCHER = "com.firebase:firebase-jobdispatcher:0.8.5"
27 const val GOOGLE_COMPILE_TESTING = "com.google.testing.compile:compile-testing:0.11"
28 const val GSO
[all...]
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/dependencies/
H A DDependencies.kt19 const val AUTO_COMMON = "com.google.auto:auto-common:0.6"
20 const val ANTLR = "org.antlr:antlr4:4.5.3"
21 const val APACHE_COMMONS_CODEC = "commons-codec:commons-codec:1.10"
22 const val CONSTRAINT_LAYOUT = "androidx.constraintlayout:constraintlayout:1.1.0@aar"
23 const val DEXMAKER_MOCKITO = "com.linkedin.dexmaker:dexmaker-mockito:2.16.1-SNAPSHOT"
24 const val ESPRESSO_CONTRIB = "com.android.support.test.espresso:espresso-contrib:3.0.1"
25 const val ESPRESSO_CORE = "com.android.support.test.espresso:espresso-core:3.0.1"
26 const val FIREBASE_JOBDISPATCHER = "com.firebase:firebase-jobdispatcher:0.8.5"
27 const val GOOGLE_COMPILE_TESTING = "com.google.testing.compile:compile-testing:0.11"
28 const val GSO
[all...]
/frameworks/support/lifecycle/compiler/src/main/kotlin/androidx/lifecycle/
H A DErrorMessages.kt23 const val TOO_MANY_ARGS = "callback method cannot have more than 2 parameters"
24 const val TOO_MANY_ARGS_NOT_ON_ANY = "only callback annotated with ON_ANY " +
26 const val INVALID_SECOND_ARGUMENT = "2nd argument of a callback method" +
28 const val INVALID_FIRST_ARGUMENT = "1st argument of a callback method must be " +
30 const val INVALID_METHOD_MODIFIER = "method marked with OnLifecycleEvent annotation can " +
32 const val INVALID_CLASS_MODIFIER = "class containing OnLifecycleEvent methods can not be " +
34 const val INVALID_STATE_OVERRIDE_METHOD = "overridden method must handle the same " +
36 const val INVALID_ENCLOSING_ELEMENT =
38 const val INVALID_ANNOTATED_ELEMENT = "OnLifecycleEvent can only be added to methods"
/frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/
H A DXmlPosition.kt19 data class XmlPosition(val name: String, val line: Int, val column: Int
H A DGeneratorOutput.kt19 data class GeneratorOutput(val files: List<String>, val errors: List<ErrorMessage>)
21 data class ErrorMessage(val path: String, val line: Int, val column: Int, val message: String) {
/frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/ext/
H A DNavJavaPoet_ext.kt19 const val N = "\$N"
20 const val T = "\$T"
21 const val S = "\$S"
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DShortcutMethod.kt24 abstract class ShortcutMethod(val element: ExecutableElement, val name: String,
25 val entities: Map<String, Entity>, val returnCount: Boolean,
26 val parameters: List<ShortcutQueryParameter>)
H A DDaoMethod.kt24 data class DaoMethod(val element: Element, val name: String, val dao: Dao)
H A DQueryParameter.kt27 val name: String,
29 val sqlName: String,
30 val type: TypeMirror,
31 val queryParamAdapter: QueryParameterAdapter?)
H A DShortcutQueryParameter.kt24 data class ShortcutQueryParameter(val name: String, val type: TypeMirror,
25 val entityType: TypeMirror?, val isMultiple: Boolean) {
/frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/models/
H A DAction.kt19 data class Action(val id: ResReference,
20 val destination: ResReference?,
21 val args: List<Argument> = emptyList())
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/ext/
H A Djavapoet_ext.kt25 val L = "\$L"
26 val T = "\$T"
27 val N = "\$N"
28 val S = "\$S"
35 val DB: ClassName = ClassName.get("androidx.sqlite.db", "SupportSQLiteDatabase")
36 val SQLITE_STMT: ClassName =
38 val SQLITE_OPEN_HELPER: ClassName =
40 val SQLITE_OPEN_HELPER_CALLBACK: ClassName =
42 val SQLITE_OPEN_HELPER_CONFIG: ClassName =
44 val QUER
[all...]
/frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/vo/
H A DBookWithPublisher.kt21 data class BookWithPublisher(val bookId: String, val title: String,
22 @Embedded val publisher: Publisher)
/frameworks/base/services/usage/java/com/android/server/usage/
H A DUnixCalendar.java34 public void addDays(int val) { argument
35 mTime += val * DAY_IN_MILLIS;
38 public void addWeeks(int val) { argument
39 mTime += val * WEEK_IN_MILLIS;
42 public void addMonths(int val) { argument
43 mTime += val * MONTH_IN_MILLIS;
46 public void addYears(int val) { argument
47 mTime += val * YEAR_IN_MILLIS;
/frameworks/support/core/ktx/src/androidTest/java/androidx/core/database/
H A DCursorTest.kt28 val cursor = scalarCursor(byteArrayOf(0x01))
29 val blob = cursor.getBlob("data")
34 val cursor = scalarCursor(1.5)
35 val double = cursor.getDouble("data")
40 val cursor = scalarCursor(1.5f)
41 val float = cursor.getFloat("data")
46 val cursor = scalarCursor(1)
47 val int = cursor.getInt("data")
52 val cursor = scalarCursor(1L)
53 val lon
[all...]
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/
H A DProcessorErrors.kt35 val MISSING_QUERY_ANNOTATION = "Query methods must be annotated with ${Query::class.java}"
36 val MISSING_INSERT_ANNOTATION = "Insertion methods must be annotated with ${Insert::class.java}"
37 val MISSING_DELETE_ANNOTATION = "Deletion methods must be annotated with ${Delete::class.java}"
38 val MISSING_UPDATE_ANNOTATION = "Update methods must be annotated with ${Update::class.java}"
39 val MISSING_RAWQUERY_ANNOTATION = "RawQuery methods must be annotated with" +
41 val INVALID_ON_CONFLICT_VALUE = "On conflict value must be one of @OnConflictStrategy values."
42 val INVALID_INSERTION_METHOD_RETURN_TYPE = "Methods annotated with @Insert can return either" +
44 val TRANSACTION_REFERENCE_DOCS = "https://developer.android.com/reference/android/arch/" +
54 val ABSTRACT_METHOD_IN_DAO_MISSING_ANY_ANNOTATION = "Abstract method in DAO must be annotated" +
56 val INVALID_ANNOTATION_COUNT_IN_DAO_METHO
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dimgprocutil.h27 inline int clamp(int min, int val, int max) { argument
28 return val < min ? min : (val > max ? max : val);
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/doclava/
H A DChecksConfig.kt27 val errors: List<Int>,
33 val warnings: List<Int>,
39 val hidden: List<Int>,
41 val onFailMessage: String? = null
44 private const val MSG_HIDE_API =
50 val CHECK_API_CONFIG_RELEASE = ChecksConfig(
66 val CHECK_API_CONFIG_DEVELOP = ChecksConfig(
78 val CHECK_API_CONFIG_PATCH = CHECK_API_CONFIG_DEVELOP.copy(
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/doclava/
H A DChecksConfig.kt27 val errors: List<Int>,
33 val warnings: List<Int>,
39 val hidden: List<Int>,
41 val onFailMessage: String? = null
44 private const val MSG_HIDE_API =
50 val CHECK_API_CONFIG_RELEASE = ChecksConfig(
66 val CHECK_API_CONFIG_DEVELOP = ChecksConfig(
78 val CHECK_API_CONFIG_PATCH = CHECK_API_CONFIG_DEVELOP.copy(
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/verifier/
H A DColumnInfo.kt24 data class ColumnInfo(val name: String, val type: SQLTypeAffinity)
H A DQueryResultInfo.kt27 data class QueryResultInfo(val columns: List<ColumnInfo>, val error: SQLException? = null)

Completed in 333 milliseconds

1234567891011>>