Home
last modified time | relevance | path

Searched refs:TextBuffer (Results 1 – 13 of 13) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestTextBuffer.java14 TextBuffer tb = new TextBuffer(new BufferRecycler()); in testSimple()
29 TextBuffer tb = new TextBuffer(null); in testLonger()
44 final int len = TextBuffer.MAX_SEGMENT_LEN * 3 / 2; in testLongAppend()
53 TextBuffer tb = new TextBuffer(new BufferRecycler()); in testLongAppend()
61 tb = new TextBuffer(new BufferRecycler()); in testLongAppend()
72 TextBuffer tb = new TextBuffer(new BufferRecycler()); in testExpand()
88 TextBuffer tb = new TextBuffer(new BufferRecycler()); in testEmpty()
97 TextBuffer textBuffer = new TextBuffer(null); in testResetWithAndSetCurrentAndReturn()
103 TextBuffer textBuffer = new TextBuffer(null); in testGetCurrentSegment()
114 TextBuffer textBuffer = new TextBuffer(bufferRecycler); in testAppendTakingTwoAndThreeInts()
[all …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/
DSegmentedStringWriter.java6 import com.fasterxml.jackson.core.util.TextBuffer;
18 final private TextBuffer _buffer;
22 _buffer = new TextBuffer(br); in SegmentedStringWriter()
DJsonStringEncoder.java6 import com.fasterxml.jackson.core.util.TextBuffer;
72 TextBuffer textBuffer = null; in quoteAsString()
86 textBuffer = TextBuffer.fromInitial(outputBuffer); in quoteAsString()
112 textBuffer = TextBuffer.fromInitial(outputBuffer); in quoteAsString()
143 TextBuffer textBuffer = null; in quoteAsString()
163 textBuffer = TextBuffer.fromInitial(outputBuffer); in quoteAsString()
189 textBuffer = TextBuffer.fromInitial(outputBuffer); in quoteAsString()
DIOContext.java5 import com.fasterxml.jackson.core.util.TextBuffer;
136 public TextBuffer constructTextBuffer() { in constructTextBuffer()
137 return new TextBuffer(_bufferRecycler); in constructTextBuffer()
/external/llvm-project/clang/tools/clang-format-vs/ClangFormat/
DClangFormatPackage.cs293 string text = view.TextBuffer.CurrentSnapshot.GetText(); in FormatSelection()
329 string text = view.TextBuffer.CurrentSnapshot.GetText(); in FormatView()
332 view.TextBuffer.Insert(view.TextBuffer.CurrentSnapshot.Length, Environment.NewLine); in FormatView()
447 string text = view.TextBuffer.CurrentSnapshot.GetText(); in ApplyClangFormatReplacements()
451 var edit = view.TextBuffer.CreateEdit(); in ApplyClangFormatReplacements()
DVsix.cs76 …if (view != null && view.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document)) in GetTextDocument()
/external/clang/tools/clang-format-vs/ClangFormat/
DClangFormatPackage.cs196 string text = view.TextBuffer.CurrentSnapshot.GetText(); in MenuItemCallback()
209 var edit = view.TextBuffer.CreateEdit(); in MenuItemCallback()
355 if (view.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document)) in GetDocumentParent()
365 if (view.TextBuffer.Properties.TryGetProperty(typeof(ITextDocument), out document)) in GetDocumentPath()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DTextBuffer.java27 public final class TextBuffer class
123 public TextBuffer(BufferRecycler allocator) { in TextBuffer() method in TextBuffer
130 protected TextBuffer(BufferRecycler allocator, char[] initialSegment) { in TextBuffer() method in TextBuffer
143 public static TextBuffer fromInitial(char[] initialSegment) { in fromInitial()
144 return new TextBuffer(null, initialSegment); in fromInitial()
/external/python/cpython2/Mac/Modules/fm/
Dfmsupport.py25 TextBuffer = RevVarInputBufferType() variable
/external/jackson-core/release-notes/
DCREDITS-2.x58 * Reported, contributed fix for#182: Inconsistent TextBuffer#getTextBuffer behavior
DVERSION-2.x42 #606: Do not clear aggregated contents of `TextBuffer` when `releaseBuffers()` called
104 #539: Reduce max size of recycled byte[]/char[] blocks by `TextBuffer`, `ByteArrayBuilder`
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/
DParserBase.java17 import com.fasterxml.jackson.core.util.TextBuffer;
151 protected final TextBuffer _textBuffer;
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DReaderBasedJsonParser.java1792 TextBuffer tb = _textBuffer; in _parseName2()
2033 TextBuffer tb = _textBuffer; in _handleOddName2()