/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
D | CodeAttribute_info.java | 97 m_code = (code != null ? code : EMPTY_BYTE_ARRAY); in CodeAttribute_info() 98 m_codeSize = m_code.length; in CodeAttribute_info() 110 return m_code; in getCode() 171 … _clone.m_code = (m_codeSize == 0 ? EMPTY_BYTE_ARRAY : (byte []) m_code.clone ()); // does not trim in clone() 189 out.write (m_code, 0, m_codeSize); // TODO: THIS IS WRONG in writeInClassFormat() 198 m_code = code; in setCode() 219 m_code = new byte [(int) code_length]; in CodeAttribute_info() 220 bytes.readFully (m_code); in CodeAttribute_info() 252 private byte [] m_code; // never null [valid content extent is m_codeSize] field in CodeAttribute_info
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ExceptionState.h | 57 : m_code(0) in ExceptionState() 65 : m_code(0) in ExceptionState() 73 : m_code(0) in ExceptionState() 88 bool hadException() const { return !m_exception.isEmpty() || m_code; } in hadException() 91 ExceptionCode code() const { return m_code; } in code() 96 if (!m_code) in throwIfNeeded() 98 throwUninformativeAndGenericDOMException(m_code); in throwIfNeeded() 110 ExceptionCode m_code;
|
D | ExceptionState.cpp | 42 m_code = 0; in clearException() 54 m_code = ec; in throwDOMException() 62 m_code = SecurityError; in throwSecurityError() 82 m_code = TypeError; in throwTypeError() 88 m_code = ec; in throwDOMException() 93 m_code = TypeError; in throwTypeError() 98 m_code = SecurityError; in throwSecurityError()
|
D | ScheduledAction.cpp | 51 , m_code(String(), KURL(), TextPosition::belowRangePosition()) in ScheduledAction() 61 , m_code(code, url) in ScheduledAction() 102 frame->script().executeScriptAndReturnValue(context, ScriptSourceCode(m_code)); in execute() 120 worker->script()->evaluate(m_code); in execute()
|
D | V8LazyEventListener.cpp | 59 , m_code(code) in V8LazyEventListener() 134 …orInstrumentation::preprocessEventListener(toDocument(context)->frame(), m_code, m_sourceURL, m_fu… in prepareListenerObject() 213 …ingString = "function " + m_functionName + "(" + m_eventParameterName + ") {\n " + m_code + "\n}"; in prepareListenerObject()
|
D | ScheduledAction.h | 64 ScriptSourceCode m_code; variable
|
D | V8LazyEventListener.h | 74 String m_code; variable
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
D | CloseEvent.h | 69 unsigned short code() const { return m_code; } in code() 79 , m_code(0) in CloseEvent() 87 , m_code(code) in CloseEvent() 96 , m_code(initializer.code) in CloseEvent() 103 unsigned short m_code; variable
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | MediaError.h | 47 Code code() const { return m_code; } in code() 50 MediaError(Code code) : m_code(code) in MediaError() 55 Code m_code; variable
|
D | MediaKeyError.h | 49 Code code() const { return m_code; } in code() 53 …explicit MediaKeyError(Code code, unsigned long systemCode) : m_code(code), m_systemCode(systemCod… in MediaKeyError() 58 Code m_code; variable
|
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
D | GeolocationError.h | 45 ErrorCode code() const { return m_code; } in code() 50 : m_code(code) in GeolocationError() 55 ErrorCode m_code; variable
|
D | PositionError.h | 46 ErrorCode code() const { return m_code; } in code() 53 : m_code(code) in PositionError() 60 ErrorCode m_code; variable
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | DOMException.h | 45 unsigned short code() const { return m_code; } in code() 61 …DOMException(unsigned short m_code, const String& name, const String& sanitizedMessage, const Stri… 63 unsigned short m_code; variable
|
D | DOMException.cpp | 92 m_code = code; in DOMException()
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
D | SQLError.h | 50 unsigned code() const { return m_code; } in code() 70 SQLError(unsigned code, const String& message) : m_code(code), m_message(message.isolatedCopy()) in SQLError() 75 unsigned m_code; variable
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
D | DOMFileSystemSync.cpp | 90 int m_code; member in WebCore::__anonfe1df2520111::CreateFileHelper::CreateFileResult 96 , m_code(0) in CreateFileResult() 114 m_result->m_code = code; in didFail() 172 exceptionState.throwUninformativeAndGenericDOMException(result->m_code); in createFile()
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
D | FileError.h | 75 ErrorCode code() const { return m_code; } in code() 82 ErrorCode m_code; variable
|
D | FileError.cpp | 142 , m_code(code) in FileError()
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | MockWebSpeechRecognizer.cpp | 95 , m_code(code) in ErrorTask() 100 …() OVERRIDE { m_recognizer->client()->didReceiveError(m_recognizer->handle(), m_message, m_code); } in run() 103 WebSpeechRecognizerClient::ErrorCode m_code; member in WebTestRunner::__anon7cf61bc20111::ErrorTask
|