Searched refs:parent (Results 226 - 250 of 2945) sorted by relevance

1234567891011>>

/external/iproute2/examples/diffserv/
H A DEdge32-cb-chains55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 handle 1 fw \
58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 handle 1 fw \
65 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 handle 1 fw \
68 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \
75 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \
78 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \
85 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 handle 2 fw \
118 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \
120 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \
122 $TC filter add $EGDEV parent
[all...]
H A DEdge32-cb-u3255 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \
58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \
66 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \
69 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \
76 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \
79 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \
87 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 u32 \
119 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \
121 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \
123 $TC filter add $EGDEV parent
[all...]
/external/e2fsprogs/e2fsck/
H A Ddict.c43 * program which uses dict to define, for instance, a macro called ``parent''.
53 #define parent dict_parent macro
89 lowleft->parent = upper;
91 lower->parent = upparent = upper->parent;
93 /* don't need to check for root node here because root->parent is
94 the sentinel nil node, and root->parent->left points back to root */
104 upper->parent = lower;
118 lowright->parent = upper;
120 lower->parent
564 dnode_t *parent = nil, *uncle, *grandpa; local
751 dnode_t *parent, *sister; local
895 dnode_t *nil = dict_nil(dict), *parent, *left; local
921 dnode_t *nil = dict_nil(dict), *parent, *right; local
[all...]
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Ddoc_writer.py61 def _AddTextWithLinks(self, parent, text):
66 parent: The DOM node to which the text will be added.
81 self.AddText(parent, text[:start])
83 self.AddElement(parent, 'a', {'href': url}, url)
86 self.AddText(parent, text)
89 def _AddStyledElement(self, parent, name, style_ids, attrs=None, text=None):
90 '''Adds an XML element to a parent, with CSS style-sheets included.
93 parent: The parent DOM node.
106 return self.AddElement(parent, nam
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java101 public void hitVictim(GameObject parent, GameObject victim, int hitType, argument
110 parent.life = 0;
114 mLauncherComponent.prepareToLaunch(victim, parent);
129 victim.getPosition().x : parent.getPosition().x;
131 victim.getPosition().y : parent.getPosition().y;
138 y, parent.facingDirection.x < 0.0f);
149 public boolean receivedHit(GameObject parent, GameObject attacker, int hitType) { argument
173 final boolean sameTeam = (parent.team == attacker.team && parent.team != Team.NONE);
174 if (!mForceInvincibility && !mInvincible && parent
246 update(float timeDelta, BaseObject parent) argument
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Drbtree.py161 parent = None # parent
172 parent[direction] = node
179 if is_red(node) and is_red(parent):
181 if node is parent[last]:
196 grand_parent = parent
197 parent = node
210 parent = None
220 grand_parent = parent
221 parent
[all...]
/external/deqp/android/scripts/
H A DGenAndroidCTSXML.py5 def __init__(self, name, parent = None):
6 self.parent = parent
11 if parent:
12 assert not name in parent.testGroups
13 parent.testGroups[name] = self
19 if self.parent:
20 return self.parent.getPath() + "." + self.name
49 def __init__(self, name, parent):
51 self.parent
[all...]
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtest_utils.js34 function newCounter(parent) {
35 return newCounterNamed(parent, 'a');
38 function newCounterNamed(parent, name) {
39 var s = new tracing.trace_model.Counter(parent, name, null, name);
43 function newCounterCategory(parent, category, name) {
44 var s = new tracing.trace_model.Counter(parent, name, category, name);
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXMenuListOption.cpp52 // isDisabledFormControl() returns true if the parent <select> element is disabled,
98 AXObject* parent = parentObject(); local
99 ASSERT(parent->isMenuListPopup());
101 AXObject* grandparent = parent->parentObject();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCharsetRule.h31 static PassRefPtrWillBeRawPtr<CSSCharsetRule> create(CSSStyleSheet* parent, const String& encoding) argument
33 return adoptRefWillBeNoop(new CSSCharsetRule(parent, encoding));
48 CSSCharsetRule(CSSStyleSheet* parent, const String& encoding);
H A DSelectorFilter.cpp52 void SelectorFilter::pushParentStackFrame(Element& parent) argument
55 ASSERT(m_parentStack.isEmpty() || m_parentStack.last().element == parent.parentOrShadowHostElement());
56 ASSERT(!m_parentStack.isEmpty() || !parent.parentOrShadowHostElement());
57 m_parentStack.append(ParentStackFrame(parent));
61 collectElementIdentifierHashes(parent, parentFrame.identifierHashes);
82 void SelectorFilter::setupParentStack(Element& parent) argument
88 // Fast version if parent is a root element:
89 if (!parent.parentOrShadowHostNode()) {
90 pushParentStackFrame(parent);
95 for (Element* ancestor = &parent; ancesto
101 pushParent(Element& parent) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DAppendNodeCommand.cpp33 AppendNodeCommand::AppendNodeCommand(PassRefPtrWillBeRawPtr<ContainerNode> parent, PassRefPtrWillBeRawPtr<Node> node) argument
34 : SimpleEditCommand(parent->document())
35 , m_parent(parent)
H A DSplitTextNodeCommand.cpp55 ContainerNode* parent = m_text2->parentNode(); local
56 if (!parent || !parent->hasEditableStyle())
90 ContainerNode* parent = m_text2->parentNode();
91 if (!parent || !parent->hasEditableStyle())
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTrackElement.cpp73 // Since we've moved to a new parent, we may now be able to load.
77 HTMLMediaElement* parent = mediaElement(); local
78 if (insertionPoint == parent)
79 parent->didAddTrackElement(this);
157 // 3. If the text track's track element does not have a media element as a parent, abort these steps.
178 // 8. If the track element's parent is a media element then let CORS mode be the state of the parent media
190 HTMLMediaElement* parent = mediaElement(); local
191 if (!parent)
247 if (HTMLMediaElement* parent
266 Element* parent = parentElement(); local
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Dimage_parsers.js9 function SimpleImageParser(parent, type, urlFilter, headerSize) {
10 ImageParser.call(this, parent, type, urlFilter);
39 function PngParser(parent) {
40 SimpleImageParser.call(this, parent, 'png', /\.png$/i, 24);
68 function BmpParser(parent) {
69 SimpleImageParser.call(this, parent, 'bmp', /\.bmp$/i, 28);
93 function GifParser(parent) {
94 SimpleImageParser.call(this, parent, 'gif', /\.Gif$/i, 10);
117 function WebpParser(parent) {
118 SimpleImageParser.call(this, parent, 'web
[all...]
/external/libnl/src/lib/
H A Dqdisc.c45 uint32_t parent; local
48 if ((err = rtnl_tc_str2handle(arg, &parent)) < 0)
52 rtnl_qdisc_set_parent(qdisc, parent);
/external/qemu/distrib/sdl-1.2.15/src/audio/nto/
H A DSDL_nto_audio.h44 /* The parent process id, to detect when application quits */
45 pid_t parent; member in struct:SDL_PrivateAudioData
61 #define parent (this->hidden->parent) macro
/external/skia/dm/
H A DDMReplayTask.cpp14 ReplayTask::ReplayTask(const Task& parent, argument
18 : CpuTask(parent)
20 , fName(UnderJoin(parent.name().c_str(), fUseRTree ? "rtree" : "replay"))
H A DDMSerializeTask.cpp13 SerializeTask::SerializeTask(const Task& parent, argument
16 : CpuTask(parent)
17 , fName(UnderJoin(parent.name().c_str(), "serialize"))
H A DDMTask.cpp19 Task::Task(const Task& parent) argument
20 : fReporter(parent.fReporter)
21 , fTaskRunner(parent.fTaskRunner)
22 , fDepth(parent.depth() + 1) {
51 CpuTask::CpuTask(const Task& parent) : Task(parent) {} argument
/external/chromium_org/mojo/services/view_manager/
H A Ddefault_access_policy.cc27 return IsViewInRoots(view->parent()) ||
28 WasCreatedByThisConnection(view->parent());
31 bool DefaultAccessPolicy::CanAddView(const ServerView* parent, argument
34 (IsViewInRoots(parent) ||
35 (WasCreatedByThisConnection(parent) &&
36 !delegate_->IsViewRootOfAnotherConnectionForAccessPolicy(parent)));
/external/chromium_org/third_party/skia/dm/
H A DDMTask.cpp14 Task::Task(const Task& parent) argument
15 : fReporter(parent.fReporter)
16 , fTaskRunner(parent.fTaskRunner)
17 , fDepth(parent.depth() + 1) {
46 CpuTask::CpuTask(const Task& parent) : Task(parent) {} argument
/external/markdown/markdown/extensions/
H A Dtables.py24 def test(self, parent, block):
30 def run(self, parent, blocks):
51 table = etree.SubElement(parent, 'table')
58 def _build_row(self, row, parent, align, border):
60 tr = etree.SubElement(parent, 'tr')
62 if parent.tag == 'thead':
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractReferenceMap.java487 protected ReferenceEntrySet(AbstractHashedMap<K, V> parent) { argument
488 super(parent);
513 protected ReferenceKeySet(AbstractHashedMap<K, V> parent) { argument
514 super(parent);
523 List<K> list = new ArrayList<K>(parent.size());
537 protected ReferenceValues(AbstractHashedMap<K, V> parent) { argument
538 super(parent);
547 List<V> list = new ArrayList<V>(parent.size());
566 * The parent map
568 protected final AbstractReferenceMap<K, V> parent; field in class:AbstractReferenceMap.ReferenceEntry
582 ReferenceEntry(AbstractReferenceMap<K, V> parent, ReferenceEntry<K, V> next, int hashCode, K key, V value) argument
734 final AbstractReferenceMap<K, V> parent; field in class:AbstractReferenceMap.ReferenceIteratorBase
751 ReferenceIteratorBase(AbstractReferenceMap<K, V> parent) argument
851 ReferenceKeySetIterator(AbstractReferenceMap<K, V> parent) argument
865 ReferenceValuesIterator(AbstractReferenceMap<K, V> parent) argument
879 ReferenceMapIterator(AbstractReferenceMap<K, V> parent) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dtime_to_object_instance_map.js24 function TimeToObjectInstanceMap(createObjectInstanceFunction, parent, id) {
26 this.parent = parent;
35 this.parent, this.id, category, name, ts));
46 this.parent, this.id, category, name, ts);
55 this.parent, this.id, category, name, ts));
87 this.parent, this.id, category, name, ts);
129 this.parent, this.id, category, name, ts));
145 this.parent, this.id, category, name, ts);

Completed in 3752 milliseconds

1234567891011>>