HomeSort by relevance Sort by last modified time
    Searched defs:AB (Results 1 - 9 of 9) sorted by null

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p17.cpp 31 typedef A<double> AB;
32 template <> int AB::foo = 0; // expected-error{{extraneous 'template<>'}}
33 int AB::bar = 1;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p3.cpp 18 namespace AB {
24 if (AB::i)
25 AB::f();
p5.cpp 22 namespace AB {
28 struct AB::x foo; // expected-error {{reference to 'x' is ambiguous}}
29 int i = AB::x; // expected-error {{reference to 'x' is ambiguous}}
31 struct AB::y bar;
32 float f = AB::y; // expected-error {{a type named 'y' is hidden by a declaration in a different namespace}}
33 AB::z(i);
34 AB::z(f);
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/
p6-0x.cpp 22 typedef A AB;
24 AB *p;
25 p->AB::~AB();
p6.cpp 20 typedef A AB;
22 AB *p;
23 p->AB::~AB(); // expected-error{{expected the class name after '~' to name a destructor}}
  /external/llvm/lib/Analysis/
ScalarEvolutionAliasAnalysis.cpp 147 const SCEV *AB = SE->getMinusSCEV(AS, BS);
152 if (BSizeInt.ule(SE->getUnsignedRange(AB).getUnsignedMin()) &&
153 (-ASizeInt).uge(SE->getUnsignedRange(AB).getUnsignedMax()))
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/basis/
ImprovedNoise.java 61 int AB = ImprovedNoise.p[A + 1] + Z;
72 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AB], x, y - 1, z), // RESULTS
77 ImprovedNoise.lerp(u, ImprovedNoise.grad3(ImprovedNoise.p[AB + 1], x, y - 1, z - 1),
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
NoiseGenerator.java 639 int A, AA, AB, B, BA, BB;
651 AB = hash[A + 1] + intZ;
657 NoiseMath.lerp(floorX, NoiseMath.grad(hash[AB], x, y - 1, z),
661 NoiseMath.lerp(floorX, NoiseMath.grad(hash[AB + 1], x, y - 1, z - 1),
    [all...]
  /external/clang/test/SemaCXX/
warn-thread-safety-parsing.cpp 487 // Acquired Before (ab)
506 class __attribute__((acquired_before(mu1))) AB { // \
    [all...]

Completed in 182 milliseconds