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

1 2

  /external/webkit/Source/WebCore/svg/properties/
SVGStaticPropertyTearOff.h 36 typedef SVGStaticPropertyTearOff<ContextElement, PropertyType> Self;
41 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update)
44 return adoptRef(new Self(contextElement, value, update));
SVGStaticPropertyWithParentTearOff.h 36 typedef SVGStaticPropertyWithParentTearOff<ParentType, PropertyType> Self;
42 static PassRefPtr<Self> create(SVGProperty* parent, PropertyType& value, UpdateMethod update)
45 return adoptRef(new Self(parent, value, update));
SVGPropertyTearOff.h 33 typedef SVGPropertyTearOff<PropertyType> Self;
37 static PassRefPtr<Self> create(SVGAnimatedProperty* animatedProperty, SVGPropertyRole role, PropertyType& value)
40 return adoptRef(new Self(animatedProperty, role, value));
44 static PassRefPtr<Self> create(const PropertyType& initialValue)
46 return adoptRef(new Self(initialValue));
SVGListProperty.h 37 typedef SVGListProperty<PropertyType> Self;
  /frameworks/compile/mclinker/include/mcld/ADT/
HashEntry.h 44 typedef HashEntry<KeyType, ValueType, KeyCompare> Self;
45 friend class EntryFactory<Self>;
HashBase.h 79 typedef HashTableImpl<HashEntryTy, HashFunctionTy> Self;
120 friend class ChainIteratorBase<Self>;
121 friend class ChainIteratorBase<const Self>;
122 friend class EntryIteratorBase<Self>;
123 friend class EntryIteratorBase<const Self>;
HashIterator.h 269 Traits> Self;
310 Self& operator++() {
315 Self operator++(int) {
316 Self tmp = *this;
BinTree.h 109 typedef PolicyIteratorBase<value_type, Traits, IteratorType> Self;
150 typedef PolicyIterator<DataType, Traits, IteratorType> Self;
167 Self& operator++() {
172 Self operator++(int) {
173 Self tmp = *this;
200 typedef TreeIterator<value_type, Traits> Self;
233 Self& operator++() {
238 Self operator++(int) {
239 Self tmp = *this;
244 Self& operator--()
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 137 QualType Self = Context.getTypeDeclType(const_cast<CXXRecordDecl *>(this));
144 Filename.appendComponent(Self.getAsString() + ".dot");
156 Writer.WriteGraph(Self);
DeclBase.cpp 864 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this);
865 for (NamespaceDecl *N = Self->getMostRecentDecl(); N;
    [all...]
ASTContext.cpp     [all...]
  /external/clang/test/SemaTemplate/
enum-argument.cpp 5 typedef C<v> Self;
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 109 ContinuousRangeMap &Self;
115 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { }
118 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
122 Self.Rep.push_back(Val);
  /external/llvm/include/llvm/Analysis/
RegionIterator.h 87 typedef RNSuccIterator<NodeType> Self;
111 inline bool operator==(const Self& x) const {
119 inline bool operator!=(const Self& x) const { return !operator==(x); }
127 inline Self& operator++() {
141 inline Self operator++(int) {
142 Self tmp = *this;
147 inline const Self &operator=(const Self &I) {
174 typedef RNSuccIterator<FlatIt<NodeType> > Self;
199 inline bool operator==(const Self& x) const
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
MCLDInputTree.h 34 typedef PolicyIterator<Input, Traits, IteratorType> Self;
54 Self& operator++() {
61 Self operator++(int) {
62 Self tmp(*this);
  /external/clang/include/clang/AST/
ExternalASTSource.h 357 LazyVector *Self;
382 iterator() : Self(0), Position(0) { }
384 iterator(LazyVector *Self, int Position)
385 : Self(Self), Position(Position) { }
389 return Self->Loaded.end()[Position];
390 return Self->Local[Position];
395 return &Self->Loaded.end()[Position];
397 return &Self->Local[Position];
  /external/llvm/include/llvm/Support/
CFG.h 32 typedef PredIterator<Ptr, USE_iterator> Self;
50 inline bool operator==(const Self& x) const { return It == x.It; }
51 inline bool operator!=(const Self& x) const { return !operator==(x); }
59 inline Self& operator++() { // Preincrement
65 inline Self operator++(int) { // Postincrement
66 Self tmp = *this; ++*this; return tmp;
107 typedef SuccIterator<Term_, BB_> Self;
132 inline const Self &operator=(const Self &I) {
142 inline bool operator==(const Self& x) const { return idx == x.idx;
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 68 typedef DataIterator<ChunkType, Traits> Self;
102 Self& operator++() {
107 Self operator++(int) {
108 Self tmp = *this;
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 408 PreprocessingRecord *Self;
431 iterator() : Self(0), Position(0) { }
433 iterator(PreprocessingRecord *Self, PPEntityID Position)
434 : Self(Self), Position(Position) { }
437 return Self->getPreprocessedEntity(Position);
  /external/clang/include/clang/Frontend/
ASTUnit.h 412 ASTUnit &Self;
415 explicit ConcurrencyCheck(ASTUnit &Self)
416 : Self(Self)
418 Self.ConcurrencyCheckValue.start();
421 Self.ConcurrencyCheckValue.finish();
  /external/clang/lib/Sema/
SemaCast.cpp 49 : Self(S), SrcExpr(src), DestType(destType),
62 Sema &Self;
89 castExpr = ImplicitCastExpr::Create(Self.Context,
90 Self.Context.ARCUnbridgedCastTy,
94 return Self.Owned(castExpr);
117 Self.CheckCastAlign(SrcExpr.get(), DestType, OpRange);
121 assert(Self.getLangOpts().ObjCAutoRefCount);
124 if (Self.CheckObjCARCConversion(OpRange, DestType, src, CCK) ==
135 SrcExpr = Self.CheckPlaceholderExpr(SrcExpr.take());
143 static bool CastsAwayConstness(Sema &Self, QualType SrcType, QualType DestType
    [all...]
  /external/llvm/include/llvm/
Instructions.h     [all...]
  /external/clang/include/clang/Parse/
Parser.h 656 Parser *Self;
662 // parser Self where the new Scope is created with the flags
665 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true)
666 : Self(Self) {
668 Self->EnterScope(ScopeFlags);
670 this->Self = 0;
676 if (Self) {
677 Self->ExitScope();
678 Self = 0
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 124 (and helper API functions) are able to use the new designs automatically. There exists self-check functions for each
448 call the following self-test function.
450 \subsection{Self--Testing}
644 and tables. The decryption and self--test function pointers of both \textit{encrypt only} descriptors are set to \textbf{NULL} and
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 758 /// Private Helper predicate to check for 'self'.
    [all...]

Completed in 1207 milliseconds

1 2