Searched refs:isSimple (Results 1 - 25 of 73) sorted by relevance

123

/external/clang/lib/AST/
H A DStmtViz.cpp33 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
/external/llvm/lib/Analysis/
H A DDomPrinter.cpp31 DOTGraphTraits (bool isSimple=false) argument
32 : DefaultDOTGraphTraits(isSimple) {}
42 if (isSimple())
54 DOTGraphTraits (bool isSimple=false) argument
55 : DOTGraphTraits<DomTreeNode*>(isSimple) {}
70 DOTGraphTraits (bool isSimple=false) argument
71 : DOTGraphTraits<DomTreeNode*>(isSimple) {}
H A DRegionPrinter.cpp38 DOTGraphTraits (bool isSimple=false) argument
39 : DefaultDOTGraphTraits(isSimple) {}
46 if (isSimple())
61 DOTGraphTraits (bool isSimple=false) argument
62 : DOTGraphTraits<RegionNode*>(isSimple) {}
108 if (!onlySimpleRegions || R->isSimple()) {
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h494 if (!isSimple())
505 /// isSimple - Test if the given EVT is simple (as opposed to being
507 bool isSimple() const { function in struct:llvm::EVT
514 return !isSimple();
519 return isSimple() ? V.isFloatingPoint() : isExtendedFloatingPoint();
524 return isSimple() ? V.isInteger() : isExtendedInteger();
529 return isSimple() ? V.isVector() : isExtendedVector();
534 return isSimple() ? V.is64BitVector() : isExtended64BitVector();
539 return isSimple() ? V.is128BitVector() : isExtended128BitVector();
544 return isSimple()
[all...]
/external/llvm/lib/CodeGen/
H A DScheduleDAGPrinter.cpp34 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
H A DMachineFunction.cpp351 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
363 if (isSimple()) {
/external/llvm/tools/opt/
H A DGraphPrinters.cpp55 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
/external/llvm/include/llvm/Analysis/
H A DCFGPrinter.h29 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
77 if (isSimple())
H A DRegionInfo.h328 bool isSimple() const;
628 // isSimple - Check if a region is a simple region with exactly one entry
630 bool isSimple(Region* R) const;
/external/webkit/Source/WebCore/css/
H A DCSSParserValues.h118 bool isSimple() const { return !m_tagHistory && m_selector->isSimple(); } function in class:WebCore::CSSParserSelector
/external/llvm/include/llvm/Support/
H A DDOTGraphTraits.h34 bool isSimple() { function in struct:llvm::DefaultDOTGraphTraits
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DAliasOptions.java58 public boolean isSimple() method in class:AliasOptions
H A DPropertyOptions.java318 public boolean isSimple() method in class:PropertyOptions
/external/clang/lib/Analysis/
H A DCallGraph.cpp172 DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} argument
/external/llvm/include/llvm/Target/
H A DTargetLowering.h223 assert(VT.isSimple() && "getRegClassFor called on illegal type!");
235 assert(VT.isSimple() && "getRepRegClassFor called on illegal type!");
243 assert(VT.isSimple() && "getRepRegClassCostFor called on illegal type!");
251 assert(!VT.isSimple() ||
253 return VT.isSimple() && RegClassForVT[VT.getSimpleVT().SimpleTy] != 0;
427 return VT.isSimple() && getLoadExtAction(ExtType, VT) == Legal;
445 return isTypeLegal(ValVT) && MemVT.isSimple() &&
465 return VT.isSimple() &&
486 return VT.isSimple() &&
573 if (VT.isSimple()) {
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemAttribute.java266 if (v.isSimple())
H A DElemPI.java147 else if ((!m_name_atv.isSimple()) && (!XML11Char.isXML11ValidNCName(piName)))
H A DElemElement.java216 if ((nodeName != null) && (!m_name_avt.isSimple()) && (!XML11Char.isXML11ValidQName(nodeName)))
H A DAVT.java603 public boolean isSimple() { method in class:AVT
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGPrinter.cpp35 explicit DOTGraphTraits(bool isSimple=false) : argument
36 DefaultDOTGraphTraits(isSimple) {}
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTAttributeDef.java587 if ((avt.isSimple()) && (value.length() != 1)) {
634 if (!avt.isSimple()) return avt;
683 if (!avt.isSimple()) return avt;
798 if ((avt.isSimple()) && (!XML11Char.isXML11ValidNmtoken(value))) {
883 if (avt.isSimple())
980 if (avt.isSimple())
1043 if ((avt.isSimple()) && (!XML11Char.isXML11ValidNCName(value)))
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPNormalizer.java197 else if (currProp.getOptions().isSimple())
335 if (info.getAliasForm().isSimple())
356 else if (info.getAliasForm().isSimple())
/external/clang/lib/CodeGen/
H A DCGValue.h172 bool isSimple() const { return LVType == Simple; } function in class:clang::CodeGen::LValue
230 llvm::Value *getAddress() const { assert(isSimple()); return V; }
232 assert(isSimple());
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineLoadStoreAlloca.cpp59 if (!LI->isSimple()) return false;
372 if (!LI.isSimple()) return 0;
594 if (!SI.isSimple()) return 0;
626 if (PrevSI->isSimple() && equivalentAddressValues(PrevSI->getOperand(1),
641 LI->isSimple())
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp416 if (!LI->isSimple()) {
496 if (SI->isSimple())

Completed in 6919 milliseconds

123