HomeSort by relevance Sort by last modified time
    Searched defs:parameter (Results 1 - 25 of 403) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
parameter.hpp 12 // Description : abstract interface for the formal parameter
18 // Boost.Runtime.Parameter
26 // ************** runtime::parameter ************** //
29 class parameter { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE
31 virtual ~parameter() {}
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizer_ParameterValuePairTest.java 25 final String parameter = "name"; local
29 ParameterValuePair parameterValuePair = uqs.new ParameterValuePair(parameter, vaule);
30 assertEquals(parameter, parameterValuePair.mParameter);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
EprtCommandHandler.java 28 * parameter string of the form: "EPRT<space><d><net-prt><d><net-addr><d><tcp-port><d>".
41 String parameter = command.getRequiredParameter(0); local
42 HostAndPort client = PortParser.parseExtendedAddressHostAndPort(parameter);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
MediaType.java 31 private static final Pattern PARAMETER = Pattern.compile(
57 Matcher parameter = PARAMETER.matcher(string); local
58 for (int s = typeSubtype.end(); s < string.length(); s = parameter.end()) {
59 parameter.region(s, string.length());
60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type.
62 String name = parameter.group(1);
64 String charsetParameter = parameter.group(2) != null
65 ? parameter.group(2) // Value is a token.
66 : parameter.group(3); // Value is a quoted string
    [all...]
CacheControl.java 190 String parameter; local
194 parameter = null;
204 parameter = value.substring(parameterStart, pos);
211 parameter = value.substring(parameterStart, pos).trim();
220 maxAgeSeconds = HeaderParser.parseSeconds(parameter, -1);
222 sMaxAgeSeconds = HeaderParser.parseSeconds(parameter, -1);
230 maxStaleSeconds = HeaderParser.parseSeconds(parameter, Integer.MAX_VALUE);
232 minFreshSeconds = HeaderParser.parseSeconds(parameter, -1);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/cla/
parameter.hpp 12 // Description : defines model of formal parameter
18 // Boost.Runtime.Parameter
22 #include <boost/test/utils/runtime/parameter.hpp>
40 // ************** runtime::cla::parameter ************** //
43 class parameter : public BOOST_RT_PARAM_NAMESPACE::parameter { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE::cla
45 parameter( identification_policy& ID, argument_factory& F, bool optional_value = false ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::cla::parameter
54 virtual ~parameter() {}
61 // parameter properties modification
88 bool conflict_with( parameter const& p ) cons
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-parser.rb 100 :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/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
EprtCommandHandler.java 34 * <li>{@link #PORT_KEY} ("port") - the port number (Integer) submitted on the invocation (from parameter 5-6)
60 String parameter = command.getRequiredParameter(0); local
62 HostAndPort client = PortParser.parseExtendedAddressHostAndPort(parameter);
  /libcore/luni/src/main/java/libcore/net/http/
ResponseUtils.java 59 * Parameter keys & values are trimmed of whitespace and keys are converted to
70 final String parameter = fields[i]; local
71 if (!parameter.isEmpty()) {
72 final String[] components = parameter.split("=");
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 31 * parameter instances to centralize each parameter's behavior.
35 private static final Map<String, Parameter> PARAMETERS
36 = new TreeMap<String, Parameter>(String.CASE_INSENSITIVE_ORDER);
88 * the validate parameter to true. Has no effect when validate is false.
125 PARAMETERS.put("error-handler", new Parameter() {
138 * Bulk alias to set the following parameter values:
208 PARAMETERS.put("schema-location", new Parameter() {
224 PARAMETERS.put("schema-type", new Parameter() {
299 interface Parameter {
331 Parameter parameter = PARAMETERS.get(name); local
336 Parameter parameter = PARAMETERS.get(name); local
352 Parameter parameter = PARAMETERS.get(name); local
    [all...]
  /art/compiler/optimizing/
nodes_test.cc 37 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
38 entry->AddInstruction(parameter);
44 HInstruction* null_check = new (&allocator) HNullCheck(parameter, 0);
56 environment->SetRawEnvAt(0, parameter);
57 parameter->AddEnvUseAt(null_check->GetEnvironment(), 0);
59 ASSERT_TRUE(parameter->HasEnvironmentUses());
60 ASSERT_TRUE(parameter->HasUses());
64 ASSERT_FALSE(parameter->HasEnvironmentUses());
65 ASSERT_FALSE(parameter->HasUses());
105 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot) local
    [all...]
gvn_test.cc 36 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
37 entry->AddInstruction(parameter);
44 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot,
47 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot,
51 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot,
56 parameter, parameter, Primitive::kPrimNot, MemberOffset(42), false));
58 new (&allocator) HInstanceFieldGet(parameter, Primitive::kPrimNot,
85 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
86 entry->AddInstruction(parameter);
141 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimNot); local
251 HInstruction* parameter = new (&allocator) HParameterValue(0, Primitive::kPrimBoolean); local
    [all...]
register_allocator_test.cc 470 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); local
471 entry->AddInstruction(parameter);
478 parameter, Primitive::kPrimBoolean, MemberOffset(22), false);
497 *input1 = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt,
499 *input2 = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt,
600 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimNot); local
601 entry->AddInstruction(parameter);
607 *field = new (allocator) HInstanceFieldGet(parameter, Primitive::kPrimInt,
668 HInstruction* parameter = new (allocator) HParameterValue(0, Primitive::kPrimInt); local
669 entry->AddInstruction(parameter);
    [all...]
  /development/samples/ToyVpn/server/linux/
ToyVpnServer.cpp 130 char *parameter = argv[i]; local
131 int length = strlen(parameter);
135 if (length == 2 && parameter[0] == '-') {
136 ++parameter;
147 // Append the delimiter and the parameter.
149 memcpy(&parameters[offset + 1], parameter, length);
  /libcore/luni/src/main/java/java/sql/
DataTruncation.java 34 private boolean parameter = false; field in class:DataTruncation
57 * the Index value of the column value or parameter that was
59 * @param parameter
60 * {@code true} if it was a parameter value that was truncated,
70 public DataTruncation(int index, boolean parameter, boolean read,
74 this.parameter = parameter;
86 * the Index value of the column value or parameter that was
88 * @param parameter
89 * true if it was a Parameter value that was truncated, fals
    [all...]
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 145 for (DexParameter parameter : parameters) {
146 paramTypeNames.add(parameter.getTypeName());
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 135 string parameter; local
136 parameter = "dllexport_decl=LIBPROTOBUF_EXPORT";
137 ASSERT_TRUE(generator.Generate(proto_file, parameter,
139 parameter = "dllexport_decl=LIBPROTOC_EXPORT";
140 ASSERT_TRUE(generator.Generate(plugin_proto_file, parameter,
  /external/v8/src/compiler/
operator.h 211 // A templatized implementation of Operator that has one static parameter of
218 int output_count, const char* mnemonic, T parameter)
222 parameter_(parameter) {}
224 const T& parameter() const { return parameter_; } function in class:v8::internal::compiler::Operator1
255 return reinterpret_cast<const Operator1<T>*>(op)->parameter();
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 274 char* parameter = strchr( name, '@' ); local
275 if (parameter) {
276 *parameter = 0;
277 parameter += 1;
280 res = runTest( name, parameter );
  /external/libpng/
pngerror.c 242 * PNG_WARNING_PARAMETER_COUNT parameters. In the format string the parameter
297 * the trailing '\0'. It may (in the case of a parameter) read more than
310 int parameter = 0; local
312 /* Search for the parameter digit, the index in the string is the
313 * parameter to use.
315 while (valid_parameters[parameter] != parameter_char &&
316 valid_parameters[parameter] != '\0')
317 ++parameter;
319 /* If the parameter digit is out of range it will just get printed. */
320 if (parameter < PNG_WARNING_PARAMETER_COUNT
    [all...]
  /external/parameter-framework/bindings/c/
ParameterFramework.cpp 220 return status.failure("Can not start an already started parameter framework");
224 "while starting the parameter framework");
228 "while starting the parameter framework "
265 "\" as the parameter framework is not started.");
284 "\" as the parameter framework is not started.");
304 "as the parameter framework is not started.");
311 /////// Parameter access //////
317 CParameterHandle &parameter; member in struct:PfwParameterHandler_
325 status.failure("Can not bind a parameter without its path");
329 status.failure("The parameter framework is not started,
    [all...]
  /external/pdfium/samples/fx_lpng/lpng_v163/
fx_pngerror.c 241 * PNG_WARNING_PARAMETER_COUNT parameters. In the format string the parameter
296 * the trailing '\0'. It may (in the case of a parameter) read more than
309 int parameter = 0; local
311 /* Search for the parameter digit, the index in the string is the
312 * parameter to use.
314 while (valid_parameters[parameter] != parameter_char &&
315 valid_parameters[parameter] != '\0')
316 ++parameter;
318 /* If the parameter digit is out of range it will just get printed. */
319 if (parameter < PNG_WARNING_PARAMETER_COUNT)
    [all...]
  /external/ppp/pppd/plugins/
winbind.c 385 char *message, *parameter; local
392 if (!(parameter = strstr(buffer, ": "))) {
396 parameter[0] = '\0';
397 parameter++;
398 parameter[0] = '\0';
399 parameter++;
405 if (strcasecmp(parameter, "Yes") == 0) {
414 if (strhex_to_str(nt_key, 32, parameter) == 16) {
423 *error_string = strdup(parameter);
427 *error_string = strdup(parameter);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.h 106 // Some generators accept extra parameters. You can specify this parameter
111 // "parameter".
123 // This will pass "enable_bar,enable_baz" as the parameter to the generator.
140 // plugin [--out=OUTDIR] [--parameter=PARAMETER] PROTO_FILES < DESCRIPTORS
142 // parameter); if omitted, the current directory should be used. --parameter
143 // gives the generator parameter, if any was provided. The PROTO_FILES list
240 const string& parameter,
343 string parameter; member in struct:google::protobuf::compiler::CommandLineInterface::OutputDirective
    [all...]

Completed in 919 milliseconds

1 2 3 4 5 6 7 8 91011>>