OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:parameter
(Results
26 - 50
of
8695
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/test/Index/
overriding-ftemplate-comments.cpp
16
// CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_17#t0.0#</USR><Declaration>template <typename T> void comment_to_html_conversion_17(T AAA)</Declaration><Parameters><
Parameter
><Name>AAA</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></
Parameter
></Parameters></Function>]
21
// CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_17</Name><USR>c:@FT@>1#Tcomment_to_html_conversion_17#t0.0#</USR><Declaration>template <typename T> void comment_to_html_conversion_17(T PPP)</Declaration><Parameters><
Parameter
><Name>PPP</Name><Index>0</Index><Direction isExplicit="0">in</Direction><Discussion><Para> Blah blah</Para></Discussion></
Parameter
></Parameters></Function>]
30
// CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@>2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#</USR><Declaration>template <typename AAA, typename BBB>\nvoid comment_to_html_conversion_19(AAA aaa, BBB bbb)</Declaration><TemplateParameters><
Parameter
><Name>AAA</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></
Parameter
><
Parameter
><Name>BBB</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></
Parameter
></TemplateParameters></Function>]
35
// CHECK: FullCommentAsXML=[<Function templateKind="template" file="{{[^"]+}}overriding-ftemplate-comments.cpp" line="[[@LINE-2]]" column="6"><Name>comment_to_html_conversion_19</Name><USR>c:@FT@>2#T#Tcomment_to_html_conversion_19#t0.0#t0.1#</USR><Declaration>template <typename PPP, typename QQQ>\nvoid comment_to_html_conversion_19(PPP aaa, QQQ bbb)</Declaration><TemplateParameters><
Parameter
><Name>PPP</Name><Index>0</Index><Discussion><Para> Aaa</Para></Discussion></
Parameter
><Parameter><Name>QQQ</Name><Index>1</Index><Discussion><Para> Bbb </Para></Discussion></Parameter> (…)
[
all
...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.mm
5
for (id x in values) { } // expected-error {{expression contains unexpanded
parameter
pack 'values'}}
6
@synchronized(values) { // expected-error {{expression contains unexpanded
parameter
pack 'values'}}
7
@throw values; // expected-error {{expression contains unexpanded
parameter
pack 'values'}}
/dalvik/tests/004-annotations/src/android/test/anno/
AnnoSimpleParameter.java
5
@Target(ElementType.
PARAMETER
)
/external/clang/test/SemaObjC/
catch-stmt.m
7
} @catch (void a) { // expected-error{{@catch
parameter
is not a pointer to an interface type}}
8
} @catch (int) { // expected-error{{@catch
parameter
is not a pointer to an interface type}}
9
} @catch (int *b) { // expected-error{{@catch
parameter
is not a pointer to an interface type}}
10
} @catch (id <P> c) { // expected-error{{illegal qualifiers on @catch
parameter
}}
gc-attributes.m
6
void f0(__strong A**); // expected-note{{passing argument to
parameter
here}}
12
f0(&a2); // expected-warning{{passing 'A *__weak *' to
parameter
of type 'A *__strong *' discards qualifiers}}
15
void f1(__weak A**); // expected-note{{passing argument to
parameter
here}}
21
f1(&a2); // expected-warning{{passing 'A *__strong *' to
parameter
of type 'A *__weak *' discards qualifiers}}
warn-superclass-method-mismatch.m
12
-(void) method2: (Sub*) x; // expected-note{{passing argument to
parameter
'x' here}}
24
-(void) method: (struct A*) a; // expected-warning {{method
parameter
type 'struct A *' does not match super class method
parameter
type 'int *'}}
25
-(void) method1: (Sub*) x; // expected-warning {{method
parameter
type 'Sub *' does not match super class method
parameter
type 'Base *'}}
27
+ method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method
parameter
type 'Sub *' does not match super class method
parameter
type 'Base *'}}
29
-(void) method_r: (char)ch : (float*)f1 : (Sub*) x; // expected-warning {{method
parameter
type 'Sub *' does not match super class method
parameter
type 'int *'}}
30
- method5: (int) x : (float) d; // expected-warning {{method
parameter
type 'float' does not match super class method parameter type 'double'}
[
all
...]
/frameworks/compile/slang/tests/F_kernel_badsig/
stderr.txt.expect
1
kernel_badsig.rs:4:30: error: Compute kernel root() must have at least one input
parameter
or a non-void return type
/frameworks/compile/slang/tests/F_kernel_ptr_param/
stderr.txt.expect
1
kernel_ptr_param.rs:4:40: error: Compute kernel root() cannot have
parameter
'i' of pointer type: 'int *'
/frameworks/compile/slang/tests/F_root_compute_really_bad/
stderr.txt.expect
2
root_compute_really_bad.rs:4:5: error: Compute kernel root() must have at least one
parameter
for in or out
3
root_compute_really_bad.rs:4:14: error: Unexpected kernel root()
parameter
'ain' of type 'int'
4
root_compute_really_bad.rs:4:23: error: Unexpected kernel root()
parameter
'aout' of type 'int'
5
root_compute_really_bad.rs:4:33: error: Unexpected kernel root()
parameter
'usrData' of type 'int'
6
root_compute_really_bad.rs:4:48: error: Unexpected kernel root()
parameter
'x1' of type 'float'
7
root_compute_really_bad.rs:4:59: error: Unexpected kernel root()
parameter
'y1' of type 'double'
8
root_compute_really_bad.rs:5:31: error: Duplicate
parameter
entry (by position/name): 'x'
9
root_compute_really_bad.rs:6:19: error: Unexpected kernel root()
parameter
'extra1' of type 'uint32_t'
10
root_compute_really_bad.rs:6:36: error: Unexpected kernel root()
parameter
'extra2' of type 'uint32_t'
/frameworks/compile/slang/tests/F_root_graphics_13/
stderr.txt.expect
1
root_graphics_13.rs:5:23: error: invalid
parameter
type for legacy graphics root() function: 'unsigned int'
/libcore/luni/src/main/java/java/sql/
PreparedStatement.java
34
* used for each {@code IN}
parameter
must match the
parameter
's type.
47
* Clear the current
parameter
values.
49
* Typically,
parameter
values are retained for multiple executions of the
50
* {@code Statement}. Setting a
parameter
value replaces the previous value. This
130
* Sets the value of a specified
parameter
to the supplied {@code Array}.
133
* the
parameter
number index, where the first
parameter
has
136
* a {@code java.sql.Array} giving the new value of the
parameter
at {@code
146
* Sets the value of a specified
parameter
to the content of a supplie
[
all
...]
CallableStatement.java
32
* two forms. One form includes a result
parameter
. The second form does not
33
* include a result
parameter
. Where the result
parameter
is used, it must be
34
* declared as an {@code OUT}
parameter
. Other parameters can be declared as
60
* Gets the value of a specified JDBC {@code ARRAY}
parameter
as a
64
* the
parameter
index, where the first
parameter
has
66
* @return a {@code java.sql.Array} containing the
parameter
value.
73
* Gets the value of a specified JDBC {@code ARRAY}
parameter
as a {@code
77
* the desired
parameter
's name
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/header/
ParametersHeader.java
76
* Returns the value of the named
parameter
, or null if it is not set. A
77
* zero-length String indicates flag
parameter
.
79
* @param name name of
parameter
to retrieve
80
* @return the value of specified
parameter
89
* Return the
parameter
as an object (dont convert to string).
91
* @param name is the name of the
parameter
to get.
102
* @return an Iterator over all the
parameter
names
109
/** Return true if you have a
parameter
and false otherwise.
119
* Removes the specified
parameter
from Parameters of this ParametersHeader.
120
* This method returns silently if the
parameter
is not part of th
[
all
...]
/external/clang/test/Index/Inputs/CommentXML/
invalid-function-07.xml
6
<
Parameter
>
11
</
Parameter
>
invalid-function-08.xml
6
<
Parameter
>
11
</
Parameter
>
invalid-function-09.xml
6
<
Parameter
>
11
</
Parameter
>
valid-function-04.xml
6
<
Parameter
>
11
</
Parameter
>
/external/clang/test/Sema/
arg-duplicate.c
4
x) // expected-error {{redefinition of
parameter
}}
7
x; // expected-error {{redefinition of
parameter
}}
incompatible-sign.c
3
int a(int* x); // expected-note{{passing argument to
parameter
'x' here}}
4
int b(unsigned* y) { return a(y); } // expected-warning {{passing 'unsigned int *' to
parameter
of type 'int *' converts between pointers to integer types with different sign}}
void_arg.c
10
X = sizeof(int (int, void)); // expected-error {{must be the first and only
parameter
}}
11
X = sizeof(int (void, ...)); // expected-error {{must be the first and only
parameter
}}
14
X = sizeof(int (int, Void)); // expected-error {{must be the first and only
parameter
}}
15
X = sizeof(int (Void, ...)); // expected-error {{must be the first and only
parameter
}}
26
void f(const void); // expected-error {{
parameter
must not have type qualifiers}}
/external/clang/test/SemaCXX/
member-location.cpp
4
float a(int *); // expected-note{{passing argument to
parameter
here}}
7
int A::b() { return a(a((int*)0)); } // expected-error {{cannot initialize a
parameter
of type 'int *' with an rvalue of type 'float'}}
/external/clang/test/SemaTemplate/
missing-class-keyword-crash.cpp
4
// expected-note{{template
parameter
is declared here}}
7
class Bar<G> blah_test; // expected-error{{template argument for non-type template
parameter
must be an expression}}
/frameworks/compile/slang/tests/F_root_compute_int_in/
stderr.txt.expect
1
root_compute_int_in.rs:4:6: error: Compute kernel root() must have at least one
parameter
for in or out
2
root_compute_int_in.rs:4:21: error: Unexpected kernel root()
parameter
'in' of type 'const int'
/external/clang/test/FixIt/
dereference-addressof.c
6
void ip(int *aPtr) {} // expected-note{{passing argument to
parameter
'aPtr' here}}
7
void i(int a) {} // expected-note{{passing argument to
parameter
'a' here}}
8
void ii(int a) {} // expected-note{{passing argument to
parameter
'a' here}}
9
void fp(float *aPtr) {} // expected-note{{passing argument to
parameter
'aPtr' here}}
10
void f(float a) {} // expected-note{{passing argument to
parameter
'a' here}}
14
ip(a); // expected-warning{{incompatible integer to pointer conversion passing 'int' to
parameter
of type 'int *'; take the address with &}}
15
i(aPtr); // expected-warning{{incompatible pointer to integer conversion passing 'int *' to
parameter
of type 'int'; dereference with *}}
16
ii(&a); // expected-warning{{incompatible pointer to integer conversion passing 'int *' to
parameter
of type 'int'; remove &}}
17
fp(*bPtr); // expected-error{{passing 'float' to
parameter
of incompatible type 'float *'; remove *}}
18
f(bPtr); // expected-error{{passing 'float *' to
parameter
of incompatible type 'float'; dereference with *}
[
all
...]
/libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java
45
* Get value of operation
parameter
47
* @return value of operation
parameter
54
* Gets value of key
parameter
56
* @return value of key
parameter
63
* Gets value of data
parameter
65
* @return value of data
parameter
72
* Gets value of src
parameter
74
* @return value of src
parameter
81
* Gets value of dst
parameter
83
* @return value of dst
parameter
[
all
...]
Completed in 2724 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>