HomeSort by relevance Sort by last modified time
    Searched defs:Self (Results 1 - 25 of 29) 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;
122 friend class ChainIteratorBase<Self>;
123 friend class ChainIteratorBase<const Self>;
124 friend class EntryIteratorBase<Self>;
125 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;
147 typedef PolicyIterator<DataType, Traits, IteratorType> Self;
164 Self& operator++() {
169 Self operator++(int) {
170 Self tmp = *this;
197 typedef TreeIterator<value_type, Traits> Self;
230 Self& operator++() {
235 Self operator++(int) {
236 Self tmp = *this;
241 Self& operator--()
    [all...]
  /external/clang/lib/AST/
InheritViz.cpp 137 QualType Self = Context.getTypeDeclType(this);
144 Filename.appendComponent(Self.getAsString() + ".dot");
156 Writer.WriteGraph(Self);
DeclBase.cpp 905 NamespaceDecl *Self = static_cast<NamespaceDecl *>(this);
906 for (NamespaceDecl *N = Self->getMostRecentDecl(); N;
    [all...]
  /external/clang/test/SemaTemplate/
enum-argument.cpp 6 typedef C<v> Self;
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 110 ContinuousRangeMap &Self;
116 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { }
119 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
123 Self.Rep.push_back(Val);
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 32 typedef PolicyIterator<Input, Traits, IteratorType> Self;
52 Self& operator++() {
60 Self operator++(int) {
61 Self tmp(*this);
  /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...]
RegionInfo.h 488 typedef block_iterator_wrapper<IsConst> Self;
  /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/AST/
ExternalASTSource.h 368 LazyVector *Self;
393 iterator() : Self(0), Position(0) { }
395 iterator(LazyVector *Self, int Position)
396 : Self(Self), Position(Position) { }
400 return Self->Loaded.end()[Position];
401 return Self->Local[Position];
406 return &Self->Loaded.end()[Position];
408 return &Self->Local[Position];
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 380 PreprocessingRecord *Self;
403 iterator() : Self(0), Position(0) { }
405 iterator(PreprocessingRecord *Self, int Position)
406 : Self(Self), Position(Position) { }
411 Self->LoadedPreprocessedEntities.size() + Position : Position;
412 PPEntityID ID = Self->getPPEntityID(Index, isLoaded);
413 return Self->getPreprocessedEntity(ID);
  /external/clang/include/clang/Frontend/
ASTUnit.h 423 ASTUnit &Self;
426 explicit ConcurrencyCheck(ASTUnit &Self)
427 : Self(Self)
429 Self.ConcurrencyCheckValue.start();
432 Self.ConcurrencyCheckValue.finish();
    [all...]
  /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/expat/amiga/
expat_68k.c 45 struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary;
47 return (ULONG) Self->Open(0);
55 struct LibraryManagerInterface *Self = (struct LibraryManagerInterface *) ExtLib->ILibrary;
57 return (ULONG) Self->Close();
77 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
78 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec;
83 p->p = Self->XML_ParserCreate((const XML_Char *)regarray[8]);
86 Self->XML_SetUserData(p->p, p);
99 struct ExpatIFace *Self = (struct ExpatIFace *) ExtLib->MainIFace;
100 struct ExecIFace *IExec = ((struct ExpatBase *)Self->Data.LibBase)->IExec
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/clang/include/clang/Parse/
Parser.h 642 Parser *Self;
648 // parser Self where the new Scope is created with the flags
651 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true)
652 : Self(Self) {
654 Self->EnterScope(ScopeFlags);
656 this->Self = 0;
662 if (Self) {
663 Self->ExitScope();
664 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...]

Completed in 731 milliseconds

1 2