Searched defs:parent (Results 151 - 175 of 1445) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DCrusherAndouComponent.java34 public void update(float timeDelta, BaseObject parent) { argument
35 GameObject parentObject = (GameObject)parent;
H A DFixedAnimationComponent.java34 public void update(float timeDelta, BaseObject parent) { argument
36 GameObject parentObject = (GameObject)parent;
H A DFrameRateWatcherComponent.java37 public void update(float timeDelta, BaseObject parent) { argument
H A DGravityComponent.java41 public void update(float timeDelta, BaseObject parent) { argument
44 ((GameObject) parent).getVelocity().add(mScaledGravity);
H A DPlaySingleSoundComponent.java40 public void update(float timeDelta, BaseObject parent) { argument
H A DSelectDialogComponent.java39 public void update(float timeDelta, BaseObject parent) { argument
42 GameObject parentObject = (GameObject)parent;
H A DSimpleCollisionComponent.java47 public void update(float timeDelta, BaseObject parent) { argument
48 GameObject parentObject = (GameObject) parent;
H A DSimplePhysicsComponent.java40 public void update(float timeDelta, BaseObject parent) { argument
41 GameObject parentObject = (GameObject) parent;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowListActivity.java46 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
51 handler.invoke(realActivity, parent, view, position, id);
67 private ListView findListView(View parent) { argument
68 if (parent instanceof ListView) {
69 return (ListView) parent;
70 } else if (parent instanceof ViewGroup) {
71 ViewGroup viewGroup = (ViewGroup) parent;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DBaseAdapterTest.java48 public View getView(int position, View convertView, ViewGroup parent) { argument
H A DCountingAdapter.java36 public View getView(int position, View convertView, ViewGroup parent) { argument
/external/skia/dm/
H A DDMPipeTask.cpp35 PipeTask::PipeTask(const Task& parent, argument
39 : CpuTask(parent)
41 , fName(UnderJoin(parent.name().c_str(), get_name(fFlags)))
H A DDMQuiltTask.cpp13 QuiltTask::QuiltTask(const Task& parent, skiagm::GM* gm, SkBitmap reference) argument
14 : CpuTask(parent)
15 , fName(UnderJoin(parent.name().c_str(), "quilt"))
H A DDMRecordTask.cpp14 RecordTask::RecordTask(const Task& parent, skiagm::GM* gm, SkBitmap reference, Mode mode) argument
15 : CpuTask(parent)
17 , fName(UnderJoin(parent.name().c_str(), fOptimize ? "skr" : "skr-noopt"))
22 RecordTask::RecordTask(const Task& parent, SkPicture* pic, SkBitmap reference, Mode mode) argument
23 : CpuTask(parent)
25 , fName(UnderJoin(parent.name().c_str(), fOptimize ? "skr" : "skr-noopt"))
H A DDMReplayTask.cpp14 ReplayTask::ReplayTask(const Task& parent, argument
18 : CpuTask(parent)
20 , fName(UnderJoin(parent.name().c_str(), fUseRTree ? "rtree" : "replay"))
/external/skia/experimental/PdfViewer/inc/
H A DSkPdfTokenLooper.h25 * Create a looper with no parent.
39 * Create a looper as a child of parent. It will share the
40 * SkPdfContext, SkPdfTokenizer, and SkCanvas with its parent.
42 explicit SkPdfTokenLooper(SkPdfTokenLooper* parent) argument
43 : fParent(parent)
44 , fTokenizer(parent->fTokenizer)
45 , fPdfContext(parent->fPdfContext)
46 , fCanvas(parent->fCanvas) {}
/external/skia/src/animator/
H A DSkPaintPart.cpp22 bool SkPaintPart::setParent(SkDisplayable* parent) { argument
23 SkASSERT(parent != NULL);
24 if (parent->isPaint() == false)
26 fPaint = (SkDrawPaint*) parent;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderSwitchElement.java10 @Nonnull BuilderSwitchPayload parent; field in class:BuilderSwitchElement
14 public BuilderSwitchElement(@Nonnull BuilderSwitchPayload parent, argument
17 this.parent = parent;
27 return target.getCodeAddress() - parent.getReferrer().getCodeAddress();
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp14 UserDataRequest::UserDataRequest(QWidget *parent, const char *, bool, argument
16 : QDialog(parent)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITreeNodeStream.cs119 * Replace from start to stop child index of parent with t, which might
128 * If parent is null, don't do anything; must be at root of overall tree.
129 * Can't replace whatever points to the parent externally. Do nothing.
132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeNodeStream`1.cs125 * Replace from start to stop child index of parent with t, which might
134 * If parent is null, don't do anything; must be at root of overall tree.
135 * Can't replace whatever points to the parent externally. Do nothing.
138 void ReplaceChildren(T parent, int startChildIndex, int stopChildIndex, T t); argument
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAContext.java40 * To "push" a new context, just do "new NFAContext(context-parent, state)"
41 * which will add itself to the parent. The root is NFAContext(null, null).
44 * on the path from this node thru the parent pointers to the root.
101 public NFAContext parent; field in class:NFAContext
111 * as this.invokingState + parent.cachedHashCode. Avoids walking
119 public NFAContext(NFAContext parent, NFAState invokingState) { argument
120 this.parent = parent;
125 if ( parent!=null ) {
126 this.cachedHashCode += parent
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTrAXFilter.java48 * Construct an empty XML filter, with no parent.
50 * <p>This filter will have no parent: you must assign a parent
72 /** Set the parent reader.
76 * configuration requests. The parent may itself be another filter.</p>
78 * <p>If there is no parent reader set, any attempt to parse
81 * @param parent The parent XML reader.
82 * @throws java.lang.NullPointerException If the parent is null.
84 public void setParent (XMLReader parent) argument
[all...]
/external/blktrace/btt/
H A Ddip_rb.c27 struct rb_node *parent = NULL; local
32 parent = *p;
33 __iop = rb_entry(parent, struct io, rb_node);
44 rb_link_node(&iop->rb_node, parent, p);
/external/chromium_org/ash/wm/
H A Dresize_handle_window_targeter.cc87 // Defer to the parent's targeter on whether |window_| should be able to
89 ui::EventTarget* parent = target->GetParentTarget(); local
90 if (parent) {
91 ui::EventTargeter* targeter = parent->GetEventTargeter();

Completed in 373 milliseconds

1234567891011>>