/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_epilog.h | 9 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_epilog.h | 9 # pragma option -w-pow // -w-8062 Previous options and warnings not restored
|
/build/tools/droiddoc/templates-pdk/ |
docpage.cs | 49 <?cs if:previous.link ?> 50 <div class="training-nav-button-previous"> 51 <a href="<?cs var:previous.link ?>"> 53 Previous lesson 54 <span class="training-nav-button-title"><?cs var:previous.title ?></span> 58 <?cs /if ?><?cs # end if previous.link ?> 68 <?cs if:!startpage && (previous.link || next.link) ?> 80 <?cs if:previous.link ?> 81 <div class="training-nav-button-previous"> 82 <a href="<?cs var:previous.link ?>" [all...] |
/external/clang/test/CXX/over/over.load/ |
p2-0x.cpp | 13 void i() &; // expected-note{{previous declaration}} 19 template<typename T> void g(T*) &; // expected-note{{previous declaration}} 22 void k(); // expected-note{{previous declaration}}
|
/external/clang/test/CXX/special/class.inhctor/ |
p7.cpp | 5 B1(int); // expected-note {{previous constructor}} expected-note {{conflicting constructor}} 21 B3(T); // expected-note {{previous constructor}} 32 template<typename T> B5(T); // expected-note {{previous constructor}}
|
/external/clang/test/PCH/ |
thread-local.cpp | 14 // expected-note@7 {{previous declaration is here}} 16 // expected-note@8 {{previous declaration is here}} 18 // expected-note@9 {{previous declaration is here}}
|
variables.c | 35 double z; // expected-error{{redefinition}} expected-note@14{{previous}} 36 int z2 = 18; // expected-error{{redefinition}} expected-note@16{{previous}} 37 double VeryHappy; // expected-error{{redefinition}} expected-note@19{{previous definition is here}}
|
/external/clang/test/Preprocessor/ |
macro_misc.c | 21 #define FUNC_LIKE3(a) ( a) // expected-note {{previous definition is here}} 27 #define FUNC_LIKE4(a,b) (a+b) // expected-note {{previous definition is here}} 35 #define FUNC_LIKE5(a,b) (a+b) // expected-note {{previous definition is here}}
|
/external/clang/test/Sema/ |
knr-def-call.c | 14 void f2(float); // expected-note{{previous declaration is here}} 15 void f2(x) float x; { } // expected-warning{{promoted type 'double' of K&R function parameter is not compatible with the parameter type 'float' declared in a previous prototype}} 26 register char *s, c; // expected-warning{{promoted type 'char *' of K&R function parameter is not compatible with the parameter type 'const char *' declared in a previous prototype}}
|
tentative-decls.c | 22 int i1 = 1; // expected-note {{previous definition is here}} 26 extern int i5; // expected-note {{previous declaration is here}} 29 static int i2 = 5; // expected-note 1 {{previous definition is here}} 48 int redef[]; // expected-note {{previous definition is here}} 52 extern int i6; // expected-note {{previous declaration is here}}
|
/external/clang/test/SemaCXX/ |
namespace.cpp | 2 namespace A { // expected-note 2 {{previous definition is here}} 11 class B {}; // expected-note {{previous definition is here}} \ 14 void C(); // expected-note {{previous definition is here}}
|
redeclared-alias-template.cpp | 3 template<typename T> using A = int; // expected-note 2{{previous}} 7 template<typename T1, typename T2> using B = T1; // expected-note {{previous}} 19 TT<A> f(); // expected-note {{previous declaration is here}}
|
warn-missing-variable-declarations.cpp | 4 int vbad1; // expected-warning{{no previous extern declaration for non-static variable 'vbad1'}} 5 int vbad2 = 10; // expected-warning{{no previous extern declaration for non-static variable 'vbad2'}} 8 int vbad3; // expected-warning{{no previous extern declaration for non-static variable 'vbad3'}}
|
linkage-spec.cpp | 76 extern "C" void pr7859_a(int) {} // expected-note {{previous definition}} 79 extern "C" void pr7859_b() {} // expected-note {{previous definition}} 82 extern "C" void pr7859_c(short) {} // expected-note {{previous definition}} 167 // expected-note@-5 {{previous declaration is here}} 168 // expected-warning@-3 {{retaining previous language linkage}}
|
/external/clang/test/SemaObjC/ |
class-impl-1.m | 3 typedef int INTF3; // expected-note {{previous definition is here}} 5 @interface SUPER @end // expected-note {{previous definition is here}} 12 @implementation INTF @end // expected-note {{previous definition is here}}
|
dist-object-modifiers.m | 5 - (bycopy id)serverPID; // expected-note {{previous declaration is here}} 6 - (void)doStuff:(bycopy id)clientId; // expected-note {{previous declaration is here}} 8 + (oneway id) stillMore : (byref id)Arg : (bycopy oneway id)Arg1; // expected-note 3 {{previous declaration is here}}
|
ivar-lookup.m | 54 int IVAR; // expected-note 4 {{previous definition is here}} 61 int PIVAR; // expected-note {{previous definition is here}} 137 int d; // expected-note {{previous definition is here}} 138 NSString *e_strong; // expected-note {{previous definition is here}} 139 NSData *f_weak; // expected-note {{previous definition is here}} 140 int g; // expected-note 2 {{previous definition is here}} 145 int g; // expected-note {{previous definition is here}} \
|
/external/llvm/include/llvm/ADT/ |
edit_distance.h | 61 unsigned *Previous = SmallBuffer; 63 Previous = new unsigned [2*(n+1)]; 64 Allocated.reset(Previous); 66 unsigned *Current = Previous + (n + 1); 69 Previous[i] = i; 78 Previous[x-1] + (FromArray[y-1] == ToArray[x-1] ? 0u : 1u), 79 std::min(Current[x-1], Previous[x])+1); 82 if (FromArray[y-1] == ToArray[x-1]) Current[x] = Previous[x-1]; 83 else Current[x] = std::min(Current[x-1], Previous[x]) + 1; 92 Current = Previous; [all...] |
/hardware/intel/common/libwsbm/src/ |
wsbm_atomic.h | 67 int32_t previous; local 69 __asm__ __volatile__("lock; cmpxchgl %k1,%2":"=a"(previous) 73 return previous;
|
/external/clang/lib/Format/ |
TokenAnnotator.cpp | 47 FormatToken *Left = CurrentToken->Previous; 52 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template); 80 if (CurrentToken->Previous->isOneOf(tok::pipepipe, tok::ampamp) && 81 CurrentToken->Previous->is(TT_BinaryOperator) && 102 FormatToken *Left = CurrentToken->Previous; 106 } else if (FormatToken *MaybeSel = Left->Previous) { 108 if (MaybeSel->isObjCAtKeyword(tok::objc_selector) && MaybeSel->Previous && 109 MaybeSel->Previous->is(tok::at)) { 114 if (Left->Previous & [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p4.cpp | 19 template<> void f0(long); // expected-note{{previous template specialization is here}} 22 template<> void X0<long>::f1(); // expected-note{{previous template specialization is here}} 25 template<> struct X0<long>::Inner; // expected-note{{previous template specialization is here}} 28 template<> long X0<long>::value; // expected-note{{previous template specialization is here}} 31 template<> struct X0<double>; // expected-note{{previous template specialization is here}}
|
/external/junit/src/org/junit/internal/runners/ |
TestClass.java | 68 private boolean isShadowed(Method current, Method previous) { 69 if (! previous.getName().equals(current.getName())) 71 if (previous.getParameterTypes().length != current.getParameterTypes().length) 73 for (int i= 0; i < previous.getParameterTypes().length; i++) { 74 if (! previous.getParameterTypes()[i].equals(current.getParameterTypes()[i]))
|
/external/guava/guava/src/com/google/common/collect/ |
LinkedListMultimap.java | 115 Node<K, V> previous; // the previous node (with any key) field in class:LinkedListMultimap.Node 117 Node<K, V> previousSibling; // the previous node with the same key 227 node.previous = tail; 243 node.previous = nextSibling.previous; 252 if (nextSibling.previous == null) { // nextSibling was head 255 nextSibling.previous.next = node; 257 nextSibling.previous = node; 270 if (node.previous != null) 320 Node<K, V> previous; field in class:LinkedListMultimap.NodeIterator 330 previous(); method 379 public Node<K, V> previous() { method in class:LinkedListMultimap.NodeIterator 453 Node<K, V> previous; field in class:LinkedListMultimap.ValueForKeyIterator 479 previous(); method 511 public V previous() { method in class:LinkedListMultimap.ValueForKeyIterator [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
LinkedListMultimap.java | 111 Node<K, V> previous; // the previous node (with any key) field in class:LinkedListMultimap.Node 113 Node<K, V> previousSibling; // the previous node with the same key 223 node.previous = tail; 239 node.previous = nextSibling.previous; 248 if (nextSibling.previous == null) { // nextSibling was head 251 nextSibling.previous.next = node; 253 nextSibling.previous = node; 266 if (node.previous != null) 316 Node<K, V> previous; field in class:LinkedListMultimap.NodeIterator 326 previous(); method 375 public Node<K, V> previous() { method in class:LinkedListMultimap.NodeIterator 449 Node<K, V> previous; field in class:LinkedListMultimap.ValueForKeyIterator 475 previous(); method 507 public V previous() { method in class:LinkedListMultimap.ValueForKeyIterator [all...] |
/external/chromium-trace/trace-viewer/tracing/third_party/closure_linter/closure_linter/ |
tokenutil.py | 42 token = token.previous 47 """Returns the first token in the previous line as token. 53 The first token in the previous line as token, or None if token is on the 57 if first_in_line.previous: 58 return GetFirstTokenInSameLine(first_in_line.previous) 120 previous = token.previous 121 if previous: 122 if func(previous): 123 return previous [all...] |