/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/ |
p7.cpp | 6 extern void h2(int x = sizeof(i)); // expected-error {{default argument references local variable 'i' of enclosing function}}
|
/external/clang/test/Lexer/ |
char-literal.cpp | 7 char d = '?'; // expected-error {{character too large for enclosing character literal type}} 8 char e = '\u2318'; // expected-error {{character too large for enclosing character literal type}} 13 char16_t h = u'\U0010FFFD'; // expected-error {{character too large for enclosing character literal type}} 20 char l = 'Ø'; // expected-error {{character too large for enclosing character literal type}} 21 char m = '?'; // expected-error {{character too large for enclosing character literal type}} 24 char16_t o = '?'; // expected-error {{character too large for enclosing character literal type}}
|
utf8-char-literal.cpp | 5 int array1['ñ' != u'\xf1'? 1 : -1]; // expected-error {{character too large for enclosing character literal type}}
|
wchar.c | 6 (void)L'\U00010000'; // expected-error {{character too large for enclosing character literal type}}
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
AttEnclosingMethod.java | 30 /** {@code non-null;} the innermost enclosing class */ 33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */ 39 * @param type {@code non-null;} the innermost enclosing class 40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing 60 * Gets the innermost enclosing class. 62 * @return {@code non-null;} the innermost enclosing class 69 * Gets the name-and-type of the innermost enclosing method, if 72 * @return {@code null-ok;} the name-and-type of the innermost enclosing
|
/external/clang/test/CXX/class/class.local/ |
p1-0x.cpp | 7 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}} 13 int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing lambda expression}}
|
p1.cpp | 11 int g() { return x; } // expected-error{{reference to local variable 'x' declared in enclosing function 'f'}}
|
p3.cpp | 27 int f() { return a; } // expected-error{{reference to local variable 'a' declared in enclosing function 'f3'}}
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p11.cpp | 10 return local + // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
|
default-arguments.cpp | 19 auto l3 = [](int i = foo) {}; // expected-error{{default argument references local variable 'foo' of enclosing function}}
|
p10.cpp | 33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
|
/external/clang/test/SemaCXX/ |
member-class-11.cpp | 7 ~Z(); // expected-error{{expected the class name after '~' to name the enclosing class}}
|
/external/clang/test/Sema/ |
extern-redecl.c | 11 // PR10013: Scope of extern declarations extend past enclosing block
|
/external/clang/test/CXX/class/class.nest/ |
p3.cpp | 6 // later defined in a namespace scope enclosing the definition of class X.
|
/dalvik/tests/031-class-attributes/ |
expected.txt | 9 enclosing: null 35 enclosing: null 61 enclosing: null 87 enclosing: class ClassAttrs 113 enclosing: class ClassAttrs 139 enclosing: class ClassAttrs 165 enclosing: class ClassAttrs 191 enclosing: null
|
/external/javassist/src/main/javassist/bytecode/ |
EnclosingMethodAttribute.java | 41 * @param className the name of the innermost enclosing class. 42 * @param methodName the name of the enclosing method. 43 * @param methodDesc the descriptor of the enclosing method. 63 * @param className the name of the innermost enclosing class.
|
/external/javassist/src/main/javassist/runtime/ |
Inner.java | 21 * only if the method calls a private constructor in the enclosing class.
|
/external/llvm/test/Transforms/LoopSimplify/ |
unreachable-loop-pred.ll | 5 ; block to the enclosing loop and not get confused by the unreachable
|
/external/okhttp/src/main/java/libcore/net/http/ |
HttpsURLConnectionImpl.java | 412 private final HttpsURLConnectionImpl enclosing; field in class:HttpsURLConnectionImpl.HttpsEngine 416 * @param enclosing the HttpsURLConnection with HTTPS features 420 HttpsURLConnectionImpl enclosing) throws IOException { 423 this.enclosing = enclosing; 472 enclosing.getSSLSocketFactory(), enclosing.getHostnameVerifier(), tlsTolerant); 517 return enclosing.getSSLSocketFactory(); 521 return enclosing;
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/ |
p3.cpp | 7 // enclosing namespace. 20 // Ensure we can handle attaching friend declarations to an enclosing namespace 43 // consider any scopes outside the innermost enclosing namespace.
|
/external/webkit/Source/WebCore/css/ |
CSSPropertySourceData.h | 79 // Range of the style text in the enclosing source. 90 // Range of the selector list in the enclosing source.
|
/dalvik/vm/native/ |
java_lang_Class.cpp | 589 ClassObject* enclosing = dvmGetDeclaringClass(clazz); local 590 dvmReleaseTrackedAlloc((Object*) enclosing, NULL); 591 RETURN_PTR(enclosing); 604 ClassObject* enclosing = dvmGetEnclosingClass(clazz); local 605 dvmReleaseTrackedAlloc((Object*) enclosing, NULL); 606 RETURN_PTR(enclosing); 619 Object* enclosing = dvmGetEnclosingMethod(clazz); local 620 if (enclosing != NULL) { 621 dvmReleaseTrackedAlloc(enclosing, NULL); 622 if (enclosing->clazz == gDvm.classJavaLangReflectConstructor) 640 Object* enclosing = dvmGetEnclosingMethod(clazz); local [all...] |
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p3-0x.cpp | 6 // inline (7.3.1), any namespace from its enclosing namespace set.
|
/external/clang/test/CodeGenObjC/ |
2010-03-17-StructRef.m | 2 // Bitfield references must not touch memory outside of the enclosing
|
/external/jmonkeyengine/engine/src/core/checkers/quals/ |
Dependent.java | 15 * enclosing object (the receiver), is marked as {@code ThreadSafe}.
|