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

<<11121314151617181920>>

  /external/chromium_org/sync/sessions/
status_controller.h 42 void set_commit_request_types(ModelTypeSet value) {
43 model_neutral_.commit_request_types = value;
71 void increment_num_updates_downloaded_by(int value);
72 void increment_num_tombstone_updates_downloaded_by(int value);
73 void increment_num_reflected_updates_downloaded_by(int value);
76 void increment_num_updates_applied_by(int value);
77 void increment_num_encryption_conflicts_by(int value);
78 void increment_num_hierarchy_conflicts_by(int value);
86 void set_num_successful_bookmark_commits(int value);
  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableDouble.cpp 39 bool AnimatableDouble::usesDefaultInterpolationWith(const AnimatableValue* value) const
41 const AnimatableDouble* other = toAnimatableDouble(value);
45 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableDouble::interpolateTo(const AnimatableValue* value, double fraction) const
47 const AnimatableDouble* other = toAnimatableDouble(value);
50 return defaultInterpolateTo(this, value, fraction);
54 bool AnimatableDouble::equalTo(const AnimatableValue* value) const
56 return m_number == toAnimatableDouble(value)->m_number;
59 double AnimatableDouble::distanceTo(const AnimatableValue* value) const
61 const AnimatableDouble* other = toAnimatableDouble(value);
  /external/chromium_org/v8/src/base/
logging.h 47 const char* value_source, int value) {
48 if (expected != value) {
51 expected_source, value_source, expected, value);
62 int64_t value) {
63 if (expected != value) {
72 static_cast<uint32_t>(value >> 32),
73 static_cast<uint32_t>(value));
85 int value) {
86 if (unexpected == value) {
87 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i"
    [all...]
  /external/chromium_org/v8/src/
conversions.h 56 // integer value is outside the range of type int.
110 // Converts a string into a double value according to ECMA-262 9.3.1
137 // Converts a double to a string value according to ECMA-262 9.8.1.
140 const char* DoubleToCString(double value, Vector<char> buffer);
148 char* DoubleToFixedCString(double value, int f);
149 char* DoubleToExponentialCString(double value, int f);
150 char* DoubleToPrecisionCString(double value, int f);
151 char* DoubleToRadixCString(double value, int radix);
154 static inline bool IsMinusZero(double value) {
156 return DoubleRepresentation(value) == minus_zero
211 int value = Smi::cast(number)->value(); local
221 double value = HeapNumber::cast(number)->value(); local
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 22 private int value; field in class:IntQueue.Entry
23 private Entry(int value) {
24 this.value = value;
31 void add(int value) {
32 IntQueue.Entry entry = new Entry(value);
49 int value = head.value; local
54 return value;
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapPrimitive.java 33 * namespace, name and string value (this is how the stockquote example works).
39 String value; field in class:SoapPrimitive
41 public SoapPrimitive(String namespace, String name, String value) {
44 this.value = value;
54 && (value == null ? (p.value == null) : value.equals(p.value));
63 return value;
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 30 std::function<int()> >::value), "");
32 std::function<int()> >::value), "");
34 int>::value), "");
37 std::function<double(int)> >::value), "");
39 std::function<double(int)> >::value), "");
41 double>::value), "");
44 std::function<double(int, char)> >::value), "");
46 std::function<double(int, char)> >::value), "");
48 double>::value), "");
  /external/libcxx/test/utilities/meta/meta.rel/
is_same.pass.cpp 19 static_assert((std::is_same<T, U>::value), "");
20 static_assert((!std::is_same<const T, U>::value), "");
21 static_assert((!std::is_same<T, const U>::value), "");
22 static_assert((std::is_same<const T, const U>::value), "");
28 static_assert((std::is_same<T, U>::value), "");
29 static_assert((std::is_same<const T, U>::value), "");
30 static_assert((std::is_same<T, const U>::value), "");
31 static_assert((std::is_same<const T, const U>::value), "");
37 static_assert((!std::is_same<T, U>::value), "");
  /external/lldb/examples/summaries/cocoa/
