HomeSort by relevance Sort by last modified time
    Searched refs:value (Results 276 - 300 of 25190) sorted by null

<<11121314151617181920>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
ImmutableEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.iface.value.EncodedValue;
ImmutableEnumEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseEnumEncodedValue;
36 import org.jf.dexlib2.iface.value.EnumEncodedValue;
41 @Nonnull protected final FieldReference value; field in class:ImmutableEnumEncodedValue
43 public ImmutableEnumEncodedValue(@Nonnull FieldReference value) {
44 this.value = value;
54 @Nonnull @Override public FieldReference getValue() { return value; }
ImmutableFieldEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseFieldEncodedValue;
36 import org.jf.dexlib2.iface.value.FieldEncodedValue;
41 @Nonnull protected final FieldReference value; field in class:ImmutableFieldEncodedValue
43 public ImmutableFieldEncodedValue(@Nonnull FieldReference value) {
44 this.value = value;
54 @Nonnull @Override public FieldReference getValue() { return value; }
ImmutableMethodEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseMethodEncodedValue;
36 import org.jf.dexlib2.iface.value.MethodEncodedValue;
41 @Nonnull protected final MethodReference value; field in class:ImmutableMethodEncodedValue
43 public ImmutableMethodEncodedValue(@Nonnull MethodReference value) {
44 this.value = value;
54 @Nonnull @Override public MethodReference getValue() { return value; }
ImmutableStringEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseStringEncodedValue;
35 import org.jf.dexlib2.iface.value.StringEncodedValue;
40 @Nonnull protected final String value; field in class:ImmutableStringEncodedValue
42 public ImmutableStringEncodedValue(@Nonnull String value) {
43 this.value = value;
53 @Nonnull @Override public String getValue() { return value; }
ImmutableTypeEncodedValue.java 32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.base.value.BaseTypeEncodedValue;
35 import org.jf.dexlib2.iface.value.TypeEncodedValue;
40 @Nonnull protected final String value; field in class:ImmutableTypeEncodedValue
42 public ImmutableTypeEncodedValue(@Nonnull String value) {
43 this.value = value;
53 @Nonnull @Override public String getValue() { return value; }
  /frameworks/base/core/java/com/android/internal/util/
FastMath.java 29 public static int round(float value) {
30 long lx = (long) (value * (65536 * 256f));
  /frameworks/base/media/java/android/media/
IRemoteVolumeObserver.aidl 25 void dispatchRemoteVolumeUpdate(int direction, int value);
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
IBordeauxServiceCallback.aidl 26 * Called when the service has a new value for you.
28 void valueChanged(int value);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
is_trivial.pass.cpp 19 static_assert( std::is_trivial<T>::value, "");
20 static_assert( std::is_trivial<const T>::value, "");
21 static_assert( std::is_trivial<volatile T>::value, "");
22 static_assert( std::is_trivial<const volatile T>::value, "");
28 static_assert(!std::is_trivial<T>::value, "");
29 static_assert(!std::is_trivial<const T>::value, "");
30 static_assert(!std::is_trivial<volatile T>::value, "");
31 static_assert(!std::is_trivial<const volatile T>::value, "");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
ice_not.hpp 19 BOOST_STATIC_CONSTANT(bool, value = true);
25 BOOST_STATIC_CONSTANT(bool, value = false);
  /frameworks/support/v4/ics/android/support/v4/view/
ViewPropertyAnimatorCompatICS.java 25 public static void setDuration(View view, long value) {
26 view.animate().setDuration(value);
29 public static void alpha(View view, float value) {
30 view.animate().alpha(value);
33 public static void translationX(View view, float value) {
34 view.animate().translationX(value);
37 public static void translationY(View view, float value) {
38 view.animate().translationY(value);
45 public static void setInterpolator(View view, Interpolator value) {
46 view.animate().setInterpolator(value);
    [all...]
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 27 static value llvm_target_error_exn;
29 CAMLprim value llvm_register_target_exns(value Error) {
35 static void llvm_raise(value Prototype, char *Message) {
49 static value llvm_string_of_message(char* Message) {
50 value String = caml_copy_string(Message);
60 static void llvm_finalize_data_layout(value DataLayout) {
76 value llvm_alloc_data_layout(LLVMTargetDataRef DataLayout) {
77 value V = alloc_custom(&llvm_data_layout_ops, sizeof(LLVMTargetDataRef),
84 CAMLprim value llvm_datalayout_of_string(value StringRep)
    [all...]
  /external/chromium_org/net/spdy/
spdy_frame_builder.h 21 // This class provides facilities for basic binary value packing
91 bool WriteUInt8(uint8 value) {
92 return WriteBytes(&value, sizeof(value));
94 bool WriteUInt16(uint16 value) {
95 value = htons(value);
96 return WriteBytes(&value, sizeof(value));
98 bool WriteUInt24(uint32 value) {
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
stringprintf_unittest.cc 64 string value("Hello");
66 StringAppendF(&value, "%s", empty);
67 EXPECT_EQ("Hello", value);
71 string value("Hello");
72 StringAppendF(&value, "%s", "");
73 EXPECT_EQ("Hello", value);
77 string value("Hello");
78 StringAppendF(&value, " %s", "World");
79 EXPECT_EQ("Hello World", value);
83 string value("Hello")
99 string value = StringPrintf("%.*s", 3, kInvalidCodePoint); local
125 string value = StringPrintf("%.*s", 3, "\\375\\067s"); local
135 string value = StringPrintf("Hello, %s!", "World"); local
145 string value = StringPrintf("%s", buf); local
    [all...]
  /external/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 18 static_assert((std::is_same<std::common_type<int>::type, int>::value), "");
19 static_assert((std::is_same<std::common_type<char>::type, char>::value), "");
21 static_assert((std::is_same<std::common_type_t<int>, int>::value), "");
22 static_assert((std::is_same<std::common_type_t<char>, char>::value), "");
25 static_assert((std::is_same<std::common_type< int>::type, int>::value), "");
26 static_assert((std::is_same<std::common_type<const int>::type, int>::value), "");
27 static_assert((std::is_same<std::common_type< volatile int>::type, int>::value), "");
28 static_assert((std::is_same<std::common_type<const volatile int>::type, int>::value), "");
30 static_assert((std::is_same<std::common_type<int, int>::type, int>::value), "");
31 static_assert((std::is_same<std::common_type<int, const int>::type, int>::value), "");
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/util/
CheckAnnotationAdapter.java 57 public void visit(final String name, final Object value) {
60 if (!(value instanceof Byte || value instanceof Boolean
61 || value instanceof Character || value instanceof Short
62 || value instanceof Integer || value instanceof Long
63 || value instanceof Float || value instanceof Double
64 || value instanceof String || value instanceof Type
    [all...]
  /libcore/luni/src/main/java/libcore/util/
Objects.java 38 * Returns a string reporting the value of each declared field, via reflection.
53 Object value = f.get(o); local
62 if (value.getClass().isArray()) {
63 if (value.getClass() == boolean[].class) {
64 sb.append(Arrays.toString((boolean[]) value));
65 } else if (value.getClass() == byte[].class) {
66 sb.append(Arrays.toString((byte[]) value));
67 } else if (value.getClass() == char[].class) {
68 sb.append(Arrays.toString((char[]) value));
69 } else if (value.getClass() == double[].class)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 18 static_assert((std::is_same<std::common_type<int>::type, int>::value), "");
19 static_assert((std::is_same<std::common_type<char>::type, char>::value), "");
21 static_assert((std::is_same<std::common_type_t<int>, int>::value), "");
22 static_assert((std::is_same<std::common_type_t<char>, char>::value), "");
25 static_assert((std::is_same<std::common_type< int>::type, int>::value), "");
26 static_assert((std::is_same<std::common_type<const int>::type, int>::value), "");
27 static_assert((std::is_same<std::common_type< volatile int>::type, int>::value), "");
28 static_assert((std::is_same<std::common_type<const volatile int>::type, int>::value), "");
30 static_assert((std::is_same<std::common_type<int, int>::type, int>::value), "");
31 static_assert((std::is_same<std::common_type<int, const int>::type, int>::value), "");
    [all...]
  /external/robolectric/src/test/java/android/webkit/
TestWebSettingsTest.java 50 for (boolean value : trueAndFalse) {
51 webSettings.setAllowFileAccess(value);
52 assertThat(webSettings.getAllowFileAccess(), equalTo(value));
58 for (boolean value : trueAndFalse) {
59 webSettings.setAllowFileAccessFromFileURLs(value);
60 assertThat(webSettings.getAllowFileAccessFromFileURLs(), equalTo(value));
66 for (boolean value : trueAndFalse) {
67 webSettings.setAllowUniversalAccessFromFileURLs(value);
68 assertThat(webSettings.getAllowUniversalAccessFromFileURLs(), equalTo(value));
74 for (boolean value : trueAndFalse)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtils.cpp 34 void DOMURLUtils::setHref(const String& value)
36 setInput(value);
39 void DOMURLUtils::setProtocol(const String& value)
44 kurl.setProtocol(value);
48 void DOMURLUtils::setUsername(const String& value)
53 kurl.setUser(value);
57 void DOMURLUtils::setPassword(const String& value)
62 kurl.setPass(value);
66 void DOMURLUtils::setHost(const String& value)
68 if (value.isEmpty()
    [all...]
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2_V4.h 25 SK_TYPED_ENUM(Value, SK_OT_USHORT,
37 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::WeightClass
40 SK_TYPED_ENUM(Value, SK_OT_USHORT,
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::Type::Raw
396 SK_OT_ULONG value[4]; member in struct:SkOTTableOS2_V4::UnicodeRange::Raw
434 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::Selection::Raw
569 SK_OT_ULONG value[2]; member in struct:SkOTTableOS2_V4::CodePageRange::Raw
    [all...]
  /external/skia/src/sfnt/
SkOTTable_OS_2_V4.h 25 SK_TYPED_ENUM(Value, SK_OT_USHORT,
37 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::WeightClass
40 SK_TYPED_ENUM(Value, SK_OT_USHORT,
51 (value)SK_SEQ_END)
78 static const SK_OT_USHORT RestrictedMask = SkOTSetUSHORTBit<1>::value;
79 static const SK_OT_USHORT PreviewPrintMask = SkOTSetUSHORTBit<2>::value;
80 static const SK_OT_USHORT EditableMask = SkOTSetUSHORTBit<3>::value;
81 static const SK_OT_USHORT NoSubsettingMask = SkOTSetUSHORTBit<8>::value;
82 static const SK_OT_USHORT BitmapMask = SkOTSetUSHORTBit<9>::value;
83 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::Type::Raw
396 SK_OT_ULONG value[4]; member in struct:SkOTTableOS2_V4::UnicodeRange::Raw
434 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::Selection::Raw
569 SK_OT_ULONG value[2]; member in struct:SkOTTableOS2_V4::CodePageRange::Raw
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstByte.java 27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code byte} value
36 public static CstByte make(byte value) {
37 return new CstByte(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code byte}
48 public static CstByte make(int value) {
71 int value = getIntBits(); local
    [all...]
CstChar.java 27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code char} value
36 public static CstChar make(char value) {
37 return new CstChar(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code char}
48 public static CstChar make(int value) {
71 int value = getIntBits(); local
    [all...]

Completed in 2042 milliseconds

<<11121314151617181920>>