/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/ |
D | SeqParameterSet.java | 83 .readBool("SPS: constraint_set_0_flag"); in read() 85 .readBool("SPS: constraint_set_1_flag"); in read() 87 .readBool("SPS: constraint_set_2_flag"); in read() 89 .readBool("SPS: constraint_set_3_flag"); in read() 100 .readBool("SPS: residual_color_transform_flag"); in read() 107 .readBool("SPS: qpprime_y_zero_transform_bypass_flag"); in read() 109 .readBool("SPS: seq_scaling_matrix_present_lag"); in read() 124 .readBool("SPS: delta_pic_order_always_zero_flag"); in read() 139 .readBool("SPS: gaps_in_frame_num_value_allowed_flag"); in read() 144 sps.frame_mbs_only_flag = reader.readBool("SPS: frame_mbs_only_flag"); in read() [all …]
|
D | PictureParameterSet.java | 93 .readBool("PPS: entropy_coding_mode_flag"); in read() 95 .readBool("PPS: pic_order_present_flag"); in read() 118 .readBool("PPS: slice_group_change_direction_flag"); in read() 143 pps.weighted_pred_flag = reader.readBool("PPS: weighted_pred_flag"); in read() 151 .readBool("PPS: deblocking_filter_control_present_flag"); in read() 153 .readBool("PPS: constrained_intra_pred_flag"); in read() 155 .readBool("PPS: redundant_pic_cnt_present_flag"); in read() 159 .readBool("PPS: transform_8x8_mode_flag"); in read() 161 .readBool("PPS: pic_scaling_matrix_present_flag"); in read() 166 .readBool("PPS: pic_scaling_list_present_flag"); in read()
|
/external/skia/src/gpu/ |
D | GrPersistentCacheUtils.cpp | 96 if (reader->readBool() && meta) { in UnpackCachedShaders() 99 if (reader->readBool()) { in UnpackCachedShaders() 100 meta->fSettings->fFlipY = reader->readBool(); in UnpackCachedShaders() 101 meta->fSettings->fFragColorIsInOut = reader->readBool(); in UnpackCachedShaders() 102 meta->fSettings->fForceHighPrecision = reader->readBool(); in UnpackCachedShaders() 103 meta->fSettings->fUsePushConstants = reader->readBool(); in UnpackCachedShaders() 115 meta->fHasCustomColorOutput = reader->readBool(); in UnpackCachedShaders() 116 meta->fHasSecondaryColorOutput = reader->readBool(); in UnpackCachedShaders()
|
/external/angle/src/libANGLE/ |
D | ProgramExecutable.cpp | 230 mIsCompute = stream->readBool(); in load() 232 mPipelineHasGraphicsUniformBuffers = stream->readBool(); in load() 233 mPipelineHasComputeUniformBuffers = stream->readBool(); in load() 234 mPipelineHasGraphicsStorageBuffers = stream->readBool(); in load() 235 mPipelineHasComputeStorageBuffers = stream->readBool(); in load() 236 mPipelineHasGraphicsAtomicCounterBuffers = stream->readBool(); in load() 237 mPipelineHasComputeAtomicCounterBuffers = stream->readBool(); in load() 238 mPipelineHasGraphicsDefaultUniforms = stream->readBool(); in load() 239 mPipelineHasComputeDefaultUniforms = stream->readBool(); in load() 240 mPipelineHasGraphicsTextures = stream->readBool(); in load() [all …]
|
D | BinaryStream.h | 83 bool readBool() in readBool() function 90 void readBool(bool *outValue) { *outValue = readBool(); } in readBool() function
|
D | Program.cpp | 733 var->setActive(shaderType, stream->readBool()); in LoadShaderVariableBuffer() 767 var->setActive(shaderType, stream->readBool()); in LoadBufferVariable() 785 block->isArray = stream->readBool(); in LoadInterfaceBlock() 926 var->isRowMajorMatrix = stream->readBool(); in LoadBlockMemberInfo() 974 var->staticUse = stream->readBool(); in LoadShaderVar() 975 var->active = stream->readBool(); in LoadShaderVar() 984 var->isRowMajorLayout = stream->readBool(); in LoadShaderVar() 986 var->hasImplicitLocation = stream->readBool(); in LoadShaderVar() 990 var->readonly = stream->readBool(); in LoadShaderVar() 991 var->writeonly = stream->readBool(); in LoadShaderVar() [all …]
|
/external/skia/experimental/skrive/src/ |
D | Node.cpp | 24 node->setCollapsedVisibility(sr->readBool("isCollapsed")); in parse_node() 34 /*const auto intersect =*/ sr->readBool("intersect"); in parse_node()
|
D | Drawable.cpp | 20 node->setIsHidden(!sr->readBool("isVisible")); in parse_node()
|
D | Shape.cpp | 23 node->setTransformAffectsStroke(sr->readBool("transformAffectsStroke")); in parse_node()
|
/external/skia/experimental/skrive/tests/ |
D | BinaryReader.cpp | 57 REPORTER_ASSERT(reporter, sr->readBool("clipContents")); in DEF_TEST() 62 REPORTER_ASSERT(reporter, !sr->readBool("INVALID")); in DEF_TEST()
|
D | JsonReader.cpp | 47 REPORTER_ASSERT(reporter, sr->readBool("clipContents")); in DEF_TEST() 52 REPORTER_ASSERT(reporter, !sr->readBool("INVALID")); in DEF_TEST()
|
/external/boringssl/src/ssl/test/runner/ |
D | ticket.go | 78 func readBool(reader *byteReader, out *bool) bool { func 112 if !readBool(&reader, &s.extendedMasterSecret) { 129 !readBool(&reader, &s.hasApplicationSettings) {
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
D | H264TrackImpl.java | 480 field_pic_flag = reader.readBool("SliceHeader: field_pic_flag"); in SliceHeader() 482 bottom_field_flag = reader.readBool("SliceHeader: bottom_field_flag"); in SliceHeader() 650 … clock_timestamp_flag = reader.readBool("pic_timing SEI: clock_timestamp_flag[" + i + "]"); in SEIMessage() 664 if (reader.readBool("pic_timing SEI: seconds_flag")) { in SEIMessage() 666 … if (reader.readBool("pic_timing SEI: minutes_flag")) { in SEIMessage() 668 … if (reader.readBool("pic_timing SEI: hours_flag")) { in SEIMessage()
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | CodedInputStreamReader.java | 151 public boolean readBool() throws IOException { in readBool() method in CodedInputStreamReader 153 return input.readBool(); in readBool() 700 plist.addBoolean(input.readBool()); in readBoolList() 706 plist.addBoolean(input.readBool()); in readBoolList() 726 target.add(input.readBool()); in readBoolList() 732 target.add(input.readBool()); in readBoolList() 1283 return readBool(); in readField()
|
/external/protobuf/objectivec/ |
D | GPBCodedInputStream.h | 169 - (BOOL)readBool;
|
/external/skia/experimental/skrive/src/reader/ |
D | StreamReader.h | 66 virtual bool readBool (const char label[]) = 0;
|
/external/skia/tools/ |
D | skpinfo.cpp | 70 if (!stream.readBool(&hasData)) { return kTruncatedFile; } in main()
|
/external/skqp/tools/ |
D | skpinfo.cpp | 70 if (!stream.readBool(&hasData)) { return kTruncatedFile; } in main()
|
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/ |
D | CodedInputByteBufferNano.java | 183 public boolean readBool() throws IOException { in readBool() method in CodedInputByteBufferNano 662 return readBool(); in readPrimitiveField()
|
/external/skia/src/core/ |
D | SkColorFilter.cpp | 418 bool useDstTF = buffer.readBool(), in CreateProc() 419 useDstGamut = buffer.readBool(), in CreateProc() 420 useDstAT = buffer.readBool(); in CreateProc()
|
/external/skqp/src/shaders/ |
D | SkLights.cpp | 26 bool isPoint = buf.readBool(); in MakeFromBuffer()
|
/external/skqp/src/core/ |
D | SkReadBuffer.h | 83 bool readBool(); 274 bool readBool() { return 0; } in readBool() function
|
/external/protobuf/js/binary/ |
D | reader.js | 494 return this.readBool(); 895 jspb.BinaryReader.prototype.readBool = function() { method in jspb.BinaryReader 1187 return this.readPackedField_(this.decoder_.readBool);
|
/external/grpc-grpc-java/protobuf-nano/src/generated/test/javanano/io/grpc/protobuf/nano/ |
D | Messages.java | 110 this.b = input.readBool(); in mergeFrom()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/ |
D | CAVLCReader.java | 93 public boolean readBool(String message) throws IOException { in readBool() method in CAVLCReader
|