/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}}
|
/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/Sema/ |
extern-redecl.c | 11 // PR10013: Scope of extern declarations extend past enclosing block
|
/dalvik/tests/031-class-attributes/ |
expected.txt | 8 enclosing: null 31 enclosing: null 54 enclosing: null 77 enclosing: class ClassAttrs 100 enclosing: class ClassAttrs 123 enclosing: class ClassAttrs 146 enclosing: class ClassAttrs
|
/external/clang/test/CXX/class/class.nest/ |
p3.cpp | 6 // later defined in a namespace scope enclosing the definition of class X.
|
/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/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/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p2-0x.cpp | 36 template<> void N0::f0(long) { } // expected-error{{not in a namespace enclosing}} 132 template<> double N0::X0<double>::member = 3.14; // expected-error{{not in a namespace enclosing}} 198 struct N0::X0<int>::InnerTemplate<double> { }; // expected-error{{enclosing}} 230 void N0::X0<void*>::ft1(void *, long) { } // expected-error{{enclosing}} 265 // shall be declared in the nearest enclosing namespace of the 267 // from its enclosing namespace set.
|
examples.cpp | 75 // #1 define its function g. There is an enclosing 96 // defines #3. There is no enclosing class template, so
|
p2.cpp | 36 template<> void N0::f0(long) { } // expected-error{{not in a namespace enclosing}} 132 template<> double N0::X0<double>::member = 3.14; // expected-error{{not in a namespace enclosing}} 198 struct N0::X0<int>::InnerTemplate<double> { }; // expected-error{{enclosing}} 230 void N0::X0<void*>::ft1(void *, long) { } // expected-error{{enclosing}}
|
/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/clang/test/SemaCXX/ |
cxx0x-compat.cpp | 6 template void ::N::f<int>(int); // expected-warning {{explicit instantiation of 'f' not in a namespace enclosing 'N'}}
|
/external/v8/src/ |
func-name-inferrer.h | 56 // Pushes an enclosing the name of enclosing function onto names stack.
|
/external/webkit/Source/WebCore/rendering/ |
LayoutState.h | 94 IntSize m_pageOffset; // The offset of the start of the first page in the nearest enclosing pagination model. 95 ColumnInfo* m_columnInfo; // If the enclosing pagination model is a column model, then this will store column information for easy retrieval/manipulation.
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDocumentPrivate.h | 52 // Rect tightly enclosing the entire selected area, in coordinates of selectionView. 59 // Rect tightly enclosing the entire selected area, in coordinates of selectionView.
|
/libcore/luni/src/main/java/libcore/net/http/ |
HttpsURLConnectionImpl.java | 411 private final HttpsURLConnectionImpl enclosing; field in class:HttpsURLConnectionImpl.HttpsEngine 415 * @param enclosing the HttpsURLConnection with HTTPS features 419 HttpsURLConnectionImpl enclosing) throws IOException { 422 this.enclosing = enclosing; 445 sslSocket = connection.verifySecureSocketHostname(enclosing.getHostnameVerifier()); 477 connection.setupSecureSocket(enclosing.getSSLSocketFactory(), tlsTolerant); 523 return enclosing;
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/ |
p8.cpp | 19 // Qualified and unqualified lookup as if member of enclosing NS.
|
/external/llvm/include/llvm/Analysis/ |
CaptureTracking.h | 21 /// by the enclosing function (which is required to exist). This routine can
|
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
MinSEParser.java | 31 * @param lexer is the lexer passed in from the enclosing parser.
|
SessionExpiresParser.java | 27 * @param lexer is the lexer passed in from the enclosing parser.
|