HomeSort by relevance Sort by last modified time
    Searched refs:isa (Results 251 - 275 of 517) sorted by null

<<11121314151617181920>>

  /external/skia/src/core/
SkXfermode.cpp 127 unsigned isa = 255 - sa; local
131 SkAlphaMulAlpha(isa, SkGetPackedR32(dst)),
133 SkAlphaMulAlpha(isa, SkGetPackedG32(dst)),
135 SkAlphaMulAlpha(isa, SkGetPackedB32(dst)));
157 unsigned isa = 255 - sa; local
162 SkAlphaMulAlpha(isa, SkGetPackedR32(dst)),
164 SkAlphaMulAlpha(isa, SkGetPackedG32(dst)),
166 SkAlphaMulAlpha(isa, SkGetPackedB32(dst)));
1103 unsigned isa = 255 - SkGetPackedA32(src); local
    [all...]
  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 219 InetSocketAddress isa = (InetSocketAddress) sa; local
220 localAddress = isa.getAddress();
221 localPort = isa.getPort();
  /external/clang/lib/Sema/
SemaLookup.cpp 315 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
350 if (isa<FunctionTemplateDecl>(D))
352 else if (isa<UnresolvedUsingValueDecl>(D))
399 if (isa<UnresolvedUsingValueDecl>(D)) {
401 } else if (isa<TagDecl>(D)) {
406 } else if (isa<FunctionTemplateDecl>(D)) {
409 } else if (isa<FunctionDecl>(D)) {
672 !isa<CXXRecordDecl>(DC))
    [all...]
SemaOverload.cpp 862 if (isa<UsingShadowDecl>(OldD)) {
900 } else if (isa<UsingDecl>(OldD)) {
904 } else if (isa<TagDecl>(OldD)) {
906 } else if (isa<UnresolvedUsingValueDecl>(OldD)) {
948 if (isa<FunctionNoProtoType>(OldQType.getTypePtr()) |
    [all...]
SemaExprCXX.cpp 107 } else if (DC && isa<CXXRecordDecl>(DC))
824 assert((!ListInitialization || (NumExprs == 1 && isa<InitListExpr>(Exprs[0])))
    [all...]
SemaExpr.cpp 113 << isa<FunctionDecl>(D) << false;
227 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
309 } else if (isa<VarDecl>(D)) {
    [all...]
  /external/clang/lib/Driver/
Driver.cpp 854 if (isa<CompileJobAction>(A) || isa<AssembleJobAction>(A))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 41 if (isa<ConstantInt>(V))
349 !isa<ConstantInt>(LHSI->getOperand(1))) return 0;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 513 if (!isa<VectorType>(PtrTy->getElementType()))
540 if (!isa<ConstantInt>(MSI->getValue()))
    [all...]
LoopInstSimplify.cpp 125 if (IsSubloopHeader && !isa<PHINode>(I))
  /external/clang/lib/AST/
Expr.cpp 197 if (isa<NonTypeTemplateParmDecl>(D)) {
238 if (isa<CXXMethodDecl>(D) && D->getDeclContext()->isDependentContext()) {
458 while (Ctx && isa<NamedDecl>(Ctx)) {
508 if (!isa<CXXConstructorDecl>(FD) && !isa<CXXDestructorDecl>(FD))
538 if (isa<TranslationUnitDecl>(CurrentDecl) && IT == PrettyFunction) {
    [all...]
TemplateName.cpp 86 if (isa<TemplateTemplateParmDecl>(Template))
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 306 if (isa<MemberPointerType>(E->getType())) // never sugared
528 assert((SrcType->isIntegerType() || isa<llvm::PointerType>(Src->getType())) &&
531 if (isa<llvm::IntegerType>(Src->getType()))
534 assert(isa<llvm::PointerType>(Src->getType()));
571 if (isa<llvm::PointerType>(DstTy)) {
573 if (isa<llvm::PointerType>(SrcTy))
587 if (isa<llvm::PointerType>(SrcTy)) {
589 assert(isa<llvm::IntegerType>(DstTy) && "not ptr->int?");
613 if (isa<llvm::VectorType>(SrcTy) ||
614 isa<llvm::VectorType>(DstTy)
    [all...]
CGCUDANV.cpp 88 assert(isa<llvm::PointerType>(V->getType()) && "Arg type not PointerType");
  /external/clang/examples/clang-interpreter/
main.cpp 95 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
  /external/clang/include/clang/Analysis/Visitors/
CFGStmtVisitor.h 97 if (isa<Expr>(S))
  /external/clang/lib/StaticAnalyzer/Checkers/
BasicObjCFoundationChecks.cpp 86 return isa<loc::ConcreteInt>(X);
526 if (!MD || !MD->isVariadic() || isa<ObjCProtocolDecl>(MD->getDeclContext()))
613 if (isa<loc::ConcreteInt>(msg.getArgSVal(I)))
710 if (!isa<Loc>(ElementVar))
VirtualCallChecker.cpp 150 if (!isa<CXXThisExpr>(base))
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 82 if (ExcIVI && isa<UndefValue>(ExcIVI->getOperand(0)) &&
  /external/llvm/lib/MC/
MCExpr.cpp 89 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
127 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
  /external/llvm/lib/Transforms/IPO/
PartialInlining.cpp 62 if (isa<ReturnInst>((*SI)->getTerminator())) {
  /external/llvm/lib/VMCore/
Metadata.cpp 211 return isa<Instruction>(V) || isa<Argument>(V) || isa<BasicBlock>(V) ||
212 (isa<MDNode>(V) && cast<MDNode>(V)->isFunctionLocal());
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 590 InetSocketAddress isa = (InetSocketAddress) sa; local
591 return isa.getAddress();
600 InetSocketAddress isa = (InetSocketAddress) sa; local
601 return isa.getPort();
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa; member in union:edd_device_params::__anon24126
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
edd.h 89 } __attribute__ ((packed)) isa; member in union:edd_device_params::__anon25716

Completed in 1253 milliseconds

<<11121314151617181920>>