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

12

/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.C67 struct Sub : D1, D2 { struct in inherits:D1,D2
72 void FUNC3(Sub* p) {
/external/chromium_org/v8/test/mjsunit/
H A Dfast-prototype.js40 function Sub() { function
53 (new Sub()).__proto__ = proto;
55 Sub.prototype = proto;
54 Sub.prototype = proto; class
/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/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/
H A DMCExternalSymbolizer.cpp81 const MCExpr *Sub = NULL; local
86 Sub = MCSymbolRefExpr::Create(Sym, Ctx);
88 Sub = MCConstantExpr::Create((int)SymbolicOp.SubtractSymbol.Value, Ctx);
97 if (Sub) {
100 LHS = MCBinaryExpr::CreateSub(Add, Sub, Ctx);
102 LHS = MCUnaryExpr::CreateMinus(Sub, Ctx);
/external/llvm/lib/Target/Hexagon/
H A DHexagonFixupHwLoops.cpp135 int Sub = InstOffset - BlockToInstOffset[MII->getOperand(0).getMBB()]; local
136 unsigned Dist = Sub > 0 ? Sub : -Sub;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfAccelTable.cpp172 const MCExpr *Sub = local
176 Asm->OutStreamer.EmitValue(Sub, sizeof(uint32_t));
/external/llvm/unittests/Transforms/Utils/
H A DCloning.cpp60 BinaryOperator *Sub = BinaryOperator::Create(Instruction::Sub, V, V); local
64 BinaryOperator *SubClone = this->clone(Sub);
77 Sub->setHasNoUnsignedWrap();
81 SubClone = this->clone(Sub);
94 Sub->setHasNoSignedWrap();
98 SubClone = this->clone(Sub);
111 Sub->setHasNoUnsignedWrap(false);
115 SubClone = this->clone(Sub);
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp98 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); local
99 Value *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
102 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
103 Value *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
/external/llvm/utils/TableGen/
H A DSetTheory.cpp35 // (sub Add, Sub, ...) Set difference.
41 RecSet Add, Sub; local
43 ST.evaluate(Expr->arg_begin() + 1, Expr->arg_end(), Sub, Loc);
45 if (!Sub.count(*I))
/external/clang/test/PCH/
H A Dcxx-templates.h73 template <class T> class Sub : public UseBase<int> { }; class in inherits:UseBase
/external/chromium_org/third_party/jinja2/
H A Dnodes.py744 class Sub(BinExpr): class in inherits:BinExpr
/external/clang/test/SemaTemplate/
H A Ddependent-names.cpp329 struct Sub : public Main<int> { struct in namespace:rdar11242625
333 int arr[sizeof(Sub)];
/external/llvm/lib/Target/PowerPC/
H A DPPCAsmPrinter.cpp926 const MCExpr *Sub = local
937 const MCExpr *SubHa16 = PPCMCExpr::CreateHa(Sub, isDarwin, OutContext);
947 const MCExpr *SubLo16 = PPCMCExpr::CreateLo(Sub, isDarwin, OutContext);
H A DPPCInstrInfo.cpp1185 MachineInstr *Sub = NULL; local
1198 // Search for Sub.
1228 Sub = &*I;
1238 if (!MI && !Sub)
1242 if (!MI) MI = Sub;
1271 if (Sub) {
1272 ShouldSwap = SrcReg2 != 0 && Sub->getOperand(1).getReg() == SrcReg2 &&
1273 Sub->getOperand(2).getReg() == SrcReg;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp180 Value *Sub = 0; local
182 Sub = Builder->CreateSub(X, Y, "suba");
184 Sub = Builder->CreateSub(Builder->CreateNeg(C1), Y, "subc");
185 if (Sub)
187 BinaryOperator::CreateMul(Sub,
930 if (SubOperator *Sub = dyn_cast<SubOperator>(Op0))
931 if (match(Sub->getOperand(0), m_Zero()) && Sub->hasNoSignedWrap())
932 return BinaryOperator::CreateSDiv(Sub->getOperand(1),
/external/llvm/lib/Transforms/Instrumentation/
H A DDebugIR.cpp219 DISubprogram Sub = Builder.createFunction( local
222 assert(Sub.isSubprogram());
223 DEBUG(dbgs() << "create subprogram mdnode " << *Sub << ": "
226 SubprogramDescriptors.insert(std::make_pair(&F, Sub));
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp903 static bool ShouldBreakUpSubtract(Instruction *Sub) { argument
905 if (BinaryOperator::isNeg(Sub))
910 if (isReassociableOp(Sub->getOperand(0), Instruction::Add) ||
911 isReassociableOp(Sub->getOperand(0), Instruction::Sub))
913 if (isReassociableOp(Sub->getOperand(1), Instruction::Add) ||
914 isReassociableOp(Sub->getOperand(1), Instruction::Sub))
916 if (Sub->hasOneUse() &&
917 (isReassociableOp(Sub
927 BreakUpSubtract(Instruction *Sub) argument
[all...]
/external/chromium_org/third_party/re2/lib/codereview/
H A Dcodereview.py85 def Sub(l1, l2): function
89 l = l1 + Sub(l2, l1)
866 l = Sub(l, taken.keys())
1240 pats = Sub(pats, taken) + ['path:'+f for f in files]
1609 extra = Sub(cl.files, files)
1735 cl.files = Sub(cl.files, oldfiles)
1744 files = Sub(files, cl.files)
1757 ocl.files = Sub(ocl.files, files)
1823 cl.cc = Sub(cl.cc, defaultcc)
2055 extra = Sub(c
[all...]
/external/clang/lib/Frontend/
H A DCompilerInstance.cpp1300 clang::Module *Sub = Module->findSubmodule(Name); local
1302 if (!Sub) {
1332 Sub = Module->findSubmodule(Best[0]);
1336 if (!Sub) {
1345 Module = Sub;
/external/clang/lib/Lex/
H A DModuleMap.cpp70 Module *Sub = lookupModuleQualified(Id[I].first, Context); local
71 if (!Sub) {
80 Context = Sub;
366 if (Module *Sub = lookupModuleQualified(Name, Context))
367 return Sub;
384 if (Module *Sub = lookupModuleQualified(Name, Parent))
385 return std::make_pair(Sub, false);
H A DPPDirectives.cpp344 StringRef Sub = Directive.substr(2); local
345 if (Sub.empty() || // "if"
346 Sub == "def" || // "ifdef"
347 Sub == "ndef") { // "ifndef"
356 StringRef Sub = Directive.substr(1); local
357 if (Sub == "ndif") { // "endif"
377 } else if (Sub == "lse") { // "else".
404 } else if (Sub == "lif") { // "elif".

Completed in 1157 milliseconds

12