attrib_fromdict.py 16 value = self._dictionary[name]
17 return value
19 def _set_impl(self,name,value):
20 self._dictionary[name] = value
25 def __setattr__(self,name,value):
27 self._set_impl(name,value)
29 self.set_if_necessary(name,value)
31 def set_if_necessary(self,name,value):
33 self._set_impl(name,value)
  /external/lldb/include/lldb/Core/
ThreadSafeValue.h 34 ThreadSafeValue(const T& value) :
35 m_value (value),
47 T value; local
50 value = m_value;
52 return value;
64 SetValue (const T& value)
67 m_value = value;
73 SetValueNoLock (const T& value)
75 m_value = value;
  /external/nist-sip/java/gov/nist/javax/sip/header/
ExtensionHeaderImpl.java 51 protected String value; field in class:ExtensionHeaderImpl
73 * Set the value of the header.
75 public void setValue(String value) {
76 this.value = value;
80 * Get the value of the extension header.
81 * @return the value of the extension header.
84 if (this.value != null) {
85 return this.value;
99 this.value = buffer.toString().trim()
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
Lerp.java 23 float value = start; local
28 value = start + (range * percent);
32 value = target;
34 return value;
39 float value = start; local
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
57 value = target;
59 return value;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 30 std::function<int()> >::value), "");
32 std::function<int()> >::value), "");
34 int>::value), "");
37 std::function<double(int)> >::value), "");
39 std::function<double(int)> >::value), "");
41 double>::value), "");
44 std::function<double(int, char)> >::value), "");
46 std::function<double(int, char)> >::value), "");
48 double>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/
is_same.pass.cpp 19 static_assert((std::is_same<T, U>::value), "");
20 static_assert((!std::is_same<const T, U>::value), "");
21 static_assert((!std::is_same<T, const U>::value), "");
22 static_assert((std::is_same<const T, const U>::value), "");
28 static_assert((std::is_same<T, U>::value), "");
29 static_assert((std::is_same<const T, U>::value), "");
30 static_assert((std::is_same<T, const U>::value), "");
31 static_assert((std::is_same<const T, const U>::value), "");
37 static_assert((!std::is_same<T, U>::value), "");
  /bootable/recovery/applypatch/
