Searched refs:value (Results 201 - 225 of 16071) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstBoolean.java33 * Makes an instance for the given value. This will return an
36 * @param value the {@code boolean} value
39 public static CstBoolean make(boolean value) { argument
40 return value ? VALUE_TRUE : VALUE_FALSE;
44 * Makes an instance for the given {@code int} value. This
47 * @param value must be either {@code 0} or {@code 1}
50 public static CstBoolean make(int value) { argument
51 if (value == 0) {
53 } else if (value
65 CstBoolean(boolean value) argument
[all...]
H A DCstByte.java27 /** {@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) { argument
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) { argument
64 CstByte(byte value) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNativeStringInternStrategy.java26 public String intern(String value) { argument
27 return value.intern();
H A DNoOpStringInternStrategy.java25 public String intern(String value) { argument
26 return value;
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_trivial.pass.cpp19 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, "");
/external/lldb/test/expression_command/radar_9531204/
H A Dmain.c14 int foo (int value) argument
16 printf ("I got the value: %d.\n", value);
/external/llvm/bindings/ocaml/all_backends/
H A Dall_backends_ocaml.c25 CAMLprim value llvm_initialize_all(value Unit) {
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java34 * Captured value.
36 private final T value; field in class:AbstractAttr
44 value = aValue;
48 * Gets the encapsulated data value.
50 * @return data value
53 return value;
72 return value.equals(other.value);
85 return value.hashCode();
95 return value
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/value/
H A DImmutableEncodedValue.java32 package org.jf.dexlib2.immutable.value;
34 import org.jf.dexlib2.iface.value.EncodedValue;
H A DImmutableEnumEncodedValue.java32 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) { argument
44 this.value = value;
54 @Nonnull @Override public FieldReference getValue() { return value; }
H A DImmutableFieldEncodedValue.java32 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) { argument
44 this.value = value;
54 @Nonnull @Override public FieldReference getValue() { return value; }
H A DImmutableMethodEncodedValue.java32 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) { argument
44 this.value = value;
54 @Nonnull @Override public MethodReference getValue() { return value; }
H A DImmutableStringEncodedValue.java32 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) { argument
43 this.value = value;
53 @Nonnull @Override public String getValue() { return value; }
H A DImmutableTypeEncodedValue.java32 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) { argument
43 this.value = value;
53 @Nonnull @Override public String getValue() { return value; }
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c27 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_strin
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_frame_builder.h21 // This class provides facilities for basic binary value packing
91 bool WriteUInt8(uint8 value) { argument
92 return WriteBytes(&value, sizeof(value));
94 bool WriteUInt16(uint16 value) { argument
95 value = htons(value);
96 return WriteBytes(&value, sizeof(value));
98 bool WriteUInt24(uint32 value) { argument
103 WriteUInt32(uint32 value) argument
107 WriteUInt64(uint64 value) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringprintf_unittest.cc64 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("Hell
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/
H A Dcommon_type.pass.cpp18 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/
H A DCheckAnnotationAdapter.java57 public void visit(final String name, final Object value) { argument
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 instanceo
77 visitEnum( final String name, final String desc, final String value) argument
[all...]
/external/robolectric/src/test/java/android/webkit/
H A DTestWebSettingsTest.java50 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURLUtils.cpp34 void DOMURLUtils::setHref(const String& value) argument
36 setInput(value);
39 void DOMURLUtils::setProtocol(const String& value) argument
44 kurl.setProtocol(value);
48 void DOMURLUtils::setUsername(const String& value) argument
53 kurl.setUser(value);
57 void DOMURLUtils::setPassword(const String& value) argument
62 kurl.setPass(value);
66 void DOMURLUtils::setHost(const String& value) argument
68 if (value
79 setHostname(const String& value) argument
100 setPort(const String& value) argument
110 setPathname(const String& value) argument
119 setSearch(const String& value) argument
136 setHash(const String& value) argument
[all...]
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2_V4.h37 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::WeightClass
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
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
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/
H A DSkOTTable_OS_2_V4.h37 SK_OT_USHORT value; member in struct:SkOTTableOS2_V4::WeightClass
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
266 static const SK_OT_ULONG BasicLatinMask = SkOTSetULONGBit<0>::value;
267 static const SK_OT_ULONG Latin1SupplementMask = SkOTSetULONGBit<1>::value;
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/chromium_org/chrome/installer/util/
H A Dchannel_info.h19 // parameter ("ap") client state value for a product.
23 // Initialize an instance from the "ap" value in a given registry key.
24 // Returns false if the value is present but could not be read from the
25 // registry. Returns true if the value was not present or could be read.
27 // An absent "ap" value is treated identically to an empty "ap" value.
30 // Writes the info to the "ap" value in a given registry key.
31 // Returns false if the value could not be written to the registry.
34 const std::wstring& value() const { return value_; } function in class:installer::ChannelInfo
35 void set_value(const std::wstring& value) { value argument
[all...]
/external/chromium_org/gpu/command_buffer/common/
H A Dbitfield_helpers_test.cc14 unsigned int value = 0x12345678u; local
15 EXPECT_EQ(0x8u, (BitField<0, 4>::Get(value)));
16 EXPECT_EQ(0x45u, (BitField<12, 8>::Get(value)));
17 EXPECT_EQ(0x12345678u, (BitField<0, 32>::Get(value)));
29 unsigned int value = 0x12345678u; local
30 BitField<0, 4>::Set(&value, 0x9);
31 EXPECT_EQ(0x12345679u, value);
32 BitField<12, 8>::Set(&value, 0x123);
33 EXPECT_EQ(0x12323679u, value);
34 BitField<0, 32>::Set(&value,
[all...]

Completed in 554 milliseconds

1234567891011>>