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

  /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;
  /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);
ASTContext.cpp     [all...]
  /external/clang/test/SemaTemplate/
enum-argument.cpp 5 typedef C<v> Self;
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 99 ContinuousRangeMap &Self;
105 explicit Builder(ContinuousRangeMap &Self) : Self(Self) { }
108 std::sort(Self.Rep.begin(), Self.Rep.end(), Compare());
112 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...]
  /external/clang/include/clang/AST/
ExternalASTSource.h 305 LazyVector *Self;
330 iterator() : Self(0), Position(0) { }
332 iterator(LazyVector *Self, int Position)
333 : Self(Self), Position(Position) { }
337 return Self->Loaded.end()[Position];
338 return Self->Local[Position];
343 return &Self->Loaded.end()[Position];
345 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;
101 typedef SuccIterator<Term_, BB_> Self;
126 inline const Self &operator=(const Self &I) {
136 inline bool operator==(const Self& x) const { return idx == x.idx;
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 364 PreprocessingRecord *Self;
387 iterator() : Self(0), Position(0) { }
389 iterator(PreprocessingRecord *Self, int Position)
390 : Self(Self), Position(Position) { }
393 return Self->getPreprocessedEntity(Position);
  /external/clang/include/clang/Frontend/
ASTUnit.h 420 ASTUnit &Self;
423 explicit ConcurrencyCheck(ASTUnit &Self)
424 : Self(Self)
426 Self.ConcurrencyCheckValue.start();
429 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.getLangOptions().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...]
TreeTransform.h 99 Derived &Self;
103 ForgetPartiallySubstitutedPackRAII(Derived &Self) : Self(Self) {
104 Old = Self.ForgetPartiallySubstitutedPack();
108 Self.RememberPartiallySubstitutedPack(Old);
166 TreeTransform &Self;
171 TemporaryBase(TreeTransform &Self, SourceLocation Location,
172 DeclarationName Entity) : Self(Self) {
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 639 Parser *Self;
645 // parser Self where the new Scope is created with the flags
648 ParseScope(Parser *Self, unsigned ScopeFlags, bool ManageScope = true)
649 : Self(Self) {
651 Self->EnterScope(ScopeFlags);
653 this->Self = 0;
659 if (Self) {
660 Self->ExitScope();
661 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 684 /// Private Helper predicate to check for 'self'.
    [all...]

Completed in 262 milliseconds