HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 101 - 125 of 10622) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/processor/
ProcessorErrors.kt 35 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_METHOD = "An abstract DAO method must be"
    [all...]
  /developers/build/prebuilts/gradle/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
Constants.kt 21 @JvmField val REQUEST_CAMERA_PERMISSION = 1
22 @JvmField val PIC_FILE_NAME = "pic.jpg"
  /developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
Constants.kt 21 @JvmField val REQUEST_CAMERA_PERMISSION = 1
22 @JvmField val PIC_FILE_NAME = "pic.jpg"
  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.c 5 void use(int *ptr, int val) {
6 *ptr = val; // expected-warning {{Dereference of null pointer (loaded from variable 'ptr')}}
27 void use2(int *ptr, int val) {
28 *ptr = val; // expected-warning {{Dereference of null pointer (loaded from variable 'ptr')}}
    [all...]
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-dtor-order.cc 7 explicit IntHolder(int *val = 0) : val_(val) { }
13 void set(int *val) { val_ = val; }
  /external/fio/lib/
ieee754.h 9 #define fio_double_to_uint64(val) pack754((val), 64, 11)
10 #define fio_uint64_to_double(val) unpack754((val), 64, 11)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Assert.java 23 public static void assrt(boolean val) {
24 if (!val) throw new IllegalStateException("assert failed");
26 public static void assrt(String msg, boolean val) {
27 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Assert.java 19 public static void assrt(boolean val) {
20 if (!val) throw new IllegalStateException("assert failed");
22 public static void assrt(String msg, boolean val) {
23 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /external/junit-params/src/test/java/junitparams/
BeforeAfterClassTest.java 11 private static boolean val = false; field in class:BeforeAfterClassTest
15 val = true;
20 val = false;
26 assertThat(val).isTrue();
  /external/libmpeg2/common/
ideint_debug.h 44 void ideint_corrupt_pic(icv_pic_t *ps_pic, WORD32 val);
45 #define IDEINT_CORRUPT_PIC(ps_pic, val) ideint_corrupt_pic(ps_pic, val);
47 #define IDEINT_CORRUPT_PIC(ps_pic, val)
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
ShortRenderer.java 36 public static void writeTo(IndentingWriter writer, short val) throws IOException {
37 if (val < 0) {
39 writer.printUnsignedLongAsHex(-val);
43 writer.printUnsignedLongAsHex(val);
  /external/strace/tests/
printxval.c 37 printxval(const struct xlat *xlat, unsigned long long val,
41 if (xlat->val == val) {
47 printf("%#llx", val);
  /external/strace/tests-m32/
printxval.c 37 printxval(const struct xlat *xlat, unsigned long long val,
41 if (xlat->val == val) {
47 printf("%#llx", val);
  /external/strace/tests-mx32/
printxval.c 37 printxval(const struct xlat *xlat, unsigned long long val,
41 if (xlat->val == val) {
47 printf("%#llx", val);
  /external/strace/
upeek.c 41 long val; local
44 val = ptrace(PTRACE_PEEKUSER, (pid_t) tcp->pid, (void *) off, 0);
45 if (val == -1 && errno) {
52 *res = (unsigned long) val;
  /external/swiftshader/third_party/subzero/src/
IceConditionCodesX8632.h 32 #define X(val, encode, opp, dump, emit) val = encode,
42 #define X(val, emit) val,
IceConditionCodesX8664.h 28 #define X(val, encode, opp, dump, emit) val = encode,
38 #define X(val, emit) val,
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
imgprocutil.h 27 inline int clamp(int min, int val, int max) {
28 return val < min ? min : (val > max ? max : val);
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/doclava/
ChecksConfig.kt 27 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/
ColumnInfo.kt 24 data class ColumnInfo(val name: String, val type: SQLTypeAffinity)
QueryResultInfo.kt 27 data class QueryResultInfo(val columns: List<ColumnInfo>, val error: SQLException? = null)
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
Relation.kt 26 val entity: Entity,
28 val pojoType: TypeMirror,
30 val field: Field,
32 val parentField: Field,
35 val entityField: Field,
37 val projection: List<String>) {
39 val pojoTypeName by lazy { pojoType.typeName() }
42 val resultFields = projection.toSet() + entityField.columnName
  /frameworks/support/room/integration-tests/kotlintestapp/src/main/java/androidx/room/integration/kotlintestapp/vo/
PojoFromDependency.kt 19 val id: Int,
20 val name: String
  /prebuilts/misc/common/swig/include/2.0.11/python/
file.i 12 SWIG_AsValFilePtr(PyObject *obj, FILE **val) {
17 if (val) *val = (FILE *)vptr;
22 if (val) *val = PyFile_AsFile(obj);
34 FILE *val = 0;
35 SWIG_AsValFilePtr(obj, &val);
36 return val;
  /external/lisa/libs/utils/
colors.py 32 def rate(val, positive_is_good=True):
33 str_val = "{:9.2f}%".format(val)
39 val = -val
41 if val < -10:
43 elif val < 0:
45 elif val < 10:

Completed in 600 milliseconds

1 2 3 45 6 7 8 91011>>