HomeSort by relevance Sort by last modified time
    Searched defs:m_value (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/pdfium/core/fxcrt/css/
cfx_cssvalue.h 14 CFX_CSSPrimitiveType GetType() const { return m_value; }
20 CFX_CSSPrimitiveType m_value; member in class:CFX_CSSValue
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 27 if (m_value == null)
29 m_value = new StringBuffer (value);
33 m_value.append (separator);
34 m_value.append (value); // no trailing separator kept
41 return m_value != null ? m_value.toString () : null;
62 private StringBuffer m_value; field in class:StringValue
PropertyElement.java 34 return m_value;
44 m_value = value;
54 private String m_name, m_value; field in class:PropertyElement
  /external/testng/src/main/java/org/testng/internal/annotations/
ExpectedExceptionsAnnotation.java 15 private Class[] m_value = {}; field in class:ExpectedExceptionsAnnotation
19 return m_value;
23 m_value = value;
ListenersAnnotation.java 8 private Class<? extends ITestNGListener>[] m_value; field in class:ListenersAnnotation
12 return m_value;
17 m_value = value;
ParametersAnnotation.java 16 private String[] m_value = {}; field in class:ParametersAnnotation
20 return m_value;
24 m_value = value;
  /external/v8/src/inspector/
v8-function-call.h 60 v8::Local<v8::Value> m_value; member in class:v8_inspector::V8FunctionCall
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_Double_info.java 33 public double m_value; field in class:CONSTANT_Double_info
38 m_value = value;
55 return Double.toString (m_value);
75 out.writeDouble (m_value);
83 m_value = bytes.readDouble ();
CONSTANT_Float_info.java 33 public float m_value; field in class:CONSTANT_Float_info
38 m_value = value;
55 return Float.toString (m_value);
66 out.writeFloat (m_value);
74 m_value = bytes.readFloat ();
CONSTANT_Integer_info.java 34 public int m_value; field in class:CONSTANT_Integer_info
39 m_value = value;
56 return Integer.toString (m_value);
67 out.writeInt (m_value);
75 m_value = bytes.readInt ();
CONSTANT_Long_info.java 35 public long m_value; field in class:CONSTANT_Long_info
40 m_value = value;
57 return Long.toString (m_value);
76 out.writeLong (m_value);
84 m_value = bytes.readLong ();
CONSTANT_Utf8_info.java 37 public String m_value; field in class:CONSTANT_Utf8_info
42 m_value = value;
60 return "CONSTANT_Utf8: [" + m_value + ']';
71 out.writeUTF (m_value);
79 m_value = bytes.readUTF ();
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
function-templates-original.cc 26 if (!isInBounds<T>(rhs.m_value))
28 m_value = static_cast<T>(rhs.m_value);
35 T m_value; member in class:WTF::Checked
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-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-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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_
  /external/deqp/framework/opengl/
gluContextInfo.hpp 43 , m_value (defaultValue)
52 m_value = m_compute(context);
55 return m_value;
60 mutable T m_value; member in class:glu::CachedValue
  /external/deqp/modules/internal/
ditSeedBuilderTests.cpp 46 , m_value (value)
56 builder << m_value; local
58 log << TestLog::Message << "Value: " << m_value << TestLog::EndMessage;
71 T m_value; member in class:dit::__anon18907::SeedBuilderTest
ditBuildInfoTests.cpp 96 , m_value (value)
102 m_testCtx.getLog() << TestLog::Message << m_valueName << " = " << m_value << TestLog::EndMessage;
109 std::string m_value; member in class:dit::BuildInfoStringCase
120 , m_value (value)
127 const char* valueName = m_getString(m_value);
129 std::string logValue = valueName ? std::string(valueName) : de::toString(m_value);
140 int m_value; member in class:dit::BuildEnumCase
  /frameworks/native/libs/math/include/math/
mat2.h 108 col_type m_value[NUM_COLS]; member in class:android::details::TMat22
117 return m_value[column];
122 return m_value[column];
139 : m_value{ col_type(col_type::NO_INIT),
251 m_value[0] = col_type(1, 0);
252 m_value[1] = col_type(0, 1);
258 m_value[0] = col_type(v, 0);
259 m_value[1] = col_type(0, v);
265 m_value[0] = col_type(v.x, 0);
266 m_value[1] = col_type(0, v.y)
    [all...]
mat3.h 115 col_type m_value[NUM_COLS]; member in class:android::details::TMat33
124 return m_value[column];
129 return m_value[column];
146 : m_value{ col_type(col_type::NO_INIT),
273 m_value[0] = col_type(1, 0, 0);
274 m_value[1] = col_type(0, 1, 0);
275 m_value[2] = col_type(0, 0, 1);
281 m_value[0] = col_type(v, 0, 0);
282 m_value[1] = col_type(0, v, 0);
283 m_value[2] = col_type(0, 0, v)
    [all...]
mat4.h 121 col_type m_value[NUM_COLS]; member in class:android::details::TMat44
130 return m_value[column];
135 return m_value[column];
150 : m_value{ col_type(col_type::NO_INIT),
306 return TMat33<T>(m_value[0].xyz, m_value[1].xyz, m_value[2].xyz);
319 m_value[0] = col_type(1, 0, 0, 0);
320 m_value[1] = col_type(0, 1, 0, 0);
321 m_value[2] = col_type(0, 0, 1, 0)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/rb_tree_map_/
node.hpp 92 std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> ")
100 value_type m_value; member in struct:__gnu_pbds::detail::rb_tree_node_
127 { std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> "); }
133 value_type m_value; member in struct:__gnu_pbds::detail::rb_tree_node_
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/splay_tree_/
node.hpp 72 { std::cout << PB_DS_V2F(m_value) << "(" << m_metadata << ")"; }
87 value_type m_value; member in struct:__gnu_pbds::detail::splay_tree_node_
114 { std::cout << PB_DS_V2F(m_value); }
120 value_type m_value; member in struct:__gnu_pbds::detail::splay_tree_node_
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/rb_tree_map_/
node.hpp 92 std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> ")
100 value_type m_value; member in struct:__gnu_pbds::detail::rb_tree_node_
127 { std::cout << PB_DS_V2F(m_value) <<(m_red? " <r> " : " <b> "); }
133 value_type m_value; member in struct:__gnu_pbds::detail::rb_tree_node_
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/splay_tree_/
node.hpp 72 { std::cout << PB_DS_V2F(m_value) << "(" << m_metadata << ")"; }
87 value_type m_value; member in struct:__gnu_pbds::detail::splay_tree_node_
114 { std::cout << PB_DS_V2F(m_value); }
120 value_type m_value; member in struct:__gnu_pbds::detail::splay_tree_node_

Completed in 399 milliseconds

1 2 3 4