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

<<11121314151617181920>>

  /external/markdown/docs/extensions/
CodeHilite.txt 47 # Code goes here ...
52 # Code goes here ...
62 # Code goes here ...
66 # Code goes here ...
75 # Code goes here ...
79 # Code goes here ...
87 behavior will happen as described here.
89 # Code goes here ...
93 # Code goes here ...
97 <div class="codehilite" ><pre><code># Code goes here ..
    [all...]
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 5 struct NonConstexpr1 { // expected-note {{here}}
8 struct NonConstexpr2 { // expected-note {{here}}
24 struct NonConstexpr3 : virtual Constexpr1 {}; // expected-note {{struct with virtual base}} expected-note {{declared here}}
38 struct NonConstexpr4 { // expected-note {{here}}
54 struct A {}; // expected-note {{here}}
  /external/clang/test/CXX/special/class.dtor/
p9.cpp 31 static void operator delete(void *p) {}; // expected-note {{member 'operator delete' declared here}}
37 static void operator delete(void *, size_t) {}; // expected-note {{member 'operator delete' declared here}}
61 static void operator delete(void*, const int &); // expected-note {{declared here}}
67 static void operator delete(void*, const int &); // expected-note {{declared here}}
70 C c; // expected-note {{first required here}}
  /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}}
  /external/clang/test/Parser/
missing-end-4.m 5 @implementation X1 // expected-note {{implementation started here}}
12 @implementation X2 // expected-note {{implementation started here}}
17 @interface X6 // expected-note {{class started here}}
22 @protocol P1 // expected-note {{protocol started here}}
27 @interface X4 // expected-note {{class started here}}
  /external/clang/test/Sema/
tentative-decls.c 22 int i1 = 1; // expected-note {{previous definition is here}}
26 extern int i5; // expected-note {{previous definition is here}}
29 static int i2 = 5; // expected-note 1 {{previous definition is here}}
46 int redef[]; // expected-note {{previous definition is here}}
50 extern int i6; // expected-note {{previous definition is here}}
transparent-union.c 9 void f(TU); // expected-note{{passing argument to parameter here}}
34 void fvp(TU); // expected-note{{previous declaration is here}}
37 void fsp(TU); // expected-note{{previous declaration is here}}
40 void fi(TU); // expected-note{{previous declaration is here}}
43 void fvpp(TU); // expected-note{{previous declaration is here}}
46 /* FIXME: we'd like to just use an "int" here and align it differently
  /external/clang/test/SemaCXX/
access-base-class.cpp 5 class B : private A { }; // expected-note {{declared private here}}
16 class B : A { }; // expected-note {{implicitly declared private here}}
64 class A {}; // expected-note{{member is declared here}}
66 class B : private A { // expected-note {{declared private here}} expected-note {{constrained by private inheritance here}}
default1.cpp 3 void f(int i = 0); // expected-note {{previous definition is here}}
18 // expected-note{{passing argument to parameter here}}
31 // expected-note{{passing argument to parameter 'y' here}}
34 // expected-note{{passing argument to parameter here}}
49 void j (int f); // expected-note{{'j' declared here}}
dependent-auto.cpp 6 template<typename U> only(U) = delete; // expected-note {{here}}
16 f(); // expected-note {{here}}
18 f(0, 1); // expected-note {{here}}
34 bool b = h('x'); // expected-note {{here}}
45 f<long>(); // expected-note {{here}}
enum-unscoped-nonexistent.cpp 9 constexpr int g(); // expected-note {{declared here}}
12 template<> enum S<char>::E : int {}; // expected-note {{enum 'S<char>::E' was explicitly specialized here}}
17 // The unqualified-id here names a member of the non-dependent base class Base
23 // The unqualified-id here names a member of the current instantiation, which
26 static_assert(S<char>().g() == 1, ""); // expected-note {{here}} expected-error {{not an integral constant expression}} expected-note {{undefined}}
array-bounds.cpp 4 int x[2]; // expected-note 4 {{array 'x' declared here}}
5 int y[2]; // expected-note 2 {{array 'y' declared here}}
6 int z[1]; // expected-note {{array 'z' declared here}}
7 int w[1][1]; // expected-note {{array 'w' declared here}}
8 int v[1][1][1]; // expected-note {{array 'v' declared here}}
33 void f2(const int (&a)[2]) { // expected-note {{declared here}}
44 short a[2]; // expected-note 4 {{declared here}}
56 int array[2]; // expected-note {{declared here}}
61 int array2[] = { 0, 1, 2 }; // expected-note 2 {{declared here}}
69 const char str2[] = "foo"; // expected-note {{declared here}}
    [all...]
undefined-internal.cpp 11 foo(); // expected-note {{used here}}
12 bar<int>(); // expected-note {{used here}}
23 foo(); // expected-note {{used here}}
24 var = 0; // expected-note {{used here}}
25 bar<int>(); // expected-note {{used here}}
61 a.foo(); // expected-note {{used here}}
63 a.baz(); // expected-note {{used here}}
67 Test() {} // expected-note 2 {{used here}}
83 B<A>::var = 0; // expected-note {{used here}}
84 B<A>::foo(); // expected-note {{used here}}
    [all...]
deleted-function.cpp 7 void fn2(); // expected-note {{previous declaration is here}}
10 void fn3() = delete; // expected-note {{previous definition is here}}
18 WithDel() = delete; // expected-note {{function has been explicitly marked deleted here}}
19 void fn() = delete; // expected-note {{function has been explicitly marked deleted here}}
20 operator int() = delete; // expected-note {{function has been explicitly marked deleted here}}
38 ~DelDtor() = delete; // expected-note 9{{here}}
  /external/clang/test/SemaObjC/
arc-peformselector.m 5 - (id)copy; // expected-note {{method 'copy' declared here}}
6 - (id) test __attribute__((ns_returns_retained)); // expected-note {{method 'test' declared here}}
7 + (id) new ; // expected-note {{method 'new' declared here}}
10 - (id)PlusOne __attribute__((ns_returns_retained)); // expected-note {{method 'PlusOne' declared here}}
29 // expected-note {{used here}}
arc-property.m 11 @property (strong) id myString; // expected-note {{property declared here}}
13 @property (retain) id myString2; // expected-note {{property declared here}}
17 @property __weak id myString5; // expected-note {{property declared here}}
38 @property(weak) id x; // expected-note {{property declared here}}
39 @property(weak) id y; // expected-note {{property declared here}}
default-synthesize-3.m 7 @interface NoAuto // expected-note 2 {{class with specified objc_requires_property_definitions attribute is declared here}}
8 @property int NoAutoProp; // expected-note 2 {{property declared here}}
16 @interface Sub : NoAuto // expected-note 3 {{class with specified objc_requires_property_definitions attribute is declared here}}
17 @property (copy) id SubProperty; // expected-note 2 {{property declared here}}
27 @property (copy) id DeepMustSynthProperty; // expected-note {{property declared here}}
method-typecheck-1.m 4 - (void) setMoo: (int) x; // expected-note {{previous definition is here}}
5 - (int) setMoo1: (int) x; // expected-note {{previous definition is here}}
18 + (void) cMoo: (int) x; // expected-note 2 {{previous definition is here}}
28 - (void) setCat: (int) x; // expected-note 2 {{previous definition is here}}
29 + (void) cCat: (int) x; // expected-note {{previous definition is here}}
arc-system-header.m 1 // silly workaround expected-note {{marked unavailable here}}
5 // another silly workaround expected-note {{marked unavailable here}}
14 // workaround expected-note {{marked unavailable here}}
19 // workaround expected-note {{marked unavailable here}}
25 // workaround expected-note {{marked unavailable here}}
41 // workaround expected-note 4 {{marked unavailable here}}
method-conflict-1.m 14 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}}
29 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
30 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
46 - (void) test1:(A*) object; // broken-note {{previous definition is here}}
57 - (void) test1:(id) object; // broken-note {{previous definition is here}}
67 - (B*) test2; // broken-note {{previous definition is here}}
objc-container-subscripting.m 7 - (id)objectAtIndexedSubscript:(double)index; // expected-note {{parameter of type 'double' is declared here}}
8 - (void)setObject:(id *)object atIndexedSubscript:(void *)index; // expected-note {{parameter of type 'void *' is declared here}} \
9 // expected-note {{parameter of type 'id *' is declared here}}
29 - (id)objectForKeyedSubscript:(id*)key; // expected-note {{parameter of type 'id *' is declared here}}
30 - (void)setObject:(void*)object forKeyedSubscript:(id*)key; // expected-note {{parameter of type 'void *' is declared here}} \
31 // expected-note {{parameter of type 'id *' is declared here}}
  /external/dropbear/libtommath/
bn_mp_montgomery_setup.c 38 x = (((b + 2) & 4) << 1) + b; /* here x*a==1 mod 2**4 */
39 x *= 2 - b * x; /* here x*a==1 mod 2**8 */
41 x *= 2 - b * x; /* here x*a==1 mod 2**16 */
44 x *= 2 - b * x; /* here x*a==1 mod 2**32 */
47 x *= 2 - b * x; /* here x*a==1 mod 2**64 */
  /cts/tests/tests/net/src/android/net/cts/
LocalSocketTest.java 77 fail("testLocalSocket shouldn't come to here");
90 fail("testLocalSocket shouldn't come to here");
99 fail("testLocalSocket shouldn't come to here");
108 fail("testLocalSocket shouldn't come to here");
138 fail("testLocalSocketSecondary shouldn't come to here");
145 fail("testLocalSocketSecondary shouldn't come to here");
152 fail("testLocalSocketSecondary shouldn't come to here");
159 fail("testLocalSocketSecondary shouldn't come to here");
166 fail("testLocalSocketSecondary shouldn't come to here");
  /external/clang/test/CXX/class.access/
p4.cpp 19 void foo(Protected&); // expected-note 2 {{declared protected here}}
21 void foo(Private&); // expected-note 2 {{declared private here}}
45 void operator+(Protected&); // expected-note {{declared protected here}}
46 void operator[](Protected&); // expected-note {{declared protected here}}
47 void operator()(Protected&); // expected-note {{declared protected here}}
49 operator ProtectedSurrogate() const; // expected-note {{declared protected here}}
51 void operator+(Private&); // expected-note {{declared private here}}
52 void operator[](Private&); // expected-note {{declared private here}}
53 void operator()(Private&); // expected-note {{declared private here}}
54 void operator-(); // expected-note {{declared private here}}
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
parameter-matching.cpp 8 template<typename ...T> struct X1t; // expected-note{{previous template type parameter pack declared here}}
11 template<typename T> struct X2t; // expected-note{{previous template type parameter declared here}}
17 template<template<typename ...T> class> struct X1t_intt; // expected-note{{previous template type parameter pack declared here}}
20 template<template<typename T> class> struct X2t_intt; // expected-note{{previous template type parameter declared here}}
23 template<int ...Values> struct X1nt; // expected-note{{previous non-type template parameter pack declared here}}
26 template<template<class T> class> class X1tt; // expected-note{{previous template template parameter declared here}}

Completed in 805 milliseconds

<<11121314151617181920>>