Searched refs:m_code (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaError.h51 Code code() const { return m_code; }
56 MediaError(Code code) : m_code(code) { }
58 Code m_code; member in class:blink::FINAL
H A DMediaKeyError.h54 Code code() const { return m_code; }
61 : m_code(code), m_systemCode(systemCode) { }
63 Code m_code; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationError.h46 ErrorCode code() const { return m_code; }
51 : m_code(code)
56 ErrorCode m_code; member in class:blink::GeolocationError
H A DPositionError.h47 ErrorCode code() const { return m_code; }
54 : m_code(code)
58 ErrorCode m_code; member in class:blink::PositionError
/external/lldb/source/Core/
H A DError.cpp31 m_code (0),
41 m_code (err),
48 m_code (rhs.m_code),
55 m_code (0),
70 m_code = rhs.m_code;
84 m_code = err;
112 s = ::mach_error_string (m_code);
117 s = ::strerror (m_code);
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionState.cpp42 m_code = 0;
62 m_code = ec;
72 m_code = SecurityError;
100 m_code = V8TypeError;
108 m_code = V8RangeError;
116 m_code = ec;
123 m_code = V8TypeError;
130 m_code = SecurityError;
137 m_code = V8RangeError;
143 m_code
[all...]
H A DScheduledAction.cpp53 , m_code(String(), KURL(), TextPosition::belowRangePosition())
63 , m_code(code, url)
106 frame->script().executeScriptAndReturnValue(m_scriptState->context(), ScriptSourceCode(m_code));
122 worker->script()->evaluate(m_code);
H A DExceptionState.h64 : m_code(0)
72 : m_code(0)
84 bool hadException() const { return !m_exception.isEmpty() || m_code; }
87 ExceptionCode code() const { return m_code; }
111 ExceptionCode m_code; member in class:blink::ExceptionState
H A DScheduledAction.h64 ScriptSourceCode m_code; member in class:blink::ScheduledAction
H A DV8LazyEventListener.h78 String m_code; member in class:blink::FINAL
H A DV8LazyEventListener.cpp59 , m_code(code)
141 String listenerSource = InspectorInstrumentation::preprocessEventListener(toDocument(context)->frame(), m_code, m_sourceURL, m_functionName);
155 // we have to do this hack! What if m_code escapes to run arbitrary script?
214 String toStringString = "function " + m_functionName + "(" + m_eventParameterName + ") {\n " + m_code + "\n}";
226 // m_code = String();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DSQLError.h55 SQLErrorData(const SQLErrorData& data) : m_code(data.m_code), m_message(data.m_message.isolatedCopy()) { }
57 unsigned code() const { return m_code; }
61 SQLErrorData(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy()) { }
63 unsigned m_code; member in class:blink::SQLErrorData
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DCloseEvent.h67 unsigned short code() const { return m_code; }
79 , m_code(0) { }
84 , m_code(code)
90 , m_code(initializer.code)
94 unsigned short m_code; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMException.h47 unsigned short code() const { return m_code; }
64 DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const String& unsanitizedMessage);
66 unsigned short m_code; member in class:blink::FINAL
H A DDOMException.cpp95 m_code = code;
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DCodeAttribute_info.java97 m_code = (code != null ? code : EMPTY_BYTE_ARRAY);
98 m_codeSize = m_code.length;
110 return m_code;
171 _clone.m_code = (m_codeSize == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_code.clone ()); // does not trim
189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG
198 m_code = code;
219 m_code = new byte [(int) code_length];
220 bytes.readFully (m_code);
252 private byte [] m_code; // neve field in class:CodeAttribute_info
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileError.h80 ErrorCode code() const { return m_code; }
87 ErrorCode m_code; member in class:blink::FileError
H A DFileError.cpp142 , m_code(code)
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp19 m_code (InvalidCode),
27 m_code (InvalidCode),
43 m_code = code;
45 if (m_code)
76 // *ostrm_ptr << std::setfill(' ') << std::dec << '[' << std::setw(3) << std::right << m_code << ']' << ' ' << std::setw(30) << std::left << DW_TAG_value_to_name(m_tag) << DW_CHILDREN_value_to_name(m_has_children) << std::endl;
91 return m_code != 0 && m_tag != 0;
98 m_code = abbr_decl.Code(); // Invalidate the code since that can't be copied safely.
148 m_code = InvalidCode;
H A DDWARFAbbreviationDeclaration.h31 dw_uleb128_t Code() const { return m_code; }
32 void SetCode(dw_uleb128_t code) { m_code = code; }
75 dw_uleb128_t m_code; member in class:DWARFAbbreviationDeclaration
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDOMFileSystemSync.cpp89 int m_code; member in class:blink::__anon11185::FINAL::CreateFileResult
100 , m_code(0)
113 m_result->m_code = code;
158 exceptionState.throwDOMException(result->m_code, "Could not create '" + fileEntry->name() + "'.");
/external/lldb/include/lldb/Core/
H A DError.h304 ValueType m_code; ///< Error code as an integer value. member in class:lldb_private::Error
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 3075 milliseconds