HomeSort by relevance Sort by last modified time
    Searched defs:Other (Results 1 - 25 of 55) sorted by null

1 2 3

  /art/test/414-static-fields/src/
Other.java 17 public class Other {
  /external/llvm/unittests/ADT/
SparseBitVectorTest.cpp 37 SparseBitVector<> Vec, Other;
40 Other.set(1);
41 EXPECT_FALSE(Vec &= Other);
46 Other.clear();
47 Other.set(6);
48 EXPECT_TRUE(Vec &= Other);
53 Other.clear();
54 Other.set(225);
55 EXPECT_TRUE(Vec &= Other);
60 Other.clear()
    [all...]
  /art/test/046-reflect/src/otherpackage/
Other.java 19 public class Other {
  /art/test/617-clinit-oome/src/
Main.java 19 Class klass = Other.class;
37 Other.print();
Other.java 17 public final class Other {
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p14.cpp 41 class Other {
47 void Other::foo(YFloat a, YFloat b) {
52 namespace Other {
57 using namespace Other;
  /external/clang/test/CodeGenCXX/
copy-constructor-elim-2.cpp 16 struct Other {
21 Derived(const Other &O);
24 // CHECK: define {{.*}} @_ZN13no_elide_base7DerivedC1ERKNS_5OtherE(%"struct.no_elide_base::Derived"* returned %this, %"struct.no_elide_base::Other"* dereferenceable({{[0-9]+}}) %O) unnamed_addr
25 Derived::Derived(const Other &O)
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCELFObjectWriter.cpp 411 // The "other" values are stored in the last 6 bits of the second byte.
414 unsigned Other = cast<MCSymbolELF>(Sym).getOther() << 2;
415 return (Other & ELF::STO_PPC64_LOCAL_MASK) != 0;
PPCAsmBackend.cpp 146 // The "other" values are stored in the last 6 bits of the second
149 unsigned Other = S->getOther() << 2;
150 if ((Other & ELF::STO_PPC64_LOCAL_MASK) != 0)
PPCMCTargetDesc.cpp 174 unsigned Other = S->getOther();
175 Other &= ~ELF::STO_PPC64_LOCAL_MASK;
176 Other |= Encoded;
177 S->setOther(Other);
193 unsigned Other = Symbol->getOther();
194 Other &= ~ELF::STO_PPC64_LOCAL_MASK;
195 Other |= RhsSym.getOther() & ELF::STO_PPC64_LOCAL_MASK;
196 Symbol->setOther(Other);
  /external/v8/test/mjsunit/es6/
array-from.js 137 function Other() {}
145 testArrayFrom(Other, Other);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
pyclbr_input.py 5 class Other(object):
15 foo = Other().foo
16 om = Other.om
  /external/guice/core/test/com/google/inject/
InjectorTest.java 42 @BindingAnnotation @interface Other {}
58 final SampleSingleton other = new SampleSingleton(); local
64 .annotatedWith(Other.class)
65 .toInstance(other);
73 assertSame(other,
74 injector.getInstance(Key.get(SampleSingleton.class, Other.class)));
  /external/llvm/unittests/Support/
ArrayRecyclerTest.cpp 21 Object *Other;
  /art/test/420-const-class/src/
Main.java 18 static class Other {
61 return Other.class;
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 90 unsigned Other = (Parent == Group1) ? Group2 : Group1;
91 GroupNodes.at(Other) = Parent;
98 // stay as is because there could be other GroupNodes referring to
277 // other types of edges.
602 // registers are available for the other group subregisters, then we
609 TRI->getMinimalPhysRegClass(SuperReg, MVT::Other);
864 // If the SUnit has other dependencies on the SUnit that
867 // units from being scheduled past each other
870 // Also, if there are dependencies on other SUnits with the
    [all...]
  /external/llvm/lib/MC/
MCSymbolELF.cpp 162 void MCSymbolELF::setOther(unsigned Other) {
163 assert((Other & 0x1f) == 0);
164 Other >>= 5;
165 assert(Other <= 0x7);
167 setFlags(OtherFlags | (Other << ELF_STO_Shift));
171 unsigned Other = (getFlags() & (0x7 << ELF_STO_Shift)) >> ELF_STO_Shift;
172 return Other << 5;
  /external/llvm/lib/Object/
ELFYAML.cpp 617 : Visibility(ELFYAML::ELF_STV(0)), Other(ELFYAML::ELF_STO(0)) {}
619 : Visibility(Original & 0x3), Other(Original & ~0x3) {}
621 uint8_t denormalize(IO &) { return Visibility | Other; }
624 ELFYAML::ELF_STO Other;
635 MappingNormalization<NormalizedOther, uint8_t> Keys(IO, Symbol.Other);
637 IO.mapOptional("Other", Keys->Other, ELFYAML::ELF_STO(0));
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
OSUError.java 21 Other
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 92 Value *Other = S->getOperand(2);
93 if (!CI->isOne()) std::swap(ReplaceWith, Other);
138 // value with the other value of the select. This often allows us to
262 // If this was the first edge to be visited, record that all other edges
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 153 UnusedInputDiagConsumer() : Other(nullptr) {}
157 UnusedInputDiagConsumer(DiagnosticConsumer *Other) : Other(Other) {}
165 if (Other)
166 Other->HandleDiagnostic(DiagLevel, Info);
169 DiagnosticConsumer *Other;
235 // driver to construct. If the user specified some other argument that
  /external/clang/test/Analysis/inlining/
path-notes.cpp 67 Dereferencer(const Dereferencer &Other) {
72 Dereferencer(Dereferencer &&Other) {
77 void operator=(const Dereferencer &Other) {
82 void operator=(Dereferencer &&Other) {
102 MovableWrapper(MovableWrapper &&Other) = default;
105 MovableWrapper &operator=(MovableWrapper &&Other) = default;
    [all...]

Completed in 2199 milliseconds

1 2 3