Home
last modified time | relevance | path

Searched refs:options_ (Results 1 – 25 of 119) sorted by relevance

12345

/third_party/spirv-tools/include/spirv-tools/
Dlibspirv.hpp73 ValidatorOptions() : options_(spvValidatorOptionsCreate()) {} in ValidatorOptions()
74 ~ValidatorOptions() { spvValidatorOptionsDestroy(options_); } in ~ValidatorOptions()
76 operator spv_validator_options() const { return options_; } in operator spv_validator_options()
80 spvValidatorOptionsSetUniversalLimit(options_, limit_type, limit); in SetUniversalLimit()
84 spvValidatorOptionsSetRelaxStoreStruct(options_, val); in SetRelaxStructStore()
91 spvValidatorOptionsSetRelaxBlockLayout(options_, val); in SetRelaxBlockLayout()
97 spvValidatorOptionsSetUniformBufferStandardLayout(options_, val); in SetUniformBufferStandardLayout()
104 spvValidatorOptionsSetScalarBlockLayout(options_, val); in SetScalarBlockLayout()
110 spvValidatorOptionsSetWorkgroupScalarBlockLayout(options_, val); in SetWorkgroupScalarBlockLayout()
115 spvValidatorOptionsSetSkipBlockLayout(options_, val); in SetSkipBlockLayout()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/include/spirv-tools/
Dlibspirv.hpp73 ValidatorOptions() : options_(spvValidatorOptionsCreate()) {} in ValidatorOptions()
74 ~ValidatorOptions() { spvValidatorOptionsDestroy(options_); } in ~ValidatorOptions()
76 operator spv_validator_options() const { return options_; } in operator spv_validator_options()
80 spvValidatorOptionsSetUniversalLimit(options_, limit_type, limit); in SetUniversalLimit()
84 spvValidatorOptionsSetRelaxStoreStruct(options_, val); in SetRelaxStructStore()
91 spvValidatorOptionsSetRelaxBlockLayout(options_, val); in SetRelaxBlockLayout()
97 spvValidatorOptionsSetUniformBufferStandardLayout(options_, val); in SetUniformBufferStandardLayout()
104 spvValidatorOptionsSetScalarBlockLayout(options_, val); in SetScalarBlockLayout()
110 spvValidatorOptionsSetWorkgroupScalarBlockLayout(options_, val); in SetWorkgroupScalarBlockLayout()
115 spvValidatorOptionsSetSkipBlockLayout(options_, val); in SetSkipBlockLayout()
[all …]
/third_party/skia/third_party/externals/spirv-tools/include/spirv-tools/
Dlibspirv.hpp73 ValidatorOptions() : options_(spvValidatorOptionsCreate()) {} in ValidatorOptions()
74 ~ValidatorOptions() { spvValidatorOptionsDestroy(options_); } in ~ValidatorOptions()
76 operator spv_validator_options() const { return options_; } in operator spv_validator_options()
80 spvValidatorOptionsSetUniversalLimit(options_, limit_type, limit); in SetUniversalLimit()
84 spvValidatorOptionsSetRelaxStoreStruct(options_, val); in SetRelaxStructStore()
91 spvValidatorOptionsSetRelaxBlockLayout(options_, val); in SetRelaxBlockLayout()
97 spvValidatorOptionsSetUniformBufferStandardLayout(options_, val); in SetUniformBufferStandardLayout()
104 spvValidatorOptionsSetScalarBlockLayout(options_, val); in SetScalarBlockLayout()
110 spvValidatorOptionsSetWorkgroupScalarBlockLayout(options_, val); in SetWorkgroupScalarBlockLayout()
115 spvValidatorOptionsSetSkipBlockLayout(options_, val); in SetSkipBlockLayout()
[all …]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_file.cc96 : file_(file), options_(options), scc_analyzer_(options) { in FileGenerator()
100 variables_["tablename"] = UniqueName("TableStruct", file_, options_); in FileGenerator()
102 UniqueName("file_level_metadata", file_, options_); in FileGenerator()
103 variables_["desc_table"] = DescriptorTableName(file_, options_); in FileGenerator()
105 UniqueName("file_level_enum_descriptors", file_, options_); in FileGenerator()
107 UniqueName("file_level_service_descriptors", file_, options_); in FileGenerator()
129 if (HasGenericServices(file_, options_)) { in FileGenerator()
188 format("#define $1$$ dllexport_decl$\n", FileDllExport(file_, options_)); in GenerateHeader()
205 NamespaceOpener ns(Namespace(file_, options_), format); in GenerateHeader()
249 if (!options_.proto_h) { in GenerateProtoHeader()
[all …]
Dcpp_message.cc573 options_(options), in MessageGenerator()
587 SccInfoSymbol(scc_analyzer_->GetSCC(descriptor_), options_); in MessageGenerator()
589 variables_["superclass"] = SuperClassName(descriptor_, options_); in MessageGenerator()
594 if (!IsFieldUsed(field, options_)) { in MessageGenerator()
598 if (IsWeak(field, options_)) { in MessageGenerator()
605 message_layout_helper_->OptimizeLayout(&optimized_order_, options_); in MessageGenerator()
628 table_driven_ = TableDrivenParsingEnabled(descriptor_, options_); in MessageGenerator()
666 new EnumGenerator(descriptor_->enum_type(i), variables_, options_)); in AddGenerators()
671 new ExtensionGenerator(descriptor_->extension(i), options_)); in AddGenerators()
692 IsFieldUsed(field, options_)) { in GenerateFieldAccessorDeclarations()
[all …]
Dcpp_message_field.cc107 if (!IsFieldUsed(descriptor_, options_)) { in GenerateAccessorDeclarations()
136 if (IsFieldUsed(descriptor_, options_)) { in GenerateAccessorDeclarations()
388 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateClearingCode()
406 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateMessageClearingCode()
425 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateMergingCode()
440 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateSwappingCode()
447 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateDestructorCode()
450 if (options_.opensource_runtime) { in GenerateDestructorCode()
463 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateConstructorCode()
471 GOOGLE_CHECK(IsFieldUsed(descriptor_, options_)); in GenerateCopyConstructorCode()
[all …]
Dcpp_string_field.cc152 EffectiveStringCType(descriptor_, options_); in GenerateAccessorDeclarations()
168 if (!options_.opensource_runtime) { in GenerateAccessorDeclarations()
240 if (!options_.opensource_runtime) { in GenerateInlineAccessorDefinitions()
318 if (!options_.opensource_runtime) { in GenerateInlineAccessorDefinitions()
553 return !lite_ && !inlined_ && !options_.opensource_runtime; in MergeFromCodedStreamNeedsArena()
561 descriptor_, options_, false, in GenerateSerializeWithCachedSizesToArray()
658 if (!options_.opensource_runtime) { in GenerateInlineAccessorDefinitions()
762 if (!options_.opensource_runtime) { in GenerateInlineAccessorDefinitions()
870 EffectiveStringCType(descriptor_, options_); in GenerateAccessorDeclarations()
890 if (!options_.opensource_runtime) { in GenerateAccessorDeclarations()
[all …]
Dcpp_extension.cc61 : descriptor_(descriptor), options_(options) { in ExtensionGenerator()
85 type_traits_.append(PrimitiveTypeName(options_, descriptor_->cpp_type())); in ExtensionGenerator()
122 if (!options_.dllexport_decl.empty()) { in GenerateDeclaration()
123 qualifier = options_.dllexport_decl + " " + qualifier; in GenerateDeclaration()
142 if (options_.lite_implicit_weak_fields && in GenerateDefinition()
159 DefaultValue(options_, descriptor_)); in GenerateDefinition()
164 FieldMessageTypeName(descriptor_, options_) + "::default_instance()"; in GenerateDefinition()
166 default_str = DefaultValue(options_, descriptor_); in GenerateDefinition()
Dcpp_enum.cc78 options_(options), in EnumGenerator()
108 DeprecatedAttribute(options_, descriptor_->value(i))); in GenerateDefinition()
151 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateDefinition()
159 if (!HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateDefinition()
170 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateDefinition()
180 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateDefinition()
203 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateGetEnumDescriptorSpecializations()
218 DeprecatedAttribute(options_, descriptor_->value(j)); in GenerateSymbolImports()
242 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateSymbolImports()
268 if (HasDescriptorMethods(descriptor_->file(), options_)) { in GenerateMethods()
[all …]
/third_party/flutter/skia/third_party/externals/spirv-tools/test/val/
Dval_validation_state_test.cpp109 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
110 EXPECT_EQ(32000u, options_->universal_limits_.max_struct_members); in TEST_F()
115 options_, spv_validator_limit_max_global_variables, 100u); in TEST_F()
116 EXPECT_EQ(100u, options_->universal_limits_.max_global_variables); in TEST_F()
121 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
122 EXPECT_EQ(100u, options_->universal_limits_.max_local_variables); in TEST_F()
127 options_, spv_validator_limit_max_struct_depth, 100u); in TEST_F()
128 EXPECT_EQ(100u, options_->universal_limits_.max_struct_depth); in TEST_F()
133 options_, spv_validator_limit_max_switch_branches, 100u); in TEST_F()
134 EXPECT_EQ(100u, options_->universal_limits_.max_switch_branches); in TEST_F()
[all …]
Dval_limits_test.cpp117 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
131 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
223 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
253 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
305 spvValidatorOptionsSetUniversalLimit(options_, in TEST_F()
321 spvValidatorOptionsSetUniversalLimit(options_, in TEST_F()
381 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
400 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
486 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
514 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
[all …]
/third_party/spirv-tools/test/val/
Dval_validation_state_test.cpp189 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
190 EXPECT_EQ(32000u, options_->universal_limits_.max_struct_members); in TEST_F()
195 options_, spv_validator_limit_max_global_variables, 100u); in TEST_F()
196 EXPECT_EQ(100u, options_->universal_limits_.max_global_variables); in TEST_F()
201 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
202 EXPECT_EQ(100u, options_->universal_limits_.max_local_variables); in TEST_F()
207 options_, spv_validator_limit_max_struct_depth, 100u); in TEST_F()
208 EXPECT_EQ(100u, options_->universal_limits_.max_struct_depth); in TEST_F()
213 options_, spv_validator_limit_max_switch_branches, 100u); in TEST_F()
214 EXPECT_EQ(100u, options_->universal_limits_.max_switch_branches); in TEST_F()
[all …]
Dval_limits_test.cpp182 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
196 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
291 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
322 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
375 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
391 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
450 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
469 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
505 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F()
534 options_, spv_validator_limit_max_local_variables, 5000u); in TEST_F()
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/val/
Dval_validation_state_test.cpp189 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
190 EXPECT_EQ(32000u, options_->universal_limits_.max_struct_members); in TEST_F()
195 options_, spv_validator_limit_max_global_variables, 100u); in TEST_F()
196 EXPECT_EQ(100u, options_->universal_limits_.max_global_variables); in TEST_F()
201 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
202 EXPECT_EQ(100u, options_->universal_limits_.max_local_variables); in TEST_F()
207 options_, spv_validator_limit_max_struct_depth, 100u); in TEST_F()
208 EXPECT_EQ(100u, options_->universal_limits_.max_struct_depth); in TEST_F()
213 options_, spv_validator_limit_max_switch_branches, 100u); in TEST_F()
214 EXPECT_EQ(100u, options_->universal_limits_.max_switch_branches); in TEST_F()
[all …]
Dval_limits_test.cpp182 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
196 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
291 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
322 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
375 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
391 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
450 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
469 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
505 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F()
534 options_, spv_validator_limit_max_local_variables, 5000u); in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_validation_state_test.cpp189 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
190 EXPECT_EQ(32000u, options_->universal_limits_.max_struct_members); in TEST_F()
195 options_, spv_validator_limit_max_global_variables, 100u); in TEST_F()
196 EXPECT_EQ(100u, options_->universal_limits_.max_global_variables); in TEST_F()
201 options_, spv_validator_limit_max_local_variables, 100u); in TEST_F()
202 EXPECT_EQ(100u, options_->universal_limits_.max_local_variables); in TEST_F()
207 options_, spv_validator_limit_max_struct_depth, 100u); in TEST_F()
208 EXPECT_EQ(100u, options_->universal_limits_.max_struct_depth); in TEST_F()
213 options_, spv_validator_limit_max_switch_branches, 100u); in TEST_F()
214 EXPECT_EQ(100u, options_->universal_limits_.max_switch_branches); in TEST_F()
[all …]
Dval_limits_test.cpp182 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
196 options_, spv_validator_limit_max_struct_members, 32000u); in TEST_F()
291 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
322 options_, spv_validator_limit_max_switch_branches, 10u); in TEST_F()
375 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
391 options_, spv_validator_limit_max_function_args, 100u); in TEST_F()
450 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
469 options_, spv_validator_limit_max_global_variables, 50u); in TEST_F()
505 options_, spv_validator_limit_max_local_variables, num_locals); in TEST_F()
534 options_, spv_validator_limit_max_local_variables, 5000u); in TEST_F()
[all …]
/third_party/gn/src/gn/
Dpath_output.cc20 options_.mode = escaping; in PathOutput()
74 EscapeStringToStream(out, file.value(), options_); in WriteFile()
108 EscapeStringToStream(out, file.value(), options_); in WriteDir()
116 options_); in WriteDir()
119 EscapeStringToStream(out, file.value(), options_); in WriteDir()
128 EscapeStringToStream(out, FilePathToUTF8(file), options_); in WriteFile()
133 if (options_.mode == ESCAPE_NINJA_COMMAND) { in WriteSourceRelativeString()
144 options_); in WriteSourceRelativeString()
149 EscapeStringToStream(out, str, options_); in WriteSourceRelativeString()
161 options_); in WritePathStr()
[all …]
Dpath_output.h42 EscapingMode escaping_mode() const { return options_.mode; } in escaping_mode()
47 bool inhibit_quoting() const { return options_.inhibit_quoting; } in inhibit_quoting()
48 void set_inhibit_quoting(bool iq) { options_.inhibit_quoting = iq; } in set_inhibit_quoting()
49 void set_escape_platform(EscapingPlatform p) { options_.platform = p; } in set_escape_platform()
88 EscapeOptions options_; variable
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
DType.cs129 options_ = other.options_.Clone(); in Type()
184 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … field in Google.Protobuf.WellKnownTypes.Type
190 get { return options_; }
237 if(!options_.Equals(other.options_)) return false; in Equals()
249 hash ^= options_.GetHashCode(); in GetHashCode()
274 options_.WriteTo(output, _repeated_options_codec); in WriteTo()
298 options_.WriteTo(ref output, _repeated_options_codec); in IBufferMessage.InternalWriteTo()
321 size += options_.CalculateSize(_repeated_options_codec); in CalculateSize()
344 options_.Add(other.options_); in MergeFrom()
381 options_.AddEntriesFrom(input, _repeated_options_codec); in MergeFrom()
[all …]
DApi.cs98 options_ = other.options_.Clone(); in Api()
143 …private readonly pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Option> options_ = new … field in Google.Protobuf.WellKnownTypes.Api
149 get { return options_; }
241 if(!options_.Equals(other.options_)) return false; in Equals()
254 hash ^= options_.GetHashCode(); in GetHashCode()
280 options_.WriteTo(output, _repeated_options_codec); in WriteTo()
308 options_.WriteTo(ref output, _repeated_options_codec); in IBufferMessage.InternalWriteTo()
335 size += options_.CalculateSize(_repeated_options_codec); in CalculateSize()
361 options_.Add(other.options_); in MergeFrom()
398 options_.AddEntriesFrom(input, _repeated_options_codec); in MergeFrom()
[all …]
/third_party/flutter/engine/flutter/fml/
Dcommand_line.cc27 options_(options), in CommandLine()
29 for (size_t i = 0; i < options_.size(); i++) in CommandLine()
30 option_index_[options_[i].name] = i; in CommandLine()
53 *value = options_[index].value; in GetOptionValue()
60 for (const auto& option : options_) { in GetOptionValues()
73 return options_[index].value; in GetOptionValueWithDefault()
117 options_.push_back(CommandLine::Option(arg.substr(2u))); in ProcessArg()
121 options_.push_back(CommandLine::Option(arg.substr(2u, equals_pos - 2u), in ProcessArg()
129 return CommandLine(argv0_, options_, positional_args_); in Build()
/third_party/node/src/
Dnode_options-inl.h28 options_.emplace(name, in AddOption()
41 options_.emplace( in AddOption()
54 options_.emplace( in AddOption()
67 options_.emplace( in AddOption()
81 options_.emplace(name, OptionInfo { in AddOption()
94 options_.emplace( in AddOption()
107 options_.emplace(name, OptionInfo{kNoOp, nullptr, env_setting, help_text}); in AddOption()
115 options_.emplace(name, in AddOption()
141 auto it = options_.find(to); in Implies()
142 CHECK_NE(it, options_.end()); in Implies()
[all …]
/third_party/flutter/engine/flutter/flow/layers/
Dperformance_overlay_layer.cc67 : options_(options) { in PerformanceOverlayLayer()
76 if (!options_) in Paint()
88 height - padding, options_ & kVisualizeRasterizerStatistics, in Paint()
89 options_ & kDisplayRasterizerStatistics, "GPU", font_path_); in Paint()
93 options_ & kVisualizeEngineStatistics, in Paint()
94 options_ & kDisplayEngineStatistics, "UI", font_path_); in Paint()
/third_party/flutter/skia/third_party/externals/spirv-tools/include/spirv-tools/
Dlibspirv.hpp37 ValidatorOptions() : options_(spvValidatorOptionsCreate()) {} in ValidatorOptions()
38 ~ValidatorOptions() { spvValidatorOptionsDestroy(options_); } in ~ValidatorOptions()
40 operator spv_validator_options() const { return options_; } in operator spv_validator_options()
44 spvValidatorOptionsSetUniversalLimit(options_, limit_type, limit); in SetUniversalLimit()
48 spv_validator_options options_; member in spvtools::ValidatorOptions

12345