HomeSort by relevance Sort by last modified time
    Searched full:fragment (Results 126 - 150 of 1999) sorted by null

1 2 3 4 56 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
FragmentRule.java 26 * An {@link IViewRule} for the special XML {@code <fragment>} tag.
31 // When dropping a fragment tag, ask the user which layout to include.
35 node.editXml("Add Fragment",
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentContextMenu.java 22 import android.app.Fragment;
34 * Demonstration of displaying a context menu from a fragment.
42 // Create the list fragment and add it as our sole content.
47 public static class ContextMenuFragment extends Fragment {
  /development/samples/ApiDemos/src/com/example/android/apis/preference/
PreferenceWithHeaders.java 57 * This fragment shows the preferences for the first header.
76 * This fragment contains a second-level set of preference that you
77 * can get to by tapping an item in the first preferences fragment.
93 * This fragment shows the preferences for the second header.
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentContextMenuSupport.java 22 import android.support.v4.app.Fragment;
34 * Demonstration of displaying a context menu from a fragment.
42 // Create the list fragment and add it as our sole content.
48 public static class ContextMenuFragment extends Fragment {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SerializerMessages_sv.java 66 "Fragment inneh\u00e5ller ogiltigt tecken"},
69 "Fragment kan inte s\u00e4ttas n\u00e4r v\u00e4g \u00e4r null"},
72 "Fragment kan bara s\u00e4ttas f\u00f6r en allm\u00e4n URI"},
81 "Fragment kan inte anges i b\u00e5de v\u00e4gen och fragmentet"},
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.cpp 44 if (fragment.isValid())
45 return fragment.end();
46 return charactersBefore(Fragment, false);
98 if (fragment.isValid()) {
99 if (type == Fragment && !includeDelimiter)
100 return fragment.begin(); // Back over delimiter.
102 // When there is a fragment and we get here, the component we wanted was before
103 // this and not found, so we always know the beginning of the fragment is right.
104 return fragment.begin() - 1; // Don't want delimiter counted.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VersionGLSL.cpp 13 // 1. "invariant" keyword: This can occur in both - vertex and fragment shaders
15 // 2. "gl_PointCoord" built-in variable: This can only occur in fragment shader
17 // So we need to scan the entire fragment shader but only the global scope
68 // We need to scan the entire fragment shader but only the global scope
  /external/webkit/Source/WebCore/platform/mac/
PasteboardMac.mm 395 RefPtr<DocumentFragment> fragment = frame->document()->createDocumentFragment();
396 if (fragment) {
398 fragment->appendChild(imageElement, ec);
399 return fragment.release();
422 RefPtr<DocumentFragment> fragment = frame->editor()->client()->documentFragmentFromAttributedString(string, resources);
435 return fragment.release();
497 RefPtr<DocumentFragment> fragment;
510 // FIXME: seems poor form to do this as a side effect of getting a document fragment
514 fragment = createFragmentFromMarkup(frame->document(), markupString, mainResource->url(), FragmentScriptingNotAllowed);
517 fragment = documentFragmentWithImageResource(frame, mainResource);
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
PasteboardWx.cpp 84 RefPtr<DocumentFragment> fragment = 0; local
90 fragment = createFragmentFromText(context.get(), data.GetText());
94 if (fragment)
95 return fragment.release();
  /frameworks/base/core/java/android/app/
package.html 23 <p>The {@link android.app.Fragment} class is also an important part of an application's
24 design&mdash;especially when designing for large screen devices, such as tablets. A fragment defines
28 fragment in a back stack that's managed by the activity&mdash;allowing the user to navigate
29 backwards through the fragment states, without leaving the activity.</p>
  /frameworks/base/core/java/android/preference/
PreferenceFragment.java 20 import android.app.Fragment;
38 * preference hierarchy in this fragment will use, call
40 * with a context in the same package as this fragment.
45 * use this fragment (as a superclass) to deal with preferences in applications.
69 * hierarchy and shown by this fragment.
74 * As a convenience, this fragment implements a click listener for any
81 * <p>The following sample code shows a simple preference fragment that is
86 * <p>The fragment implementation itself simply populates the preferences
91 * fragment}
96 public abstract class PreferenceFragment extends Fragment implement
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
DeleteMessageConfirmationDialog.java 24 import android.app.Fragment;
45 * @param callbackFragment fragment that implements {@link Callback}. Or null, in which case
49 Fragment callbackFragment) {
85 Fragment targetFragment = getTargetFragment();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
FragmentMenu.java 57 * Fragment context menu allowing a layout to be chosen for previewing in the fragment frame.
67 * Creates a "Preview Fragment" menu
72 super("Fragment Layout");
114 // Find layouts. This is based on just skimming the Fragment class and looking
173 * Returns the class name of the fragment associated with the given {@code <fragment>}
176 * @param element the element for the fragment tag
177 * @return the fully qualified fragment class name, or null
192 * Returns the layout to be shown for the given {@code <fragment>} node
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/META-INF/
MANIFEST.MF 7 Fragment-Host: com.android.ide.eclipse.adt;bundle-version="14.0.0"
  /libcore/luni/src/main/java/java/net/
URI.java 37 * {@code http://username:password@host:8080/directory/file?query#fragment}
41 * <tr><td>{@link #getSchemeSpecificPart() Scheme-specific part}</td><td>{@code //username:password@host:8080/directory/file?query#fragment}</td><td></td></tr>
48 * <tr><td>{@link #getFragment() Fragment} </td><td>{@code fragment} </td><td>ref</td></tr>
89 * have a fragment, however. A typical opaque URI is
95 * <tr><td>Fragment </td><td> </td></tr>
118 * <tr><td>Fragment </td><td>{@code 0-9}, {@code a-z}, {@code A-Z}, {@code _-!.~'()*,;:$&+=?/[]@}</td><td>Non-ASCII characters okay </td><td>{@code over%206%22} </td><td>{@code over 6"}</td></tr>
146 /** for query, fragment, and scheme-specific part */
189 private transient String fragment; field in class:URI
212 public URI(String scheme, String schemeSpecificPart, String fragment)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/13/changes/
android.app.Fragment.html 10 android.app.Fragment
74 Class android.app.<A HREF="../../../../reference/android/app/Fragment.html" target="_top"><font size="+2"><code>Fragment</code></font></A>
86 <A NAME="android.app.Fragment.isDetached_added()"></A>
87 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#isDetached()" target="_top"><code>isDetached</code></A>()</nobr>
93 <A NAME="android.app.Fragment.onViewCreated_added(android.view.View, android.os.Bundle)"></A>
94 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#onViewCreated(android.view.View, android.os.Bundle)" target="_top"><code>onViewCreated</code></A>(<code>View,</nobr> Bundle<nobr><nobr></code>)</nobr>
100 <A NAME="android.app.Fragment.setInitialSavedState_added(android.app.Fragment.SavedState)"></A>
101 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setInitialSavedState(android.app.Fragment.SavedState)" target="_top"><code>setInitialSavedSta (…)
    [all...]
  /cts/tools/signature-tools/src/signature/model/
IPackage.java 35 * Returns a list containing each package fragment.
42 * @return a list containing each package fragment
  /development/samples/ApiDemos/res/layout/
fragment_layout.xml 17 <!-- Top-level content view for the layout fragment sample. This version is
23 <fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
  /development/samples/HoneycombGallery/res/layout-large/
main.xml 23 <fragment class="com.example.android.hcgallery.TitlesFragment"
28 <fragment class="com.example.android.hcgallery.ContentFragment"
  /development/samples/HoneycombGallery/res/layout-large-port/
main.xml 23 <fragment class="com.example.android.hcgallery.TitlesFragment"
28 <fragment class="com.example.android.hcgallery.ContentFragment"
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
ContentActivity.java 21 // to restore. All info about the content displayed is managed by the fragment
35 // Take the info from the intent and deliver it to the fragment so it can update
  /development/samples/Support4Demos/res/layout/
fragment_layout_support.xml 17 <!-- Top-level content view for the layout fragment sample. This version is
23 <fragment class="com.example.android.supportv4.app.FragmentLayoutSupport$TitlesFragment"
  /development/samples/Support4Demos/res/layout-land/
fragment_layout_support.xml 17 <!-- Top-level content view for the layout fragment sample. This version is
25 <fragment class="com.example.android.supportv4.app.FragmentLayoutSupport$TitlesFragment"
  /development/samples/training/multiscreen/newsreader/res/layout/
twopanes.xml 22 <fragment android:id="@+id/headlines"
27 <fragment android:id="@+id/article"
twopanes_narrow.xml 22 <fragment android:id="@+id/headlines"
27 <fragment android:id="@+id/article"

Completed in 351 milliseconds

1 2 3 4 56 7 8 91011>>