Searched defs:Sub (Results 1 - 25 of 77) sorted by relevance

1234

/external/clang/test/Index/
H A Dindex-suppress-refs.cpp4 class Sub : B1, B2 { class in inherits:B1,B2
10 // CHECK: [indexDeclaration]: kind: c++-class | name: Sub
H A Dcursor-ref-names.cpp7 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 Dpragma-pack.cpp9 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 Dapple-kext-indirect-call-2.cpp67 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 DSub.java14 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 DSub.java8 public class Sub extends Base { class in inherits:Base
/external/clang/test/SemaCXX/
H A Dpragma-pack.cpp11 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 DSuperclassTest.java33 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 Dfast-prototype.js37 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 DGrGLSL_impl.h55 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 Dfibonacci.cpp71 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 DMCExternalSymbolizer.cpp101 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 DAArch64ExternalSymbolizer.cpp179 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 Dfixedpoint_neon.h53 inline int32x4_t Sub(int32x4_t a, int32x4_t b) { function in namespace:gemmlowp
H A Dfixedpoint.h65 tIntegerType Sub(tIntegerType a, tIntegerType b) { function in namespace:gemmlowp
338 MAKE_FIXEDPOINT_BINARY_FUNC(operator-, Sub)
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp195 const MCExpr *Sub = MCBinaryExpr::createSub( local
198 Asm->OutStreamer->EmitValue(Sub, sizeof(uint32_t));
/external/llvm/lib/Target/Mips/
H A DMipsMCInstLower.cpp166 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 DX86TargetObjectFile.cpp80 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 DInjectionPointTest.java251 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 Dscoped_ptr_unittest.cc633 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 Dscoped_ptr_unittest.cc634 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 DParallelJIT.cpp99 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 DSetTheory.cpp36 // (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 DBitTracker.h93 : 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 Dcxx-templates.h73 template <class T> class Sub : public UseBase<int> { }; class in inherits:UseBase

Completed in 708 milliseconds

1234