HomeSort by relevance Sort by last modified time
    Searched full:here (Results 51 - 75 of 18871) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/manual-tests/
input-type-file-autocomplete-frame-2.html 4 <form><input size=55 value="type something in here"></form>
template.html 7 <p><b>BUG ID:</b> <a href="Bug URL Here">Bug ID Number Here</a> Bug Title Here</p>
10 Please describe the steps required to test this bug here.
14 Expected results if the test PASSES here. Please describe the results the tester would see if the bug in question is FIXED.
18 Expected results if the test FAILS here. Please describe the results the tester would see if the bug in question is NOT FIXED. In many cases, this is just a description of the original bug.
21 Your test code goes here.
  /frameworks/compile/mclinker/lib/Target/ARM/
README 2 and all target-dependent behavior and data are here.
  /frameworks/compile/slang/tests/P_redefine_RS_VERSION/
stderr.txt.expect 2 <built-in>:1:9: note: previous definition is here
  /ndk/tests/device/test-gnustl-full/unit/
epilog_test.cpp 7 std::string s; // if std not properly redefined, error will be here
  /ndk/tests/device/test-stlport/unit/
epilog_test.cpp 7 std::string s; // if std not properly redefined, error will be here
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
quickfix2.xml 3 Random comment here
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLRTests/
ANTLRTests.m 18 // Set-up code here.
23 // Tear-down code here.
  /external/clang/test/Sema/
uninit-variables-vectors.c 9 __m128 x, y, z, w, X; // expected-note {{variable 'x' is declared here}} expected-note {{variable 'y' is declared here}} expected-note {{variable 'w' is declared here}} expected-note {{variable 'z' is declared here}}
10 x = _mm_xor_ps(x,x); // expected-warning {{variable 'x' is uninitialized when used here}}
11 y = _mm_xor_ps(y,y); // expected-warning {{variable 'y' is uninitialized when used here}}
12 z = _mm_xor_ps(z,z); // expected-warning {{variable 'z' is uninitialized when used here}}
13 w = _mm_xor_ps(w,w); // expected-warning {{variable 'w' is uninitialized when used here}}
predefined-function.c 7 int eli(float b); // expected-note {{previous declaration is here}} \
8 // expected-note{{passing argument to parameter 'b' here}}
19 int bar(int i) // expected-note {{previous definition is here}}
28 int foobar(int); // note {{previous declaration is here}}
34 int wibble(); // expected-note {{previous declaration is here}}
var-redecl.c 3 int outer1; // expected-note{{previous definition is here}}
4 extern int outer2; // expected-note{{previous definition is here}}
6 int outer4; // expected-note{{previous definition is here}}
8 int outer6(float); // expected-note{{previous definition is here}}
14 extern float outer3; // expected-note{{previous definition is here}}
16 extern int outer5; // expected-note{{previous definition is here}}
19 extern int outer8; // expected-note{{previous definition is here}}
22 extern int outer9; // expected-note{{previous definition is here}}
32 extern int outer13; // expected-note{{previous definition is here}}
35 extern int outer11; // expected-note{{previous definition is here}}
    [all...]
array-declared-as-incorrect-type.c 6 extern int a2[]; // expected-note {{previous definition is here}}
12 extern int a4[][2]; // expected-note {{previous definition is here}}
15 extern int a5[1][2][3]; // expected-note {{previous definition is here}}
  /external/clang/test/SemaCXX/
access-control-check.cpp 8 int iP; // expected-note {{declared private here}}
9 int PPR(); // expected-note {{declared private here}}
illegal-member-initialization.cpp 17 int &value; // expected-note{{declared here}}
18 const int cvalue; // expected-note{{declared here}}
19 B& b; // expected-note{{declared here}}
20 const B cb; // expected-note{{declared here}}
30 foo() : a(xxx()) {} // no error here.
struct-class-redecl.cpp 3 class X; // expected-note 2{{here}}
7 template<typename T> struct Y; // expected-note{{did you mean class here?}}
11 class A; // expected-note{{previous use is here}}
14 class B; // expected-note{{did you mean struct here?}}
15 class B; // expected-note{{previous use is here}}\
16 // expected-note{{did you mean struct here?}}
18 struct B {}; // expected-warning{{'B' defined as a struct here but previously declared as a class}}
20 class C; // expected-note{{previous use is here}}
22 // expected-note{{previous use is here}}\
23 // expected-note{{did you mean class here?}
    [all...]
