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

1 2 3

  /external/doclava/src/com/google/doclava/
InheritedTags.java 22 InheritedTags inherited(); method in interface:InheritedTags
MethodInfo.java 37 public InheritedTags inherited() { method in class:MethodInfo.InlineTags
182 public InheritedTags inherited() { method in class:MethodInfo.FirstSentenceTags
197 public InheritedTags inherited() { method in class:MethodInfo.ReturnTags
    [all...]
  /build/core/
node_fns.mk 121 # $(call get-inherited-nodes,PREFIX,A B)
128 define get-inherited-nodes
138 # get list of inherited words; if not empty:
140 # replace the first occurrence with (prefix + inherited + var)
147 define _expand-inherited-values
168 $(eval ### "If we just inherited ourselves, it's a cycle.") \
197 $(eval $(1).$(2).inherited := \
198 $(call get-inherited-nodes,$(1).$(2),$(3)))
199 $(call _import-nodes-inner,$(1),$($(1).$(2).inherited),$(3))
201 $(call _expand-inherited-values,$(1),$(2),$(3)
    [all...]
definitions.mk     [all...]
  /libcore/ojluni/src/main/java/sun/reflect/annotation/
AnnotationType.java 68 * Whether this annotation type is inherited.
70 private boolean inherited = false; field in class:AnnotationType
125 // Initialize retention, & inherited fields. Special treatment
128 annotationClass != Inherited.class) {
131 inherited = annotationClass.isAnnotationPresent(Inherited.class);
196 * Returns true if this this annotation type is inherited.
199 return inherited;
210 s.append(" Inherited: " + inherited);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/bind/
storage.hpp 78 typedef storage1<A1> inherited; typedef in struct:boost::_bi::storage2
84 inherited::accept(v);
95 typedef storage1<A1> inherited; typedef in struct:boost::_bi::storage2
101 inherited::accept(v);
109 typedef storage1<A1> inherited; typedef in struct:boost::_bi::storage2
115 inherited::accept(v);
127 typedef storage2<A1, A2> inherited; typedef in struct:boost::_bi::storage3
133 inherited::accept(v);
144 typedef storage2<A1, A2> inherited; typedef in struct:boost::_bi::storage3
150 inherited::accept(v)
158 typedef storage2<A1, A2> inherited; typedef in struct:boost::_bi::storage3
176 typedef storage3<A1, A2, A3> inherited; typedef in struct:boost::_bi::storage4
193 typedef storage3<A1, A2, A3> inherited; typedef in struct:boost::_bi::storage4
207 typedef storage3<A1, A2, A3> inherited; typedef in struct:boost::_bi::storage4
225 typedef storage4<A1, A2, A3, A4> inherited; typedef in struct:boost::_bi::storage5
242 typedef storage4<A1, A2, A3, A4> inherited; typedef in struct:boost::_bi::storage5
256 typedef storage4<A1, A2, A3, A4> inherited; typedef in struct:boost::_bi::storage5
274 typedef storage5<A1, A2, A3, A4, A5> inherited; typedef in struct:boost::_bi::storage6
291 typedef storage5<A1, A2, A3, A4, A5> inherited; typedef in struct:boost::_bi::storage6
305 typedef storage5<A1, A2, A3, A4, A5> inherited; typedef in struct:boost::_bi::storage6
323 typedef storage6<A1, A2, A3, A4, A5, A6> inherited; typedef in struct:boost::_bi::storage7
340 typedef storage6<A1, A2, A3, A4, A5, A6> inherited; typedef in struct:boost::_bi::storage7
354 typedef storage6<A1, A2, A3, A4, A5, A6> inherited; typedef in struct:boost::_bi::storage7
372 typedef storage7<A1, A2, A3, A4, A5, A6, A7> inherited; typedef in struct:boost::_bi::storage8
389 typedef storage7<A1, A2, A3, A4, A5, A6, A7> inherited; typedef in struct:boost::_bi::storage8
403 typedef storage7<A1, A2, A3, A4, A5, A6, A7> inherited; typedef in struct:boost::_bi::storage8
421 typedef storage8<A1, A2, A3, A4, A5, A6, A7, A8> inherited; typedef in struct:boost::_bi::storage9
438 typedef storage8<A1, A2, A3, A4, A5, A6, A7, A8> inherited; typedef in struct:boost::_bi::storage9
452 typedef storage8<A1, A2, A3, A4, A5, A6, A7, A8> inherited; typedef in struct:boost::_bi::storage9
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
functional.rb 157 def self.inherited( klass ) singleton method in class:ANTLR3.Test.Functional
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 134 typedef X8 inherited; typedef in struct:X9
136 inherited::f();
464 // CHECK: Identifier: "inherited" [136:5 - 136:14] TypeRef=inherited:134:14
  /external/skia/src/animator/
SkDisplayType.cpp 547 const SkMemberInfo* inherited = info->getInherited(); local
551 if (match == inherited)
SkDisplayXMLParser.cpp 58 INHERITED::getErrorString(str);
73 : INHERITED(&maker.fError), fMaker(maker), fInInclude(maker.fInInclude),
276 const SkMemberInfo* inherited = info->getInherited(); local
277 const SkMemberInfo* result = searchContainer(inherited, info->fCount);
SkMemberInfo.cpp 487 const SkMemberInfo* inherited = (SkMemberInfo*) info->fName; local
488 const SkMemberInfo* result = SkMemberInfo::Find(inherited, info->fCount, index);
508 const SkMemberInfo* inherited = (SkMemberInfo*) info->fName; local
509 const SkMemberInfo* result = SkMemberInfo::Find(inherited, info->fCount, matchPtr);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 61 typedef tuple<Tail...> inherited; typedef in class:tuple
70 : m_head(v), inherited(vtail...) { }
74 : m_head(other.head()), inherited(other.tail()) { }
85 inherited& tail() { return *this; }
86 const inherited& tail() const { return *this; }
example-tuple.cpp 61 typedef tuple<Tail...> inherited; typedef in class:tuple
70 : m_head(v), inherited(vtail...) { }
74 : m_head(other.head()), inherited(other.tail()) { }
85 inherited& tail() { return *this; }
86 const inherited& tail() const { return *this; }
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 35 inherited; typedef in class:__anon6676::CollectUnexpandedParameterPacksVisitor
88 return inherited::TraverseTemplateName(Template);
116 return inherited::TraverseStmt(S);
125 return inherited::TraverseType(T);
136 return inherited::TraverseTypeLoc(TL);
145 return inherited::TraverseDecl(D);
155 return inherited::TraverseTemplateArgument(Arg);
163 return inherited::TraverseTemplateArgumentLoc(ArgLoc);
192 inherited::TraverseLambdaExpr(Lambda);
    [all...]
SemaTemplateInstantiate.cpp 631 typedef TreeTransform<TemplateInstantiator> inherited; typedef in class:__anon6674::TemplateInstantiator
637 : inherited(SemaRef), TemplateArgs(TemplateArgs), Loc(Loc),
    [all...]
SemaTemplate.cpp 3997 typedef TypeVisitor<UnnamedLocalNoLinkageFinder, bool> inherited; typedef in class:__anon6670::UnnamedLocalNoLinkageFinder
8255 typedef TreeTransform<CurrentInstantiationRebuilder> inherited; typedef in class:__anon6671::CurrentInstantiationRebuilder
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 1290 SuballocatedIntVector inherited = local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-model/2.0.9/
maven-model-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-model/2.2.1/
maven-model-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-project/2.2.1/
maven-project-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-project/2.0.9/
maven-project-2.0.9.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-model-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-model/3.2.1/
maven-model-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-model/3.3.9/
maven-model-3.3.9.jar 

Completed in 1548 milliseconds

1 2 3