/external/chromium_org/third_party/WebKit/Source/modules/webmidi/ |
D | MIDIOutput.cpp | 63 , m_offset(0) { } in MessageValidator() 106 bool isEndOfData() { return m_offset >= m_length; } in isEndOfData() 107 bool isSysex() { return m_data[m_offset] == 0xf0; } in isSysex() 108 bool isSystemMessage() { return m_data[m_offset] >= 0xf0; } in isSystemMessage() 109 bool isEndOfSysex() { return m_data[m_offset] == 0xf7; } in isEndOfSysex() 110 bool isRealTimeMessage() { return m_data[m_offset] >= 0xf8; } in isRealTimeMessage() 111 bool isStatusByte() { return m_data[m_offset] & 0x80; } in isStatusByte() 112 …dStatusByte() { return m_data[m_offset] == 0xf4 || m_data[m_offset] == 0xf5 || m_data[m_offset] ==… in isReservedStatusByte() 116 for (; !isEndOfData(); m_offset++) { in acceptRealTimeMessages() 127 for (m_offset++; !isEndOfData(); m_offset++) { in acceptCurrentSysex() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/parser/ |
D | MediaQueryInputStream.cpp | 13 : m_offset(0) in MediaQueryInputStream() 20 ASSERT((m_offset + lookaheadOffset) <= maxLength()); in peek() 21 if ((m_offset + lookaheadOffset) >= m_string.length()) in peek() 23 return m_string[m_offset + lookaheadOffset]; in peek() 28 ASSERT(m_offset + offset <= maxLength()); in advance() 29 m_offset += offset; in advance() 34 --m_offset; in pushBack() 40 ASSERT(start <= end && ((m_offset + end) <= m_string.length())); in getUInt() 45 …result = charactersToUInt64Strict(m_string.characters8() + m_offset + start, end - start, &isResul… in getUInt() 47 …result = charactersToUInt64Strict(m_string.characters16() + m_offset + start, end - start, &isResu… in getUInt() [all …]
|
D | MediaQueryInputStream.h | 34 return m_string.length() - m_offset; in leftChars() 44 … while ((m_offset + offset) < m_string.length() && characterPredicate(m_string[m_offset + offset])) in skipWhilePredicate() 50 size_t m_offset;
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | TextRunIterator.h | 40 , m_offset(0) in TextRunIterator() 46 , m_offset(offset) in TextRunIterator() 52 , m_offset(other.m_offset) in TextRunIterator() 56 unsigned offset() const { return m_offset; } in offset() 57 void increment() { m_offset++; } in increment() 58 bool atEnd() const { return !m_textRun || m_offset >= m_textRun->length(); } in atEnd() 59 UChar current() const { return (*m_textRun)[m_offset]; } in current() 65 return m_offset == other.m_offset && m_textRun == other.m_textRun; 72 int m_offset; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | RasterShape.h | 44 : m_offset(offset) in m_offset() function 55 ASSERT(y + m_offset >= 0 && static_cast<unsigned>(y + m_offset) < m_intervals.size()); in intervalAt() 56 return m_intervals[y + m_offset]; in intervalAt() 61 ASSERT(y + m_offset >= 0 && static_cast<unsigned>(y + m_offset) < m_intervals.size()); in intervalAt() 62 return m_intervals[y + m_offset]; in intervalAt() 71 int offset() const { return m_offset; } in offset() 72 int minY() const { return -m_offset; } in minY() 73 int maxY() const { return -m_offset + m_intervals.size(); } in maxY() 77 int m_offset; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/ |
D | VDMXParser.cpp | 49 , m_offset(0) { } in Buffer() 53 if (m_offset + numBytes > m_length) in skip() 55 m_offset += numBytes; in skip() 61 if (m_offset + sizeof(uint8_t) > m_length) in readU8() 63 *value = m_buffer[m_offset]; in readU8() 64 m_offset += sizeof(uint8_t); in readU8() 70 if (m_offset + sizeof(uint16_t) > m_length) in readU16() 72 memcpy(value, m_buffer + m_offset, sizeof(uint16_t)); in readU16() 74 m_offset += sizeof(uint16_t); in readU16() 85 return m_offset; in offset() [all …]
|
/external/lldb/include/lldb/Core/ |
D | Address.h | 104 m_offset (LLDB_INVALID_ADDRESS) in Address() 119 m_offset(rhs.m_offset.load()) in Address() 138 m_offset (offset) in Address() 186 m_offset = LLDB_INVALID_ADDRESS; in Clear() 336 GetOffset () const { return m_offset; } in GetOffset() 371 return m_offset != LLDB_INVALID_ADDRESS; in IsValid() 463 bool changed = m_offset != offset; in SetOffset() 464 m_offset = offset; in SetOffset() 472 m_offset = addr; in SetRawAddress() 478 if (m_offset != LLDB_INVALID_ADDRESS) in Slide() [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | StringView.h | 41 : m_offset(0) in StringView() 48 , m_offset(0) in StringView() 55 , m_offset(offset) in StringView() 64 m_offset += offset; in narrow() 78 return m_impl->characters8() + m_offset; in characters8() 86 return m_impl->characters16() + m_offset; in characters16() 100 unsigned m_offset; variable
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | StyleReflection.h | 44 return m_direction == o.m_direction && m_offset == o.m_offset && m_mask == o.m_mask; 49 Length offset() const { return m_offset; } in offset() 53 void setOffset(const Length& l) { m_offset = l; } in setOffset() 59 , m_offset(0, Fixed) in StyleReflection() 65 Length m_offset; variable
|
D | OutlineValue.h | 36 : m_offset(0) in OutlineValue() 42 return BorderValue::operator==(o) && m_offset == o.m_offset && m_isAuto == o.m_isAuto; 50 int offset() const { return m_offset; } in offset() 54 int m_offset;
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | DeleteFromTextNodeCommand.cpp | 39 , m_offset(offset) in DeleteFromTextNodeCommand() 43 ASSERT(m_offset <= m_node->length()); in DeleteFromTextNodeCommand() 44 ASSERT(m_offset + m_count <= m_node->length()); in DeleteFromTextNodeCommand() 55 m_text = m_node->substringData(m_offset, m_count, exceptionState); in doApply() 59 …m_node->deleteData(m_offset, m_count, exceptionState, CharacterData::DeprecatedRecalcStyleImmediat… in doApply() 69 …m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmedia… in doUnapply()
|
D | SplitTextNodeCommand.cpp | 41 , m_offset(offset) in SplitTextNodeCommand() 49 ASSERT(m_offset > 0); in SplitTextNodeCommand() 50 ASSERT(m_offset < m_text2->length()); in SplitTextNodeCommand() 59 String prefixText = m_text2->substringData(0, m_offset, IGNORE_EXCEPTION); in doApply() 65 document().markers().copyMarkers(m_text2.get(), 0, m_offset, m_text1.get(), 0); in doApply() 103 …m_text2->deleteData(0, m_offset, exceptionState, CharacterData::DeprecatedRecalcStyleImmediatlelyF… in insertText1AndTrimText2()
|
D | InsertIntoTextNodeCommand.cpp | 40 , m_offset(offset) in InsertIntoTextNodeCommand() 44 ASSERT(m_offset <= m_node->length()); in InsertIntoTextNodeCommand() 60 renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1); in doApply() 63 …m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmedia… in doApply() 71 …m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcSty… in doUnapply()
|
D | RenderedPosition.cpp | 69 , m_offset(0) in RenderedPosition() 75 position.getInlineBoxAndOffset(m_inlineBox, m_offset); in RenderedPosition() 85 , m_offset(0) in RenderedPosition() 91 position.getInlineBoxAndOffset(affinity, m_inlineBox, m_offset); in RenderedPosition() 114 … (m_renderer == other.m_renderer && m_inlineBox == other.m_inlineBox && m_offset == other.m_offset) in isEquivalent() 210 return createLegacyEditingPosition(m_renderer->node(), m_offset); in positionAtLeftBoundaryOfBiDiRun() 220 return createLegacyEditingPosition(m_renderer->node(), m_offset); in positionAtRightBoundaryOfBiDiRun() 230 …IntRect localRect = pixelSnappedIntRect(m_renderer->localCaretRect(m_inlineBox, m_offset, extraWid… in absoluteRect()
|
D | RenderedPosition.h | 78 …bool atLeftmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretLeftmostO… in atLeftmostOffsetInBox() 79 …bool atRightmostOffsetInBox() const { return m_inlineBox && m_offset == m_inlineBox->caretRightmos… in atRightmostOffsetInBox() 85 int m_offset; variable 97 , m_offset(0) in RenderedPosition() 106 , m_offset(offset) in RenderedPosition()
|
D | SplitTextNodeContainingElementCommand.cpp | 37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset) in SplitTextNodeContainingElementCommand() 46 ASSERT(m_offset > 0); in doApply() 48 splitTextNode(m_text.get(), m_offset); in doApply()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSReflectValue.cpp | 36 return m_direction->cssText() + ' ' + m_offset->cssText() + ' ' + m_mask->cssText(); in customCSSText() 37 return m_direction->cssText() + ' ' + m_offset->cssText(); in customCSSText() 43 && compareCSSValuePtr(m_offset, other.m_offset) in equals() 50 visitor->trace(m_offset); in traceAfterDispatch()
|
D | CSSReflectValue.h | 46 CSSPrimitiveValue* offset() const { return m_offset.get(); } in offset() 59 , m_offset(offset) in CSSReflectValue() 65 RefPtrWillBeMember<CSSPrimitiveValue> m_offset; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | Clock.cpp | 36 , m_offset(0) in Clock() 44 m_offset = time; in setCurrentTime() 49 return currentDelta() + m_offset; in currentTime() 54 m_offset += currentDelta(); in setPlayRate() 73 m_offset += currentDelta(); in stop()
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | Keyframe.h | 24 void setOffset(double offset) { m_offset = offset; } in setOffset() 25 double offset() const { return m_offset; } in offset() 56 double offset() const { return m_offset; } in offset() 74 double m_offset; variable 83 : m_offset(nullValue()) in Keyframe() 89 : m_offset(offset) in Keyframe() 95 double m_offset; variable
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Position.cpp | 84 , m_offset(offset.value()) in Position() 85 , m_anchorType(anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset)) in Position() 93 , m_offset(0) in Position() 106 , m_offset(offset) in Position() 117 , m_offset(static_cast<int>(offset)) in Position() 129 m_offset = offset; in moveToPosition() 131 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset); in moveToPosition() 136 m_offset = offset; in moveToOffset() 138 m_anchorType = anchorTypeForLegacyEditingPosition(m_anchorNode.get(), m_offset); in moveToOffset() 187 return minOffsetForNode(m_anchorNode.get(), m_offset); in computeOffsetInContainerNode() [all …]
|
D | Position.h | 65 : m_offset(0) in Position() 74 int value() const { return m_offset; } in value() 77 explicit LegacyEditingOffset(int offset) : m_offset(offset) { } in LegacyEditingOffset() 81 int m_offset; variable 95 …void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLe… in clear() 109 return m_offset; in offsetInContainerNode() 116 return m_offset; in deprecatedEditingOffset() 222 int m_offset; variable
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFDebugAbbrev.h | 30 m_offset(DW_INVALID_OFFSET), in DWARFAbbreviationDeclarationSet() 37 m_offset(offset), in DWARFAbbreviationDeclarationSet() 44 dw_offset_t GetOffset() const { return m_offset; } in GetOffset() 52 dw_offset_t m_offset;
|
/external/lldb/source/Core/ |
D | Address.cpp | 218 m_offset (abs_addr) in Address() 224 m_offset (LLDB_INVALID_ADDRESS) in Address() 235 m_offset = rhs.m_offset.load(); in operator =() 250 m_offset = file_addr - section_sp->GetFileAddress(); in ResolveAddressUsingFileSections() 254 m_offset = file_addr; in ResolveAddressUsingFileSections() 282 return sect_file_addr + m_offset; in GetFileAddress() 285 return m_offset; in GetFileAddress() 295 return m_offset; in GetLoadAddress() 306 return sect_load_addr + m_offset; in GetLoadAddress() 337 m_offset = target->GetCallableLoadAddress(m_offset, GetAddressClass()); in SetCallableLoadAddress() [all …]
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_sunras.cpp | 78 m_offset = -1; in GrFmtSunRasterReader() 142 m_offset = m_strm.GetPos(); in ReadHeader() 144 assert( m_offset == 32 + m_maplength ); in ReadHeader() 155 m_offset = m_strm.GetPos(); in ReadHeader() 157 assert( m_offset == 32 + m_maplength ); in ReadHeader() 165 m_offset = -1; in ReadHeader() 187 if( m_offset < 0 || !m_strm.IsOpened()) in ReadData() 201 m_strm.SetPos( m_offset ); in ReadData()
|