Searched refs:value (Results 176 - 200 of 16071) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_volatile.pass.cpp19 static_assert(!std::is_volatile<T>::value, "");
20 static_assert(!std::is_volatile<const T>::value, "");
21 static_assert( std::is_volatile<volatile T>::value, "");
22 static_assert( std::is_volatile<const volatile T>::value, "");
35 static_assert(!std::is_volatile<int&>::value, "");
36 static_assert(!std::is_volatile<volatile int&>::value, "");
/external/ltrace/
H A Dlens.h32 int (*format_cb)(struct lens *lens, FILE *stream, struct value *value,
41 int format_argument(FILE *stream, struct value *value,
45 int lens_format(struct lens *lens, FILE *stream, struct value *value,
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DMethodInfoTransformer.java28 public Object transform(Object value) { argument
29 if (value instanceof Method) {
30 return ReflectUtils.getMethodInfo((Method)value);
31 } else if (value instanceof Constructor) {
32 return ReflectUtils.getMethodInfo((Constructor)value);
34 throw new IllegalArgumentException("cannot get method info for " + value);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DHeader.java26 private String value; field in class:Header
28 public Header(String name, String value) argument
31 this.value = value;
41 return value;
56 return "<header name='" + name + "'>" + value + "</header>";
/external/skia/src/core/
H A DSkFloatBits.cpp19 computations on value. Also, Cast does not need to check for negative zero,
20 as that value (0x80000000) "does the right thing" for Ceil. Note that it
47 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; local
51 value = SK_MaxS32;
53 value <<= exp;
60 value >>= exp;
62 return SkApplySign(value, SkExtractSign(packed));
73 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; local
77 value = SK_MaxS32;
79 value <<
103 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; local
133 int value = unpack_matissa_dirty(packed) | MATISSA_MAGIC_BIG; local
155 SkIntToFloatCast(int32_t value) argument
188 SkIntToFloatCast_NoOverflowCheck(int32_t value) argument
[all...]
/external/bison/lib/
H A Dcloexec.h32 int set_cloexec_flag (int desc, bool value);
/external/chromium_org/base/android/
H A Devent_log.cc11 void EventLogWriteInt(int tag, int value) { argument
12 Java_EventLog_writeEvent(AttachCurrentThread(), tag, value); local
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/util/
H A DMathUtils.java15 * Returns the passed in value if it resides within the specified range (inclusive). If not,
19 * @param value The value to be compared against the range.
20 * @param a First boundary range value.
21 * @param b Second boundary range value.
22 * @return The passed in value if it is within the range, otherwise the closest boundary value.
24 public static int clamp(int value, int a, int b) { argument
27 if (value < min) value
42 clamp(long value, long a, long b) argument
60 clamp(float value, float a, float b) argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dmanifest_features.py26 def add_child(features, parent, child_name, value):
27 value['name'] = child_name
30 features[parent]['children'][child_name] = value
35 value = features.pop(name)
37 add_child(features, parent, child_name, value)
39 for value in features.values():
40 if 'children' in value:
41 insert_children(value['children'])
/external/chromium_org/components/bookmarks/common/android/
H A Dbookmark_type.h11 #define DEFINE_BOOKMARK_TYPE(name, value) name = value,
/external/chromium_org/content/browser/android/
H A Dgesture_event_type.h11 #define DEFINE_GESTURE_EVENT_TYPE(name, value) name = value,
/external/chromium_org/content/browser/renderer_host/input/
H A Dselection_event_type.h11 #define DEFINE_SELECTION_EVENT_TYPE(name, value) name = value,
/external/chromium_org/content/public/common/
H A Dresult_codes.h12 #define RESULT_CODE(label, value) RESULT_CODE_ ## label = value,
H A Dscreen_orientation_values.h11 #define DEFINE_SCREEN_ORIENTATION_VALUE(name, value) name = 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/sync/internal_api/public/sessions/
H A Dcommit_counters.cc21 scoped_ptr<base::DictionaryValue> value(new base::DictionaryValue());
22 value->SetInteger("numCommitsAttempted", num_commits_attempted);
23 value->SetInteger("numCommitsSuccess", num_commits_success);
24 value->SetInteger("numCommitsConflict", num_commits_conflict);
25 value->SetInteger("numCommitsError", num_commits_error);
26 return value.Pass();
31 scoped_ptr<base::DictionaryValue> value = ToValue(); local
33 serializer.Serialize(*value);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/modules/
H A DTestPartialInterface3.idl40 void voidMethodPartialOverload(DOMString value);
41 static void voidMethodPartialOverload(DOMString value);
43 void partial2VoidMethod(DOMString value);
44 static void partial2StaticVoidMethod(DOMString value);
/external/chromium_org/ui/webui/resources/js/
H A Dload_time_data.js29 * var value = loadTimeData.data()['key'];
31 * @param {Object} value The de-serialized page data.
33 set data(value) {
35 this.data_ = value;
47 * @param {string} id An ID of a value that might exist.
55 * Fetches a value, expecting that it exists.
56 * @param {string} id The key that identifies the desired value.
57 * @return {*} The corresponding value.
61 var value = this.data_[id];
62 expect(typeof 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/PCH/
H A Dcxx-traits.cpp14 bool default_construct_int = is_trivially_constructible<int>::value;
15 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];

Completed in 7838 milliseconds

1234567891011>>