utils.c 21 /** Write a 4-byte value to f in little-endian order. */
22 void Write4(int value, FILE* f) {
23 fputc(value & 0xff, f);
24 fputc((value >> 8) & 0xff, f);
25 fputc((value >> 16) & 0xff, f);
26 fputc((value >> 24) & 0xff, f);
29 /** Write an 8-byte value to f in little-endian order. */
30 void Write8(long long value, FILE* f) {
31 fputc(value & 0xff, f);
32 fputc((value >> 8) & 0xff, f)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
StringDataItem.java 29 /** {@code non-null;} the string value */
30 private final CstUtf8 value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstUtf8 value) {
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {@code non-null;} the string valu
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
NameValuePair.java 24 * A (name, value) pair. These are used as the contents of an annotation.
30 /** {@code non-null;} the value */
31 private final Constant value; field in class:NameValuePair
37 * @param value {@code non-null;} the value
39 public NameValuePair(CstUtf8 name, Constant value) {
44 if (value == null) {
45 throw new NullPointerException("value == null");
49 if (value instanceof CstUtf8) {
50 throw new IllegalArgumentException("bad value: " + value)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
StringDataItem.java 29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstString value) {
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {@code non-null;} the string valu
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
jtl_instructions.h 18 #define OP_STORE_BOOL(name, value) std::string(1, '\x10') + name + value
19 #define OP_COMPARE_STORED_BOOL(name, value, default_value) \
20 std::string(1, '\x11') + name + value + default_value
21 #define OP_STORE_HASH(name, value) std::string(1, '\x12') + name + value
22 #define OP_COMPARE_STORED_HASH(name, value, default_value) \
23 std::string(1, '\x13') + name + value + default_value
28 #define OP_COMPARE_NODE_BOOL(value) std::string(1, '\x20') + value
    [all...]
  /external/chromium_org/extensions/common/
value_counter.cc 17 ValueCounter::Entry::Entry(const base::Value& value)
18 : value_(value.DeepCopy()), count_(1) {}
26 int ValueCounter::Add(const base::Value& value) { return AddImpl(value, true); }
28 int ValueCounter::Remove(const base::Value& value) {
30 (*it)->value()->GetType();
31 if ((*it)->value()->Equals(&value))
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/include/
integers.h 106 extern uint32_t high32(uint64_t value);
107 extern uint32_t low32(uint64_t value);
118 #define PUT_32(addr,value) \
120 ((unsigned char *) (addr))[0] = (value >> 24); \
121 ((unsigned char *) (addr))[1] = (value >> 16) & 0xff; \
122 ((unsigned char *) (addr))[2] = (value >> 8) & 0xff; \
123 ((unsigned char *) (addr))[3] = (value) & 0xff; \
130 #define PUT_32(addr,value) \
132 ((unsigned char *) (addr))[3] = (value >> 24); \
133 ((unsigned char *) (addr))[2] = (value >> 16) & 0xff;
    [all...]
  /external/chromium_org/v8/src/compiler/
machine-operator-reducer.h 30 Node* Float32Constant(volatile float value);
31 Node* Float64Constant(volatile double value);
32 Node* Int32Constant(int32_t value);
33 Node* Int64Constant(int64_t value);
35 Reduction ReplaceBool(bool value) { return ReplaceInt32(value ? 1 : 0); }
36 Reduction ReplaceFloat32(volatile float value) {
37 return Replace(Float32Constant(value));
39 Reduction ReplaceFloat64(volatile double value) {
40 return Replace(Float64Constant(value));
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p6.cpp 7 static const unsigned value = 0; member in struct:X0::Inner0
11 static const unsigned value = 1; member in struct:X0::Inner0
17 static const unsigned value = 2; member in struct:X0::Inner0
20 int array0[X0<int>::Inner0<int>::value == 0? 1 : -1];
21 int array1[X0<int>::Inner0<int*>::value == 1? 1 : -1];
22 int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1];
50 static const unsigned value = 3; member in struct:X0::Inner0
53 int array3[X0<float>::Inner0<int>::value == 0? 1 : -1];
54 int array4[X0<float>::Inner0<int*>::value == 3? 1 : -1];
55 int array5[X0<float>::Inner0<const int*>::value == 2? 1 : -1]
65 static const bool value = true; member in struct:rdar8651930::Outer::Inner
70 static const bool value = false; member in struct:rdar8651930::Outer::Inner
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringDataItem.java 29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstString value) {
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {@code non-null;} the string valu
    [all...]
  /external/libcxx/test/atomics/atomics.types.generic/
integral_typedefs.pass.cpp 32 static_assert((std::is_same<std::atomic<char>, std::atomic_char>::value), "");
33 static_assert((std::is_same<std::atomic<signed char>, std::atomic_schar>::value), "");
34 static_assert((std::is_same<std::atomic<unsigned char>, std::atomic_uchar>::value), "");
35 static_assert((std::is_same<std::atomic<short>, std::atomic_short>::value), "");
36 static_assert((std::is_same<std::atomic<unsigned short>, std::atomic_ushort>::value), "");
37 static_assert((std::is_same<std::atomic<int>, std::atomic_int>::value), "");
38 static_assert((std::is_same<std::atomic<unsigned int>, std::atomic_uint>::value), "");
39 static_assert((std::is_same<std::atomic<long>, std::atomic_long>::value), "");
40 static_assert((std::is_same<std::atomic<unsigned long>, std::atomic_ulong>::value), "");
41 static_assert((std::is_same<std::atomic<long long>, std::atomic_llong>::value), "");
    [all...]

Completed in 1034 milliseconds

<<11121314151617181920>>