Searched refs:Other (Results 1 - 25 of 284) sorted by relevance

1234567891011>>

/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DAsmWriterInst.h71 bool operator!=(const AsmWriterOperand &Other) const {
72 if (OperandType != Other.OperandType || Str != Other.Str) return true;
74 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
77 bool operator==(const AsmWriterOperand &Other) const {
78 return !operator!=(Other);
98 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
H A DDAGISelMatcher.cpp34 /// unlinkNode - Unlink the specified node from this chain. If Other == this,
35 /// we unlink the next pointer and return it. Otherwise we unlink Other from
37 Matcher *Matcher::unlinkNode(Matcher *Other) { argument
38 if (this == Other)
41 // Scan until we find the predecessor of Other.
43 for (; Cur && Cur->getNext() != Other; Cur = Cur->getNext())
48 Cur->setNext(Other->takeNext());
52 /// canMoveBefore - Return true if this matcher is the same as Other, or if
53 /// we can move this matcher past all of the nodes in-between Other and this
54 /// node. Other mus
[all...]
H A DAsmWriterInst.cpp220 unsigned AsmWriterInst::MatchesAllButOneOp(const AsmWriterInst &Other)const{
221 if (Operands.size() != Other.Operands.size()) return ~1;
225 if (Operands[i] != Other.Operands[i]) {
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/
H A DMCSchedule.h39 bool operator==(const MCProcResourceDesc &Other) const {
40 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
41 && IsBuffered == Other.IsBuffered;
51 bool operator==(const MCWriteProcResEntry &Other) const {
52 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
63 bool operator==(const MCWriteLatencyEntry &Other) const {
64 return Cycles == Other.Cycles && WriteResourceID == Other
[all...]
H A DMachineLocation.h45 bool operator==(const MachineLocation &Other) const {
46 return IsRegister == Other.IsRegister && Register == Other.Register &&
47 Offset == Other.Offset;
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DConstantRange.h61 /// contained within Other.
67 const ConstantRange &Other);
206 /// from an addition of a value in this range and a value in \p Other.
207 ConstantRange add(const ConstantRange &Other) const;
210 /// from a subtraction of a value in this range and a value in \p Other.
211 ConstantRange sub(const ConstantRange &Other) const;
214 /// from a multiplication of a value in this range and a value in \p Other.
216 ConstantRange multiply(const ConstantRange &Other) const;
219 /// from a signed maximum of a value in this range and a value in \p Other.
220 ConstantRange smax(const ConstantRange &Other) cons
[all...]
H A DYAMLParser.h287 bool operator !=(const basic_collection_iterator &Other) const {
288 if(Base != Other.Base)
290 return (Base && Other.Base) && Base->CurrentEntry
291 != Other.Base->CurrentEntry;
519 bool operator ==(const document_iterator &Other) { argument
520 if (isAtEnd() || Other.isAtEnd())
521 return isAtEnd() && Other.isAtEnd();
523 return *Doc == *Other.Doc;
525 bool operator !=(const document_iterator &Other) { argument
526 return !(*this == Other);
[all...]
/macosx-10.9.5/CPANInternal-140/Class-Std/demo/
H A Ddemo_perlify.pl20 package Other; package
31 my $obj2 = Other->new();
/macosx-10.9.5/CPANInternal-140/Class-Std-0.011/demo/
H A Ddemo_perlify.pl20 package Other; package
31 my $obj2 = Other->new();
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DConstantRange.cpp224 bool ConstantRange::contains(const ConstantRange &Other) const {
225 if (isFullSet() || Other.isEmptySet()) return true;
226 if (isEmptySet() || Other.isFullSet()) return false;
229 if (Other.isWrappedSet())
232 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
235 if (!Other.isWrappedSet())
236 return Other.getUpper().ule(Upper) ||
237 Lower.ule(Other.getLower());
239 return Other
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Object/
H A DObjectFile.h104 bool operator==(const RelocationRef &Other) const;
146 bool operator==(const SectionRef &Other) const;
147 bool operator <(const SectionRef &Other) const;
209 bool operator==(const SymbolRef &Other) const;
210 bool operator <(const SymbolRef &Other) const;
252 bool operator==(const LibraryRef &Other) const;
253 bool operator <(const LibraryRef &Other) const;
402 inline bool SymbolRef::operator==(const SymbolRef &Other) const {
403 return SymbolPimpl == Other.SymbolPimpl;
406 inline bool SymbolRef::operator <(const SymbolRef &Other) cons
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h76 /// Other - This marker indicates that the query has no known dependency
79 Other enumerator in enum:llvm::MemDepResult::DepType
81 /// If DepType is "Other", the upper part of the pair
115 PairTy(reinterpret_cast<Instruction*>(NonLocal), Other));
119 PairTy(reinterpret_cast<Instruction*>(NonFuncLocal), Other));
123 PairTy(reinterpret_cast<Instruction*>(Unknown), Other));
138 return Value.getInt() == Other
145 return Value.getInt() == Other
152 return Value.getInt() == Other
159 if (Value.getInt() == Other) retur
[all...]
H A DDominanceFrontier.h117 bool compare(DominanceFrontierBase &Other) const {
119 for (DomSetMapType::const_iterator I = Other.begin(),
120 E = Other.end(); I != E; ++I)
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DRequestView.js61 if (request.type === WebInspector.resourceTypes.Other || request.hasErrorStatusCode())
H A DResourceType.js123 Other: new WebInspector.ResourceType("other", "Other", "Other", "rgb(186,186,186)", false)
H A DRequestPreviewView.js114 if (this.request.type === WebInspector.resourceTypes.Other)
H A DResourceView.js59 if (resource.type === WebInspector.resourceTypes.Other)
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DScheduleDAG.h123 bool overlaps(const SDep &Other) const {
124 if (Dep != Other.Dep) return false;
129 return Contents.Reg == Other.Contents.Reg;
132 Other.Contents.Order.isNormalMemory &&
133 Contents.Order.isMustAlias == Other.Contents.Order.isMustAlias &&
134 Contents.Order.isArtificial == Other.Contents.Order.isArtificial;
139 bool operator==(const SDep &Other) const {
140 return overlaps(Other)
141 && Latency == Other.Latency && MinLatency == Other
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/TableGen/
H A DRecord.h58 // Other classes.
536 TypedInit(const TypedInit &Other) LLVM_DELETED_FUNCTION;
537 TypedInit &operator=(const TypedInit &Other) LLVM_DELETED_FUNCTION;
569 UnsetInit &operator=(const UnsetInit &Other) LLVM_DELETED_FUNCTION;
594 BitInit(const BitInit &Other) LLVM_DELETED_FUNCTION;
595 BitInit &operator=(BitInit &Other) LLVM_DELETED_FUNCTION;
623 BitsInit(const BitsInit &Other) LLVM_DELETED_FUNCTION;
624 BitsInit &operator=(const BitsInit &Other) LLVM_DELETED_FUNCTION;
667 IntInit(const IntInit &Other) LLVM_DELETED_FUNCTION;
668 IntInit &operator=(const IntInit &Other) LLVM_DELETED_FUNCTIO
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DMachineInstr.cpp171 bool MachineOperand::isIdenticalTo(const MachineOperand &Other) const {
172 if (getType() != Other.getType() ||
173 getTargetFlags() != Other.getTargetFlags())
178 return getReg() == Other.getReg() && isDef() == Other.isDef() &&
179 getSubReg() == Other.getSubReg();
181 return getImm() == Other.getImm();
183 return getCImm() == Other.getCImm();
185 return getFPImm() == Other.getFPImm();
187 return getMBB() == Other
[all...]
H A DRegisterCoalescer.cpp1249 // Lanes with defined values in this register. Other lanes are undef and
1281 ConflictResolution analyzeValue(unsigned ValNo, JoinVals &Other);
1282 void computeAssignment(unsigned ValNo, JoinVals &Other);
1286 bool isPrunedValue(unsigned ValNo, JoinVals &Other);
1301 bool mapValues(JoinVals &Other);
1305 bool resolveConflicts(JoinVals &Other);
1307 /// Prune the live range of values in Other.LI where they would conflict with
1310 void pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints);
1360 /// Recursively calls computeAssignment() on this and Other, guaranteeing that
1365 JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) { argument
1551 computeAssignment(unsigned ValNo, JoinVals &Other) argument
1586 mapValues(JoinVals &Other) argument
1614 taintExtent(unsigned ValNo, unsigned TaintedLanes, JoinVals &Other, SmallVectorImpl<std::pair<SlotIndex, unsigned> > &TaintExtent) argument
1671 resolveConflicts(JoinVals &Other) argument
1740 isPrunedValue(unsigned ValNo, JoinVals &Other) argument
1755 pruneValues(JoinVals &Other, SmallVectorImpl<SlotIndex> &EndPoints) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/
H A Dformat.txt29 No 5 Number, Other
33 Cc 9 Other, Control
34 Cf 10 Other, Format
35 Cs 11 Other, Surrogate
36 Co 12 Other, Private Use
37 Cn 13 Other, Not Assigned
42 Lo 18 Letter, Other
47 Po 23 Punctuation, Other
51 So 27 Symbol, Other
62 ON 38 Other Neutral
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h110 inline bool operator==(const RelocationValueRef &Other) const {
111 return std::memcmp(this, &Other, sizeof(RelocationValueRef)) == 0;
113 inline bool operator <(const RelocationValueRef &Other) const {
114 return std::memcmp(this, &Other, sizeof(RelocationValueRef)) < 0;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp74 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
85 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
115 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
136 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &TFOps[0], i);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp126 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
127 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
161 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
162 setOperationAction(ISD::BRIND, MVT::Other, Expand);
169 setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
191 setOperationAction(ISD::TRAP, MVT::Other, Legal);
480 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
489 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
518 SDVTList DeclareParamVTs = DAG.getVTList(MVT::Other, MVT::Glue);
547 SDVTList CopyParamVTs = DAG.getVTList(MVT::Other, MV
[all...]

Completed in 376 milliseconds

1234567891011>>