Searched refs:inherited (Results 1 - 25 of 57) sorted by relevance

123

/external/doclava/src/com/google/doclava/
H A DInheritedTags.java22 InheritedTags inherited(); method in interface:InheritedTags
H A DTagInfo.java69 makeHDF(data, base, tags.tags(), tags.inherited(), 0, 0);
72 private static int makeHDF(Data data, String base, TagInfo[] tags, InheritedTags inherited, argument
76 if (len == 0 && inherited != null) {
77 j = makeHDF(data, base, inherited.tags(), inherited.inherited(), j, depth + 1);
81 if (inherited != null && t.name().equals("@inheritDoc")) {
82 j = makeHDF(data, base, inherited.tags(), inherited.inherited(),
[all...]
H A DTodoFile.java32 tags = tags.inherited();
/external/valgrind/main/none/tests/
H A Dfdleak_creat.stderr.exp8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
H A Dfdleak_dup.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_dup2.stderr.exp14 <inherited from parent>
17 <inherited from parent>
20 <inherited from parent>
H A Dfdleak_fcntl.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_open.stderr.exp8 <inherited from parent>
11 <inherited from parent>
14 <inherited from parent>
H A Dfdleak_pipe.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_socketpair.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
H A Dfdleak_cmsg.stderr.exp17 <inherited from parent>
20 <inherited from parent>
23 <inherited from parent>
38 <inherited from parent>
41 <inherited from parent>
44 <inherited from parent>
H A Dfdleak_ipv4.stderr.exp11 <inherited from parent>
14 <inherited from parent>
17 <inherited from parent>
26 <inherited from parent>
29 <inherited from parent>
32 <inherited from parent>
/external/chromium_org/v8/test/mjsunit/
H A Darray-pop.js64 // Check that pop works on inherited properties.
77 var inherited = Array.prototype.hasOwnProperty(j);
81 assertEquals(inherited, Array.prototype.hasOwnProperty(j),
82 "inherit-not-deleted-inherited" + j);
87 // Check that pop works on inherited properties for
103 var inherited = array_proto.hasOwnProperty(j);
107 assertEquals(inherited, array_proto.hasOwnProperty(j),
108 "array_proto-inherit-not-deleted-inherited" + j);
112 // Check that pop works on inherited properties for
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.cpp107 , inherited(defaultStyle()->inherited)
134 inherited.init();
146 , inherited(o.inherited)
209 inherited = inheritParent->inherited;
254 && inherited == o.inherited
327 || inherited !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSProperty.h36 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited) argument
42 , m_inherited(inherited)
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp134 typedef X8 inherited; typedef in struct:X9
136 inherited::f();
464 // CHECK: Identifier: "inherited" [136:5 - 136:14] TypeRef=inherited:134:14
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-tuple.cpp61 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; }
H A Dexample-bind.cpp61 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/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTypeSlots.py166 # is_inherited Is inherited by subtypes (see PyType_Ready())
171 def __init__(self, slot_name, dynamic=False, inherited=False,
175 self.is_inherited = inherited
202 # set inherited slots here, but only in PyPy since CPython
274 py3=True, py2=True, ifdef=None, inherited=True):
276 ifdef=ifdef, inherited=inherited)
758 MethodSlot(hashfunc, "tp_hash", "__hash__", inherited=False), # Py3 checks for __richcmp__
774 MethodSlot(richcmpfunc, "tp_richcompare", "__richcmp__", inherited=False), # Py3 checks for __hash__
/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp35 inherited; typedef in class:__anon18106::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);
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dtype.pxd46 # responsible for adding inherited slots from a type's base
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DStylesSidebarPane.js501 resultStyles.inherited = matchedResult.inherited;
713 // Walk the node structure and identify styles with inherited properties.
723 for (var parentOrdinal = 0; parentOrdinal < styles.inherited.length; ++parentOrdinal) {
724 var parentStyles = styles.inherited[parentOrdinal];
775 // Do not pick non-inherited properties from inherited styles.
887 // Does this style contain non-overridden inherited property?
1281 this.element.classList.add("styles-show-inherited"); // This one is related to inherited rule
[all...]
/external/chromium_org/tools/gn/
H A Dninja_binary_target_writer.cc378 const UniqueVector<const Target*>& inherited = local
389 for (size_t i = 0; i < inherited.size(); i++) {
390 ClassifyDependency(inherited[i], extra_object_files,
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb157 def self.inherited( klass ) singleton method in class:ANTLR3.Test.Functional
/external/chromium_org/third_party/skia/src/animator/
H A DSkMemberInfo.cpp487 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);

Completed in 3762 milliseconds

123