Home
last modified time | relevance | path

Searched refs:indentLevel (Results 1 - 14 of 14) sorted by relevance

/third_party/vk-gl-cts/framework/opengl/
H A DgluVarType.hpp296 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 DgluVarType.cpp384 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 DglcUniformBlockCase.cpp721 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 Dcommand_desc.cc37 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 DglsUniformBlockCase.cpp813 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 DvktTransformFeedbackFuzzLayoutCase.cpp979 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 DvktUniformBlockCase.cpp954 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 DvktTransformFeedbackFuzzLayoutCase.cpp979 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 DvktUniformBlockCase.cpp954 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 DqpXmlWriter.c174 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 Dgen_interface.go347 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 DvktSSBOLayoutCase.cpp947 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 Des31fSSBOLayoutCase.cpp929 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 DvktSSBOLayoutCase.cpp947 void generateDeclaration (std::ostream& src, const BufferVar& bufferVar, int indentLevel) in generateDeclaration() argument
955 src << glu::declare(bufferVar.getType(), bufferVar.getName(), indentLevel); in generateDeclaration()

Completed in 32 milliseconds