Searched refs:inner (Results 151 - 175 of 291) sorted by relevance

1234567891011>>

/external/clang/test/SemaTemplate/
H A Dfriend-template.cpp118 namespace inner { namespace in namespace:PR6022
126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
H A Ddependent-names.cpp137 namespace inner { namespace in namespace:std
140 using inner::vector;
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedBiMapTest.java70 TestBiMap<K, V> inner =
72 BiMap<K, V> outer = Synchronized.biMap(inner, mutex);
H A DSynchronizedMapTest.java42 TestMap<K, V> inner = new TestMap<K, V>(new HashMap<K, V>(), mutex);
43 Map<K, V> outer = Synchronized.map(inner, mutex);
H A DForwardingMultisetTest.java176 final Multiset<String> inner =
180 return inner;
/external/lldb/test/unittest2/
H A Dresult.py16 def inner(self, *args, **kw): function in function:failfast
20 return inner
/external/skia/src/utils/
H A DSkPaintFilterCanvas.cpp54 void SkPaintFilterCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, argument
57 this->INHERITED::onDrawDRRect(outer, inner, *apf.paint());
H A DSkLuaCanvas.cpp195 void SkLuaCanvas::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, argument
199 lua.pushRRect(inner, "inner");
/external/skia/samplecode/
H A DSampleFatBits.cpp191 SkPaint inner, outer; local
193 inner.setAntiAlias(true);
194 inner.setColor(SK_ColorBLACK);
195 inner.setStrokeWidth(PIXEL_CENTER_SIZE);
208 canvas->drawPoint(x, y, inner);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_optimize.c48 static struct rc_src_register chain_srcregs(struct rc_src_register outer, struct rc_src_register inner) argument
51 combine.File = inner.File;
52 combine.Index = inner.Index;
53 combine.RelAddr = inner.RelAddr;
58 combine.Abs = inner.Abs;
59 combine.Negate = swizzle_mask(outer.Swizzle, inner.Negate);
62 combine.Swizzle = combine_swizzles(inner.Swizzle, outer.Swizzle);
/external/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp134 Expr *inner = E->IgnoreParenCasts(); local
135 if (CallExpr *callE = dyn_cast<CallExpr>(inner)) {
182 Expr *base = inner->IgnoreParenImpCasts();
/external/clang/test/CodeGen/
H A Dregparm-struct.c168 struct inner { struct in struct:s13
/external/clang/test/Modules/Inputs/
H A Dcxx-templates-a.h20 typename T::Inner inner; local
H A Dcxx-templates-b.h38 typename Identity<DefinedInBImpl, T>::type::Inner inner; local
/external/clang/test/Parser/
H A Dcxx-template-decl.cpp107 template<template<typename> class T> struct inner; // expected-error{{declaration of 'T' shadows template parameter}}
/external/clang/test/Sema/
H A Ddesignated-initializers.c98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { struct in struct:outer
/external/eigen/Eigen/src/Core/
H A DMap.h32 * inner and outer strides.
40 * Here's an example of mapping an array as a vector, specifying an inner stride, that is, the pointer
41 * increment between two consecutive coefficients. Here, we're specifying the inner stride as a compile-time
54 * For more details and for an example of specifying both an inner and an outer stride, see class Stride.
123 return StrideType::InnerStrideAtCompileTime != 0 ? m_stride.inner() : 1;
/external/skia/src/utils/android/
H A DSkAndroidSDKCanvas.h56 void onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... result int outer java.io.File[] children int inner java.io.File child java.io. ...
/external/doclava/src/com/google/doclava/
H A DInfoBuilder.java582 // changes the name based upon whether this is the root class or an inner class
1165 for (TypeInfo inner : type.typeArguments()) {
1166 if (inner != type.typeArguments().get(0)) {
1171 buildSignatureForType(builder, inner);
1371 // inner class
1374 // inner enum
1377 // inner interface
1380 // inner annotation
1447 // inner class
1453 // inner interfac
[all...]
/external/v8/src/
H A Dscopes.cc201 // All the inner scopes are inside a with.
300 // Add this scope as a new inner scope of the outer scope.
361 // Reparent inner scopes.
891 if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n");
929 // Print inner scopes (disable by providing negative n).
1007 // from inside of an inner with scope (the property may not be in the 'with'
1146 // Resolve unresolved variables for inner scopes.
1164 Scope* inner = inner_scopes_[i]; local
1165 inner->PropagateScopeInfo(calls_sloppy_eval);
1166 if (inner
[all...]
/external/valgrind/exp-sgcheck/
H A Dsg_main.c1207 as NULL and the innermost in theory has .inner as NULL.
1213 struct _StackFrame* inner; member in struct:_StackFrame
1293 while (frame->inner)
1294 frame = frame->inner;
1299 more 'inner' than the 'innermost active frame', viz, just
1867 tl_assert(caller->outer->inner == caller);
1909 if (caller->inner) {
1910 callee = caller->inner;
1915 caller->inner = callee;
1917 tl_assert(callee->inner
[all...]
/external/javassist/src/main/javassist/compiler/
H A DMemberCodeGen.java698 private boolean isEnclosing(CtClass outer, CtClass inner) { argument
700 while (inner != null) {
701 inner = inner.getDeclaringClass();
702 if (inner == outer)
/external/skia/src/utils/debugger/
H A DSkDrawCommand.cpp166 void render_drrect(SkCanvas* canvas, const SkRRect& outer, const SkRRect& inner) { argument
178 canvas->drawDRRect(outer, inner, p);
690 const SkRRect& inner,
694 fInner = inner;
698 fInfo.push(SkObjectParser::RRectToString(inner));
689 SkDrawDRRectCommand(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) argument
/external/v8/test/mjsunit/
H A Ddebug-scopes.js482 // Simple closure formed by returning an inner function referering the outer
504 // Simple closure formed by returning an inner function referering the outer
529 // Simple closure formed by returning an inner function referering the outer
531 // in the inner function makes these part of the debugger information on the
556 // Simple closure formed by returning an inner function referering the outer
558 // in the inner function makes these part of the debugger information on the
559 // closure. Use the inner function as well...
585 // Simple closure formed by returning an inner function referering the outer
587 // (including the inner function itself) from the outer function becomes part of
680 (function inner(
[all...]

Completed in 1303 milliseconds

1234567891011>>