/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluVarType.hpp | 296 DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {} in DeclareStructTypePtr() 299 int indentLevel; member 304 DeclareStructType (const StructType& structType_, int indentLevel_) : structType(structType_), indentLevel(indentLevel_) {} in DeclareStructType() 307 int indentLevel; member 312 DeclareVariable (const VarType& varType_, const std::string& name_, int indentLevel_) : varType(varType_), name(name_), indentLevel(indentLevel_) {} in DeclareVariable() 316 int indentLevel; member 326 inline decl::Indent indent (int indentLevel) { return decl::Indent(indentLevel); } in indent() argument 327 inline decl::DeclareStructTypePtr declare (const StructType* structPtr, int indentLevel = 0) { return decl::DeclareStructTypePtr (structPtr, indentLevel); } in declare() [all...] |
H A D | gluVarType.cpp | 384 str << declare(structPtr, decl.indentLevel); // Generate inline declaration. in operator <<() 412 str << "\n" << indent(decl.indentLevel) << "{\n"; in operator <<() 416 str << indent(decl.indentLevel+1); in operator <<() 417 str << declare(memberIter->getType(), memberIter->getName(), decl.indentLevel+1) << ";\n"; in operator <<() 420 str << indent(decl.indentLevel) << "}"; in operator <<() 427 return str << declare(&decl.structType, decl.indentLevel); in operator <<()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcUniformBlockCase.cpp | 721 void generateDeclaration(std::ostringstream& src, const VarType& type, const char* name, int indentLevel, 723 void generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel); 724 void generateDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel); 726 void generateLocalDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel); 727 void generateFullDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel); 729 void generateDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 732 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 736 void generateFullDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 741 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 745 src << Indent(indentLevel in generateFullDeclaration() 753 generateLocalDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel) generateLocalDeclaration() argument 761 generateDeclaration(std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints) generateDeclaration() argument 821 generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel) generateDeclaration() argument [all...] |
/third_party/gn/src/gn/ |
H A D | command_desc.cc | 37 int indentLevel, in PrintDictValue() 39 std::string indent(indentLevel * 2, ' '); in PrintDictValue() 53 PrintDictValue(&v, indentLevel + 1, true); in PrintDictValue() 63 std::string indent_plus_one((indentLevel + 1) * 2, ' '); in PrintDictValue() 70 PrintDictValue(&iter.value(), indentLevel + 1, false); in PrintDictValue() 83 void PrintValue(const base::Value* value, int indentLevel) { in PrintValue() argument 84 std::string indent(indentLevel * 2, ' '); in PrintValue() 92 PrintValue(&v, indentLevel); in PrintValue() 106 PrintValue(&iter.value(), indentLevel + 1); in PrintValue() 36 PrintDictValue(const base::Value* value, int indentLevel, bool use_first_indent) PrintDictValue() argument
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsUniformBlockCase.cpp | 813 void generateDeclaration (std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints); 814 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel); 815 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 817 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 818 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 820 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 823 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 827 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 832 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 836 src << Indent(indentLevel in generateFullDeclaration() 843 generateLocalDeclaration(std::ostringstream& src, const StructType& structType, int indentLevel) generateLocalDeclaration() argument 851 generateDeclaration(std::ostringstream& src, const VarType& type, const char* name, int indentLevel, deUint32 unusedHints) generateDeclaration() argument 909 generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel) generateDeclaration() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 979 void generateDeclaration (std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 buffer, deUint32 stride, deUint32 offset); 980 void generateDeclaration (std::ostringstream& src, const InterfaceBlockMember& member, int indentLevel, deUint32 buffer, deUint32 stride, deUint32 offset); 981 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 983 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 984 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 986 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 989 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 993 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 998 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 1002 src << Indent(indentLevel in generateFullDeclaration() 1023 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 fieldHints, deUint32 flagsMask, deUint32 buffer, deUint32 stride, deUint32 offset) generateDeclaration() argument 1074 generateDeclaration(std::ostringstream& src, const InterfaceBlockMember& member, int indentLevel, deUint32 buffer, deUint32 stride, deUint32 offset) generateDeclaration() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/ |
H A D | vktUniformBlockCase.cpp | 954 void generateDeclaration (std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset); 955 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel, deUint32 offset); 956 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 958 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 959 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 961 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 964 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 968 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 973 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 977 src << Indent(indentLevel in generateFullDeclaration() 998 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset) generateDeclaration() argument 1046 generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel, deUint32 offset) generateDeclaration() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/transform_feedback/ |
H A D | vktTransformFeedbackFuzzLayoutCase.cpp | 979 void generateDeclaration (std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 buffer, deUint32 stride, deUint32 offset); 980 void generateDeclaration (std::ostringstream& src, const InterfaceBlockMember& member, int indentLevel, deUint32 buffer, deUint32 stride, deUint32 offset); 981 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 983 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 984 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 986 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 989 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 993 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 998 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 1002 src << Indent(indentLevel in generateFullDeclaration() 1023 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 fieldHints, deUint32 flagsMask, deUint32 buffer, deUint32 stride, deUint32 offset) generateDeclaration() argument 1074 generateDeclaration(std::ostringstream& src, const InterfaceBlockMember& member, int indentLevel, deUint32 buffer, deUint32 stride, deUint32 offset) generateDeclaration() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ubo/ |
H A D | vktUniformBlockCase.cpp | 954 void generateDeclaration (std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset); 955 void generateDeclaration (std::ostringstream& src, const Uniform& uniform, int indentLevel, deUint32 offset); 956 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 958 void generateLocalDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 959 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel); 961 void generateDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateDeclaration() argument 964 generateFullDeclaration(src, structType, indentLevel); in generateDeclaration() 968 void generateFullDeclaration (std::ostringstream& src, const StructType& structType, int indentLevel) in generateFullDeclaration() argument 973 src << "\n" << Indent(indentLevel) << "{\n"; in generateFullDeclaration() 977 src << Indent(indentLevel in generateFullDeclaration() 998 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset) generateDeclaration() argument 1046 generateDeclaration(std::ostringstream& src, const Uniform& uniform, int indentLevel, deUint32 offset) generateDeclaration() argument [all...] |
/third_party/vk-gl-cts/framework/qphelper/ |
H A D | qpXmlWriter.c | 174 static const char* getIndentStr (int indentLevel) in getIndentStr() argument 178 return &s_indentStr[s_indentStrLen - deMin32(s_indentStrLen, indentLevel)]; in getIndentStr()
|
/third_party/skia/tools/gpu/gl/interface/ |
H A D | gen_interface.go | 347 func functionCheck(feature FeatureSet, indentLevel int) string { 350 indent := strings.Repeat(SPACER, indentLevel) 380 return preCheck + strings.Repeat(SPACER, indentLevel) + "// all functions were marked optional or test_only\n"
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/ |
H A D | vktSSBOLayoutCase.cpp | 947 void generateDeclaration (std::ostream& src, const BufferVar& bufferVar, int indentLevel) in generateDeclaration() argument 955 src << glu::declare(bufferVar.getType(), bufferVar.getName(), indentLevel); in generateDeclaration()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fSSBOLayoutCase.cpp | 929 void generateDeclaration (std::ostream& src, const BufferVar& bufferVar, int indentLevel) in generateDeclaration() argument 936 src << glu::declare(bufferVar.getType(), bufferVar.getName(), indentLevel); in generateDeclaration()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ssbo/ |
H A D | vktSSBOLayoutCase.cpp | 947 void generateDeclaration (std::ostream& src, const BufferVar& bufferVar, int indentLevel) in generateDeclaration() argument 955 src << glu::declare(bufferVar.getType(), bufferVar.getName(), indentLevel); in generateDeclaration()
|