Searched defs:parameter (Results 1 - 25 of 176) sorted by path

12345678

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-parser.rb100 :parameters, :parameter ].freeze
483 # 111:1: parameters returns [ list ] : parameter[ $list ] ( ',' parameter[ $list ] )* ;
493 # at line 113:5: parameter[ $list ] ( ',' parameter[ $list ] )*
495 parameter( list )
497 # at line 113:24: ( ',' parameter[ $list ] )*
508 # at line 113:26: ',' parameter[ $list ]
511 parameter( list )
534 # parser rule parameter
539 def parameter( parameters ) method in class:ANTLR3.Template.GroupFile.Parser
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/config/
H A DConfigurableProvider.java32 void setParameter(String parameterName, Object parameter); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DBouncyCastleProvider.java256 public void setParameter(String parameterName, Object parameter) argument
260 ((BouncyCastleProviderConfiguration)CONFIGURATION).setParameter(parameterName, parameter);
H A DBouncyCastleProviderConfiguration.java31 void setParameter(String parameterName, Object parameter) argument
44 if (parameter instanceof ECParameterSpec || parameter == null)
46 curveSpec = (ECParameterSpec)parameter;
50 curveSpec = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
69 if (parameter instanceof ECParameterSpec || parameter == null)
71 ecImplicitCaParams = (ECParameterSpec)parameter;
75 ecImplicitCaParams = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false);
87 if (parameter instanceo
[all...]
/external/ceres-solver/internal/ceres/
H A Dcoordinate_descent_minimizer.cc68 // Serialize the OrderedGroups into a vector of parameter block
86 // The ordering does not have to contain all parameter blocks, so
87 // assign zero offsets/empty independent sets to these parameter
97 // Compute the set of residual blocks that depend on each parameter
125 // Set the state and mark all parameter blocks constant.
149 // The parameter blocks in each independent set can be optimized
202 // Solve the optimization problem for one parameter block.
205 double* parameter,
233 minimizer.Minimize(minimizer_options, parameter, summary);
203 Solve(Program* program, LinearSolver* linear_solver, double* parameter, Solver::Summary* summary) argument
/external/chromium_org/base/strings/
H A Dstring_util.cc51 ReplacementOffset(uintptr_t parameter, size_t offset) argument
52 : parameter(parameter),
55 // Index of the parameter.
56 uintptr_t parameter; member in struct:__anon2472::ReplacementOffset
64 return elem1.parameter < elem2.parameter;
/external/chromium_org/chrome/browser/metrics/variations/
H A Dvariations_service.cc134 // Gets the restrict parameter from |policy_pref_service| or from Chrome OS
137 std::string parameter; local
140 chromeos::kVariationsRestrictParameter, &parameter);
143 parameter =
147 return parameter;
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/
H A DOAuth.php255 // parsed parameter-list
309 // We have already added parameter(s) with this name, so add to the list
343 // Ref: Spec: 9.1.1 ("The oauth_signature parameter MUST be excluded.")
558 // Service Providers MUST assume the protocol version to be 1.0 if this parameter is not present.
578 // parameter is required, and we can't just fallback to PLAINTEXT
579 throw new OAuthException('No signature method parameter. This parameter is required');
667 'Missing timestamp parameter. The parameter is required'
685 'Missing nonce parameter
826 $parameter = OAuthUtil::urldecode_rfc3986($split[0]); variable
[all...]
/external/chromium_org/chrome/installer/util/
H A Dwmi.cc83 const std::wstring& parameter_name, VARIANT* parameter) {
84 HRESULT hr = class_method->Put(parameter_name.c_str(), 0, parameter, 0);
93 // parameter and return value are of type uint32, but when we call the method
82 SetParameter(IWbemClassObject* class_method, const std::wstring& parameter_name, VARIANT* parameter) argument
/external/chromium_org/extensions/browser/api/declarative/
H A Ddeduping_factory_unittest.cc19 // Equals takes a parameter of type BaseClass. Each derived class gets an
40 explicit Foo(int parameter) : BaseClass(FOO), parameter_(parameter) {} argument
45 int parameter() const { function in class:__anon8080::Foo
64 int parameter = 0; local
65 if (!dict->GetInteger("parameter", &parameter)) {
66 *error = "No parameter";
70 return scoped_refptr<const BaseClass>(new Foo(parameter));
73 scoped_ptr<base::DictionaryValue> CreateDictWithParameter(int parameter) { argument
[all...]
/external/chromium_org/gin/
H A Darray_buffer.cc121 Private* parameter = data.GetParameter(); local
122 parameter->array_buffer_.Reset();
123 parameter->self_reference_ = NULL;
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_texture_mailbox_unittest.cc287 GLint parameter = 0; local
288 glGetTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, &parameter);
289 EXPECT_EQ(GL_REPEAT, parameter);
290 parameter = 0;
291 glGetTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, &parameter);
292 EXPECT_EQ(GL_LINEAR, parameter);
293 parameter = 0;
294 glGetTexParameteriv(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, &parameter);
295 EXPECT_EQ(GL_LINEAR_MIPMAP_NEAREST, parameter);
/external/chromium_org/ipc/
H A Dipc_message.h150 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter, argument
157 static bool Dispatch(const Message* msg, T* obj, S* sender, P* parameter, argument
159 (obj->*func)(parameter);
/external/chromium_org/net/websockets/
H A Dwebsocket_extension.h19 // Note that RFC6455 does not allow a parameter with an empty value.
22 // Construct a parameter which does not have a value.
24 // Construct a parameter with a non-empty value.
43 void Add(const Parameter& parameter) { parameters_.push_back(parameter); } argument
H A Dwebsocket_extension_parser.cc45 WebSocketExtension::Parameter parameter((std::string()));
46 ConsumeExtensionParameter(&parameter);
48 extension->Add(parameter);
53 WebSocketExtension::Parameter* parameter) {
61 *parameter = WebSocketExtension::Parameter(name.as_string());
72 *parameter = WebSocketExtension::Parameter(name.as_string(), value_string);
52 ConsumeExtensionParameter( WebSocketExtension::Parameter* parameter) argument
/external/chromium_org/sandbox/win/src/
H A Dbroker_services.cc511 VOID CALLBACK BrokerServicesBase::RemovePeer(PVOID parameter, BOOLEAN timeout) { argument
512 PeerTracker* peer = reinterpret_cast<PeerTracker*>(parameter);
H A Dpolicy_engine_params.h53 // have each 1) the address of the parameter 2) a numeric id that encodes the
63 // Retrieve the stored parameter. If the type does not match ulong fail.
72 // Retrieve the stored parameter. If the type does not match void* fail.
81 // Retrieve the stored parameter. If the type does not match wchar_t* fail.
90 // False if the parameter is not properly initialized.
116 // parameter type deduction.
171 ParameterSet ParamPickerMake(T& parameter) { argument
172 return ParameterSetEx<T>(&parameter);
H A Dpolicy_low_level.cc153 uint16 parameter, int state, bool last_call,
189 op = opcode_factory_->MakeOpWStringMatch(parameter, fragment->c_str(),
193 op = opcode_factory_->MakeOpWStringMatch(parameter, fragment->c_str(),
199 op = opcode_factory_->MakeOpWStringMatch(parameter, fragment->c_str(),
206 op = opcode_factory_->MakeOpWStringMatch(parameter, fragment->c_str(), 0,
217 bool PolicyRule::AddStringMatch(RuleType rule_type, int16 parameter, argument
238 if (!GenStringOpcode(rule_type, match_opts, parameter,
250 if (!GenStringOpcode(rule_type, match_opts, parameter,
270 if (!GenStringOpcode(rule_type, match_opts, parameter,
277 bool PolicyRule::AddNumberMatch(RuleType rule_type, int16 parameter, argument
151 GenStringOpcode(RuleType rule_type, StringMatchOptions match_opts, uint16 parameter, int state, bool last_call, int* skip_count, base::string16* fragment) argument
[all...]
/external/chromium_org/testing/gtest/include/gtest/
H A Dgtest.h268 // The second parameter prevents this overload from being considered if
657 // Returns the name of the parameter type, or NULL if this is not a typed
665 // Returns the text representation of the value parameter, or NULL if this
746 // Name of the parameter type, or NULL if this is not a typed or a
749 // Text representation of the value parameter, or NULL if this is not a
780 // a_type_param: the name of the test's type parameter, or NULL if
794 // Returns the name of the parameter type, or NULL if this is not a
924 // Name of the parameter type, or NULL if this is not a typed or a
1550 // We used to have a second template parameter instead of Secret*. That
1551 // template parameter woul
1836 SetParam(const ParamType* parameter) argument
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h350 // Stores a parameter value and later creates tests parameterized with that
356 explicit ParameterizedTestFactory(ParamType parameter) : argument
357 parameter_(parameter) {}
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
397 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { argument
398 return new ParameterizedTestFactory<TestCase>(parameter);
464 // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
511 NULL, // No type parameter.
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorCommand.cpp1221 // The EditorCommandSource parameter is unused in enabledVisibleSelection, so just pass a dummy variable
1270 // The EditorCommandSource parameter is unused in enabledInEditableText, so just pass a dummy variable
1738 bool Editor::Command::execute(const String& parameter, Event* triggeringEvent) const argument
1747 return m_command->execute(*m_frame, triggeringEvent, m_source, parameter);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DTraceEventDispatcher.cpp152 const TraceEvent::TraceValueUnion& TraceEventDispatcher::TraceEvent::parameter(const char* name, unsigned char expectedType) const function in class:blink::TraceEventDispatcher::TraceEvent
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketDeflateFramer.cpp73 return extensionToken(); // No parameter
86 HashMap<String, String>::const_iterator parameter = serverParameters.find("max_window_bits"); local
87 if (parameter != serverParameters.end()) {
88 windowBits = parameter->value.toInt();
90 m_failureReason = "Received invalid max_window_bits parameter";
97 parameter = serverParameters.find("no_context_takeover");
98 if (parameter != serverParameters.end()) {
99 if (!parameter->value.isNull()) {
100 m_failureReason = "Received invalid no_context_takeover parameter";
108 m_failureReason = "Received unexpected deflate-frame parameter";
[all...]

Completed in 3380 milliseconds

12345678