/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
thread_local_buffer.h | 46 using BufferType = std::vector<T, Allocator>; 67 static BufferType& GetBuffer(std::size_t capacity = Capacity) { 76 static BufferType& GetEmptyBuffer() { 85 static BufferType& GetSizedBuffer(std::size_t size = Capacity) { 104 GetBufferGuard().reset(buffer_ = new BufferType(capacity)); 115 static thread_local BufferType* buffer_; 117 static std::unique_ptr<BufferType>& GetBufferGuard() { 119 static thread_local std::unique_ptr<BufferType> buffer_guard; 127 typename ThreadLocalBuffer<T, Allocator, Capacity, Slot>::BufferType*
|
buffer_wrapper.h | 102 using BufferType = typename std::vector<T, Allocator>; 103 using value_type = typename BufferType::value_type; 104 using size_type = typename BufferType::size_type; 105 using reference = typename BufferType::reference; 106 using const_reference = typename BufferType::const_reference; 107 using pointer = typename BufferType::pointer; 108 using const_pointer = typename BufferType::const_pointer; 109 using iterator = typename BufferType::iterator; 110 using const_iterator = typename BufferType::const_iterator; 113 BufferWrapper(const BufferType& buffer) : buffer_(buffer) { [all...] |
payload.h | 19 using BufferType = typename MessageBuffer<Slot>::BufferType; 30 typename BufferType::iterator& Cursor() { return cursor_; } 34 typename BufferType::const_iterator& ConstCursor() { return const_cursor_; } 37 typename BufferType::const_iterator ConstEnd() { return buffer_.cend(); } 71 BufferType& buffer_; 72 typename BufferType::iterator cursor_; 73 typename BufferType::const_iterator const_cursor_; 121 using BufferType = typename ContainerType::BufferType; [all...] |
/hardware/interfaces/cas/native/1.0/ |
types.hal | 66 enum BufferType : uint32_t { 75 BufferType type;
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
TextViewFallbackLineSpacingTest.java | 32 import android.widget.TextView.BufferType; 52 // name, enabled, BufferType 53 { "Enabled - StaticLayout", true, BufferType.NORMAL}, 54 { "Disabled - StaticLayout", false, BufferType.NORMAL}, 55 { "Enabled - DynamicLayout", true, BufferType.EDITABLE}, 56 { "Disabled - DynamicLayout", false, BufferType.EDITABLE}, 65 private final BufferType mBufferType; 68 BufferType bufferType) { 70 mBufferType = bufferType; [all...] |
TextViewTest.java | 40 import android.widget.TextView.BufferType; 105 mTextView.setText(originalText, TextView.BufferType.SPANNABLE); 129 mTextView.setText(originalText, TextView.BufferType.SPANNABLE); 147 mTextView.setText(originalText, TextView.BufferType.SPANNABLE); 166 mTextView.setText(originalText, TextView.BufferType.SPANNABLE); 281 mTextView.setText(text, BufferType.SPANNABLE); 286 mTextView.setText(text, BufferType.SPANNABLE); 290 mTextView.setText(precomputed, BufferType.SPANNABLE); 294 mTextView.setText(precomputed, BufferType.SPANNABLE); 307 mTextView.setText(text, BufferType.EDITABLE) [all...] |
/development/apps/Development/src/com/android/development/ |
LogTextBox.java | 69 public void setText(CharSequence text, BufferType type) { 70 super.setText(text, BufferType.EDITABLE);
|
/development/samples/ApiDemos/src/com/example/android/apis/text/ |
LogTextBox.java | 61 public void setText(CharSequence text, BufferType type) { 62 super.setText(text, BufferType.EDITABLE);
|
/external/conscrypt/benchmark-android/src/main/java/org/conscrypt/ |
CaliperAlpnBenchmark.java | 36 public BufferType b_buffer; 57 public BufferType bufferType() {
|
CaliperEngineHandshakeBenchmark.java | 51 public BufferType b_buffer; 72 public BufferType bufferType() {
|
CaliperEngineWrapBenchmark.java | 53 public BufferType b_buffer; 89 public BufferType bufferType() {
|
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/ |
vktProtectedMemBufferValidator.cpp | 57 const char* generateShaderBufferString (TestType testType, BufferType bufferType) 59 if (bufferType == STORAGE_BUFFER) 62 DE_ASSERT(bufferType == SAMPLER_BUFFER); 75 void initBufferValidatorPrograms (vk::SourceCollections& programCollection, TestType testType, BufferType bufferType) 157 tcu::StringTemplate validatorShaderTemplate(bufferType == SAMPLER_BUFFER ? validatorShaderTemplateSamplerBuffer : validatorShaderTemplateStorageBuffer); 161 validatorParams["BUFFER_TYPE"] = generateShaderBufferString(testType, bufferType); 182 vk::VkDescriptorType getDescriptorType (BufferType bufferType) [all...] |
/external/skia/src/shaders/gradients/ |
Sk4fGradientBase.h | 47 using BufferType = SkSTArray<8, Sk4fGradientInterval, true>; 49 const BufferType* operator->() const { return &fIntervals; } 52 BufferType fIntervals;
|
/external/skqp/src/shaders/gradients/ |
Sk4fGradientBase.h | 47 using BufferType = SkSTArray<8, Sk4fGradientInterval, true>; 49 const BufferType* operator->() const { return &fIntervals; } 52 BufferType fIntervals;
|
/frameworks/base/core/java/android/widget/ |
EditText.java | 116 super.setText(text, BufferType.EDITABLE); 121 public void setText(CharSequence text, BufferType type) { 122 super.setText(text, BufferType.EDITABLE);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
EditTextTest.java | 42 import android.widget.TextView.BufferType; 100 mEditText1.setText("android", BufferType.NORMAL); 103 mEditText1.setText("", BufferType.SPANNABLE); 106 mEditText1.setText(null, BufferType.EDITABLE); 113 mEditText1.setText("android", BufferType.EDITABLE); 128 mEditText1.setText("android", BufferType.EDITABLE); 135 mEditText1.setText("android", BufferType.EDITABLE); 142 mEditText1.setText("android", BufferType.EDITABLE); 165 mEditText1.setText("android", BufferType.EDITABLE); 172 mEditText1.setText("android", BufferType.EDITABLE) [all...] |
/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/ |
BufferType.java | 25 public enum BufferType {
|
EngineHandshakeBenchmark.java | 49 BufferType bufferType(); 68 BufferType bufferType = config.bufferType(); 74 clientApplicationBuffer = bufferType.newApplicationBuffer(clientEngine); 75 serverApplicationBuffer = bufferType.newApplicationBuffer(serverEngine); 76 clientPacketBuffer = bufferType.newPacketBuffer(clientEngine); 77 serverPacketBuffer = bufferType.newPacketBuffer(serverEngine);
|
/hardware/interfaces/drm/1.0/ |
types.hal | 296 enum BufferType : uint32_t { 335 BufferType type;
|
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/ |
MainHexEditor.c | 234 if (HMainEditor.BufferImage->BufferType != FileTypeFileBuffer) {
277 HMainEditor.BufferImage->BufferType
786 HMainEditor.BufferImage->BufferType
826 EDIT_FILE_TYPE BufferType;
828 BufferType = HMainEditor.BufferImage->BufferType;
901 HMainEditor.BufferImage->BufferType
908 HMainEditor.BufferImage->BufferType == FileTypeFileBuffer?HMainEditor.BufferImage->FileImage->FileName:HMainEditor.BufferImage->BufferType == FileTypeDiskBuffer?HMainEditor.BufferImage->DiskImage->Name:NULL,
909 HMainEditor.BufferImage->BufferType,
[all...] |
/external/conscrypt/benchmark-jmh/src/jmh/java/org/conscrypt/ |
JmhAlpnBenchmark.java | 43 public BufferType b_buffer; 64 public BufferType bufferType() {
|
JmhCipherEncryptBenchmark.java | 43 public CipherEncryptBenchmark.BufferType b_bufferType; 62 public CipherEncryptBenchmark.BufferType bufferType() {
|
JmhEngineHandshakeBenchmark.java | 59 public BufferType b_buffer; 79 public BufferType bufferType() {
|
JmhEngineWrapBenchmark.java | 60 public BufferType b_buffer; 93 public BufferType bufferType() {
|
/packages/apps/Settings/src/com/android/settings/ |
LinkifyUtils.java | 25 import android.widget.TextView.BufferType; 65 textView.setText(text.toString(), BufferType.SPANNABLE);
|