HomeSort by relevance Sort by last modified time
    Searched full:enclosing (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/
msg_11.txt 3 Subject: The enclosing message
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/
msg_11.txt 3 Subject: The enclosing message
  /external/clang/test/Lexer/
utf8-char-literal.cpp 7 int array1['ñ' != u'\xf1'? 1 : -1]; // expected-error {{character too large for enclosing character literal type}}
9 char a = u8'ñ'; // expected-error {{character too large for enclosing character literal type}}
11 char c = u8'\u0080'; // expected-error {{character too large for enclosing character literal type}}
12 char d = u8'\u1234'; // expected-error {{character too large for enclosing character literal type}}
13 char e = u8'?'; // expected-error {{character too large for enclosing character literal type}}
char-literal.cpp 14 char d = '?'; // expected-error {{character too large for enclosing character literal type}}
15 char e = '\u2318'; // expected-error {{character too large for enclosing character literal type}}
22 char16_t h = u'\U0010FFFD'; // expected-error {{character too large for enclosing character literal type}}
29 char l = 'Ø'; // expected-error {{character too large for enclosing character literal type}}
30 char m = '?'; // expected-error {{character too large for enclosing character literal type}}
33 char16_t o = '?'; // 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'}}
  /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/SemaTemplate/
ext_ms_template_spec.cpp 21 class A::ClassTemplate<int>; // expected-warning {{class template specialization of 'ClassTemplate' outside namespace enclosing 'A' is a Microsoft extension}}
24 class A::ClassTemplatePartial<T1, T1 *> {}; // expected-warning {{class template partial specialization of 'ClassTemplatePartial' outside namespace enclosing 'A' is a Microsoft extension}}
27 struct A::X<int>::MemberClass; // expected-warning {{member class specialization of 'MemberClass' outside namespace enclosing 'A' is a Microsoft extension}}
30 enum A::X<int>::MemberEnumeration; // expected-warning {{member enumeration specialization of 'MemberEnumeration' outside namespace enclosing 'A' is a Microsoft extension}} // expected-error {{ISO C++ forbids forward references to 'enum' types}}
  /ndk/tests/device/test-stlport_shared-exception/jni/
inline2.cpp 4 // enclosing try block.
  /ndk/tests/device/test-stlport_static-exception/jni/
inline2.cpp 4 // enclosing try block.
  /external/clang/test/Sema/
loop-control.c 41 for ( ; ; (void)({ ++i; continue; i;})) {} // expected-warning{{'continue' is bound to current loop, GCC binds it to the enclosing loop}}
46 for ( ; ; (void)({ ++i; break; i;})) {} // expected-warning{{'break' is bound to current loop, GCC binds it to the enclosing loop}}
51 for ( ; ({if (i) continue; i;}); j++) {} // expected-warning {{'continue' is bound to current loop, GCC binds it to the enclosing loop}}
56 for ( ; ({if (i) break; i;}); j++) {} // expected-warning{{'break' is bound to current loop, GCC binds it to the enclosing loop}}
61 while(({if (i) break; i;})) {} // expected-warning {{'break' is bound to current loop, GCC binds it to the enclosing loop}}
66 while(({if (i) continue; i;})) {} // expected-warning {{'continue' is bound to current loop, GCC binds it to the enclosing loop}}
71 do {} while(({if (i) break; i;})); // expected-warning {{'break' is bound to current loop, GCC binds it to the enclosing loop}}
76 do {} while(({if (i) continue; i;})); // expected-warning {{'continue' is bound to current loop, GCC binds it to the enclosing loop}}
  /art/test/031-class-attributes/
expected.txt 31 enclosing: null
57 enclosing: null
83 enclosing: null
109 enclosing: class ClassAttrs
135 enclosing: class ClassAttrs
161 enclosing: class ClassAttrs
187 enclosing: class ClassAttrs
213 enclosing: null
  /external/clang/test/CXX/class/class.nest/
p3.cpp 7 // 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/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InnerClassNode.java 55 * The (simple) name of the inner class inside its enclosing class. May be
62 * enclosing class.
76 * enclosing class. May be <tt>null</tt> for anonymous inner
79 * in the enclosing class.
  /external/clang/test/OpenMP/
single_copyprivate_messages.cpp 67 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
78 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
84 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
90 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
138 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
149 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
155 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
161 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the enclosing context}}
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassVisitor.java 82 * Visits the enclosing class of the class. This method must be called only
83 * if the class has an enclosing class.
85 * @param owner internal name of the enclosing class of the class.
88 * enclosing class.
91 * enclosing class.
122 * enclosing class. May be <tt>null</tt> for anonymous inner
125 * in the enclosing class.
  /external/droiddriver/src/io/appium/droiddriver/finders/
XPaths.java 66 * @return XPath predicate (with enclosing []) for boolean attribute that is
74 * @return XPath predicate (with enclosing []) for boolean attribute that is
81 /** @return XPath predicate (with enclosing []) for attribute with value */
86 /** @return XPath predicate (with enclosing []) for attribute containing value */
103 * @return XPath predicate (with enclosing []) that filters nodes with

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>