HomeSort by relevance Sort by last modified time
    Searched refs:Nest (Results 1 - 25 of 33) sorted by null

1 2

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/
Bird.java 18 public class Bird extends AbstractAnimal<Nest> {
19 private Nest home;
21 public Nest getHome() {
25 public void setHome(Nest home) {
Nest.java 18 public class Nest {
GenericsBugDetector.java 27 * Check whether the proper class Nest for Bird's property 'home' is
34 return property.getPropertyType() == Nest.class;
BirdTest.java 29 Nest home = new Nest();
30 home = new Nest();
51 "home: !!org.yaml.snakeyaml.generics.Nest\n height: 3\nname: Eagle\n", output);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/mws/
test_response.py 18 Nest = Element()
27 <Nest>
30 </Nest>
37 nest = dict(filter(useful, Item.Nest.__dict__.items()))
38 self.assertEqual(nest, dict(Zip='Zap', Zam='Zoo'))
39 useful = lambda x: not x[0].startswith('_') and not x[0] == 'Nest'
76 Item = MemberList(Nest=MemberList(),
83 <Nest>
87 </Nest>
    [all...]
  /external/clang/test/SemaCXX/
typo-correction-delayed.cpp 56 void Nest();
89 NestedNode* Nest();
94 // There are two equidistant, usable corrections for Next: next and Nest
  /external/v8/src/compiler/
diamond.h 41 // Nest {this} into either the if_true or if_false branch of {that}.
42 void Nest(Diamond& that, bool if_true) {
  /external/llvm/include/llvm/Target/
TargetCallingConv.h 39 static const uint64_t Nest = 1ULL<<5; ///< Nested fn static chain
82 bool isNest() const { return Flags & Nest; }
  /external/v8/test/unittests/compiler/
diamond-unittest.cc 77 d1.Nest(d0, true);
97 d1.Nest(d0, false);
loop-peeling-unittest.cc 117 void Nest(While* a, While* b) {
197 Nest(&inner, &outer);
236 Nest(&inner, &outer);
272 Nest(&inner, &outer);
  /external/v8/test/cctest/compiler/
test-osr.cc 311 void Nest(While& that) {
342 inner.Nest(outer);
401 inner.Nest(outer);
  /external/llvm/lib/IR/
Attributes.cpp 217 if (hasAttribute(Attribute::Nest))
218 return "nest";
417 case Attribute::Nest: return 1 << 8;
    [all...]
Verifier.cpp     [all...]
Function.cpp 129 /// hasNestAttr - Return true if this argument has the nest attribute on
134 hasAttribute(getArgNo()+1, Attribute::Nest);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 94 | Nest
755 | Attribute.Nest -> Int32.shift_left 1l 8
791 checkattr Attribute.Nest;
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 240 if (PAL.hasAttrSomewhere(Attribute::Nest))
XCoreISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 64 STATISTIC(NumNestRemoved , "Number of nest attributes removed");
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 87 IsNest = CS->paramHasAttr(AttrIdx, Attribute::Nest);
    [all...]
TargetLowering.cpp 76 isNest = CS->paramHasAttr(AttrIdx, Attribute::Nest);
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 506 HANDLE_ATTR(Nest);
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 195 case Attribute::Nest:
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]

Completed in 1418 milliseconds

1 2