/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/ |
p1.cpp | 56 constexpr int f3(); // expected-note {{previous declaration is here}} 58 int f4(); // expected-note {{previous declaration is here}} 61 template<typename T> constexpr T f5(T); // expected-note {{previous}} 81 template <> char ft(char c) { return c; } // expected-note {{previous}} 85 template <> constexpr int S::g() { return 0; } // expected-note {{previous}} expected-warning {{C++14}}
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/ |
p3.cpp | 147 extern T arrX; // expected-note {{previous}} 161 extern T n_var; // expected-error {{redefinition of 'n_var' with a different type: 'double' vs 'int'}} expected-note {{previous}} 162 extern T n_fn(); // expected-error {{functions that differ only in their return type cannot be overloaded}} expected-note {{previous}} 168 extern T o_var; // expected-note {{previous}} 169 extern T o_fn(); // expected-note {{previous}}
|
/external/clang/test/Sema/ |
block-return.c | 12 return 1; // expected-error {{return type 'int' must match previous return type 'void' when block literal has unspecified explicit return type}} 19 return; // expected-error {{return type 'void' must match previous return type 'int' when block literal has unspecified explicit return type}} 34 return (double)2.0; // expected-error {{return type 'double' must match previous return type 'float' when block literal has unspecified explicit return type}} 35 return 1; // expected-error {{return type 'int' must match previous return type 'float' when block literal has unspecified explicit return type}} 41 return 2; // expected-error {{return type 'int' must match previous return type 'char *' when block literal has unspecified explicit return type}}
|
enum.c | 35 union u0; // expected-note {{previous use is here}} 36 enum u0 { U0A }; // expected-error {{use of 'u0' with tag type that does not match previous declaration}} 57 enum e0 { // expected-note {{previous definition is here}}
|
/external/clang/test/SemaCXX/ |
linkage2.cpp | 6 int x; // expected-note {{previous definition is here}} 8 void f() {} // expected-note {{previous definition is here}} 113 void __attribute__((overloadable)) test9_f(int c); // expected-note {{previous declaration is here}} 147 void a(void); // expected-note {{previous declaration is here}} 153 const int a = 5; // expected-note {{previous definition is here}}
|
deleted-function.cpp | 7 void fn2(); // expected-note {{previous declaration is here}} 10 void fn3() = delete; // expected-note {{previous definition is here}} 66 void test4() {} // expected-note {{previous definition is here}}
|
/external/icu/icu4c/source/common/ |
ulist.c | 18 UListNode *previous; member in struct:UListNode 63 newItem->previous = NULL; 88 newItem->previous = list->tail; 114 newItem->previous = NULL; 116 list->head->previous = newItem;
|
/external/libavc/encoder/ |
irc_est_sad.c | 36 /* Previous frame SAD */ 110 * then return the previous encoded I frame sad 137 * Only one IFI has been encoded and so use the previous I 173 * If any of the previous p frame SADs are zeros we just return 174 * the previous I frame SAD
|
/external/selinux/libsepol/cil/src/ |
cil_list.c | 227 struct cil_list_item *previous = NULL; local 235 if (previous == NULL) { 238 previous->next = item->next; 241 list->tail = previous; 246 previous = item;
|
/external/ceres-solver/internal/ceres/ |
line_search.cc | 153 const FunctionSample& previous, 180 << ", lowerbound: " << lowerbound << ", previous: " << previous 193 if (previous.value_is_valid) { 196 samples.push_back(ValueSample(previous.x, previous.value)); 202 if (previous.value_is_valid) { 205 samples.push_back(previous); 238 FunctionSample previous = ValueAndGradientSample(0.0, 0.0, 0.0); local 239 previous.value_is_valid = false 462 FunctionSample previous = initial_position; local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
CollationElementIterator.java | 89 * the comparison level of the collator. The method previous() returns the 90 * collation order of the previous character based on the comparison level of 93 * previous() can not be inter-used. Whenever previous() is to be called after 97 * Hence at the next call of next() or previous(), the first or last collation order, 116 * <0: backwards; 0: just after reset() (previous() begins from end); 132 * next() and previous() when the end or the beginning of the 139 * @see #previous */ 144 * next() and previous() when a collation element result is to be 150 * @see #previous */ 378 public int previous() { method [all...] |
/cts/apps/CameraITS/tests/scene1/ |
test_raw_burst_sensitivity.py | 31 # Each shot must be 1% noisier (by the variance metric) than the previous 66 # previous shot (as the gain is increasing). 79 # Test that each shot is noisier than the previous one.
|
test_raw_sensitivity.py | 29 # Each shot must be 1% noisier (by the variance metric) than the previous 59 # previous shot (as the gain is increasing). 72 # Test that each shot is noisier than the previous one.
|
/cts/libs/vogar-expect/src/vogar/ |
AnnotatedOutcome.java | 27 * including a list of previous outcomes, an outcome corresponding to the tag Vogar is being run 40 /** a list of previous outcomes for the same action, sorted in chronological order */ 104 * Returns true if the outcome is noteworthy given the result value and previous history.
|
/development/ndk/platforms/android-M/include/android/ |
multinetwork.h | 40 * For some functions (documented below), a previous binding may be cleared 58 * To clear a previous socket binding invoke with NETWORK_UNSPECIFIED. 77 * To clear a previous process binding invoke with NETWORK_UNSPECIFIED.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
FourthMoment.java | 33 * <li> dev = (current obs - previous mean) </li> 34 * <li> m2 = previous value of {@link SecondMoment} </li> 35 * <li> m2 = previous value of {@link ThirdMoment} </li>
|
/external/bison/lib/ |
close-stream.c | 62 /* Return an error indication if there was a previous failure or if 64 there was no previous error, no data remains to be flushed, and 67 closed) and doesn't generate any output (hence no previous error
|
/external/clang/test/Modules/ |
auto-module-import.m | 20 // expected-note@Inputs/Module.framework/Headers/Module.h:15 {{previous}} 31 // expected-note@Inputs/DependsOnModule.framework/Frameworks/SubFramework.framework/Headers/Other.h:15 {{previous}} 75 // expected-note@Inputs/NoUmbrella.framework/PrivateHeaders/B_Private.h:1 {{previous}}
|
/external/clang/test/SemaTemplate/ |
temp_arg_template.cpp | 3 template<template<typename T> class X> struct A; // expected-note 2{{previous template template parameter is here}} 5 template<template<typename T, int I> class X> struct B; // expected-note{{previous template template parameter is here}} 7 template<template<int I> class X> struct C; // expected-note{{previous non-type template parameter with type 'int' is here}}
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
RateLimiterTest.java | 174 limiter.acquire(1); // this acquire() will also repay for the previous acquire() 187 rateLimiter.acquire(1); // R1.00, to repay previous 191 rateLimiter.acquire(1); // R1.00, to repay previous (the previous was under the old rate!) 192 rateLimiter.acquire(2); // R0.50, to repay previous (now the rate takes effect) 193 rateLimiter.acquire(4); // R1.00, to repay previous 194 rateLimiter.acquire(1); // R2.00, to repay previous 222 rateLimiter.acquire(1); // R1.00, to repay previous 223 rateLimiter.acquire(2); // R1.00, to repay previous 224 rateLimiter.acquire(4); // R2.00, to repay previous [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
coleitr.h | 84 * order = c->previous(success); 92 * the comparison level of the collator. The method previous() returns the 93 * collation order of the previous character based on the comparison level of 96 * and previous() can not be inter-used. Whenever previous() is to be called after 100 * Hence at the next call of next() or previous(), the first or last collation order, 105 * iterate (previous()) on the same string are equivalent, if collation orders 181 * Get the ordering priority of the previous collation element in the string. 183 * @return the previous element's ordering. otherwise returns NULLORDER if an 187 int32_t previous(UErrorCode& status) [all...] |
/external/icu/icu4c/source/samples/uciter8/ |
uciter8.c | 91 c1=iter1->previous(iter1); 92 c2=iter2->previous(iter2); 94 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d (started in middle)\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT)); 186 c1=iter1->previous(iter1); 187 c2=iter2->previous(iter2); 189 log_err("%s->previous()=U+%04x != U+%04x=%s->previous() at %d\n", n1, c1, c2, n2, iter1->getIndex(iter1, UITER_CURRENT)); 251 c=iter2->previous(iter2); 253 log_err("%s->previous(at %d)=U+%04x!=U+%04x\n", n, middle-1, c, u[1]) [all...] |
/external/icu/icu4c/source/test/perf/ |
README | 7 The performance tests in ICU4C compares various aspects of ICU against previous versions of ICU, 25 1) Checkout the current ICU and 2 previous versions (for proper regression testing) and the data 49 in the previous versions of ICU do not need to be run seperately.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
UCharacterIteratorWrapper.java | 48 return (char)iterator.previous(); 82 public char previous(){ method in class:UCharacterIteratorWrapper 84 return (char) iterator.previous();
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/ |
TestUCharacterIterator.java | 83 if (iterator.previous() != ITERATION_STRING_.charAt( 116 if (ch != (int)iterator.previous() && 118 errln("Error mismatch in previous() and " + 123 if (UTF16.getLeadSurrogate(ch) != iterator.previous() || 124 UTF16.getTrailSurrogate(ch) != iterator.previous()) { 125 errln("Error mismatch in previous and " + 252 public int previous() { method in class:TestUCharacterIterator.UCharIterator 343 // - for previous(), 0 for current(), + for next() 364 c2=iter32.previous(); 408 c1=wrap_ci.previous(); [all...] |