OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appear
(Results
226 - 250
of
10679
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/ndk/sources/cxx-stl/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/ndk/sources/cxx-stl/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
XlibConf.h
9
* the above copyright notice
appear
in all copies and that both that
10
* copyright notice and this permission notice
appear
in supporting
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxbufstr.h
7
* that the above copyright notice
appear
in all copies and that both that
8
* copyright notice and this permission notice
appear
in supporting
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XlibConf.h
9
* the above copyright notice
appear
in all copies and that both that
10
* copyright notice and this permission notice
appear
in supporting
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxbufstr.h
7
* that the above copyright notice
appear
in all copies and that both that
8
* copyright notice and this permission notice
appear
in supporting
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XlibConf.h
9
* the above copyright notice
appear
in all copies and that both that
10
* copyright notice and this permission notice
appear
in supporting
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxbufstr.h
7
* that the above copyright notice
appear
in all copies and that both that
8
* copyright notice and this permission notice
appear
in supporting
/prebuilts/misc/common/icu4j/
license.txt
10
provided that the above copyright notice(s) and this permission notice
appear
12
this permission notice
appear
in supporting documentation.
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
slist
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_range_errors.h
7
* provided that the above copyright notice
appear
in all copies and
8
* that both that copyright notice and this permission notice
appear
/prebuilts/tools/linux-x86/swt/about_files/
pixman-licenses.txt
7
the above copyright notice
appear
in all copies and that both that
8
copyright notice and this permission notice
appear
in supporting
32
provided that the above copyright notice
appear
in all copies and that
33
both that copyright notice and this permission notice
appear
in
53
the above copyright notice
appear
in all copies and that both that
54
copyright notice and this permission notice
appear
in supporting
76
provided that the above copyright notice
appear
in all copies and that
77
both that copyright notice and this permission notice
appear
in
/prebuilts/tools/linux-x86_64/swt/about_files/
pixman-licenses.txt
7
the above copyright notice
appear
in all copies and that both that
8
copyright notice and this permission notice
appear
in supporting
32
provided that the above copyright notice
appear
in all copies and that
33
both that copyright notice and this permission notice
appear
in
53
the above copyright notice
appear
in all copies and that both that
54
copyright notice and this permission notice
appear
in supporting
76
provided that the above copyright notice
appear
in all copies and that
77
both that copyright notice and this permission notice
appear
in
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp
4
auto a = a; // expected-error{{variable 'a' declared with 'auto' type cannot
appear
in its own initializer}}
5
auto *b = b; // expected-error{{variable 'b' declared with 'auto' type cannot
appear
in its own initializer}}
6
const auto c = c; // expected-error{{variable 'c' declared with 'auto' type cannot
appear
in its own initializer}}
7
if (auto d = d) {} // expected-error {{variable 'd' declared with 'auto' type cannot
appear
in its own initializer}}
8
auto e = ({ auto f = e; 0; }); // expected-error {{variable 'e' declared with 'auto' type cannot
appear
in its own initializer}}
p3-1y.cpp
6
decltype(auto) a = a; // expected-error{{variable 'a' declared with 'auto' type cannot
appear
in its own initializer}}
7
if (decltype(auto) b = b) {} // expected-error {{variable 'b' declared with 'auto' type cannot
appear
in its own initializer}}
8
decltype(auto) c = ({ decltype(auto) d = c; 0; }); // expected-error {{variable 'c' declared with 'auto' type cannot
appear
in its own initializer}}
/external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorExsltFuncResult.java
41
* Verify that the func:result element does not
appear
within a variable,
59
msg = "func:result cannot
appear
within a variable, parameter, or another func:result.";
66
msg = "func:result must
appear
in a func:function element";
/external/chromium/chrome/browser/debugger/manual_tests/
profiler-test-focus-and-exclude.html
24
'Profile 1' must
appear
, and a grid with profile data must
25
appear
on the right. Now test the following functionality in the grid:
59
'eternal_fib' nodes
appear
with expansion;
Completed in 504 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>