| /external/chromium_org/third_party/WebKit/Source/web/ |
| ContextFeaturesClientImpl.cpp | 56 : m_value(NeedsRefresh) 62 ASSERT(m_value != NeedsRefresh); 63 return m_value == IsEnabled; 68 m_value = value ? IsEnabled : IsDisabled; 74 return m_value == NeedsRefresh || m_defaultValue != defaultValue; 78 Value m_value; member in class:blink::FINAL::Entry
|
| /external/chromium_org/third_party/WebKit/Source/platform/ |
| LayoutUnit.h | 65 LayoutUnit() : m_value(0) { } 69 LayoutUnit(unsigned long value) { m_value = clampTo<int>(value * kFixedPointDenominator); } 70 LayoutUnit(unsigned long long value) { m_value = clampTo<int>(value * kFixedPointDenominator); } 71 LayoutUnit(float value) { m_value = clampTo<float>(value * kFixedPointDenominator, static_cast<float>(INT_MIN), static_cast<float>(INT_MAX)); } 72 LayoutUnit(double value) { m_value = clampTo<double>(value * kFixedPointDenominator, static_cast<double>(INT_MIN), static_cast<double>(INT_MAX)); } 77 v.m_value = clampToInteger(ceilf(value * kFixedPointDenominator)); 84 v.m_value = clampToInteger(floorf(value * kFixedPointDenominator)); 95 int toInt() const { return m_value / kFixedPointDenominator; } 96 float toFloat() const { return static_cast<float>(m_value) / kFixedPointDenominator; } 97 double toDouble() const { return static_cast<double>(m_value) / kFixedPointDenominator; 240 int m_value; member in class:WebCore::LayoutUnit [all...] |
| /external/chromium_org/content/shell/renderer/test_runner/ |
| mock_constraints.cc | 38 if (!IsSupported(curr.m_name) || curr.m_value != "1") { 51 if (!IsValid(curr.m_name) || curr.m_value != "0") {
|
| /external/chromium_org/third_party/WebKit/Source/core/dom/ |
| DOMSettableTokenList.h | 63 virtual const AtomicString& value() const OVERRIDE { return m_value; } 76 AtomicString m_value; member in class:WebCore::FINAL
|
| /external/chromium_org/third_party/WebKit/Source/core/html/ |
| HTMLMeterElement.cpp | 183 m_value->setWidthPercentage(valueRatio()*100); 184 m_value->updatePseudo(); 200 ASSERT(!m_value); 206 m_value = MeterValueElement::create(document()); 207 m_value->setWidthPercentage(0); 208 m_value->updatePseudo(); 209 bar->appendChild(m_value); 216 visitor->trace(m_value);
|
| HTMLProgressElement.cpp | 44 , m_value(nullptr) 140 m_value->setWidthPercentage(position() * 100); 151 ASSERT(!m_value); 160 m_value = value.get(); 161 m_value->setShadowPseudoId(AtomicString("-webkit-progress-value", AtomicString::ConstructFromLiteral)); 162 m_value->setWidthPercentage(HTMLProgressElement::IndeterminatePosition * 100); 163 bar->appendChild(m_value); 175 visitor->trace(m_value);
|
| /external/chromium_org/third_party/WebKit/Source/core/rendering/ |
| RenderListItem.h | 37 int value() const { if (!m_isValueUpToDate) updateValueNow(); return m_value; } 87 mutable int m_value; member in class:WebCore::FINAL
|
| /external/chromium_org/third_party/WebKit/Source/modules/device_light/ |
| DeviceLightEvent.h | 40 double value() const { return m_value; } 49 double m_value; member in class:WebCore::FINAL
|
| /external/chromium_org/third_party/WebKit/public/platform/ |
| WebMediaConstraints.h | 51 , m_value(value) 56 WebString m_value; member in struct:blink::WebMediaConstraint
|
| /external/deqp/executor/ |
| xeContainerFormatParser.cpp | 88 return m_value.c_str(); 94 return m_value.c_str(); 100 return m_value.c_str(); 136 m_value.clear(); 252 parseContainerValue(m_value, offset); 266 m_value.clear(); 277 m_value.push_back((char)curChar); 283 parseContainerValue(m_value, offset);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/binomial_heap_base_/ |
| insert_fn_imps.hpp | 91 if (Cmp_Fn::operator()(base_type::m_p_root->m_value, p_nd->m_value)) 136 if (Cmp_Fn::operator()(p_nd->m_value, p_next->m_value)) 180 const bool bubble_up = Cmp_Fn::operator()(p_nd->m_value, r_new_val); 182 p_nd->m_value = r_new_val; 189 Cmp_Fn::operator()(p_parent->m_value, p_nd->m_value))
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/cc_hash_table_map_/ |
| insert_no_store_hash_fn_imps.hpp | 53 while (p_e != 0 && !hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), 64 return std::make_pair(&p_e->m_value, false);
|
| insert_store_hash_fn_imps.hpp | 53 while (p_e != 0 && !hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), 65 return std::make_pair(&p_e->m_value, false);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| node.hpp | 75 value_type m_value; member in struct:__gnu_pbds::detail::left_child_next_sibling_heap_node_ 111 value_type m_value; member in struct:__gnu_pbds::detail::left_child_next_sibling_heap_node_
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/list_update_map_/ |
| find_fn_imps.hpp | 48 if (s_eq_fn(r_key, PB_DS_V2F(m_p_l->m_value))) 59 if (s_eq_fn(r_key, PB_DS_V2F(p_next->m_value)))
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binomial_heap_base_/ |
| insert_fn_imps.hpp | 79 if (Cmp_Fn::operator()(base_type::m_p_root->m_value, p_nd->m_value)) 112 if (Cmp_Fn::operator()(p_nd->m_value, p_next->m_value)) 152 const bool bubble_up = Cmp_Fn::operator()(p_nd->m_value, r_new_val); 153 p_nd->m_value = r_new_val; 159 Cmp_Fn::operator()(p_parent->m_value, p_nd->m_value))
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/ |
| erase_no_store_hash_fn_imps.hpp | 67 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), r_key)) 88 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_next_e->m_value), r_key))
|
| erase_store_hash_fn_imps.hpp | 58 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), p_e->m_hash, 80 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_next_e->m_value),
|
| insert_store_hash_fn_imps.hpp | 53 while (p_e != 0 && !hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), 65 return std::make_pair(&p_e->m_value, false);
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
| node.hpp | 62 value_type m_value; member in struct:__gnu_pbds::detail::left_child_next_sibling_heap_node_ 81 value_type m_value; member in struct:__gnu_pbds::detail::left_child_next_sibling_heap_node_
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/ |
| find_fn_imps.hpp | 48 if (s_eq_fn(r_key, PB_DS_V2F(m_p_l->m_value))) 59 if (s_eq_fn(r_key, PB_DS_V2F(p_next->m_value)))
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binomial_heap_base_/ |
| insert_fn_imps.hpp | 79 if (Cmp_Fn::operator()(base_type::m_p_root->m_value, p_nd->m_value)) 112 if (Cmp_Fn::operator()(p_nd->m_value, p_next->m_value)) 152 const bool bubble_up = Cmp_Fn::operator()(p_nd->m_value, r_new_val); 153 p_nd->m_value = r_new_val; 159 Cmp_Fn::operator()(p_parent->m_value, p_nd->m_value))
|
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/ |
| erase_no_store_hash_fn_imps.hpp | 67 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), r_key)) 88 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_next_e->m_value), r_key))
|
| erase_store_hash_fn_imps.hpp | 58 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), p_e->m_hash, 80 if (hash_eq_fn_base::operator()(PB_DS_V2F(p_next_e->m_value),
|
| insert_store_hash_fn_imps.hpp | 53 while (p_e != 0 && !hash_eq_fn_base::operator()(PB_DS_V2F(p_e->m_value), 65 return std::make_pair(&p_e->m_value, false);
|