HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 401 - 425 of 1569) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_helpers.cc 209 const Descriptor* parent, const FileDescriptor* file) {
211 if (parent != NULL) {
212 result.append(ClassName(params, parent));
233 const Descriptor* parent = descriptor->containing_type(); local
234 if (parent != NULL) {
235 return ClassName(params, parent);
  /external/protobuf/src/google/protobuf/
extension_set_unittest.cc 629 const Message& parent = unittest::TestAllExtensions::default_instance(); local
631 parent.GetReflection()->GetMessage(parent, dynamic_message_extension,
  /external/qemu/android/skin/
composer.c 94 /* invalidate region in parent groups */
106 p = p->any.parent;
129 SkinPlate* parent = p->any.parent; local
130 skin_region_translate(r, parent->any.pos.x, parent->any.pos.y );
131 skin_plate_invalidate_(parent, r, p);
149 skin_plate_invalidate_(p->any.parent, r, p);
181 skin_plate_surface( SkinPlate* parent,
192 p->any.parent = parent
    [all...]
composer.h 32 SkinPlate* parent; /* parent container */ member in struct:SkinPlateAny
33 SkinPos pos; /* position relative to parent */
72 extern SkinPlate* skin_plate_surface( SkinPlate* parent,
79 extern SkinPlate* skin_plate_group( SkinPlate* parent, SkinPos* pos );
  /external/qemu/hw/
qdev.h 37 DeviceState *parent; member in struct:BusState
107 /* Convery from a base type to a parent type, with compile time checking. */
120 DeviceState *parent, const char *name);
  /external/regex-re2/re2/
prefilter_tree.cc 101 // no longer necessary for their parent to trigger; that is, we do
211 // Create parent IntMap for the entries.
258 // To the child, we want to add to parent indices.
331 const Entry& parent = entries_[j]; local
332 VLOG(10) << " parent= " << j << " trig= " << parent.propagate_up_at_count;
334 if (parent.propagate_up_at_count > 1) {
342 if (c < parent.propagate_up_at_count)
346 // Trigger the parent.
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ArrayAdapterTest.java 57 ListView parent = new ListView(Robolectric.application); local
59 View listItemView = arrayAdapter.getView(0, null, parent);
  /external/skia/src/animator/
SkDisplayXMLParser.cpp 22 "element missing parent ",
23 "element type not allowed in parent ",
43 "no parent available to resolve sink attribute ",
44 "parent element can't contain ",
61 void SkDisplayXMLParserError::setInnerError(SkAnimateMaker* parent, const SkString& src) {
68 parent->setErrorNoun(inner);
81 for (Parent* parPtr = fParents.begin() + 1; parPtr < fParents.end(); parPtr++) {
118 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
119 parent->setChildHasID();
171 Parent& container = fParents[parentIndex]
178 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
255 Parent* parent = fParents.end() - 2; local
303 Parent* parent = fParents.end() - 2; local
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
DebugInfoItem.java 47 private CodeItem parent = null; field in class:DebugInfoItem
368 out.annotate(0, parent.getParent().method.getMethodString());
572 if (parent == null) {
573 if (other.parent == null) {
578 if (other.parent == null) {
581 return parent.compareTo(other.parent);
589 this.parent = codeItem;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 32 private ElementType theParent; // parent of this element type
153 Returns the parent element type of this element type.
154 @return The parent element type
157 public ElementType parent() {return theParent;} method in class:ElementType
270 Sets the parent element type of this element type.
271 @param parent The parent element type
274 public void setParent(ElementType parent) { theParent = parent; }
Schema.java 88 Specify natural parent of an element in this schema.
90 @param parentName Name of the parent element
93 public void parent(String name, String parentName) { method in class:Schema
95 ElementType parent = getElementType(parentName); local
97 throw new Error("No child " + name + " for parent " + parentName);
99 if (parent == null) {
100 throw new Error("No parent " + parentName + " for child " + name);
102 child.setParent(parent);
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 118 * Add the activity parent chain as specified by the
128 final Intent parent = sourceActivity.getParentActivityIntent(); local
129 if (parent != null) {
130 // We have the actual parent intent, build the rest from static metadata
131 // then add the direct parent intent to the end.
132 ComponentName target = parent.getComponent();
134 target = parent.resolveActivity(mSourceContext.getPackageManager());
137 addNextIntent(parent);
143 * Add the activity parent chain as specified by the
155 * Add the activity parent chain as specified by th
173 final Intent parent = parentActivity == null && insertAt == 0 local
    [all...]
  /frameworks/base/core/java/android/transition/
Visibility.java 37 private static final String PROPNAME_PARENT = "android:visibility:parent";
93 View parent = (View) values.values.get(PROPNAME_PARENT); local
95 return visibility == View.VISIBLE && parent != null;
158 // or whose parent hierarchies remain stable between scenes
  /frameworks/base/tools/preload/
Root.java 120 Proc parent = processes.get(record.ppid); local
121 proc = new Proc(parent, record.pid);
123 if (parent != null) {
124 parent.children.add(proc);
  /frameworks/support/v4/honeycomb/android/support/v4/app/
ActionBarDrawerToggleHoneycomb.java 116 final ViewGroup parent = (ViewGroup) home.getParent(); local
117 final int childCount = parent.getChildCount();
123 final View first = parent.getChildAt(0);
124 final View second = parent.getChildAt(1);
  /frameworks/support/v4/java/android/support/v4/app/
TaskStackBuilder.java 190 * Add the activity parent chain as specified by manifest &lt;meta-data&gt; elements
197 Intent parent = null; local
199 parent = ((SupportParentable) sourceActivity).getSupportParentActivityIntent();
201 if (parent == null) {
202 parent = NavUtils.getParentActivityIntent(sourceActivity);
205 if (parent != null) {
206 // We have the actual parent intent, build the rest from static metadata
207 // then add the direct parent intent to the end.
208 ComponentName target = parent.getComponent();
210 target = parent.resolveActivity(mSourceContext.getPackageManager())
240 Intent parent = NavUtils.getParentActivityIntent(mSourceContext, sourceActivityName); local
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
AtomicFile.java 102 File parent = mBaseName.getParentFile(); local
103 if (!parent.mkdir()) {
  /libcore/dalvik/src/main/java/dalvik/system/
DexFile.java 100 String parent = new File(outputName).getParent(); local
101 if (Libcore.os.getuid() != Libcore.os.stat(parent).st_uid) {
102 throw new IllegalArgumentException("Optimized data directory " + parent
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldNodeChangeEventTest.java 29 AbstractPreferences parent = (AbstractPreferences) Preferences local
32 AbstractPreferences pref = (AbstractPreferences) parent.node("mock");
77 AbstractPreferences parent = (AbstractPreferences) Preferences local
80 AbstractPreferences pref = (AbstractPreferences) parent.node("mock");
84 Preferences parent = e.getParent();
85 if (parent == null) {
88 if (parent.name() == "mock") {
96 Preferences parent = e.getParent();
97 if (parent == null) {
100 if (parent.name() == "mock")
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListAdapter.java 70 public View getPinnedHeaderView(int partition, View convertView, ViewGroup parent) {
80 view = newHeaderView(getContext(), partition, null, parent);
86 view.setLayoutDirection(parent.getLayoutDirection());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
EditorPlaceHolder.java 52 ViewParent parent = eview.getParent(); local
54 if (parent != null && parent instanceof FrameLayout) {
55 ((FrameLayout) parent).removeAllViews();
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 39 public Node parent; field in class:ProfileData.Node
42 public Node(Node parent, int id) {
43 this.parent = parent;
136 node = node.parent;
  /packages/apps/InCallUI/src/com/android/incallui/
ConferenceManagerFragment.java 58 final View parent = inflater.inflate(R.layout.conference_manager_fragment, container, local
62 mConferenceTime = (Chronometer) parent.findViewById(R.id.manageConferencePanelHeader);
72 (ViewGroup) parent.findViewById(viewGroupIdList[i]);
75 mButtonManageConferenceDone = parent.findViewById(R.id.manage_done);
83 return parent;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Multipart.java 49 private Entity parent = null; field in class:Multipart
84 return parent;
90 public void setParent(Entity parent) {
91 this.parent = parent;
93 it.next().setParent(parent);
132 it.next().setParent(parent);
143 bodyPart.setParent(parent);
187 * Return the boundory of the parent Entity
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
CandidatesViewManager.java 79 * @param parent The OpenWnn object
85 public abstract View initView(OpenWnn parent, int width, int height);
185 ViewGroup parent = (ViewGroup)mViewLongPressDialog.getParent(); local
186 if (null != parent) {
187 parent.removeView(mViewLongPressDialog);

Completed in 1912 milliseconds

<<11121314151617181920>>