HomeSort by relevance Sort by last modified time
    Searched full:fragment (Results 1 - 25 of 2322) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t029synpredgate.g 11 fragment
14 fragment
t056lexer13.g 4 fragment A : 'a' ;
t012lexerXML.g 18 fragment DOCTYPE
39 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
41 fragment PI :
47 fragment XMLDECL :
54 fragment ELEMENT
70 fragment START_TAG
76 fragment EMPTY_ELEMENT
82 fragment ATTRIBUTE
87 fragment END_TAG
92 fragment COMMEN
    [all...]
t040bug80.g 12 fragment
  /external/antlr/antlr-3.4/runtime/Python/tests/
t029synpredgate.g 11 fragment
14 fragment
t012lexerXMLLexer.g 23 fragment DOCTYPE
44 fragment INTERNAL_DTD : '[' (options {greedy=false;} : .)* ']' ;
46 fragment PI :
52 fragment XMLDECL :
59 fragment ELEMENT
75 fragment START_TAG
81 fragment EMPTY_ELEMENT
87 fragment ATTRIBUTE
92 fragment END_TAG
97 fragment COMMEN
    [all...]
t040bug80.g 12 fragment
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.g 11 fragment DIGIT : '0'..'9'
14 fragment LETTER
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/30/fragment/
fragment.xml 3 <fragment>
9 </fragment>
  /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);
90 // Do we already have this fragment
92 Fragment fragment = mFragmentManager.findFragmentByTag(name); local
99 mCurTransaction.add(container.getId(), fragment, local
122 Fragment fragment = (Fragment)object; local
    [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)
96 Fragment fragment = mFragmentManager.findFragmentByTag(name); local
103 mCurTransaction.add(container.getId(), fragment, local
126 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...]
  /development/samples/training/TabCompat/src/com/example/android/tabcompat/
MainActivity.java 25 import android.support.v4.app.Fragment;
57 * instantiates the specified fragment class with no arguments when its tab is selected.
67 * @param activity The host Activity, used to instantiate the fragment
68 * @param cls The class representing the fragment to instantiate
70 public InstantiatingTabListener(TabCompatActivity activity, Class<? extends Fragment> cls) {
78 // Check if the fragment is already initialized
79 Fragment fragment = tab.getFragment(); local
80 if (fragment == null) {
82 fragment = Fragment.instantiate(mActivity, mClass.getName())
93 Fragment fragment = tab.getFragment(); local
    [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 &lt;fragment> tag.</dd>
22 <dt><a href="FragmentContextMenuSupport.html">Fragment Context Menu</a></dt>
24 display from a fragment's view hierarchy.</dd
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/data/21/fragment/
fragment.xml 2 <fragment
14 </fragment>
  /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...]

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>