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

1 2

  /external/llvm/tools/dsymutil/
NonRelocatableStringpool.h 32 : CurrentEndOffset(0), Sentinel(0), Last(&Sentinel) {
51 return getNextEntry(&Sentinel);
65 MapTy::MapEntryTy Sentinel, *Last;
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
SentinelOuterClass.java 34 // source: sentinel.proto
44 // @@protoc_insertion_point(interface_extends:com.google.protobuf.jruby.Sentinel)
98 * Protobuf type {@code com.google.protobuf.jruby.Sentinel}
100 public static final class Sentinel extends
102 // @@protoc_insertion_point(message_implements:com.google.protobuf.jruby.Sentinel)
104 // Use Sentinel.newBuilder() to construct.
105 private Sentinel(com.google.protobuf.GeneratedMessage.Builder builder) {
108 private Sentinel() {
134 com.google.protobuf.jruby.SentinelOuterClass.Sentinel.class, com.google.protobuf.jruby.SentinelOuterClass.Sentinel.Builder.class)
    [all...]
RubyRepeatedField.java 352 SentinelOuterClass.Sentinel sentinel = SentinelOuterClass.Sentinel.getDefaultInstance(); local
356 value = sentinel.getDefaultInt32();
359 value = sentinel.getDefaultInt64();
362 value = sentinel.getDefaultUnit32();
365 value = sentinel.getDefaultUint64();
368 value = sentinel.getDefaultFloat();
371 value = sentinel.getDefaultDouble();
374 value = sentinel.getDefaultBool()
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
simple_ilist.h 62 /// node is a sentinel. Specifying \c true enables the \a
88 ilist_sentinel<OptionsT> Sentinel;
118 iterator begin() { return ++iterator(Sentinel); }
119 const_iterator begin() const { return ++const_iterator(Sentinel); }
120 iterator end() { return iterator(Sentinel); }
121 const_iterator end() const { return const_iterator(Sentinel); }
122 reverse_iterator rbegin() { return ++reverse_iterator(Sentinel); }
124 return ++const_reverse_iterator(Sentinel);
126 reverse_iterator rend() { return reverse_iterator(Sentinel); }
128 return const_reverse_iterator(Sentinel);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
simple_ilist.h 57 /// node is a sentinel. Specifying \c true enables the \a
83 ilist_sentinel<OptionsT> Sentinel;
113 iterator begin() { return ++iterator(Sentinel); }
114 const_iterator begin() const { return ++const_iterator(Sentinel); }
115 iterator end() { return iterator(Sentinel); }
116 const_iterator end() const { return const_iterator(Sentinel); }
117 reverse_iterator rbegin() { return ++reverse_iterator(Sentinel); }
119 return ++const_reverse_iterator(Sentinel);
121 reverse_iterator rend() { return reverse_iterator(Sentinel); }
123 return const_reverse_iterator(Sentinel);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
IListSentinelTest.cpp 25 typedef PickSentinel<Node>::type Sentinel;
37 Sentinel S;
  /external/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 116 mutable ilist_half_node<SymbolRewriter::RewriteDescriptor> Sentinel;
120 // the list. Because the sentinel is relative to this instance, use a
128 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
131 return static_cast<SymbolRewriter::RewriteDescriptor *>(&Sentinel);
MemorySSA.h 179 return static_cast<MemoryAccess *>(&Sentinel);
189 mutable ilist_half_node<MemoryAccess> Sentinel;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Module.h 42 return static_cast<Function*>(&Sentinel);
51 mutable ilist_node<Function> Sentinel;
58 return static_cast<GlobalVariable*>(&Sentinel);
66 mutable ilist_node<GlobalVariable> Sentinel;
73 return static_cast<GlobalAlias*>(&Sentinel);
81 mutable ilist_node<GlobalAlias> Sentinel;
89 return static_cast<NamedMDNode*>(&Sentinel);
99 mutable ilist_node<NamedMDNode> Sentinel;
Function.h 40 return static_cast<BasicBlock*>(&Sentinel);
50 mutable ilist_half_node<BasicBlock> Sentinel;
57 return static_cast<Argument*>(&Sentinel);
67 mutable ilist_half_node<Argument> Sentinel;
BasicBlock.h 34 // The sentinel is relative to this instance, so we use a non-static
42 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
45 return static_cast<Instruction*>(&Sentinel);
53 mutable ilist_half_node<Instruction> Sentinel;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Recycler.h 44 mutable RecyclerStruct Sentinel;
46 return &Sentinel;
  /external/llvm/include/llvm/Analysis/
IVUsers.h 97 // The sentinel is relative to this instance, so we use a non-static
105 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
108 return static_cast<IVStrideUse*>(&Sentinel);
117 mutable ilist_node<IVStrideUse> Sentinel;
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
IVUsers.h 97 // The sentinel is relative to this instance, so we use a non-static
105 // NodeTy, which becomes the sentinel. Dereferencing the sentinel is
108 return static_cast<IVStrideUse*>(&Sentinel);
117 mutable ilist_node<IVStrideUse> Sentinel;
  /external/llvm/include/llvm/ADT/
ilist.h 70 /// that provides default sentinel implementations for common operations.
72 /// ilist_sentinel_traits implements a lazy dynamic sentinel allocation
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
77 /// createSentinel - create the dynamic sentinel
80 /// destroySentinel - deallocate the dynamic sentinel
89 /// initialized or assigned a fresh sentinel
90 /// @return the sentinel
101 /// noteHead - stash the sentinel into its default location
102 static void noteHead(NodeTy *NewHead, NodeTy *Sentinel) {
103 ilist_traits<NodeTy>::setPrev(NewHead, Sentinel);
    [all...]
SparseBitVector.h 252 Element *createSentinel() const { return static_cast<Element *>(&Sentinel); }
260 mutable ilist_half_node<Element> Sentinel;
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineFunction.h 46 mutable ilist_half_node<MachineBasicBlock> Sentinel;
49 return static_cast<MachineBasicBlock*>(&Sentinel);
MachineBasicBlock.h 36 mutable ilist_half_node<MachineInstr> Sentinel;
44 return static_cast<MachineInstr*>(&Sentinel);
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 321 return static_cast<clang::ento::BugReport *>(&Sentinel);
332 mutable ilist_half_node<clang::ento::BugReport> Sentinel;
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 53 mutable ilist_half_node<MachineBasicBlock> Sentinel;
58 return static_cast<MachineBasicBlock*>(&Sentinel);
MachineBasicBlock.h 44 mutable ilist_half_node<MachineInstr> Sentinel;
52 return static_cast<MachineInstr*>(&Sentinel);
    [all...]
SlotIndexes.h 74 mutable ilist_half_node<IndexListEntry> Sentinel;
77 return static_cast<IndexListEntry*>(&Sentinel);
  /external/image_io/src/base/
data_scanner.cc 204 SetInternalError(context, "Sentinel already scanned", &result);
209 char sentinel = literal_or_sentinels_[index]; local
210 if ((sentinel == '~' && IsFirstNameChar(cbyte)) || cbyte == sentinel) {
213 data_ = sentinel;
  /external/swiftshader/third_party/subzero/src/
IceOperand.h 474 /// RegNumT is for holding target-specific register numbers, plus the sentinel
549 static constexpr int Sentinel = -1;
562 assert(Current != Sentinel);
566 assert(Current != Sentinel);
581 Iterator end() { return Iterator(V, Sentinel); }
    [all...]
  /external/llvm/include/llvm/IR/
Module.h 45 return static_cast<NamedMDNode*>(&Sentinel);
56 mutable ilist_node<NamedMDNode> Sentinel;
    [all...]

Completed in 1297 milliseconds

1 2