HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 101 - 125 of 13125) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/util/
MutableShort.java 24 public short value; field in class:MutableShort
26 public MutableShort(short value) {
27 this.value = value;
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
BindingMethods.java 24 * {@link BindingMethod} annotations in the value.
28 BindingMethod[] value(); method in interface:BindingMethods
InverseBindingMethods.java 22 * Used to enumerate attribute, getter, and event association. The value is an array of
27 InverseBindingMethod[] value(); method in interface:InverseBindingMethods
Untaggable.java 26 String[] value(); method in interface:Untaggable
  /frameworks/support/annotations/src/main/java/androidx/annotation/
GuardedBy.java 46 String value(); method in interface:GuardedBy
  /frameworks/support/lifecycle/common/src/main/java/androidx/lifecycle/
OnLifecycleEvent.java 28 Lifecycle.Event value(); method in interface:OnLifecycleEvent
  /frameworks/support/room/common/src/main/java/androidx/room/
Query.java 27 * The value of the annotation includes the query that will be run when this method is called. This
67 * the query returns a nullable type, it will not dispatch anything if the value is {@code null}
78 * the value is the number of rows affected by this query.
107 String value(); method in interface:Query
TypeConverters.java 49 Class<?>[] value(); method in interface:TypeConverters
  /libcore/dalvik/src/main/java/dalvik/annotation/
KnownFailure.java 38 String value(); method in interface:KnownFailure
TestTargetClass.java 40 Class<?> value(); method in interface:TestTargetClass
  /libcore/luni/src/main/java/android/system/
Int32Ref.java 24 public int value; field in class:Int32Ref
26 public Int32Ref(int value) {
27 this.value = value;
Int64Ref.java 23 public long value; field in class:Int64Ref
25 public Int64Ref(long value) {
26 this.value = value;
  /libcore/luni/src/main/java/java/lang/
FindBugsSuppressWarnings.java 45 String[] value(); method in interface:FindBugsSuppressWarnings
  /libcore/ojluni/src/main/java/java/lang/
SuppressWarnings.java 71 String[] value(); method in interface:SuppressWarnings
  /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/
RequireContainer.java 50 Require[] value(); method in interface:RequireContainer
  /prebuilts/jdk/jdk8/darwin-x86/sample/annotations/Validator/src/
Validate.java 55 Validator value(); method in interface:Validate
73 Validate[] value(); method in interface:ValidateContainer
  /prebuilts/jdk/jdk8/linux-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/
RequireContainer.java 50 Require[] value(); method in interface:RequireContainer
  /prebuilts/jdk/jdk8/linux-x86/sample/annotations/Validator/src/
Validate.java 55 Validator value(); method in interface:Validate
73 Validate[] value(); method in interface:ValidateContainer
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.native.obs/
c_str.pass.cpp 31 const char* const value = "hello world"; local
32 const std::string str_value = value;
34 path p(value);
39 path p(value);
operator_string.pass.cpp 32 const char* const value = "hello world"; local
34 path p(value);
35 static_assert(std::is_convertible<path, string_type>::value, "");
36 static_assert(std::is_constructible<string_type, path>::value, "");
41 path p(value);
42 assert(p.native() == value);
44 assert(s == value);
45 assert(p == value);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/meta/meta.logical/
conjunction.pass.cpp 15 // constexpr bool conjunction_v = conjunction<B...>::value; // C++17
22 struct True { static constexpr bool value = true; }; member in struct:True
23 struct False { static constexpr bool value = false; }; member in struct:False
27 static_assert ( ex::conjunction<>::value, "" );
28 static_assert ( ex::conjunction<std::true_type >::value, "" );
29 static_assert (!ex::conjunction<std::false_type>::value, "" );
35 static_assert ( ex::conjunction<std::true_type, std::true_type >::value, "" );
36 static_assert (!ex::conjunction<std::true_type, std::false_type>::value, "" );
37 static_assert (!ex::conjunction<std::false_type, std::true_type >::value, "" );
38 static_assert (!ex::conjunction<std::false_type, std::false_type>::value, "" );
    [all...]
disjunction.pass.cpp 15 // constexpr bool disjunction_v = disjunction<B...>::value;
22 struct True { static constexpr bool value = true; }; member in struct:True
23 struct False { static constexpr bool value = false; }; member in struct:False
27 static_assert (!ex::disjunction<>::value, "" );
28 static_assert ( ex::disjunction<std::true_type >::value, "" );
29 static_assert (!ex::disjunction<std::false_type>::value, "" );
35 static_assert ( ex::disjunction<std::true_type, std::true_type >::value, "" );
36 static_assert ( ex::disjunction<std::true_type, std::false_type>::value, "" );
37 static_assert ( ex::disjunction<std::false_type, std::true_type >::value, "" );
38 static_assert (!ex::disjunction<std::false_type, std::false_type>::value, "" );
    [all...]
negation.pass.cpp 15 // constexpr bool negation_v = negation<B>::value;
22 struct True { static constexpr bool value = true; }; member in struct:True
23 struct False { static constexpr bool value = false; }; member in struct:False
27 static_assert (!ex::negation<std::true_type >::value, "" );
28 static_assert ( ex::negation<std::false_type>::value, "" );
33 static_assert (!ex::negation<True >::value, "" );
34 static_assert ( ex::negation<False>::value, "" );
39 static_assert ( ex::negation<ex::negation<std::true_type >>::value, "" );
40 static_assert (!ex::negation<ex::negation<std::false_type>>::value, "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.logical/
conjunction.pass.cpp 15 // constexpr bool conjunction_v = conjunction<B...>::value; // C++17
20 struct True { static constexpr bool value = true; }; member in struct:True
21 struct False { static constexpr bool value = false; }; member in struct:False
25 static_assert ( std::conjunction<>::value, "" );
26 static_assert ( std::conjunction<std::true_type >::value, "" );
27 static_assert (!std::conjunction<std::false_type>::value, "" );
33 static_assert ( std::conjunction<std::true_type, std::true_type >::value, "" );
34 static_assert (!std::conjunction<std::true_type, std::false_type>::value, "" );
35 static_assert (!std::conjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::conjunction<std::false_type, std::false_type>::value, "" );
    [all...]
disjunction.pass.cpp 15 // constexpr bool disjunction_v = disjunction<B...>::value; // C++17
20 struct True { static constexpr bool value = true; }; member in struct:True
21 struct False { static constexpr bool value = false; }; member in struct:False
25 static_assert (!std::disjunction<>::value, "" );
26 static_assert ( std::disjunction<std::true_type >::value, "" );
27 static_assert (!std::disjunction<std::false_type>::value, "" );
33 static_assert ( std::disjunction<std::true_type, std::true_type >::value, "" );
34 static_assert ( std::disjunction<std::true_type, std::false_type>::value, "" );
35 static_assert ( std::disjunction<std::false_type, std::true_type >::value, "" );
36 static_assert (!std::disjunction<std::false_type, std::false_type>::value, "" );
    [all...]

Completed in 462 milliseconds

1 2 3 45 6 7 8 91011>>