OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expression
(Results
201 - 225
of
4888
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/mesa3d/src/glsl/builtins/ir/
matrixCompMult.ir
7
(assign (xy) (array_ref (var_ref z) (constant int (0))) (
expression
vec2 * (array_ref (var_ref x) (constant int (0))) (array_ref (var_ref y) (constant int (0)))))
8
(assign (xy) (array_ref (var_ref z) (constant int (1))) (
expression
vec2 * (array_ref (var_ref x) (constant int (1))) (array_ref (var_ref y) (constant int (1)))))
16
(assign (xyz) (array_ref (var_ref z) (constant int (0))) (
expression
vec3 * (array_ref (var_ref x) (constant int (0))) (array_ref (var_ref y) (constant int (0)))))
17
(assign (xyz) (array_ref (var_ref z) (constant int (1))) (
expression
vec3 * (array_ref (var_ref x) (constant int (1))) (array_ref (var_ref y) (constant int (1)))))
18
(assign (xyz) (array_ref (var_ref z) (constant int (2))) (
expression
vec3 * (array_ref (var_ref x) (constant int (2))) (array_ref (var_ref y) (constant int (2)))))
26
(assign (xyzw) (array_ref (var_ref z) (constant int (0))) (
expression
vec4 * (array_ref (var_ref x) (constant int (0))) (array_ref (var_ref y) (constant int (0)))))
27
(assign (xyzw) (array_ref (var_ref z) (constant int (1))) (
expression
vec4 * (array_ref (var_ref x) (constant int (1))) (array_ref (var_ref y) (constant int (1)))))
28
(assign (xyzw) (array_ref (var_ref z) (constant int (2))) (
expression
vec4 * (array_ref (var_ref x) (constant int (2))) (array_ref (var_ref y) (constant int (2)))))
29
(assign (xyzw) (array_ref (var_ref z) (constant int (3))) (
expression
vec4 * (array_ref (var_ref x) (constant int (3))) (array_ref (var_ref y) (constant int (3)))))
37
(assign (xyz) (array_ref (var_ref z) (constant int (0))) (
expression
vec3 * (array_ref (var_ref x) (constant int (0))) (array_ref (var_ref y) (constant int (0))))
[
all
...]
/external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/antlr3/
TTree.g
35
|
expression
43
expression
44
: ^(ADD
expression
expression
)
/external/chromium_org/third_party/WebKit/ManualTests/inspector-wrappers/
console-str-getter.html
6
window.__defineGetter__("
expression
", doAttack);
/external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_breaks_2.opt_test.expected
6
(if (
expression
bool > (var_ref b) (constant float (0.000000))) (break)
lower_breaks_4.opt_test.expected
6
(if (
expression
bool > (var_ref b) (constant float (0.000000))) ()
lower_pulled_out_jump.opt_test
17
((if (
expression
bool > (var_ref aa) (constant float (0.000000)))
18
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
23
((if (
expression
bool > (var_ref b) (constant float (0.000000)))
24
((if (
expression
bool > (var_ref c) (constant float (0.000000))) (break)
lower_pulled_out_jump.opt_test.expected
10
(if (
expression
bool > (var_ref aa) (constant float (0.000000)))
11
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
18
((if (
expression
bool > (var_ref b) (constant float (0.000000)))
19
((if (
expression
bool > (var_ref c) (constant float (0.000000))) ()
lower_unified_returns.opt_test
16
((if (
expression
bool > (var_ref aa) (constant float (0.000000)))
17
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
21
(if (
expression
bool > (var_ref b) (constant float (0.000000)))
22
((if (
expression
bool > (var_ref c) (constant float (0.000000)))
/external/clang/test/CXX/special/class.dtor/
p10-0x.cpp
9
x->~decltype(*x)(); // expected-error{{the type of object
expression
('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor
expression
}} \
13
y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction
expression
does not match the type 'const A' of the object being destroyed}}
14
y->~decltype(T())(); // expected-error{{destructor type 'decltype(T())' in object destruction
expression
does not match the type 'const A' of the object being destroyed}}
21
x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction
expression
does not match the type 'const A' of the object being destroyed}}
22
x->~decltype()(); // expected-error{{expected
expression
}}
23
x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction
expression
does not match the type 'const A' of the object being destroyed}}
24
x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction
expression
does not match the type 'const A' of the object being destroyed}}
33
expected-error{{the type of object
expression
('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor
expression
}}
[
all
...]
/external/clang/test/Sema/
invalid-init-diag.c
4
struct {int x;} x = a; // expected-error {{with an
expression
of incompatible type 'int'}}
/external/clang/test/SemaObjC/
warn-write-strings.m
4
char* x = "foo"; // expected-warning {{initializing 'char *' with an
expression
of type 'const char [4]' discards qualifiers}}
/external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_2.opt_test.expected
6
(if (
expression
bool > (var_ref b) (constant float (0.000000))) (break)
lower_breaks_4.opt_test.expected
6
(if (
expression
bool > (var_ref b) (constant float (0.000000))) ()
lower_pulled_out_jump.opt_test
17
((if (
expression
bool > (var_ref aa) (constant float (0.000000)))
18
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
23
((if (
expression
bool > (var_ref b) (constant float (0.000000)))
24
((if (
expression
bool > (var_ref c) (constant float (0.000000))) (break)
lower_pulled_out_jump.opt_test.expected
10
(if (
expression
bool > (var_ref aa) (constant float (0.000000)))
11
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
18
((if (
expression
bool > (var_ref b) (constant float (0.000000)))
19
((if (
expression
bool > (var_ref c) (constant float (0.000000))) ()
lower_unified_returns.opt_test
16
((if (
expression
bool > (var_ref aa) (constant float (0.000000)))
17
((if (
expression
bool > (var_ref ab) (constant float (0.000000)))
21
(if (
expression
bool > (var_ref b) (constant float (0.000000)))
22
((if (
expression
bool > (var_ref c) (constant float (0.000000)))
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_error.h
62
/** The
expression
contained an invalid collating element name. */
65
/** The
expression
contained an invalid character class name. */
69
* The
expression
contained an invalid escaped character, or a trailing
74
/** The
expression
contained an invalid back reference. */
77
/** The
expression
contained mismatched [ and ]. */
80
/** The
expression
contained mismatched ( and ). */
83
/** The
expression
contained mismatched { and } */
86
/** The
expression
contained an invalid range in a {}
expression
. */
90
* The
expression
contained an invalid character range
[
all
...]
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_error.h
67
/** The
expression
contained an invalid collating element name. */
70
/** The
expression
contained an invalid character class name. */
74
* The
expression
contained an invalid escaped character, or a trailing
79
/** The
expression
contained an invalid back reference. */
82
/** The
expression
contained mismatched [ and ]. */
85
/** The
expression
contained mismatched ( and ). */
88
/** The
expression
contained mismatched { and } */
91
/** The
expression
contained an invalid range in a {}
expression
. */
95
* The
expression
contained an invalid character range
[
all
...]
/external/antlr/antlr-3.4/runtime/Python/tests/
t045dfabug.g
11
: (modifier+ INT)=> modifier+
expression
15
expression
/external/chromium/chrome/common/extensions/docs/examples/api/pageAction/pageaction_by_content/
contentscript.js
8
// Test the text of the body element against our regular
expression
.
10
// The regular
expression
produced a match, so notify the background page.
Completed in 1246 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>