incomplete-call.cpp 4 A f(); // expected-note {{'f' declared here}}
7 A f(); // expected-note {{'f' declared here}}
8 A operator()(); // expected-note 2 {{'operator()' declared here}}
9 operator A(); // expected-note {{'operator A' declared here}}
10 A operator!(); // expected-note 2 {{'operator!' declared here}}
11 A operator++(int); // expected-note {{'operator++' declared here}}
12 A operator[](int); // expected-note {{'operator[]' declared here}}
13 A operator+(int); // expected-note {{'operator+' declared here}}
14 A operator->(); // expected-note {{'operator->' declared here}}
  /external/clang/test/SemaTemplate/
recursive-template-instantiation.cpp 5 // expected-note 3{{requested here}}
9 f(p); // expected-note{{requested here}}
  /external/markdown/tests/misc/
underscores.html 2 <p>Here is some <em>emphasis</em>, ok?</p>
5 <p>Here is some <strong>strong</strong> stuff.</p>
  /libcore/luni/src/test/resources/
SimpleParserTest.xml 9 <nestedStuff one="eins"> Some text here </nestedStuff>
13 some more here...
  /external/clang/test/SemaObjC/
check-dup-objc-decls-1.m 3 @interface Foo // expected-note {{previous definition is here}}
8 @class Bar; // expected-note {{previous definition is here}}
16 typedef int OBJECT; // expected-note {{previous definition is here}}
21 typedef int Gorf; // expected-note {{previous definition is here}}
23 @interface Gorf @end // expected-error {{redefinition of 'Gorf' as different kind of symbol}} expected-note {{previous definition is here}}
32 @interface A<P> @end // expected-note {{previous definition is here}}
35 @protocol PP<P> @end // expected-note {{previous definition is here}}
38 @interface A(Cat)<P> @end // expected-note {{previous definition is here}}
43 NSString * TestBaz; // expected-note {{previous definition is here}}
duplicate-ivar-in-class-extension.m 7 int iSuper; // expected-note {{previous declaration is here}}
19 int ivar; // expected-note {{previous declaration is here}}
24 int another_ivar; // expected-note {{previous declaration is here}}
objc-buffered-methods.m 21 - (int) func { return prop; } // compiles - synthesized ivar will be accessible here.
22 - (int)get_g { return global; } // No warning here - synthesized ivar will be accessible here.
  /external/clang/test/CXX/temp/temp.param/
p11.cpp 5 template<class T1 = int, // expected-note{{previous default template argument defined here}}
9 template<template<class> class = Y1, // expected-note{{previous default template argument defined here}}
13 template<int N = 5, // expected-note{{previous default template argument defined here}}
  /external/clang/test/Parser/
cxx11-stmt-attributes.cpp 20 [[unknown_attribute]] goto here;
21 [[unknown_attribute]] here:
35 [[unavailable]] continue; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
37 [[unknown_attributqqq]] while (0); // TODO: remove 'qqq' part and enjoy 'empty loop body' warning here (DiagnoseEmptyLoopBody)
38 [[unknown_attribute]] while (0); // no warning here yet, just an unknown attribute
40 [[unused]] switch (i) { // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
41 [[uuid]] case 0: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
42 [[visibility]] default: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
46 [[fastcall]] goto there; // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
47 [[noinline]] there: // TODO: only noreturn, alignas and carries_dependency are parsed in C++ 11 syntax at the moment, hence no warning here
    [all...]
  /external/clang/test/SemaObjCXX/
overload-1.mm 7 void f(id<Proto1> *) { } // expected-note {{previous definition is here}}
11 void f(Class<Proto1> *) { } // expected-note {{previous definition is here}}
17 void f(I<Proto1> *) { } // expected-note {{previous definition is here}}

Completed in 2074 milliseconds

1 23 4 5 6 7 8 91011>>