/external/webkit/LayoutTests/fast/dom/Node/ |
fragment-mutation-expected.txt | 1 This test creates a fragment containing three elements: "B", "U", and "P", attempts to appendChild this fragment and studies effects of mutation events on the fragment. 3 Inserting an element in front of the next item in fragment should not affect the result: PASS 5 Appending an element at the end of the fragment should not affect the result: PASS 6 Continually re-appending removed element to the fragment should eventually throw NOT_FOUND_ERR: PASS 9 This test creates a fragment containing three elements: "B", "U", and "P", attempts to insertBefore this fragment and studies effects of mutation events on the fragment. 11 Inserting an element in front of the next item in fragment should not affect the result: PAS [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
FragmentStatePagerAdapter.java | 30 * uses a {@link Fragment} to manage each page. This class also handles 31 * saving and restoring of fragment's state. 35 * the user, their entire fragment may be destroyed, only keeping the saved 36 * state of that fragment. This allows the pager to hold on to much less 53 * <p>The <code>R.layout.fragment_pager</code> resource of the top-level fragment is: 59 * individual fragment's layout is: 71 private ArrayList<Fragment.SavedState> mSavedState = new ArrayList<Fragment.SavedState>(); 72 private ArrayList<Fragment> mFragments = new ArrayList<Fragment>(); 105 Fragment fragment = getItem(position); local 118 mCurTransaction.add(container.getId(), fragment); local 125 Fragment fragment = (Fragment)object; local 143 Fragment fragment = (Fragment)object; local [all...] |
FragmentTransaction.java | 28 * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId. 30 public abstract FragmentTransaction add(Fragment fragment, String tag); 33 * Calls {@link #add(int, Fragment, String)} with a null tag. 35 public abstract FragmentTransaction add(int containerViewId, Fragment fragment); 38 * Add a fragment to the activity state. This fragment may optionally 39 * also have its view (if {@link Fragment#onCreateView Fragment.onCreateView [all...] |
FragmentPagerAdapter.java | 27 * represents each page as a {@link Fragment} that is persistently 28 * kept in the fragment manager as long as the user can return to the page. 32 * The fragment of each page the user visits will be kept in memory, though its 34 * a significant amount of memory since fragment instances can hold on to an 50 * <p>The <code>R.layout.fragment_pager</code> resource of the top-level fragment is: 56 * individual fragment's layout is: 67 private Fragment mCurrentPrimaryItem = null; 74 * Return the Fragment associated with a specified position. 76 public abstract Fragment getItem(int position); 88 // Do we already have this fragment 90 Fragment fragment = mFragmentManager.findFragmentByTag(name); local 97 mCurTransaction.add(container.getId(), fragment, local 120 Fragment fragment = (Fragment)object; local [all...] |
FragmentManager.java | 61 * Representation of an entry on the fragment back stack, as created 125 * <p>Note: A fragment transaction can only be created/committed prior 157 * Finds a fragment that was identified by the given id either when inflated 160 * activity; if no such fragment is found, then all fragments currently 162 * @return The fragment if found or null otherwise. 164 public abstract Fragment findFragmentById(int id); 167 * Finds a fragment that was identified by the given tag either when inflated 170 * activity; if no such fragment is found, then all fragments currently 172 * @return The fragment if found or null otherwise. 174 public abstract Fragment findFragmentByTag(String tag) 977 final Fragment fragment = f; local [all...] |
BackStackRecord.java | 56 mOps[pos++] = op.fragment.mIndex; 101 "BSE " + bse + " set base fragment #" + mOps[pos]); 102 Fragment f = fm.mActive.get(mOps[pos++]); 103 op.fragment = f; 110 op.removed = new ArrayList<Fragment>(N); 113 "BSE " + bse + " set remove fragment #" + mOps[pos]); 114 Fragment r = fm.mActive.get(mOps[pos++]); 162 * @hide Entry of an operation on the fragment back stack. 183 Fragment fragment; field in class:BackStackRecord.Op [all...] |
/packages/apps/Email/src/com/android/email/activity/ |
FragmentInstallable.java | 20 import android.app.Fragment; 27 * Called when a {@link Fragment} wants to be installed to the host activity. 29 * Fragments which use this MUST call this from {@link Fragment#onActivityCreated} using 32 * This means a host {@link Activity} can safely assume a passed {@link Fragment} is already 35 public void onInstallFragment(Fragment fragment); 38 * Called when a {@link Fragment} wants to be uninstalled from the host activity. 40 * Fragments which use this MUST call this from {@link Fragment#onDestroyView} using 43 public void onUninstallFragment(Fragment fragment); [all...] |
/frameworks/support/v13/java/android/support/v13/app/ |
FragmentCompat.java | 19 import android.app.Fragment; 22 * Helper for accessing features in {@link Fragment} introduced after 27 void setMenuVisibility(Fragment f, boolean visible); 28 void setUserVisibleHint(Fragment f, boolean deferStart); 32 public void setMenuVisibility(Fragment f, boolean visible) { 34 public void setUserVisibleHint(Fragment f, boolean deferStart) { 40 public void setMenuVisibility(Fragment f, boolean visible) { 47 public void setUserVisibleHint(Fragment f, boolean deferStart) { 64 * Call {@link Fragment#setMenuVisibility(boolean) Fragment.setMenuVisibility(boolean) [all...] |
FragmentStatePagerAdapter.java | 19 import android.app.Fragment; 34 * uses a {@link Fragment} to manage each page. This class also handles 35 * saving and restoring of fragment's state. 39 * the user, their entire fragment may be destroyed, only keeping the saved 40 * state of that fragment. This allows the pager to hold on to much less 57 * <p>The <code>R.layout.fragment_pager</code> resource of the top-level fragment is: 63 * individual fragment's layout is: 75 private ArrayList<Fragment.SavedState> mSavedState = new ArrayList<Fragment.SavedState>(); 76 private ArrayList<Fragment> mFragments = new ArrayList<Fragment>() 109 Fragment fragment = getItem(position); local 122 mCurTransaction.add(container.getId(), fragment); local 129 Fragment fragment = (Fragment)object; local 147 Fragment fragment = (Fragment)object; local [all...] |
FragmentPagerAdapter.java | 19 import android.app.Fragment; 31 * represents each page as a {@link android.app.Fragment} that is persistently 32 * kept in the fragment manager as long as the user can return to the page. 36 * The fragment of each page the user visits will be kept in memory, though its 38 * a significant amount of memory since fragment instances can hold on to an 54 * <p>The <code>R.layout.fragment_pager</code> resource of the top-level fragment is: 60 * individual fragment's layout is: 71 private Fragment mCurrentPrimaryItem = null; 78 * Return the Fragment associated with a specified position. 80 public abstract Fragment getItem(int position) 94 Fragment fragment = mFragmentManager.findFragmentByTag(name); local 101 mCurTransaction.add(container.getId(), fragment, local 124 Fragment fragment = (Fragment)object; local [all...] |
/frameworks/base/core/java/android/app/ |
FragmentTransaction.java | 4 * API for performing a set of Fragment operations. 14 * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId. 16 public abstract FragmentTransaction add(Fragment fragment, String tag); 19 * Calls {@link #add(int, Fragment, String)} with a null tag. 21 public abstract FragmentTransaction add(int containerViewId, Fragment fragment); 24 * Add a fragment to the activity state. This fragment may optionally 25 * also have its view (if {@link Fragment#onCreateView Fragment.onCreateView [all...] |
FragmentManager.java | 46 * Interface for interacting with {@link Fragment} objects inside of an 64 * Representation of an entry on the fragment back stack, as created 128 * <p>Note: A fragment transaction can only be created/committed prior 160 * Finds a fragment that was identified by the given id either when inflated 163 * activity; if no such fragment is found, then all fragments currently 165 * @return The fragment if found or null otherwise. 167 public abstract Fragment findFragmentById(int id); 170 * Finds a fragment that was identified by the given tag either when inflated 173 * activity; if no such fragment is found, then all fragments currently 175 * @return The fragment if found or null otherwise 932 final Fragment fragment = f; local [all...] |
BackStackRecord.java | 56 mOps[pos++] = op.fragment.mIndex; 101 "BSE " + bse + " set base fragment #" + mOps[pos]); 102 Fragment f = fm.mActive.get(mOps[pos++]); 103 op.fragment = f; 110 op.removed = new ArrayList<Fragment>(N); 113 "BSE " + bse + " set remove fragment #" + mOps[pos]); 114 Fragment r = fm.mActive.get(mOps[pos++]); 162 * @hide Entry of an operation on the fragment back stack. 183 Fragment fragment; field in class:BackStackRecord.Op [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/app/ |
Fragment_Delegate.java | 26 * Delegate used to provide new implementation of a select few methods of {@link Fragment} 28 * Through the layoutlib_create tool, the original methods of Fragment have been replaced 31 * The methods being re-implemented are the ones responsible for instantiating Fragment objects. 53 /*package*/ static Fragment instantiate(Context context, String fname) { 58 * Create a new instance of a Fragment with the given class name. This is 61 * @param context The calling context being used to instantiate the fragment. 63 * @param fname The class name of the fragment to instantiate. 64 * @param args Bundle of arguments to supply to the fragment, which it 66 * @return Returns a new fragment instance. 68 * the given fragment class. This is a runtime exception; it is no [all...] |
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
_index.html | 6 <li><a href="#Fragment">Fragment</a></li> 11 <h3 id="Fragment">Fragment</h3> 13 <dt><a href="FragmentAlertDialogSupport.html">Fragment Alert Dialog</a></dt> 17 <dt><a href="FragmentArgumentsSupport.html">Fragment Arguments</a></dt> 18 <dd>Demonstrates how a fragment can be initialized with arguments, 20 in a <fragment> tag.</dd> 22 <dt><a href="FragmentContextMenuSupport.html">Fragment Context Menu</a></dt> 24 display from a fragment's view hierarchy.</dd [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
TestFragment.java.txt | 3 import android.app.Fragment; 9 public class TestFragment extends Fragment {
|
/external/llvm/test/CodeGen/X86/ |
2009-11-25-ImpDefBug.ll | 27 bb5: ; preds = %bb13.fragment.cl135, %bb13.fragment.cl, %bb.i.i.bbcl.disp, %bb13.fragment 31 bb10.fragment: ; preds = %bb13.fragment.bbcl.disp 32 br i1 undef, label %bb1.i.fragment.bbcl.disp, label %bb.i.i.bbcl.disp 34 bb1.i.fragment: ; preds = %bb1.i.fragment.bbcl.disp 38 bb13.fragment: ; preds = %bb13.fragment.bbcl.dis [all...] |
2010-02-23-SingleDefPhiJoin.ll | 23 bb.nph.fragment: ; preds = %meshBB114 26 bb1.fragment: ; preds = %meshBB118 29 bb2: ; preds = %bb1.fragment 35 bb3: ; preds = %bb1.fragment 41 bb4.fragment: ; preds = %meshBB118 53 bb7.fragment: ; preds = %meshBB114 56 bb9: ; preds = %bb7.fragment, %bb 65 skip_to_newline.exit26.fragment: ; preds = %meshBB86 68 bb11.fragment: ; preds = %meshBB90, %meshBB86 75 bb1.i.fragment: ; preds = %meshBB9 [all...] |
/development/samples/Support13Demos/src/com/example/android/supportv13/app/ |
_index.html | 5 <li><a href="#Fragment">Fragment</a></li> 9 <h3 id="Fragment">Fragment</h3> 16 <dt><a href="FragmentPagerSupport.html">Fragment Pager Support</a></dt> 21 <dt><a href="FragmentStatePagerSupport.html">Fragment State Pager Support</a></dt> 25 doesn't keep around the fragment instances that ViewPager has destroyed.</dd>
|
/development/samples/Support4Demos/res/values/ |
strings.xml | 36 <string name="fragment_alert_dialog_support">Fragment/Alert Dialog</string> 38 <string name="fragment_arguments_support">Fragment/Arguments</string> 39 <string name="fragment_arguments_msg">Demonstrates a fragment that takes arguments 44 <string name="fragment_custom_animation_support">Fragment/Custom Animation</string> 46 <string name="fragment_hide_show_support">Fragment/Hide and Show</string> 48 <string name="fragment_context_menu_support">Fragment/Context Menu</string> 49 <string name="fragment_context_menu_msg">Fragment populating a context 53 <string name="fragment_dialog_support">Fragment/Dialog</string> 56 <string name="fragment_dialog_or_activity_support">Fragment/Dialog or Activity</string> 57 <string name="fragment_dialog_or_activity_msg">Demonstrates the same fragment [all...] |
/development/samples/WiFiDirectDemo/res/layout/ |
main.xml | 12 <fragment 18 </fragment> 19 <fragment 25 </fragment>
|
/development/samples/WiFiDirectDemo/res/layout-land/ |
main.xml | 12 <fragment 18 </fragment> 19 <fragment 25 </fragment>
|
/development/samples/WiFiDirectDemo/res/layout-large/ |
main.xml | 7 <fragment class="com.example.android.wifidirect.DeviceListFragment" 11 </fragment> 12 <fragment class="com.example.android.wifidirect.DeviceDetailFragment" 16 </fragment>
|
/external/chromium/chrome/browser/sync/resources/ |
encryption_login.html | 1 <!-- This is intentionally an HTML fragment to be embedded
|
/external/iptables/extensions/ |
libip6t_frag.man | 1 This module matches the parameters in Fragment header. 8 Fragment header is static and this option doesn't make sense. 14 Matches on the first fragment. 20 Matches if this is the last fragment.
|