Home
last modified time | relevance | path

Searched refs:configuration (Results 1 – 25 of 2782) sorted by relevance

12345678910>>...112

/third_party/flutter/flutter/examples/stocks/lib/
Dstock_settings.dart10 const StockSettings(this.configuration, this.updater);
12 final StockConfiguration configuration;
22 …sendUpdates(widget.configuration.copyWith(stockMode: value ? StockMode.optimistic : StockMode.pess…
26 …sendUpdates(widget.configuration.copyWith(backupMode: value ? BackupMode.enabled : BackupMode.disa…
30 sendUpdates(widget.configuration.copyWith(debugShowGrid: value));
34 sendUpdates(widget.configuration.copyWith(debugShowSizes: value));
38 sendUpdates(widget.configuration.copyWith(debugShowBaselines: value));
42 sendUpdates(widget.configuration.copyWith(debugShowLayers: value));
46 sendUpdates(widget.configuration.copyWith(debugShowPointers: value));
50 sendUpdates(widget.configuration.copyWith(debugShowRainbow: value));
[all …]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
DDisplay.cpp201 Config configuration = *config; in initialize() local
202 configuration.mConfigID = index; in initialize()
205 mConfigSet.mSet.insert(configuration); in initialize()
243 const egl::Config *configuration = mConfigSet.get(config); in getConfigAttrib() local
247 case EGL_BUFFER_SIZE: *value = configuration->mBufferSize; break; in getConfigAttrib()
248 case EGL_ALPHA_SIZE: *value = configuration->mAlphaSize; break; in getConfigAttrib()
249 case EGL_BLUE_SIZE: *value = configuration->mBlueSize; break; in getConfigAttrib()
250 case EGL_GREEN_SIZE: *value = configuration->mGreenSize; break; in getConfigAttrib()
251 case EGL_RED_SIZE: *value = configuration->mRedSize; break; in getConfigAttrib()
252 case EGL_DEPTH_SIZE: *value = configuration->mDepthSize; break; in getConfigAttrib()
[all …]
/third_party/flutter/engine/flutter/shell/common/
Dshell_unittests.cc163 auto configuration = RunConfiguration::InferFromSettings(settings); in TEST_F() local
164 ASSERT_TRUE(configuration.IsValid()); in TEST_F()
165 configuration.SetEntrypoint("fixturesAreFunctionalMain"); in TEST_F()
172 RunEngine(shell.get(), std::move(configuration)); in TEST_F()
185 auto configuration = RunConfiguration::InferFromSettings(settings); in TEST_F() local
186 ASSERT_TRUE(configuration.IsValid()); in TEST_F()
187 configuration.SetEntrypoint("testCanLaunchSecondaryIsolate"); in TEST_F()
194 RunEngine(shell.get(), std::move(configuration)); in TEST_F()
260 auto configuration = RunConfiguration::InferFromSettings(settings); in TEST_F() local
261 configuration.SetEntrypoint("emptyMain"); in TEST_F()
[all …]
/third_party/typescript/tests/baselines/reference/
DvisibilityOfCrossModuleTypeUsage.types5 function run(configuration: commands.IConfiguration) {
6 >run : (configuration: commands.IConfiguration) => void
7 >configuration : commands.IConfiguration
10 var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server);
12 >configuration.workspace.toAbsolutePath(configuration.server) : string
13 >configuration.workspace.toAbsolutePath : (server: import("tests/cases/compiler/visibilityOfCrossMo…
14 >configuration.workspace : import("tests/cases/compiler/visibilityOfCrossModuleTypeUsage_server").I…
15 >configuration : commands.IConfiguration
18 >configuration.server : import("tests/cases/compiler/visibilityOfCrossModuleTypeUsage_server").ISer…
19 >configuration : commands.IConfiguration
DvisibilityOfCrossModuleTypeUsage.symbols5 function run(configuration: commands.IConfiguration) {
7 >configuration : Symbol(configuration, Decl(visibilityOfCrossModuleTypeUsage_fs.ts, 1, 13))
11 var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server);
13 >configuration.workspace.toAbsolutePath : Symbol(IWorkspace.toAbsolutePath, Decl(visibilityOfCrossM…
14 >configuration.workspace : Symbol(commands.IConfiguration.workspace, Decl(visibilityOfCrossModuleTy…
15 >configuration : Symbol(configuration, Decl(visibilityOfCrossModuleTypeUsage_fs.ts, 1, 13))
18 >configuration.server : Symbol(commands.IConfiguration.server, Decl(visibilityOfCrossModuleTypeUsag…
19 >configuration : Symbol(configuration, Decl(visibilityOfCrossModuleTypeUsage_fs.ts, 1, 13))
DvisibilityOfCrossModuleTypeUsage.js24 function run(configuration: commands.IConfiguration) {
25 var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server);
38 function run(configuration) {
39 var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server);
/third_party/openssl/doc/man3/
DCONF_modules_load_file.pod5 CONF_modules_load_file, CONF_modules_load - OpenSSL configuration functions
20 the standard OpenSSL configuration file is used. If B<appname> is
25 reads configuration information from B<cnf>.
32 configuration modules are ignored. If not set the first module error is
41 the default system-wide configuration file, as having all OpenSSL applications
46 If B<CONF_MFLAGS_NO_DSO> is set configuration module loading from DSOs is
50 ignore missing configuration files. Normally a missing configuration file
57 customise application configuration to best suit its needs. In some cases the
58 use of a configuration file is optional and its absence is not an error: in
61 Errors during configuration may also be handled differently by different
[all …]
DOPENSSL_load_builtin_modules.pod5 …d_builtin_modules, ASN1_add_oid_module, ENGINE_add_conf_module - add standard configuration modules
18 configuration modules to the internal list. They can then be used by the
19 OpenSSL configuration code.
23 ENGINE_add_conf_module() adds just the ENGINE configuration module.
27 If the simple configuration function OPENSSL_config() is called then
30 Applications which use the configuration functions directly will need to
32 configuration code.
35 configuration modules instead of adding modules selectively: otherwise
/third_party/grpc/src/csharp/
Dbuild_nuget.sh40 dotnet pack --configuration Release Grpc.Core.Api --output ../../../artifacts
41 dotnet pack --configuration Release Grpc.Core --output ../../../artifacts
42 dotnet pack --configuration Release Grpc.Core.Testing --output ../../../artifacts
43 dotnet pack --configuration Release Grpc.Auth --output ../../../artifacts
44 dotnet pack --configuration Release Grpc.HealthCheck --output ../../../artifacts
45 dotnet pack --configuration Release Grpc.Reflection --output ../../../artifacts
46 dotnet pack --configuration Release Grpc.Tools --output ../../../artifacts
48 dotnet pack --configuration Release Grpc --output ../../../artifacts
49 dotnet pack --configuration Release Grpc.Core.NativeDebug --output ../../../artifacts
50 dotnet pack --configuration Release Grpc.Core.Xamarin --output ../../../artifacts
Dbuild_packages_dotnetcli.bat35 %DOTNET% pack --configuration Release Grpc.Core.Api --output ..\..\..\artifacts || goto :error
36 %DOTNET% pack --configuration Release Grpc.Core --output ..\..\..\artifacts || goto :error
37 %DOTNET% pack --configuration Release Grpc.Core.Testing --output ..\..\..\artifacts || goto :error
38 %DOTNET% pack --configuration Release Grpc.Auth --output ..\..\..\artifacts || goto :error
39 %DOTNET% pack --configuration Release Grpc.HealthCheck --output ..\..\..\artifacts || goto :error
40 %DOTNET% pack --configuration Release Grpc.Reflection --output ..\..\..\artifacts || goto :error
41 %DOTNET% pack --configuration Release Grpc.Tools --output ..\..\..\artifacts || goto :error
43 %DOTNET% pack --configuration Release Grpc --output ..\..\..\artifacts || goto :error
44 %DOTNET% pack --configuration Release Grpc.Core.NativeDebug --output ..\..\..\artifacts || goto :er…
/third_party/boost/libs/asio/doc/
Dtutorial.dox4 # Project related configuration options
34 # Build related configuration options
63 # configuration options related to warning and progress messages
73 # configuration options related to the input files
91 # configuration options related to source browsing
101 # configuration options related to the alphabetical class index
107 # configuration options related to the HTML output
127 # configuration options related to the LaTeX output
142 # configuration options related to the RTF output
151 # configuration options related to the man page output
[all …]
Dreference.dox4 # Project related configuration options
34 # Build related configuration options
63 # configuration options related to warning and progress messages
73 # configuration options related to the input files
101 # configuration options related to source browsing
111 # configuration options related to the alphabetical class index
117 # configuration options related to the HTML output
137 # configuration options related to the LaTeX output
152 # configuration options related to the RTF output
161 # configuration options related to the man page output
[all …]
/third_party/protobuf/objectivec/DevTools/
Dfull_mac_build.sh41 Skip the Xcode Debug configuration.
43 Skip the Xcode Release configuration.
179 "${XCODEBUILD_CLEAN_BASE_IOS[@]}" -configuration Debug clean
182 "${XCODEBUILD_CLEAN_BASE_IOS[@]}" -configuration Release clean
192 "${XCODEBUILD_CLEAN_BASE_OSX[@]}" -configuration Debug clean
195 "${XCODEBUILD_CLEAN_BASE_OSX[@]}" -configuration Release clean
205 "${XCODEBUILD_CLEAN_BASE_OSX[@]}" -configuration Debug clean
208 "${XCODEBUILD_CLEAN_BASE_OSX[@]}" -configuration Release clean
308 "${XCODEBUILD_TEST_BASE_IOS[@]}" -configuration Debug test
312 "${XCODEBUILD_TEST_BASE_IOS[@]}" -configuration Release test
[all …]
/third_party/boost/libs/bimap/doc/
Dbimap.hdf4 # Project related configuration options
44 # Build related configuration options
73 # configuration options related to warning and progress messages
83 # configuration options related to the input files
100 # configuration options related to source browsing
111 # configuration options related to the alphabetical class index
117 # configuration options related to the HTML output
137 # configuration options related to the LaTeX output
152 # configuration options related to the RTF output
161 # configuration options related to the man page output
[all …]
/third_party/boost/libs/gil/doc/
Ddoxyfile4 # Project related configuration options
41 # Build related configuration options
69 # configuration options related to warning and progress messages
79 # configuration options related to the input files
103 # configuration options related to source browsing
113 # configuration options related to the alphabetical class index
119 # configuration options related to the HTML output
138 # configuration options related to the LaTeX output
153 # configuration options related to the RTF output
162 # configuration options related to the man page output
[all …]
/third_party/flutter/flutter/packages/flutter/test/services/
Dtext_input_test.dart11 const TextInputConfiguration configuration = TextInputConfiguration();
12 expect(configuration.inputType, TextInputType.text);
13 expect(configuration.obscureText, false);
14 expect(configuration.autocorrect, true);
15 expect(configuration.actionLabel, null);
16 expect(configuration.textCapitalization, TextCapitalization.none);
17 expect(configuration.keyboardAppearance, Brightness.light);
21 const TextInputConfiguration configuration = TextInputConfiguration(
27 final Map<String, dynamic> json = configuration.toJson();
39 const TextInputConfiguration configuration = TextInputConfiguration(
[all …]
/third_party/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/sample/
Dfruit.dox4 # Project related configuration options
43 # Build related configuration options
79 # configuration options related to warning and progress messages
89 # configuration options related to the input files
107 # configuration options related to source browsing
118 # configuration options related to the alphabetical class index
124 # configuration options related to the HTML output
164 # configuration options related to the LaTeX output
180 # configuration options related to the RTF output
189 # configuration options related to the man page output
[all …]
/third_party/skia/third_party/externals/microhttpd/doc/doxygen/
Dlibmicrohttpd.doxy4 # Project related configuration options
50 # Build related configuration options
80 # configuration options related to warning and progress messages
90 # configuration options related to the input files
109 # configuration options related to source browsing
120 # configuration options related to the alphabetical class index
126 # configuration options related to the HTML output
149 # configuration options related to the LaTeX output
164 # configuration options related to the RTF output
173 # configuration options related to the man page output
[all …]
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/editing/
DTextInputPlugin.java36 private TextInputChannel.Configuration configuration; field in TextInputPlugin
67 … public void setClient(int textInputClientId, TextInputChannel.Configuration configuration) { in TextInputPlugin()
68 setTextInputClient(textInputClientId, configuration); in TextInputPlugin()
196 configuration.inputType, in createInputConnection()
197 configuration.obscureText, in createInputConnection()
198 configuration.autocorrect, in createInputConnection()
199 configuration.textCapitalization in createInputConnection()
203 if (configuration.inputAction == null) { in createInputConnection()
210 enterAction = configuration.inputAction; in createInputConnection()
212 if (configuration.actionLabel != null) { in createInputConnection()
[all …]
/third_party/grpc/src/csharp/Grpc.Core.Api/
DClientBase.cs46 protected ClientBase(ClientBaseConfiguration configuration) : base(configuration) in ClientBase() argument
81 protected abstract T NewInstance(ClientBaseConfiguration configuration); in NewInstance() argument
89 readonly ClientBaseConfiguration configuration; field in Grpc.Core.ClientBase
106 protected ClientBase(ClientBaseConfiguration configuration) in ClientBase() argument
108 this.configuration = GrpcPreconditions.CheckNotNull(configuration, "configuration"); in ClientBase()
109 this.callInvoker = configuration.CreateDecoratedCallInvoker(); in ClientBase()
141 get { return this.configuration; }
/third_party/boost/libs/config/doc/
Drationale.qbk15 The problem with many traditional "textbook" implementations of configuration
16 headers (where all the configuration options are in a single "monolithic"
34 employed by configuration headers does not conform to the Open-Closed
39 Extending a traditional configuration header implies modifying existing code.
45 detection code? A traditional configuration header is one of the most
51 After even a minor change to a traditional configuration header on one minor
59 monolithic configuration header, instead some method by which the user
60 can insert their own configuration code must be provided.
66 The approach taken by boost's configuration headers is to separate
67 configuration into three orthogonal parts: the compiler, the standard
[all …]
/third_party/openssl/doc/man5/
Dconfig.pod5 config - OpenSSL CONF library configuration files
9 The OpenSSL CONF library can be used to read configuration files.
10 It is used for the OpenSSL master configuration file B<openssl.cnf>
15 A configuration file is divided into a number of sections. Each section
20 The first section of a configuration file is special and is referred
41 working directory so unless the configuration file containing the
47 configuration file needs to be loaded by old OpenSSL versions which do
52 Each section in a configuration file consists of a number of name and
83 aspects of OpenSSL using the master OpenSSL configuration file, or optionally
84 an alternative configuration file. The B<openssl> utility includes this
[all …]
/third_party/boost/libs/geometry/doc/index/
DDoxyfile3 # Project related configuration options
57 # Build related configuration options
95 # configuration options related to warning and progress messages
105 # configuration options related to the input files
158 # configuration options related to source browsing
169 # configuration options related to the alphabetical class index
175 # configuration options related to the HTML output
225 # configuration options related to the LaTeX output
243 # configuration options related to the RTF output
252 # configuration options related to the man page output
[all …]
/third_party/python/Doc/library/
Dlogging.config.rst1 :mod:`logging.config` --- Logging configuration
38 Takes the logging configuration from a dictionary. The contents of
42 If an error is encountered during configuration, this function will
57 constructor is passed the dictionary used for configuration, and
66 the returned object to put the configuration into effect::
82 Reads the logging configuration from a :mod:`configparser`\-format file. The
88 configuration).
94 instantiated, and the configuration read by it from the
112 in the logging configuration.
120 * Use of a configuration file where logging configuration is just part
[all …]
/third_party/weston/man/
Dmeson.build15 configuration: man_conf
22 configuration: man_conf
29 configuration: man_conf
36 configuration: man_conf
44 configuration: man_conf
53 configuration: man_conf

12345678910>>...112