Home
last modified time | relevance | path

Searched refs:writeBool (Results 1 – 25 of 48) sorted by relevance

12

/third_party/skia/src/gpu/
DGrPersistentCacheUtils.cpp45 writer.writeBool(SkToBool(meta)); in PackCachedShaders()
47 writer.writeBool(SkToBool(meta->fSettings)); in PackCachedShaders()
49 writer.writeBool(meta->fSettings->fFragColorIsInOut); in PackCachedShaders()
50 writer.writeBool(meta->fSettings->fForceHighPrecision); in PackCachedShaders()
51 writer.writeBool(meta->fSettings->fUsePushConstants); in PackCachedShaders()
59 writer.writeBool(meta->fHasCustomColorOutput); in PackCachedShaders()
60 writer.writeBool(meta->fHasSecondaryColorOutput); in PackCachedShaders()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgramExecutable.cpp528 stream->writeBool(mPipelineHasUniformBuffers); in save()
529 stream->writeBool(mPipelineHasStorageBuffers); in save()
530 stream->writeBool(mPipelineHasAtomicCounterBuffers); in save()
531 stream->writeBool(mPipelineHasDefaultUniforms); in save()
532 stream->writeBool(mPipelineHasTextures); in save()
566 stream->writeBool(uniform.isActive(shaderType)); in save()
613 stream->writeBool(outputVar.ignored); in save()
629 stream->writeBool(mYUVOutput); in save()
636 stream->writeBool(outputVar.ignored); in save()
DProgram.cpp717 stream->writeBool(var.isActive(shaderType)); in WriteShaderVariableBuffer()
754 stream->writeBool(var.isActive(shaderType)); in WriteBufferVariable()
776 stream->writeBool(block.isArray); in WriteInterfaceBlock()
799 stream->writeBool(block.isRowMajorLayout); in WriteShInterfaceBlock()
801 stream->writeBool(block.staticUse); in WriteShInterfaceBlock()
802 stream->writeBool(block.active); in WriteShInterfaceBlock()
958 stream->writeBool(var.isRowMajorMatrix); in WriteBlockMemberInfo()
980 stream->writeBool(var.staticUse); in WriteShaderVar()
981 stream->writeBool(var.active); in WriteShaderVar()
989 stream->writeBool(var.isRowMajorLayout); in WriteShaderVar()
[all …]
DBinaryStream.h254 void writeBool(bool value) in writeBool() function
/third_party/skia/src/shaders/
DSkColorShader.cpp63 buffer.writeBool(true); in flatten()
66 buffer.writeBool(false); in flatten()
DSkShader.cpp44 buffer.writeBool(hasLocalM); in flatten()
/third_party/skia/src/core/
DSkWriteBuffer.h39 virtual void writeBool(bool value) = 0;
104 void writeBool(bool value) override;
DSkWriteBuffer.cpp45 void SkBinaryWriteBuffer::writeBool(bool value) { in writeBool() function in SkBinaryWriteBuffer
46 fWriter.writeBool(value); in writeBool()
DSkColorFilter.cpp416 buffer.writeBool(fUseDstTF); in SK_FLATTENABLE_HOOKS()
417 buffer.writeBool(fUseDstGamut); in SK_FLATTENABLE_HOOKS()
418 buffer.writeBool(fUseDstAT); in SK_FLATTENABLE_HOOKS()
DSkBuffer.h122 void writeBool(bool x) { this->write8(x); } in writeBool() function
DSkColorFilter_Matrix.cpp44 buffer.writeBool(fDomain == Domain::kRGBA); in flatten()
DSkWriter32.h92 bool writeBool(bool value) { in writeBool() function
DSkPictureRecord.cpp895 if (fWriter.writeBool(rect != nullptr)) { in addRectPtr()
905 if (fWriter.writeBool(rect != nullptr)) { in addIRectPtr()
919 fWriter.writeBool(sampling.useCubic); in addSampling()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DBinaryWriter.java504 writeBool(list.get(i)); in writeBoolList_Internal()
511 writeBool(fieldNumber, list.get(i)); in writeBoolList_Internal()
522 writeBool(list.getBoolean(i)); in writeBoolList_Internal()
529 writeBool(fieldNumber, list.getBoolean(i)); in writeBoolList_Internal()
699 writer.writeBool(fieldNumber, (Boolean) object); in writeMapEntryField()
880 abstract void writeBool(boolean value); in writeBool() method in BinaryWriter
1033 public void writeBool(int fieldNumber, boolean value) throws IOException { in writeBool() method in BinaryWriter.SafeHeapWriter
1127 void writeBool(boolean value) { in writeBool() method in BinaryWriter.SafeHeapWriter
1570 public void writeBool(int fieldNumber, boolean value) { in writeBool() method in BinaryWriter.UnsafeHeapWriter
1664 void writeBool(boolean value) { in writeBool() method in BinaryWriter.UnsafeHeapWriter
[all …]
DWriter.java84 void writeBool(int fieldNumber, boolean value) throws IOException; in writeBool() method
DCodedOutputStreamWriter.java118 public void writeBool(int fieldNumber, boolean value) throws IOException { in writeBool() method in CodedOutputStreamWriter
119 output.writeBool(fieldNumber, value); in writeBool()
396 output.writeBool(fieldNumber, value.get(i)); in writeBoolList()
DCodedOutputStream.java289 public abstract void writeBool(int fieldNumber, boolean value) throws IOException; in writeBool() method in CodedOutputStream
1208 public final void writeBool(final int fieldNumber, final boolean value) throws IOException { in writeBool() method in CodedOutputStream.ArrayEncoder
1601 public void writeBool(final int fieldNumber, final boolean value) throws IOException { in writeBool() method in CodedOutputStream.SafeDirectNioEncoder
1935 public void writeBool(int fieldNumber, boolean value) throws IOException { in writeBool() method in CodedOutputStream.UnsafeDirectNioEncoder
2446 public void writeBool(final int fieldNumber, final boolean value) throws IOException { in writeBool() method in CodedOutputStream.ByteOutputEncoder
2760 public void writeBool(final int fieldNumber, final boolean value) throws IOException { in writeBool() method in CodedOutputStream.OutputStreamEncoder
/third_party/skia/tools/debugger/
DJsonWriteBuffer.h24 void writeBool(bool value) override;
DJsonWriteBuffer.cpp39 void JsonWriteBuffer::writeBool(bool value) { in writeBool() function in JsonWriteBuffer
/third_party/protobuf/php/src/Google/Protobuf/Internal/
DGPBWire.php352 public static function writeBool(&$output, $value) function in Google\\Protobuf\\Internal\\GPBWire
559 if (!GPBWire::writeBool($output, $value)) {
/third_party/protobuf/js/experimental/runtime/kernel/
Dwriter.js142 writeBool(fieldNumber, value) { method in Writer
482 values.forEach(val => this.writeBool(fieldNumber, val));
/third_party/skia/src/effects/imagefilters/
DSkPictureImageFilter.cpp78 buffer.writeBool(hasPicture); in flatten()
/third_party/protobuf/js/binary/
Dwriter.js315 this.writeBool(field, /** @type {boolean} */(value));
749 jspb.BinaryWriter.prototype.writeBool = function(field, value) { method in jspb.BinaryWriter
753 this.encoder_.writeBool(value);
1284 this.writeBool(field, value[i]);
1783 this.encoder_.writeBool(value[i]);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DProgramD3D.cpp1339 stream->writeBool(mShaderSamplers[shaderType][i].active); in save()
1351 stream->writeBool(mImagesCS[imageIndex].active); in save()
1358 stream->writeBool(mReadonlyImagesCS[imageIndex].active); in save()
1408 stream->writeBool(uniformBlock.mUseStructuredBuffers[shaderType]); in save()
1430 stream->writeBool(mUsesFragDepth); in save()
1431 stream->writeBool(mHasANGLEMultiviewEnabled); in save()
1432 stream->writeBool(mUsesVertexID); in save()
1433 stream->writeBool(mUsesViewID); in save()
1434 stream->writeBool(mUsesPointSize); in save()
1435 stream->writeBool(mUsesFlatInterpolation); in save()
/third_party/protobuf/objectivec/
DGPBCodedOutputStream.h476 - (void)writeBool:(int32_t)fieldNumber value:(BOOL)value;

12