/external/clang/test/Index/ |
H A D | index-suppress-refs.cpp | 4 class Sub : B1, B2 { class in inherits:B1,B2 10 // CHECK: [indexDeclaration]: kind: c++-class | name: Sub
|
H A D | cursor-ref-names.cpp | 7 struct Sub: public Base<int> { struct in inherits:Base 17 Sub inst; 31 // CHECK: cursor-ref-names.cpp:17:5: TypeRef=struct Sub:7:8 Extent=[17:5 - 17:8] 32 // CHECK: cursor-ref-names.cpp:17:9: CallExpr=Sub:7:8 Extent=[17:9 - 17:13]
|
/external/clang/test/CodeGenCXX/ |
H A D | pragma-pack.cpp | 9 struct Sub : virtual Base { struct in inherits:Base 13 // CHECK: %struct.Sub = type <{ i32 (...)**, i8, %struct.Base }> 14 void f(Sub*) { } 16 static int i[sizeof(Sub) == 13 ? 1 : -1];
|
H A D | apple-kext-indirect-call-2.cpp | 67 struct Sub : D1, D2 { struct in inherits:D1,D2 72 void FUNC3(Sub* p) {
|
/external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/ |
H A D | Sub.java | 14 public class Sub implements IExpression { class in inherits:IExpression 20 public Sub(final IExpression l, final IExpression r) { method in class:Sub
|
/external/testng/src/test/java/test/tmp/ |
H A D | Sub.java | 8 public class Sub extends Base { class in inherits:Base
|
/external/clang/test/SemaCXX/ |
H A D | pragma-pack.cpp | 11 struct Sub : public Base { struct in namespace:rdar8745206 16 int check[sizeof(Sub) == 5 ? 1 : -1]; 28 struct Sub : virtual Base { struct in namespace:check2 33 int check[sizeof(Sub) == 13 ? 1 : -1];
|
/external/guice/core/test/com/google/inject/ |
H A D | SuperclassTest.java | 33 Provider<Sub> creator = injector.getProvider(Sub.class); 34 Sub sub = creator.get(); 52 static class Sub extends Super { class in class:SuperclassTest
|
/external/v8/test/mjsunit/ |
H A D | fast-prototype.js | 37 function Sub() { function 51 receiver = new Sub(); 54 Sub.prototype = proto; 55 // Need to instantiate Sub to mark .prototype as prototype. Make sure the 57 receiver = new Sub(); 53 Sub.prototype = proto; class
|
/external/skia/src/gpu/glsl/ |
H A D | GrGLSL_impl.h | 55 inline Self GrGLSLExpr<Self>::Sub(T0 in0, T1 in1) { function in class:GrGLSLExpr 108 return GrGLSLExpr1::Sub(in0, in1); 148 return GrGLSLExpr4::Sub(in0, in1); 160 return GrGLSLExpr4::Sub(in0, in1); 172 return GrGLSLExpr4::Sub(in0, in1);
|
/external/llvm/examples/Fibonacci/ |
H A D | fibonacci.cpp | 71 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local 72 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); 76 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); 77 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
|
/external/llvm/lib/MC/MCDisassembler/ |
H A D | MCExternalSymbolizer.cpp | 101 const MCExpr *Sub = nullptr; local 106 Sub = MCSymbolRefExpr::create(Sym, Ctx); 108 Sub = MCConstantExpr::create((int)SymbolicOp.SubtractSymbol.Value, Ctx); 117 if (Sub) { 120 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx); 122 LHS = MCUnaryExpr::createMinus(Sub, Ctx);
|
/external/llvm/lib/Target/AArch64/Disassembler/ |
H A D | AArch64ExternalSymbolizer.cpp | 179 const MCExpr *Sub = nullptr; local 184 Sub = MCSymbolRefExpr::create(Sym, Ctx); 186 Sub = MCConstantExpr::create(SymbolicOp.SubtractSymbol.Value, Ctx); 195 if (Sub) { 198 LHS = MCBinaryExpr::createSub(Add, Sub, Ctx); 200 LHS = MCUnaryExpr::createMinus(Sub, Ctx);
|
/external/gemmlowp/internal/ |
H A D | fixedpoint_neon.h | 53 inline int32x4_t Sub(int32x4_t a, int32x4_t b) { function in namespace:gemmlowp
|
H A D | fixedpoint.h | 65 tIntegerType Sub(tIntegerType a, tIntegerType b) { function in namespace:gemmlowp 338 MAKE_FIXEDPOINT_BINARY_FUNC(operator-, Sub)
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfAccelTable.cpp | 195 const MCExpr *Sub = MCBinaryExpr::createSub( local 198 Asm->OutStreamer->EmitValue(Sub, sizeof(uint32_t));
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsMCInstLower.cpp | 166 const MCBinaryExpr *Sub = MCBinaryExpr::createSub(Sym1, Sym2, *Ctx); local 168 return MCOperand::createExpr(MipsMCExpr::create(Kind, Sub, *Ctx));
|
/external/llvm/lib/Target/X86/ |
H A D | X86TargetObjectFile.cpp | 80 const SubOperator *Sub = dyn_cast<SubOperator>(CE); local 81 if (!Sub) 87 dyn_cast<PtrToIntOperator>(Sub->getOperand(0)); 89 dyn_cast<PtrToIntOperator>(Sub->getOperand(1));
|
/external/guice/core/test/com/google/inject/spi/ |
H A D | InjectionPointTest.java | 251 points = InjectionPoint.forInstanceMethodsAndFields(Sub.class); 258 assertPoints(points, Sub.class, "privateAtAndPublicG", "privateGAndPublicAt", 269 assertPoints(points, Sub.class, "privateAtAndPublicG", "atFirstThenG", "gFirstThenAt"); 333 static class Sub extends Super { class in class:InjectionPointTest 349 static class SubSub extends Sub {
|
/external/libchrome/base/memory/ |
H A D | scoped_ptr_unittest.cc | 633 class Sub : public Super {}; class in inherits:Super 635 scoped_ptr<Sub> SubClassReturn() { 636 return make_scoped_ptr(new Sub); 640 scoped_ptr<Sub> sub1(new Sub); 641 scoped_ptr<Sub> sub2(new Sub);
|
/external/libweave/third_party/chromium/base/memory/ |
H A D | scoped_ptr_unittest.cc | 634 class Sub : public Super {}; class in inherits:Super 636 scoped_ptr<Sub> SubClassReturn() { 637 return make_scoped_ptr(new Sub); 641 scoped_ptr<Sub> sub1(new Sub); 642 scoped_ptr<Sub> sub2(new Sub);
|
/external/llvm/examples/ParallelJIT/ |
H A D | ParallelJIT.cpp | 99 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local 100 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); 103 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); 104 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
|
/external/llvm/lib/TableGen/ |
H A D | SetTheory.cpp | 36 // (sub Add, Sub, ...) Set difference. 43 RecSet Add, Sub; variable 45 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc); 47 if (!Sub.count(*I))
|
/external/llvm/lib/Target/Hexagon/ |
H A D | BitTracker.h | 93 : Reg(R), Sub(S) {} 95 : Reg(MO.getReg()), Sub(MO.getSubReg()) {} 96 unsigned Reg, Sub; member in struct:llvm::BitTracker::RegisterRef 408 // to the subregister Sub. These bits are assumed to be contiguous in 411 // Sub == 0, in this case, the function should return a mask that spans 414 virtual BitMask mask(unsigned Reg, unsigned Sub) const;
|
/external/clang/test/PCH/ |
H A D | cxx-templates.h | 73 template <class T> class Sub : public UseBase<int> { }; class in inherits:UseBase
|