Home
last modified time | relevance | path

Searched refs:parameter (Results 1 – 25 of 1597) sorted by relevance

12345678910>>...64

/external/parameter-framework/
DLibParameter.mk38 upstream/parameter/ParameterMgrPlatformConnector.cpp \
39 upstream/parameter/LoggingElementBuilderTemplate.cpp \
40 upstream/parameter/StringParameterType.cpp \
41 upstream/parameter/SyncerSet.cpp \
42 upstream/parameter/BitParameter.cpp \
43 upstream/parameter/BaseParameter.cpp \
44 upstream/parameter/ParameterBlockType.cpp \
45 upstream/parameter/FloatingPointParameterType.cpp \
46 upstream/parameter/SelectionCriteriaDefinition.cpp \
47 upstream/parameter/EnumValuePair.cpp \
[all …]
DSchemas.mk38 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
47 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
58 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
69 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
81 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
90 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
99 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
110 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
122 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
134 LOCAL_MODULE_PATH := $(HOST_OUT)/etc/parameter-framework/Schemas
[all …]
/external/cmockery/cmockery_0_1_2/src/google/
Dcmockery.h52 #define expect_check(function, parameter, check_function, check_data) \ argument
53 _expect_check(#function, #parameter, __FILE__, __LINE__, check_function, \
59 #define expect_in_set(function, parameter, value_array) \ argument
60 expect_in_set_count(function, parameter, value_array, 1)
61 #define expect_in_set_count(function, parameter, value_array, count) \ argument
62 _expect_in_set(#function, #parameter, __FILE__, __LINE__, value_array, \
64 #define expect_not_in_set(function, parameter, value_array) \ argument
65 expect_not_in_set_count(function, parameter, value_array, 1)
66 #define expect_not_in_set_count(function, parameter, value_array, count) \ argument
68 #function, #parameter, __FILE__, __LINE__, value_array, \
[all …]
/external/llvm/test/MC/AsmParser/
Dmacro-qualifier-diagnostics.s3 .macro missing_qualifier parameter: argument
5 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'missing_qualifier'
6 # CHECK: .macro missing_qualifier parameter:
9 .macro non_identifier_qualifier parameter:0 argument
11 # CHECK: error: missing parameter qualifier for 'parameter' in macro 'non_identifier_qualifier'
12 # CHECK: .macro non_identifier_qualifier parameter:0
15 .macro invalid_qualifier parameter:invalid_qualifier argument
17 # CHECK: error: invalid_qualifier is not a valid parameter qualifier for 'parameter' in macro 'inva…
18 # CHECK: .macro invalid_qualifier parameter:invalid_qualifier
21 .macro pointless_default parameter:req=default
[all …]
/external/boringssl/src/crypto/x509/
Dx_algor.c67 ASN1_OPT(X509_ALGOR, parameter, ASN1_ANY)
86 if (alg->parameter == NULL)
87 alg->parameter = ASN1_TYPE_new();
88 if (alg->parameter == NULL)
99 if (alg->parameter) {
100 ASN1_TYPE_free(alg->parameter);
101 alg->parameter = NULL;
104 ASN1_TYPE_set(alg->parameter, ptype, pval);
114 if (algor->parameter == NULL) { in X509_ALGOR_get0()
118 *pptype = algor->parameter->type; in X509_ALGOR_get0()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DBouncyCastleProviderConfiguration.java42 void setParameter(String parameterName, Object parameter) in setParameter() argument
55 if (parameter instanceof ECParameterSpec || parameter == null) in setParameter()
57 curveSpec = (ECParameterSpec)parameter; in setParameter()
61 … curveSpec = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false); in setParameter()
80 if (parameter instanceof ECParameterSpec || parameter == null) in setParameter()
82 ecImplicitCaParams = (ECParameterSpec)parameter; in setParameter()
86 … ecImplicitCaParams = EC5Util.convertSpec((java.security.spec.ECParameterSpec)parameter, false); in setParameter()
98 …if (parameter instanceof DHParameterSpec || parameter instanceof DHParameterSpec[] || parameter ==… in setParameter()
100 dhSpec = parameter; in setParameter()
123 …if (parameter instanceof DHParameterSpec || parameter instanceof DHParameterSpec[] || parameter ==… in setParameter()
[all …]
/external/autotest/client/bin/
Dtest_config.py135 def check_parameter(self, param_type, parameter): argument
139 if parameter == '' or parameter == None:
141 elif param_type == "ip" and self.__isipaddress(parameter):
143 elif param_type == "int" and self.__isint(parameter):
145 elif param_type == "float" and self.__isfloat(parameter):
147 elif param_type == "str" and self.__isstr(parameter):
153 def __isipaddress(self, parameter): argument
163 if re.match(pattern, parameter) == None:
169 def __isint(self, parameter): argument
171 int(parameter)
[all …]
/external/flac/libFLAC/
Dbitwriter.c404 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter) in FLAC__bitwriter_rice_bits() argument
408 FLAC__ASSERT(parameter < sizeof(unsigned)*8); in FLAC__bitwriter_rice_bits()
413 return 1 + parameter + (uval >> parameter); in FLAC__bitwriter_rice_bits()
417 unsigned FLAC__bitwriter_golomb_bits_signed(int val, unsigned parameter)
422 FLAC__ASSERT(parameter > 0);
430 k = FLAC__bitmath_ilog2(parameter);
431 if(parameter == 1u<<k) {
440 d = (1 << (k+1)) - parameter;
441 q = uval / parameter;
442 r = uval - (q * parameter);
[all …]
Dbitreader.c685 FLAC__bool FLAC__bitreader_read_rice_signed(FLAC__BitReader *br, int *val, unsigned parameter) in FLAC__bitreader_read_rice_signed() argument
692 FLAC__ASSERT(parameter <= 31); in FLAC__bitreader_read_rice_signed()
699 if(!FLAC__bitreader_read_raw_uint32(br, &lsbs, parameter)) in FLAC__bitreader_read_rice_signed()
703 uval = (msbs << parameter) | lsbs; in FLAC__bitreader_read_rice_signed()
713 …treader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter) in FLAC__bitreader_read_rice_signed_block() argument
727 FLAC__ASSERT(parameter < 32); in FLAC__bitreader_read_rice_signed_block()
733 if(parameter == 0) { in FLAC__bitreader_read_rice_signed_block()
745 FLAC__ASSERT(parameter > 0); in FLAC__bitreader_read_rice_signed_block()
780 x = b >> (FLAC__BITS_PER_WORD - parameter); in FLAC__bitreader_read_rice_signed_block()
781 if(parameter <= ucbits) { in FLAC__bitreader_read_rice_signed_block()
[all …]
/external/elfutils/tests/
Drun-varlocs.sh32 [4b] parameter 'd'
56 [4a] parameter 'x'
58 [55] parameter 'y'
62 [89] parameter 'x'
66 [96] parameter 'y'
77 [10a] parameter 'argc'
81 [119] parameter 'argv'
91 [92] parameter 'x'
93 [99] parameter 'y'
101 [c4] parameter 'z'
[all …]
/external/libtextclassifier/tests/
Dfml-parser_test.cc49 EXPECT_EQ("start", descriptor.feature(0).parameter(0).name()); in TEST()
50 EXPECT_EQ("2", descriptor.feature(0).parameter(0).value()); in TEST()
92 EXPECT_EQ("ratio", descriptor.feature(0).parameter(0).name()); in TEST()
93 EXPECT_EQ("0.316", descriptor.feature(0).parameter(0).value()); in TEST()
94 EXPECT_EQ("start", descriptor.feature(0).parameter(1).name()); in TEST()
95 EXPECT_EQ("2", descriptor.feature(0).parameter(1).value()); in TEST()
96 EXPECT_EQ("name", descriptor.feature(0).parameter(2).name()); in TEST()
97 EXPECT_EQ("foo", descriptor.feature(0).parameter(2).value()); in TEST()
109 EXPECT_EQ("ratio", descriptor.feature(0).parameter(0).name()); in TEST()
110 EXPECT_EQ("0.316", descriptor.feature(0).parameter(0).value()); in TEST()
[all …]
/external/clang/test/SemaObjC/
Dwarning-missing-selector-name.m8 …id)Arg2; // expected-warning {{'Name2' used as the name of the previous parameter rather than as p…
9 // expected-note {{introduce a parameter name to make 'Name2' part of the selector}} \
10 …// expected-note {{or insert whitespace before ':' to use 'Name2' as parameter name and have an em…
12 …id)Arg3; // expected-warning {{'Name3' used as the name of the previous parameter rather than as p…
13 // expected-note {{introduce a parameter name to make 'Name3' part of the selector}} \
14 …// expected-note {{or insert whitespace before ':' to use 'Name3' as parameter name and have an em…
15 …second; // expected-warning {{'second' used as the name of the previous parameter rather than as p…
16 // expected-note {{introduce a parameter name to make 'second' part of the selector}} \
17 …// expected-note {{or insert whitespace before ':' to use 'second' as parameter name and have an e…
24 …)Arg2 {} // expected-warning {{'Name2' used as the name of the previous parameter rather than as p…
[all …]
Dobjc-container-subscripting.m7 - (id)objectAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is decl…
8 - (void)setObject:(id *)object atIndexedSubscript:(void *)index; // expected-note {{parameter of ty…
9 // expected-note {{parameter of type 'id *' is declared here}}
15 …id oldObject = array[10]; // expected-error {{method index parameter type 'double' is not integra…
16 array[3] = 0; // expected-error {{method index parameter type 'void *' is not integral type}} \
17 …cted-error {{cannot assign to this array because assigning method's 2nd parameter of type 'id *' i…
29 - (id)objectForKeyedSubscript:(id*)key; // expected-note {{parameter of type 'id *' is declared her…
30 - (void)setObject:(void*)object forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'v…
31 … // expected-note {{parameter of type 'id *' is declared here}}
39 …oldObject = dictionary[key]; // expected-error {{method key parameter type 'id *' is not object t…
[all …]
Dwarn-superclass-method-mismatch.m12 -(void) method2: (Sub*) x; // expected-note{{passing argument to parameter 'x' here}}
24 …ruct A*) a; // expected-warning {{method parameter type 'struct A *' does not match super class me…
25 …d1: (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class metho…
27 … : (float)x3; // expected-warning {{method parameter type 'Sub *' does not match super class metho…
29 …1 : (Sub*) x; // expected-warning {{method parameter type 'Sub *' does not match super class metho…
30 … : (float) d; // expected-warning {{method parameter type 'float' does not match super class metho…
31 …: (double) d; // expected-warning {{method parameter type 'double' does not match super class meth…
Dargument-checking.m5 extern int charStarFunc(char *); // expected-note{{passing argument to parameter here}}
6 extern int charFunc(char); // expected-note{{passing argument to parameter here}}
10 -(int)charStarMeth:(char *)s; // expected-note{{passing argument to parameter 's' here}}
11 -structMeth:(struct S)s; // expected-note{{passing argument to parameter 's' here}}
13 :(struct S)s2; // expected-note{{passing argument to parameter 's2' here}}
20 …d-warning {{incompatible integer to pointer conversion passing 'int' to parameter of type 'char *'…
21 …rning {{incompatible pointer to integer conversion passing 'char [4]' to parameter of type 'char'}}
Dparameterized_classes.m30 // expected-note@-1{{type parameter 'T' declared here}}
31 // expected-note@-2{{type parameter 'U' declared here}}
32 // expected-note@-3{{type parameter 'U' declared here}}
35 // Parse a type parameter with a bound that terminates in '>>'.
47 // Parse a type parameter list without a superclass.
51 // Parse a type parameter with name conflicts.
53 T> : NSObject // expected-error{{redeclaration of type parameter 'T'}}
65 @interface PC9<T : int, // expected-error{{type bound 'int' for type parameter 'T' is not an Object…
66 …String> : NSObject // expected-error{{missing '*' in type bound 'NSString' for type parameter 'U'}}
77 @class PC10<T, U : NSObject *>, PC11<T : NSObject *, U : id>; // expected-note{{type parameter 'T' …
[all …]
/external/parameter-framework/upstream/
DREADME.md1 # parameter-framework
3 …d Status](https://travis-ci.org/01org/parameter-framework.svg?branch=master)](https://travis-ci.or…
4 …4jp8tet0qimbu/branch/master)](https://ci.appveyor.com/project/parameter-framework/parameter-framew…
5 …ttps://codecov.io/github/01org/parameter-framework/coverage.svg?branch=master)](https://codecov.io…
9 The parameter-framework is a plugin-based and rule-based framework for handling
16 a given parameter must take a given value - aka. **When**.
18 ![What, How, When](https://01org.github.io/parameter-framework/hosting/what-how-when.png)
24 The parameter-framework can be used to set the value of alsa controls
25 (switches, volumes, etc.) on smartphones/tablets based on parameter-framework
28 [alsa plugin](https://github.com/01org/parameter-framework-plugins-alsa).
[all …]
/external/pdfium/testing/resources/javascript/
Dutil_printd_expected.txt5 Alert: 3: Caught error: util.printd: Incorrect parameter value.
31 Alert: mm/dd/yyyy: Caught error: util.printd: The second parameter can't be converted to a Date.
32 Alert: undefined: Caught error: util.printd: The second parameter can't be converted to a Date.
33 Alert: mm/dd/yyyy: Caught error: util.printd: The second parameter can't be converted to a Date.
34 Alert: mm/dd/yyyy: Caught error: util.printd: The second parameter can't be converted to a Date.
35 Alert: mm/dd/yyyy: Caught error: util.printd: The second parameter can't be converted to a Date.
36 Alert: mm/dd/yyyy: Caught error: util.printd: The second parameter can't be converted to a Date.
37 Alert: [object Object]: Caught error: util.printd: Incorrect parameter type.
38 Alert: clams,3: Caught error: util.printd: Incorrect parameter type.
/external/sl4a/Common/src/com/googlecode/android_scripting/language/
DLanguage.java85 for (ParameterDescriptor parameter : parameters) { in getMethodCallText()
86 result.append(separator).append(getValueText(parameter)); in getMethodCallText()
140 protected String getValueText(ParameterDescriptor parameter) { in getValueText() argument
141 if (parameter.getValue() == null) { in getValueText()
143 } else if (parameter.getType().equals(String.class)) { in getValueText()
144 return getStringValueText(parameter.getValue()); in getValueText()
145 } else if (parameter.getType().equals(Boolean.class)) { in getValueText()
146 return getBooleanValueText(parameter.getValue()); in getValueText()
148 return parameter.getValue(); in getValueText()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DMediaType.java57 Matcher parameter = PARAMETER.matcher(string); in parse() local
58 for (int s = typeSubtype.end(); s < string.length(); s = parameter.end()) { in parse()
59 parameter.region(s, string.length()); in parse()
60 if (!parameter.lookingAt()) return null; // This is not a well-formed media type. in parse()
62 String name = parameter.group(1); in parse()
64 String charsetParameter = parameter.group(2) != null in parse()
65 ? parameter.group(2) // Value is a token. in parse()
66 : parameter.group(3); // Value is a quoted string. in parse()
/external/parameter-framework/upstream/doc/requirements/
Drequirements.md49 2) hardware parameter abstraction
53 by independent parameters. Ie: When changing one parameter it must not change
64 ### Hardware parameter abstraction
66 the hardware parameter properties (domain of validity, size, human representation...).
92 <note>TODO: add a paragraph/requirement about parameter independences.
93 Ie parameter set order should not impact the final state.
120 A parameter **MUST** have a value.
121 <why>because a parameter without value would not abstract any hardware.</why>
128 This value **MUST** be settable for a mutable parameter.
129 <why>By definition, a mutable parameter that can not be mutated it a immutable parameter.</why>
[all …]
/external/flac/libFLAC/include/private/
Dbitwriter.h89 unsigned FLAC__bitwriter_rice_bits(FLAC__int32 val, unsigned parameter);
91 unsigned FLAC__bitwriter_golomb_bits_signed(int val, unsigned parameter);
92 unsigned FLAC__bitwriter_golomb_bits_unsigned(unsigned val, unsigned parameter);
94 …__bool FLAC__bitwriter_write_rice_signed(FLAC__BitWriter *bw, FLAC__int32 val, unsigned parameter);
95 …ice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter);
97 FLAC__bool FLAC__bitwriter_write_golomb_signed(FLAC__BitWriter *bw, int val, unsigned parameter);
98 …_bool FLAC__bitwriter_write_golomb_unsigned(FLAC__BitWriter *bw, unsigned val, unsigned parameter);
/external/toolchain-utils/bestflags/examples/omnetpp/
Dbuild_omnetpp14 for parameter in "$@"
18 file=$parameter
24 if [ "$parameter" == "-param" ]; then
26 flags+=-$parameter' '
33 flags+=$parameter' '
40 flags+=-$parameter' '
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
DParameterSet.java45 Parameter parameter = Parameter.create(field); in create() local
46 parametersBuilder.put(field.getName(), parameter); in create() local
73 Parameter parameter = map.get(name); in fillInDefaultsFor() local
76 : parameter.defaults(); in fillInDefaultsFor()
87 for (Parameter parameter : map.values()) { in injectAll()
88 String value = actualValues.get(parameter.name()); in injectAll()
89 parameter.inject(benchmark, value); in injectAll()
/external/protobuf/src/google/protobuf/compiler/
Dmock_code_generator.cc84 const string& parameter, in ExpectGenerated() argument
110 EXPECT_EQ(GetOutputFileContent(name, parameter, file, in ExpectGenerated()
131 const string& parameter, in Generate() argument
168 if (HasPrefixString(parameter, "insert=")) { in Generate()
170 SplitStringUsing(StripPrefixString(parameter, "insert="), in Generate()
204 printer.PrintRaw(GetOutputFileContent(name_, parameter, in Generate()
230 const string& parameter, in GetOutputFileContent() argument
236 generator_name, parameter, file->name(), in GetOutputFileContent()
244 const string& parameter, in GetOutputFileContent() argument
249 generator_name, parameter, file, in GetOutputFileContent()

12345678910>>...64