Searched refs:parameter (Results 76 - 100 of 257) sorted by relevance

1234567891011

/external/protobuf/src/google/protobuf/compiler/python/
H A Dpython_plugin_unittest.cc58 const string& parameter,
57 Generate(const FileDescriptor* file, const string& parameter, OutputDirectory* output_directory, string* error) const argument
/external/webkit/Source/WebCore/platform/
H A DContentType.cpp38 String ContentType::parameter(const String& parameterName) const function in class:WebCore::ContentType
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthMessage.java76 /** A caller is about to get a parameter. */
100 public void addParameter(Map.Entry<String, String> parameter) { argument
101 parameters.add(parameter);
223 * Verify that the required parameter names are contained in the actual
318 for (Map.Entry parameter : parameters) {
319 String name = toString(parameter.getKey());
324 into.append(OAuth.percentEncode(toString(parameter.getValue()))).append('"');
357 * header. The realm is included as a parameter. If the given header doesn't
H A DOAuth.java107 for (Map.Entry parameter : parameters) {
113 into.write(percentEncode(toString(parameter.getKey()))
116 into.write(percentEncode(toString(parameter.getValue()))
/external/oauth/core/src/main/java/net/oauth/signature/
H A DOAuthSignatureMethod.java187 for (Map.Entry parameter : parameters) {
188 if (!"oauth_signature".equals(parameter.getKey())) {
189 p.add(new ComparableParameter(parameter));
258 /** An efficiently sortable wrapper around a parameter. */
297 for (ComparableParameter parameter : parameters) {
298 list.add(parameter.value);
/external/clang/lib/AST/
H A DTemplateName.cpp35 TemplateTemplateParmDecl *parameter,
37 ID.AddPointer(parameter);
34 Profile(llvm::FoldingSetNodeID &ID, TemplateTemplateParmDecl *parameter, TemplateName replacement) argument
/external/llvm/
H A Dllvm-device-build.mk10 -Wno-unused-parameter \
/external/openssl/crypto/ocsp/
H A Docsp_lib.c120 if ((alg->parameter=ASN1_TYPE_new()) == NULL) goto err;
121 alg->parameter->type=V_ASN1_NULL;
/external/openssl/crypto/pkcs12/
H A Dp12_mutl.c182 if (!(p12->mac->dinfo->algor->parameter = ASN1_TYPE_new())) {
186 p12->mac->dinfo->algor->parameter->type = V_ASN1_NULL;
H A Dp12_npas.c216 p = alg->parameter->value.sequence->data;
217 pbe = d2i_PBEPARAM(NULL, &p, alg->parameter->value.sequence->length);
/external/qemu/distrib/sdl-1.2.15/acinclude/
H A Dltoptions.m4115 put the `dlopen' option into LT_INIT's first parameter.])
151 put the `win32-dll' option into LT_INIT's first parameter.])
307 the `fast-install' option into LT_INIT's first parameter.])
314 the `disable-fast-install' option into LT_INIT's first parameter.])
347 put the `pic-only' option into LT_INIT's first parameter.])
/external/v8/src/
H A Dglobal-handles.h111 typedef void (*WeakReferenceGuest)(Object* object, void* parameter);
123 // Make the global handle weak and set the callback parameter for the
127 // parameter as arguments. Note: cleared means set to Smi::FromInt(0). The
130 void* parameter,
/external/webkit/Source/WebCore/bindings/v8/
H A DV8AbstractEventListener.cpp49 static void weakEventListenerCallback(v8::Persistent<v8::Value>, void* parameter) argument
51 V8AbstractEventListener* listener = static_cast<V8AbstractEventListener*>(parameter);
H A DScriptState.h72 static void weakReferenceCallback(v8::Persistent<v8::Value> object, void* parameter);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DconsoleLogs.php13 $aLine = fgets($fileHandle, 4096); // Length parameter only optional after 4.2.0
/external/libsepol/tests/
H A DMakefile5 CFLAGS += -g3 -gdwarf-2 -o0 -Wall -W -Wundef -Wmissing-noreturn -Wmissing-format-attribute -Wno-unused-parameter -Werror
/external/openssl/crypto/asn1/
H A Dn_pkey.c141 if ((pkey->algor->parameter=ASN1_TYPE_new()) == NULL) goto err;
142 pkey->algor->parameter->type=V_ASN1_NULL;
159 if ((enckey->enckey->algor->parameter=ASN1_TYPE_new()) == NULL) goto err;
160 enckey->enckey->algor->parameter->type=V_ASN1_NULL;
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_plugin_unittest.cc58 const string& parameter,
57 Generate(const FileDescriptor* file, const string& parameter, OutputDirectory* output_directory, string* error) const argument
/external/protobuf/src/google/protobuf/compiler/java/
H A Djava_plugin_unittest.cc58 const string& parameter,
57 Generate(const FileDescriptor* file, const string& parameter, OutputDirectory* output_directory, string* error) const argument
/external/chromium/chrome/browser/resources/net_internals/
H A Deventsview.js245 * Looks for the first occurence of |directive|:parameter in |sourceText|.
249 * |remainingText| - |sourceText| with |directive|:parameter removed,
251 * |parameter| - the parameter itself.
265 'parameter': matchInfo[1]};
270 * the parameter, to negate it. Before is more natural, after
274 * '-' will be removed from |parameter|, if present.
283 var negationInfo = /^(-?)(\S*?)$/.exec(matchInfo.parameter);
284 matchInfo.parameter = negationInfo[2];
305 var comparisonName = sortInfo.parameter
[all...]
/external/chromium/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/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/icu4c/tools/ctestfw/
H A Duperf.cpp270 char* parameter = strchr( name, '@' ); local
271 if (parameter) {
272 *parameter = 0;
273 parameter += 1;
276 res = runTest( name, parameter );
/external/llvm/utils/unittest/googletest/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/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util.h67 // Derived must be a subclass of Base. The parameter MUST
368 // Stores a parameter value and later creates tests parameterized with that
374 explicit ParameterizedTestFactory(ParamType parameter) : argument
375 parameter_(parameter) {}
396 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
415 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { argument
416 return new ParameterizedTestFactory<TestCase>(parameter);
482 // parameter index. For the test SequenceA/FooTest.DoBar/1 FooTest is
530 "", // comment; TODO(vladl@google.com): provide parameter value

Completed in 703 milliseconds

1234567891011