Searched refs:value (Results 151 - 175 of 13868) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/webui/
H A Dweb_ui_message_handler.cc14 bool WebUIMessageHandler::ExtractIntegerValue(const ListValue* value, argument
17 if (value->GetString(0, &string_value))
20 if (value->GetDouble(0, &double_value)) {
28 bool WebUIMessageHandler::ExtractDoubleValue(const ListValue* value, argument
31 if (value->GetString(0, &string_value))
33 if (value->GetDouble(0, out_value))
39 string16 WebUIMessageHandler::ExtractStringValue(const ListValue* value) { argument
41 if (value->GetString(0, &string16_value))
/external/chromium_org/content/public/common/
H A Dresult_codes.h12 #define RESULT_CODE(label, value) RESULT_CODE_ ## label = value,
H A Dtop_controls_state.h11 #define DEFINE_TOP_CONTROLS_STATE(name, value) name = value,
/external/chromium_org/net/base/
H A Dload_flags.h14 #define LOAD_FLAG(label, value) LOAD_ ## label = value,
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBCursorWithValue.idl27 readonly attribute any value;
/external/chromium_org/ui/webui/resources/js/
H A Dload_time_data.js24 * @param {Object} value The de-serialized page data.
26 set data(value) {
28 this.data_ = value;
39 * Fetches a value, expecting that it exists.
40 * @param {string} id The key that identifies the desired value.
41 * @return {*} The corresponding value.
45 var value = this.data_[id];
46 expect(typeof value != 'undefined', 'Could not find value for ' + id);
47 return value;
[all...]
/external/chromium_org/v8/test/intl/
H A Dutils.js34 set: function(value) {
36 'Setting value: ' + value);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1112.js33 { configurable: true, enumerable: true, value: 3 });
H A Dregress-1213575.js31 this.__defineSetter__('x', function(value) { assertTrue(value === 1); });
/external/clang/test/Index/
H A Dload-classes.cpp4 X(int value);
12 X::X(int value) { argument
19 // CHECK: load-classes.cpp:4:9: ParmDecl=value:4:9 (Definition) Extent=[4:5 - 4:14]
30 // CHECK: load-classes.cpp:12:10: ParmDecl=value:12:10 (Definition) Extent=[12:6 - 12:15]
/external/clang/test/PCH/
H A Dcxx-traits.cpp12 bool default_construct_int = is_trivially_constructible<int>::value;
13 bool copy_construct_int = is_trivially_constructible<int, const int&>::value;
/external/clang/test/SemaTemplate/
H A Dinstantiate-declref-ice.cpp15 static const unsigned value = sizeof(T); member in struct:X0
19 const unsigned X0<T>::value; member in class:X0
21 int array1[X0<int>::value == sizeof(int)? 1 : -1];
23 const unsigned& testX0() { return X0<int>::value; }
25 int array2[X0<int>::value == sizeof(int)? 1 : -1];
29 static const unsigned value; member in struct:X1
33 const unsigned X1<T>::value = sizeof(T); member in class:X1
35 int array3[X1<int>::value == sizeof(int)? 1 : -1];
H A Dtemp_class_order.cpp5 static const int value = 0; member in struct:X1
10 static const int value = 1; member in struct:X1
15 static const int value = 2; member in struct:X1
20 static const int value = 3; member in struct:X1
23 int array0[X1<int, int>::value == 0? 1 : -1];
24 int array1[X1<int*, float*>::value == 1? 1 : -1];
25 int array2[X1<int*, int*>::value == 2? 1 : -1];
27 int array3[X1<const int*, CIP>::value == 3? 1 : -1];
/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/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/v8/test/mjsunit/regress/
H A Dregress-1112.js33 { configurable: true, enumerable: true, value: 3 });
H A Dregress-1213575.js31 this.__defineSetter__('x', function(value) { assertTrue(value === 1); });
/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/marisa-trie/lib/marisa/
H A Drank.h12 void set_abs(UInt32 value) { argument
13 abs_ = value;
15 void set_rel1(UInt32 value) { argument
16 MARISA_DEBUG_IF(value > 64, MARISA_PARAM_ERROR);
17 rel_lo_ = (rel_lo_ & ~0x7FU) | (value & 0x7FU);
19 void set_rel2(UInt32 value) { argument
20 MARISA_DEBUG_IF(value > 128, MARISA_PARAM_ERROR);
21 rel_lo_ = (rel_lo_ & ~(0xFFU << 7)) | ((value & 0xFFU) << 7);
23 void set_rel3(UInt32 value) { argument
24 MARISA_DEBUG_IF(value > 19
27 set_rel4(UInt32 value) argument
31 set_rel5(UInt32 value) argument
35 set_rel6(UInt32 value) argument
39 set_rel7(UInt32 value) argument
[all...]
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Drank.h12 void set_abs(UInt32 value) { argument
13 abs_ = value;
15 void set_rel1(UInt32 value) { argument
16 MARISA_ALPHA_DEBUG_IF(value > 64, MARISA_ALPHA_PARAM_ERROR);
17 rel_lo_ = (rel_lo_ & ~0x7FU) | (value & 0x7FU);
19 void set_rel2(UInt32 value) { argument
20 MARISA_ALPHA_DEBUG_IF(value > 128, MARISA_ALPHA_PARAM_ERROR);
21 rel_lo_ = (rel_lo_ & ~(0xFFU << 7)) | ((value & 0xFFU) << 7);
23 void set_rel3(UInt32 value) { argument
24 MARISA_ALPHA_DEBUG_IF(value > 19
27 set_rel4(UInt32 value) argument
31 set_rel5(UInt32 value) argument
35 set_rel6(UInt32 value) argument
39 set_rel7(UInt32 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/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 2315 milliseconds

1234567891011>>