HomeSort by: relevance | last modified time | path
    Searched refs:Other (Results 1 - 25 of 552) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/FileSystem/
UniqueID.h 31 bool operator==(const UniqueID &Other) const {
32 return Device == Other.Device && File == Other.File;
34 bool operator!=(const UniqueID &Other) const { return !(*this == Other); }
35 bool operator<(const UniqueID &Other) const {
37 if (Device < Other.Device)
39 if (Other.Device < Device)
41 return File < Other.File;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-typeprint.cc 34 class Other
38 Other ovar;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-typeprint.cc 34 class Other
38 Other ovar;
  /src/external/apache2/llvm/dist/clang/lib/Format/
ContinuationIndenter.h 180 /// handled in \c addNextStateToQueue, and the penalty for other lines doesn't
352 bool operator<(const ParenState &Other) const {
353 if (Indent != Other.Indent)
354 return Indent < Other.Indent;
355 if (LastSpace != Other.LastSpace)
356 return LastSpace < Other.LastSpace;
357 if (NestedBlockIndent != Other.NestedBlockIndent)
358 return NestedBlockIndent < Other.NestedBlockIndent;
359 if (FirstLessLess != Other.FirstLessLess)
360 return FirstLessLess < Other.FirstLessLess
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCRegister.h 77 bool operator==(const MCRegister &Other) const { return Reg == Other.Reg; }
78 bool operator!=(const MCRegister &Other) const { return Reg != Other.Reg; }
84 bool operator==(unsigned Other) const { return Reg == Other; }
85 bool operator!=(unsigned Other) const { return Reg != Other; }
86 bool operator==(int Other) const { return Reg == unsigned(Other); }
    [all...]
MachineLocation.h 39 bool operator==(const MachineLocation &Other) const {
40 return IsRegister == Other.IsRegister && Register == Other.Register;
MCSchedule.h 10 // for scheduling and other instruction cost heuristics.
56 bool operator==(const MCProcResourceDesc &Other) const {
57 return NumUnits == Other.NumUnits && SuperIdx == Other.SuperIdx
58 && BufferSize == Other.BufferSize;
68 bool operator==(const MCWriteProcResEntry &Other) const {
69 return ProcResourceIdx == Other.ProcResourceIdx && Cycles == Other.Cycles;
82 bool operator==(const MCWriteLatencyEntry &Other) const {
83 return Cycles == Other.Cycles && WriteResourceID == Other.WriteResourceID
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
Register.h 129 bool operator==(const Register &Other) const { return Reg == Other.Reg; }
130 bool operator!=(const Register &Other) const { return Reg != Other.Reg; }
131 bool operator==(const MCRegister &Other) const { return Reg == Other.id(); }
132 bool operator!=(const MCRegister &Other) const { return Reg != Other.id(); }
138 bool operator==(unsigned Other) const { return Reg == Other; }
    [all...]
MachineSizeOpts.h 30 PGSOQueryType QueryType = PGSOQueryType::Other);
36 PGSOQueryType QueryType = PGSOQueryType::Other);
42 PGSOQueryType QueryType = PGSOQueryType::Other);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ConstantRange.h 21 // The other integral ranges use min/max values for special range values. For
96 /// predicate with any value contained within Other is contained in the
98 /// 'union over all y in Other . { x : icmp op x y is true }'. If the exact
102 /// Example: Pred = ult and Other = i8 [2, 5) returns Result = [0, 4)
104 const ConstantRange &Other);
107 /// satisfy the given predicate with all values contained within Other.
109 /// 'intersection over all y in Other . { x : icmp op x y is true }'. If the
113 /// Example: Pred = ult and Other = i8 [2, 5) returns [0, 2)
115 const ConstantRange &Other);
118 /// the given predicate with any value contained within Other. Formally, thi
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CharUnits.h 68 CharUnits& operator+= (const CharUnits &Other) {
69 Quantity += Other.Quantity;
79 CharUnits& operator-= (const CharUnits &Other) {
80 Quantity -= Other.Quantity;
92 bool operator== (const CharUnits &Other) const {
93 return Quantity == Other.Quantity;
95 bool operator!= (const CharUnits &Other) const {
96 return Quantity != Other.Quantity;
100 bool operator< (const CharUnits &Other) const {
101 return Quantity < Other.Quantity
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
MSVCErrorWorkarounds.h 31 MSVCPError(MSVCPError &&Other) : Error(std::move(Other)) {}
33 MSVCPError &operator=(MSVCPError Other) {
34 Error::operator=(std::move(Other));
50 MSVCPExpected(MSVCPExpected &&Other) : Expected<T>(std::move(Other)) {}
52 MSVCPExpected &operator=(MSVCPExpected &&Other) {
53 Expected<T>::operator=(std::move(Other));
67 Expected<OtherT> &&Other,
69 : Expected<T>(std::move(Other)) {}
    [all...]
ErrorOr.h 93 ErrorOr(const ErrorOr &Other) {
94 copyConstruct(Other);
98 ErrorOr(const ErrorOr<OtherT> &Other,
100 copyConstruct(Other);
105 const ErrorOr<OtherT> &Other,
108 copyConstruct(Other);
111 ErrorOr(ErrorOr &&Other) {
112 moveConstruct(std::move(Other));
116 ErrorOr(ErrorOr<OtherT> &&Other,
118 moveConstruct(std::move(Other));
    [all...]
  /src/games/phantasia/
interplayer.c 35 while (fread((char *) &Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1) {
36 if (Other.p_status != S_OFF
37 && Other.p_status != S_NOTUSED
38 && Other.p_status != S_HUNGUP
39 && (Other.p_status != S_CLOAKED || Other.p_specialtype != SC_VALAR))
44 if (Player.p_x == Other.p_x
45 && Player.p_y == Other.p_y
50 && (Other.p_status == S_PLAYING || Other.p_status == S_INBATTLE
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
PartialDiagnostic.h 52 PartialDiagnostic(const PartialDiagnostic &Other)
53 : StreamingDiagnostic(), DiagID(Other.DiagID) {
54 Allocator = Other.Allocator;
55 if (Other.DiagStorage) {
57 *DiagStorage = *Other.DiagStorage;
78 PartialDiagnostic(PartialDiagnostic &&Other) : DiagID(Other.DiagID) {
79 Allocator = Other.Allocator;
80 DiagStorage = Other.DiagStorage;
81 Other.DiagStorage = nullptr
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Distro.h 95 bool operator==(const Distro &Other) const {
96 return DistroVal == Other.DistroVal;
99 bool operator!=(const Distro &Other) const {
100 return DistroVal != Other.DistroVal;
103 bool operator>=(const Distro &Other) const {
104 return DistroVal >= Other.DistroVal;
107 bool operator<=(const Distro &Other) const {
108 return DistroVal <= Other.DistroVal;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
AsmWriterInst.h 66 bool operator!=(const AsmWriterOperand &Other) const {
67 if (OperandType != Other.OperandType || Str != Other.Str) return true;
69 return MIOpNo != Other.MIOpNo || MiModifier != Other.MiModifier;
72 bool operator==(const AsmWriterOperand &Other) const {
73 return !operator!=(Other);
92 unsigned MatchesAllButOneOp(const AsmWriterInst &Other) const;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
SemaConcept.h 38 const AtomicConstraint &Other) const {
39 if (!ParameterMapping != !Other.ParameterMapping)
43 if (ParameterMapping->size() != Other.ParameterMapping->size())
50 C.getCanonicalTemplateArgument((*Other.ParameterMapping)[I].getArgument())
58 bool subsumes(ASTContext &C, const AtomicConstraint &Other) const {
71 if (ConstraintExpr != Other.ConstraintExpr)
75 return hasMatchingParameterMapping(C, Other);
100 NormalizedConstraint(ASTContext &C, const NormalizedConstraint &Other) {
101 if (Other.isAtomic()) {
102 Constraint = new (C) AtomicConstraint(*Other.getAtomicConstraint())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
APFixedPoint.h 67 getCommonSemantics(const FixedPointSemantics &Other) const;
134 APFixedPoint add(const APFixedPoint &Other, bool *Overflow = nullptr) const;
135 APFixedPoint sub(const APFixedPoint &Other, bool *Overflow = nullptr) const;
136 APFixedPoint mul(const APFixedPoint &Other, bool *Overflow = nullptr) const;
137 APFixedPoint div(const APFixedPoint &Other, bool *Overflow = nullptr) const;
139 // Perform shift operations on a fixed point type. Unlike the other binary
183 int compare(const APFixedPoint &Other) const;
184 bool operator==(const APFixedPoint &Other) const {
185 return compare(Other) == 0;
187 bool operator!=(const APFixedPoint &Other) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantRange.cpp 14 // ranges (other integral ranges use min/max values for special range values):
185 const ConstantRange &Other) const {
186 return makeSatisfyingICmpRegion(Pred, Other).contains(*this);
232 const ConstantRange &Other,
243 unsigned BitWidth = Other.getBitWidth();
252 -Other.getUnsignedMax());
255 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax();
263 return getNonEmpty(Other.getUnsignedMax(), APInt::getMinValue(BitWidth));
266 APInt SMin = Other.getSignedMin(), SMax = Other.getSignedMax()
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCommand.h 40 explicit Command(const Command &Other)
41 : Args(Other.Args), CombinedOutAndErr(Other.CombinedOutAndErr),
42 OutputFile(Other.OutputFile) {}
44 Command &operator=(const Command &Other) {
45 Args = Other.Args;
46 CombinedOutAndErr = Other.CombinedOutAndErr;
47 OutputFile = Other.OutputFile;
86 auto IsMatch = [&](const std::string &Other) {
87 return Arg.compare(0, std::string::npos, Other, 0, Arg.length()) == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Inclusions/
IncludeStyle.h 65 bool operator==(const IncludeCategory &Other) const {
66 return Regex == Other.Regex && Priority == Other.Priority &&
67 RegexIsCaseSensitive == Other.RegexIsCaseSensitive;
148 /// before any other include.
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
RenderingSupport.h 29 ColoredRawOstream(ColoredRawOstream &&Other)
30 : OS(Other.OS), IsColorUsed(Other.IsColorUsed) {
31 // Reset the other IsColorUsed so that the other object won't reset the
33 Other.IsColorUsed = false;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
AssumeBundleQueries.h 105 bool operator==(RetainedKnowledge Other) const {
106 return AttrKind == Other.AttrKind && WasOn == Other.WasOn &&
107 ArgValue == Other.ArgValue;
109 bool operator!=(RetainedKnowledge Other) const { return !(*this == Other); }
112 bool operator<(RetainedKnowledge Other) const {
113 assert(((AttrKind == Other.AttrKind && WasOn == Other.WasOn) ||
114 AttrKind == Attribute::None || Other.AttrKind == Attribute::None) &
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/diagtool/
DiagnosticNames.h 27 bool operator<(const DiagnosticRecord &Other) const {
28 return getName() < Other.getName();
79 bool operator==(const group_iterator &Other) const {
80 return CurrentID == Other.CurrentID;
83 bool operator!=(const group_iterator &Other) const {
84 return CurrentID != Other.CurrentID;
98 bool operator<(llvm::StringRef Other) const {
99 return getName() < Other;

Completed in 56 milliseconds

1 2 3 4 5 6 7 8 91011>>