/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
AbstractResults.java | 38 AbstractResults parent; field in class:AbstractResults 45 AbstractResults(AbstractResults parent, String name) { 46 this.parent = parent; 51 AbstractResults(AbstractResults parent, int id) { 52 this.parent = parent; 116 if (this.parent != null) { 117 return this.parent.getComponentResults(); 136 * Returns the parent [all...] |
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 85 final File parent = outFile.getParentFile (); local 86 if (parent != null) parent.mkdirs ();
|
/external/guava/guava-tests/test/com/google/common/net/ |
InternetDomainNameTest.java | 257 assertEquals(domain.parent(), domain.publicSuffix()); 274 InternetDomainName.from("google.com").parent().name()); 277 InternetDomainName.from("co.uk").parent().name()); 280 InternetDomainName.from("www.google.com").parent().name()); 283 InternetDomainName.from("com").parent(); method 284 fail("'com' should throw ISE on .parent() call"); 304 InternetDomainName parent = origin.parent(); local 305 assertEquals("com", parent.name()); 307 // These would throw an exception if leniency were not preserved during parent() and child( [all...] |
/frameworks/base/core/java/android/app/backup/ |
FullBackup.java | 108 File parent = outFile.getParentFile(); local 109 if (!parent.exists()) { 112 parent.mkdirs();
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
ViewLayerInvalidationActivity.java | 126 private void randomInvalidator(ViewGroup parent) { 127 for (int i = 0; i < parent.getChildCount(); ++i) { 128 View child = parent.getChildAt(i); 142 LinearLayout parent = (LinearLayout) view; local 143 linearLayouts.add(parent); 144 for (int i = 0; i < parent.getChildCount(); ++i) { 145 collectLinearLayouts(parent.getChildAt(i)); 157 ViewGroup parent = (ViewGroup) view; local 158 for (int i = 0; i < parent.getChildCount(); ++i) { 159 collectTextViews(parent.getChildAt(i)) [all...] |
/ndk/build/core/ |
definitions-utils.mk | 141 # Function : parent-dir 143 # Returns : Parent dir or path of $1, with final separator removed. 145 parent-dir = $(patsubst %/,%,$(dir $(1:%/=%))) 147 -test-parent-dir = \ 148 $(call test-expect,,$(call parent-dir))\ 149 $(call test-expect,.,$(call parent-dir,foo))\ 150 $(call test-expect,foo,$(call parent-dir,foo/bar))\ 151 $(call test-expect,foo,$(call parent-dir,foo/bar/))
|
/packages/apps/Settings/src/com/android/settings/accounts/ |
SyncSettings.java | 125 PreferenceScreen parent = getPreferenceScreen(); local 126 for (int i = 0; i < parent.getPreferenceCount(); ) { 127 if (parent.getPreference(i) instanceof AccountPreference) { 128 parent.removePreference(parent.getPreference(i));
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
AccessibleKeyboardViewProxy.java | 184 final ViewParent parent = mView.getParent(); local 185 if (parent != null) { 186 parent.requestSendAccessibilityEvent(mView, stateChange);
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
ICalendarTest.java | 57 ICalendar.Component parent = new ICalendar.Component("DUMMY", null); local 59 ICalendar.Component child = new ICalendar.Component("DUMMY2", parent); 61 parent.addChild(child); 62 parent.addProperty(new ICalendar.Property("prop1", "value1")); 63 parent.addProperty(new ICalendar.Property("prop1", "value12")); 64 assertEquals(text, parent.toString()); 94 = new ICalendar.Component("DUMMY", null /* parent */); 111 = new ICalendar.Component("DUMMY", null /* parent */); 256 String text = "BEGIN:PARENT\n" +
|
/packages/providers/DownloadProvider/src/com/android/providers/downloads/ |
DownloadStorageProvider.java | 111 final File parent = Environment.getExternalStoragePublicDirectory( local 113 parent.mkdirs(); 119 File file = new File(parent, addExtension(mimeType, displayName)); 124 file = new File(parent, addExtension(mimeType, displayName + " (" + n + ")"));
|
/external/jmonkeyengine/engine/src/core/com/jme3/animation/ |
Bone.java | 51 private Bone parent; field in class:Bone 64 * PARENT SPACE -> BONE SPACE 77 * The local animated transform combined with the local bind transform and parent world transform 138 // parent and children will be assigned manually.. 157 * Returns parent bone of this bone, or null if it is a root bone. 158 * @return The parent bone of this bone, or null if it is a root bone. 161 return parent; 174 * Returns the local position of the bone, relative to the parent bone. 176 * @return The local position of the bone, relative to the parent bone. 183 * Returns the local rotation of the bone, relative to the parent bone [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
ActivityPage.java | 96 public void createControl(Composite parent) { 97 Composite container = new Composite(parent, SWT.NULL); 223 Composite parent = (Composite) getControl(); local 224 parent.layout(true, true); 225 parent.redraw();
|
/cts/tests/tests/view/src/android/view/cts/ |
View_LayoutPositionTest.java | 50 View parent = mActivity.findViewById(R.id.testparent); local 60 parent.getLocationOnScreen(pLocation); 63 parent.getDrawingRect(pRect); 88 parent.getLocationOnScreen(pLocation); 90 parent.getDrawingRect(pRect);
|
/dalvik/dx/src/com/android/dx/ssa/ |
SsaBasicBlock.java | 75 private SsaMethod parent; field in class:SsaBasicBlock 77 /** our index into parent.getBlock() */ 118 * @param parent method of this block 121 final SsaMethod parent) { 122 this.parent = parent; 127 this.predecessors = new BitSet(parent.getBlocks().size()); 128 this.successors = new BitSet(parent.getBlocks().size()); 139 * @param parent method of this block predecessor set will be 144 int basicBlockIndex, final SsaMethod parent) { [all...] |
/development/tools/idegen/src/ |
Configuration.java | 188 File parent = javaFile.getParentFile(); local 189 String parentPath = parent.getPath();
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTree.java | 34 * parent and child index is very difficult and cumbersome. Better to 47 /** Who is the parent node of this node; if null, implies node is root */ 48 public CommonTree parent; field in class:CommonTree 162 return parent; 166 this.parent = (CommonTree)t;
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorStylesheetElement.java | 83 Stylesheet parent = handler.getStylesheet(); local 87 StylesheetComposed sc = new StylesheetComposed(parent); 89 parent.setImport(sc); 95 stylesheet = new Stylesheet(parent); 97 parent.setInclude(stylesheet);
|
/external/blktrace/btt/ |
proc.c | 106 struct rb_node *parent = NULL; local 110 parent = *p; 111 this = rb_entry(parent, struct pn_info, rb_node); 125 rb_link_node(&this->rb_node, parent, p); 133 struct rb_node *parent = NULL; local 137 parent = *p; 138 this = rb_entry(parent, struct pn_info, rb_node); 153 rb_link_node(&this->rb_node, parent, p);
|
/external/chromium/chrome/browser/accessibility/ |
browser_accessibility.h | 59 BrowserAccessibility* parent, 71 // Update the parent and index in parent if this node has been moved. 72 void UpdateParent(BrowserAccessibility* parent, int index_in_parent); 77 // Returns the parent of this object, or NULL if it's the root. 78 BrowserAccessibility* parent() { return parent_; } function in class:BrowserAccessibility 87 // child of its parent. 91 // of its parent. 185 // The parent of this object, may be NULL if we're the root object. 191 // The index of this within its parent object [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_context_menu_api.cc | 32 "Parent items must have type \"normal\""; 193 ExtensionMenuItem* parent = manager.GetItemById(parent_id); 194 if (!parent) { 199 if (parent->type() != ExtensionMenuItem::NORMAL) { 203 *result = parent; 251 ExtensionMenuItem* parent = menu_manager->GetItemById(parent_id); local 252 if (!parent) { 257 if (parent->type() != ExtensionMenuItem::NORMAL) { 326 // Parent id. 327 ExtensionMenuItem* parent = NULL local [all...] |
/external/chromium/chrome/browser/geolocation/ |
geolocation_exceptions_table_model.cc | 115 // If we remove the last non-default child of a default parent, we should 116 // remove the parent too. We do these removals one-at-a-time because the 239 GeolocationContentSettingsMap::OneOriginSettings::const_iterator parent = local 242 // Add the "parent" entry for the non-embedded setting. 244 (parent == settings.end()) ? CONTENT_SETTING_DEFAULT : parent->second)); 250 if (i == parent)
|
/external/chromium/chrome/browser/sync/engine/ |
build_and_process_conflict_sets_command.cc | 264 syncable::Entry parent(trans, syncable::GET_BY_ID, parent_id); 265 if (!parent.good()) { 268 // Don't check for loop if the server parent is deleted. 269 if (parent.Get(syncable::IS_DEL)) 273 syncable::Entry parent(trans, syncable::GET_BY_ID, parent_id); 274 if (!parent.good()) { 275 VLOG(1) << "Bad parent in loop check, skipping. Bad parent id: " 279 if (parent.Get(syncable::IS_UNSYNCED) && 283 parent_id = parent.Get(syncable::PARENT_ID) 324 << log_entry << " " << parent; local [all...] |
/external/chromium/chrome/browser/ui/webui/ |
cookies_tree_model_util.cc | 187 void GetChildNodeList(CookieTreeNode* parent, int start, int count, 191 CookieTreeNode* child = parent->GetChild(start + i); 203 CookieTreeNode* parent = root; local 211 child_index = parent->GetIndexOf(child); 215 parent = child;
|
/external/chromium/net/base/ |
ssl_false_start_blacklist_process.cc | 64 // ParentDomain returns the parent domain for a given domain name or the empty 90 std::string parent = ParentDomain(*i); local 91 while (!parent.empty()) { 92 if (hosts_set.count(parent)) 94 parent = ParentDomain(parent); 96 if (parent.empty()) {
|
/external/chromium/webkit/glue/ |
cpp_bound_class.cc | 69 NPObject parent; // This must be the first field in the struct. member in struct:CppNPObject 133 // obj->parent will be initialized by the NPObject code calling this. 135 return &obj->parent;
|