Searched refs:value (Results 251 - 275 of 11587) sorted by relevance

<<11121314151617181920>>

/external/jsilver/src/com/google/clearsilver/jsilver/values/
H A DVariantValue.java36 protected abstract String value(); method in class:VariantValue
40 return TypeConverter.asBoolean(value());
45 String value = value();
46 return value == null ? EMPTY : value;
52 return TypeConverter.asNumber(value());
/external/libchrome/base/trace_event/
H A Dprocess_memory_totals.cc22 void ProcessMemoryTotals::AsValueInto(TracedValue* value) const {
23 value->SetString("resident_set_bytes",
26 value->SetString("peak_resident_set_bytes",
28 value->SetBoolean("is_peak_rss_resetable", is_peak_rss_resetable_);
32 value->SetString(it.first, StringPrintf("%" PRIx64, it.second));
41 uint64_t value) {
43 extra_fields_[name] = value;
40 SetExtraFieldInBytes(const char* name, uint64_t value) argument
/external/libcxx/test/std/utilities/function.objects/unord.hash/
H A Dnon_enum.pass.cpp29 static_assert(!std::is_default_constructible<H>::value, "");
30 static_assert(!std::is_copy_constructible<H>::value, "");
31 static_assert(!std::is_move_constructible<H>::value, "");
32 static_assert(!std::is_copy_assignable<H>::value, "");
33 static_assert(!std::is_move_assignable<H>::value, "");
35 static_assert(!std::is_callable<H(X&)>::value, "");
36 static_assert(!std::is_callable<H(X const&)>::value, "");
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
H A Dclass.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Denum.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Dfloating_point.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert( std::is_arithmetic<T>::value, "");
21 static_assert( std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert(!std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Dfunction.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Dmember_function_pointer.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert( std::is_member_pointer<T>::value, "");
H A Dmember_object_pointer.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert( std::is_member_pointer<T>::value, "");
H A Dpointer.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert( std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Dunion.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert(!std::is_fundamental<T>::value, "");
22 static_assert( std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert( std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
H A Dvoid.pass.cpp19 static_assert(!std::is_reference<T>::value, "");
20 static_assert(!std::is_arithmetic<T>::value, "");
21 static_assert( std::is_fundamental<T>::value, "");
22 static_assert(!std::is_object<T>::value, "");
23 static_assert(!std::is_scalar<T>::value, "");
24 static_assert(!std::is_compound<T>::value, "");
25 static_assert(!std::is_member_pointer<T>::value, "");
/external/skia/include/utils/
H A DSkParse.h19 static const char* FindColor(const char str[], SkColor* value);
20 static const char* FindHex(const char str[], uint32_t* value);
21 static const char* FindMSec(const char str[], SkMSec* value);
23 static const char* FindS32(const char str[], int32_t* value);
24 static const char* FindScalar(const char str[], SkScalar* value);
25 static const char* FindScalars(const char str[], SkScalar value[], int count);
27 static bool FindBool(const char str[], bool* value);
/external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
H A Dbitwriter_ocaml.c27 CAMLprim value llvm_write_bitcode_file(value M, value Path) {
33 CAMLprim value llvm_write_bitcode_to_fd(value U, value M, value FD) {
/external/vixl/src/
H A Dcompiler-intrinsics-vixl.h91 inline bool IsPowerOf2(V value) { argument
92 return (value != 0) && ((value & (value - 1)) == 0);
97 int CountLeadingSignBitsFallBack(int64_t value, int width);
98 int CountLeadingZerosFallBack(uint64_t value, int width);
99 int CountSetBitsFallBack(uint64_t value, int width);
100 int CountTrailingZerosFallBack(uint64_t value, int width);
108 inline int CountLeadingSignBits(V value, int width = (sizeof(V) * 8)) { argument
111 return __builtin_clrsb(value);
121 CountLeadingZeros(V value, int width = (sizeof(V) * 8)) argument
134 CountSetBits(V value, int width = (sizeof(V) * 8)) argument
147 CountTrailingZeros(V value, int width = (sizeof(V) * 8)) argument
[all...]
/external/easymock/src/org/easymock/internal/
H A DArgumentToString.java27 public static void appendArgument(Object value, StringBuffer buffer) { argument
28 if (value == null) {
30 } else if (value instanceof String) {
32 buffer.append(value);
34 } else if (value instanceof Character) {
36 buffer.append(value);
38 } else if (value.getClass().isArray()) {
40 for (int i = 0; i < Array.getLength(value); i++) {
44 appendArgument(Array.get(value, i), buffer);
48 buffer.append(value);
[all...]
/external/guice/core/src/com/google/inject/name/
H A DNamedImpl.java26 private final String value; field in class:NamedImpl
28 public NamedImpl(String value) { argument
29 this.value = checkNotNull(value, "name");
32 public String value() { method in class:NamedImpl
33 return this.value;
38 return (127 * "value".hashCode()) ^ value.hashCode();
47 return value.equals(other.value());
[all...]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
H A DOrderingComparison.java13 * equal to the specified value, as reported by the <code>compareTo</code> method of the
18 * @param value the value which, when passed to the compareTo method of the examined object, should return zero
20 public static <T extends Comparable<T>> Matcher<T> comparesEqualTo(T value) { argument
21 return ComparatorMatcherBuilder.<T>usingNaturalOrdering().comparesEqualTo(value);
26 * greater than the specified value, as reported by the <code>compareTo</code> method of the
31 * @param value the value which, when passed to the compareTo method of the examined object, should return greater
34 public static <T extends Comparable<T>> Matcher<T> greaterThan(T value) { argument
35 return ComparatorMatcherBuilder.<T>usingNaturalOrdering().greaterThan(value);
48 greaterThanOrEqualTo(T value) argument
62 lessThan(T value) argument
76 lessThanOrEqualTo(T value) argument
[all...]
/external/libese/libese/include/ese/
H A Dbit_spec.h20 uint8_t value; member in struct:bit_spec
25 return (var & (b.value << b.shift)) >> b.shift;
28 static inline uint8_t bs_mask(const struct bit_spec b, uint8_t value) { argument
29 return (value & b.value) << b.shift;
33 return (((uint8_t)~0) ^ bs_mask(b, b.value));
36 static inline uint8_t bs_set(uint8_t var, const struct bit_spec b, uint8_t value) { argument
37 return ((var) & bs_clear(b)) | bs_mask(b, value);
40 static inline void bs_assign(uint8_t *dst, const struct bit_spec b, uint8_t value) { argument
41 *dst = bs_set(*dst, b, value);
[all...]
/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java23 * Encodes a string into a double metaphone value.
73 * Encode a value with Double Metaphone
75 * @param value String to encode
78 public String doubleMetaphone(String value) { argument
79 return doubleMetaphone(value, false);
83 * Encode a value with Double Metaphone, optionally using the alternate
86 * @param value String to encode
90 public String doubleMetaphone(String value, boolean alternate) { argument
91 value = cleanInput(value);
218 encode(String value) argument
274 handleAEIOUY(String value, DoubleMetaphoneResult result, int index) argument
285 handleC(String value, DoubleMetaphoneResult result, int index) argument
339 handleCC(String value, DoubleMetaphoneResult result, int index) argument
365 handleCH(String value, DoubleMetaphoneResult result, int index) argument
396 handleD(String value, DoubleMetaphoneResult result, int index) argument
422 handleG(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
478 handleGH(String value, DoubleMetaphoneResult result, int index) argument
512 handleH(String value, DoubleMetaphoneResult result, int index) argument
530 handleJ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
565 handleL(String value, DoubleMetaphoneResult result, int index) argument
583 handleP(String value, DoubleMetaphoneResult result, int index) argument
599 handleR(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
616 handleS(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
669 handleSC(String value, DoubleMetaphoneResult result, int index) argument
701 handleT(String value, DoubleMetaphoneResult result, int index) argument
731 handleW(String value, DoubleMetaphoneResult result, int index) argument
770 handleX(String value, DoubleMetaphoneResult result, int index) argument
791 handleZ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
813 conditionC0(String value, int index) argument
832 conditionCH0(String value, int index) argument
848 conditionCH1(String value, int index) argument
860 conditionL0(String value, int index) argument
876 conditionM0(String value, int index) argument
891 isSlavoGermanic(String value) argument
908 isSilentStart(String value) argument
938 charAt(String value, int index) argument
948 contains(String value, int start, int length, String criteria) argument
957 contains(String value, int start, int length, String criteria1, String criteria2) argument
966 contains(String value, int start, int length, String criteria1, String criteria2, String criteria3) argument
976 contains(String value, int start, int length, String criteria1, String criteria2, String criteria3, String criteria4) argument
987 contains(String value, int start, int length, String criteria1, String criteria2, String criteria3, String criteria4, String criteria5) argument
999 contains(String value, int start, int length, String criteria1, String criteria2, String criteria3, String criteria4, String criteria5, String criteria6) argument
1013 contains(String value, int start, int length, String[] criteria) argument
1045 append(char value) argument
1055 appendPrimary(char value) argument
1061 appendAlternate(char value) argument
1067 append(String value) argument
1077 appendPrimary(String value) argument
1086 appendAlternate(String value) argument
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DFieldData.java44 private Object value; field in class:FieldData
50 value = newValue;
79 if (value != null){
86 value = extension.getValueFrom(unknownFieldData);
89 return (T) value;
94 value = newValue;
100 if (value != null) {
101 size = cachedExtension.computeSerializedSize(value);
111 if (value != null) {
112 cachedExtension.writeTo(value, outpu
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DSizeMetric.java20 * Encapsulates a sizing algorithm and an associated value.
27 public SizeMetric(float value, SizeLayoutType layoutType) { argument
28 super(value, layoutType);
31 protected void validatePair(float value, SizeLayoutType layoutType) { argument
34 if(value < 0 || value > 1) {
/external/libchrome/base/metrics/
H A Dmetrics_hashes.cc15 // Converts the 8-byte prefix of an MD5 hash into a uint64_t value.
17 uint64_t value; local
18 DCHECK_GE(sizeof(digest.a), sizeof(value));
19 memcpy(&value, digest.a, sizeof(value));
20 return base::NetToHost64(value);
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Ddtor.pass.cpp26 std::tuple<> >::value, "");
28 std::tuple<void*> >::value, "");
30 std::tuple<int, float> >::value, "");
32 std::tuple<std::string> >::value, "");
34 std::tuple<int, std::string> >::value, "");
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DCRC32.java25 long value = state.getValue();
26 byte[] buf = { (byte)(value),
27 (byte)(value >>> 8),
28 (byte)(value >>> 16),
29 (byte)(value >>> 24) };

Completed in 1731 milliseconds

<<11121314151617181920>>