OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:parameter
(Results
201 - 225
of
8695
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
TitledSlider.java
42
public void setUp(ViewGroup container,
Parameter
parameter
, Editor editor) {
46
mParameter = (ParameterInteger)
parameter
;
82
public void setPrameter(
Parameter
parameter
) {
83
mParameter = (ParameterInteger)
parameter
;
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
StringEvaluator.java
39
*
parameter
constraints during UI wizard value editing.
61
String evaluate(@NonNull String expression, @NonNull List<
Parameter
> parameters) {
63
for (
Parameter
parameter
: parameters) {
64
mParameters.put(
parameter
.id,
parameter
.value);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java
237
private LinkedHashMap<String, ArrayList<
Parameter
>> mParamsMap =
238
new LinkedHashMap<String, ArrayList<
Parameter
>>();
284
* Adds a {@link
Parameter
} to this property.
285
* @param param The
parameter
that should be added.
287
public void addParameter(
Parameter
param) {
288
ArrayList<
Parameter
> params = mParamsMap.get(param.name);
290
params = new ArrayList<
Parameter
>();
297
* Returns the set of
parameter
names for this property.
298
* @return The set of
parameter
names for this property.
310
public List<
Parameter
> getParameters(String name)
510
Parameter
parameter
= null;
local
545
Parameter
parameter
= null;
local
[
all
...]
/external/android-mock/src/com/google/android/testing/mocking/
AndroidMock.java
56
* <b>A note about
parameter
and return types for the <i>expects</i> style of methods.</b>
61
* only to satisfy the compile-time
parameter
requirements of the methods being mocked in order to
66
* various
parameter
types, but will throw an {@link java.lang.IllegalStateException} if anything
90
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
112
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
143
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
166
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
196
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
218
* The
parameter
{@literal args} allows the caller to choose which constructor on the Class
247
* or according to
parameter
expectation criteria. Some examples of parameter expectatio
[
all
...]
/cts/tools/signature-tools/src/signature/compare/model/
IParameterDelta.java
29
* Returns a
parameter
type delta or {@code null} if no delta is available.
31
* @return a
parameter
type delta, maybe {@code null}
/external/apache-http/src/org/apache/http/conn/params/
ConnRoutePNames.java
34
*
Parameter
names for routing in HttpConn.
43
*
Parameter
for the default proxy.
48
* This
parameter
expects a value of type {@link org.apache.http.HttpHost}.
55
*
Parameter
for the local address.
56
* On machines with multiple network interfaces, this
parameter
63
* This
parameter
expects a value of type {@link java.net.InetAddress}.
70
*
Parameter
for an forced route.
77
* This
parameter
expects a value of type
/external/ceres-solver/internal/ceres/
parameter_block_ordering.h
45
// Uses an approximate independent set ordering to order the
parameter
48
// ordering of the
parameter
blocks and the return value is size of
62
//
parameter
blocks of a problem in a sequence of independent
63
// sets. The ordering covers all the non-constant
parameter
blocks in
68
// Builds a graph on the
parameter
blocks of a Problem, whose
70
// vertex corresponds to a
parameter
block in the Problem except for
71
//
parameter
blocks that are marked constant. An edge connects two
72
//
parameter
blocks, if they co-occur in a residual block.
/external/chromium/net/spdy/
spdy_http_utils.h
19
// |headers| input
parameter
with the SpdyHeaderBlock.
20
// |info| output
parameter
for the HttpResponseInfo.
/external/clang/test/CXX/over/over.oper/over.literal/
p8.cpp
14
double operator "" _miles(double); // expected-error {{
parameter
}}
15
template<char...> int operator "" j(const char*); // expected-error {{
parameter
}}
/external/clang/test/PCH/
functions.c
9
// expected-note{{passing argument to
parameter
here}}
18
g0(y); // expected-warning{{incompatible pointer types passing 'float *' to
parameter
of type 'int *'}}
/external/clang/test/Sema/
attr-regparm.c
5
__attribute((regparm(-1))) int x2(void); // expected-error{{'regparm'
parameter
must be between 0 and 3 inclusive}}
6
__attribute((regparm(5))) int x3(void); // expected-error{{'regparm'
parameter
must be between 0 and 3 inclusive}}
constructor-attribute.c
7
int f() __attribute__((constructor(1.0))); // expected-error {{'constructor' attribute requires
parameter
1 to be an integer constant}}
13
int f() __attribute__((destructor(1.0))); // expected-error {{'destructor' attribute requires
parameter
1 to be an integer constant}}
predefined-function.c
8
// expected-note{{passing argument to
parameter
'b' here}}
14
eli(b); // expected-error{{passing 'int (int)' to
parameter
of incompatible type 'float'}}
/external/clang/test/SemaObjC/
block-id-as-block-argtype.m
10
void fn(block4_t arg); // expected-note {{passing argument to
parameter
'arg' here}}
21
fn(b1); // expected-error {{incompatible block pointer types passing 'block1_t' (aka 'void (^)(int)') to
parameter
of type 'block4_t' (aka 'void (^)(id)')}}
comptypes-a.m
29
a // expected-warning {{conflicting
parameter
types in implementation of 'compareThis:withThat:': 'int' vs 'id<PBXCompletionItem>'}}
30
withThat:(id<PBXCompletionItem>)b { // expected-warning {{conflicting
parameter
types in implementation of 'compareThis:withThat:': 'id' vs 'id<PBXCompletionItem>'}}
incompatible-protocol-qualified-types.m
11
INTF <MyProto1> * Func(INTF <MyProto1, MyProto2> *p2) // expected-note{{passing argument to
parameter
'p2' here}}
24
Func(p2); // expected-warning {{incompatible pointer types passing 'INTF<MyProto1> *' to
parameter
of type 'INTF<MyProto1,MyProto2> *'}}
method-typecheck-3.m
18
- (void)takesA: (B*)a // expected-warning {{conflicting
parameter
types in implementation of 'takesA:'}}
20
- (void)takesId: (B*)a // expected-warning {{conflicting
parameter
types in implementation of 'takesId:'}}
protocol-typecheck.m
12
- (void)setFlexElement2:(NSObject <PWhatever, XCElementSpacerP> *)flexer; // expected-note{{passing argument to
parameter
'flexer' here}}
23
[obj setFlexElement2:flexer2]; // expected-warning{{incompatible pointer types sending 'NSObject<PWhatever,XCElementP> *' to
parameter
of type 'NSObject<PWhatever,XCElementSpacerP> *'}}
/external/clang/test/SemaObjCXX/
gc-attributes.mm
6
void f0(__strong A**); // expected-note{{candidate function not viable: 1st argument ('A *__weak *') has __weak ownership, but
parameter
has __strong ownership}}
15
void f1(__weak A**); // expected-note{{candidate function not viable: 1st argument ('A *__strong *') has __strong ownership, but
parameter
has __weak ownership}}
/external/clang/test/SemaOpenCL/
event_t.cl
9
void foo(event_t evt); // expected-note {{passing argument to
parameter
'evt' here}}
16
foo(5); // expected-error {{passing 'int' to
parameter
of incompatible type 'event_t'}}
/external/clang/test/SemaTemplate/
instantiation-default-2.cpp
3
template<typename T, T Value> struct Constant; // expected-note{{template
parameter
is declared here}} \
4
// FIXME: bad location expected-error{{a non-type template
parameter
cannot have type 'float'}}
/external/emma/core/java12/com/vladium/emma/report/
IReportProperties.java
24
//
parameter
:
29
//
parameter
:
35
//
parameter
:
41
//
parameter
:
44
//
parameter
:
53
//
parameter
:
62
//
parameter
:
67
//
parameter
:
/external/icu4c/test/perf/howExpensiveIs/
sieve.h
25
* @param marginOfError out
parameter
: gives +/- margin of err at 95% confidence
32
* @param marginOfError out
parameter
: gives +/- margin of error at 95% confidence.
/external/libcap-ng/libcap-ng-0.7/docs/
capng_print_caps_numeric.3
11
capng_print_caps_numeric will create a numeric representation of the internal capabilities. The representation can be sent to either stdout or a buffer by passing CAPNG_PRINT_STDOUT or CAPNG_PRINT_BUFFER respectively for the where
parameter
. If the option was for a buffer, this function will malloc a buffer that the caller must free.
13
The set
parameter
controls what is included in the representation. The legal options are CAPNG_SELECT_CAPS for the traditional capabilities, CAPNG_SELECT_BOUNDS for the bounding set, or CAPNG_SELECT_BOTH if clearing both is desired.
/external/nist-sip/java/gov/nist/javax/sip/address/
SipURIExt.java
32
* Returns whether the <code>gr</code>
parameter
is set.
39
* Sets the <code>gr</code>
parameter
.
Completed in 432 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>