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

<<11121314151617181920>>

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
TitlesFragment.java 40 * Fragment that shows the list of images
41 * As an extension of ListFragment, this fragment uses a default layout
43 * When running on a screen size smaller than "large", this fragment appears alone
72 /** This is where we perform setup for the fragment that's either
73 * not related to the fragment's layout or must be done after the layout is drawn.
74 * Notice that this fragment does not implement onCreateView(), because it extends
146 /** Attaches an adapter to the fragment's ListView to populate it with items */
173 // so the activity can pass the event to the sibling fragment as appropriate
206 // Because the fragment doesn't have a reliable callback to notify us when
234 * which this fragment implements to handle events when tabs are selected
    [all...]
  /external/mesa3d/docs/OLD/
MESA_program_debug.spec 36 vertex and fragment programs.
38 The concept is that vertex and fragment program debuggers will be
44 each vertex or fragment instruction.
50 be called prior to executing each vertex or fragment program instruction.
84 If we want to be able to single-step through vertex/fragment
153 Additions to Chapter 4 of the OpenGL 1.4 Specification (Per-Fragment
176 prior to executing each instruction in the current fragment or
245 vertex and/or fragment programs defined by those extensions may
256 a supported vertex or fragment program type.
260 Begin and End when a vertex or fragment program is currently executing
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountServerBaseFragment.java 20 import android.app.Fragment;
51 public abstract class AccountServerBaseFragment extends Fragment
91 * @param target the fragment that requested the check
112 * Get the static arguments bundle that forces a server settings fragment into "settings" mode
134 * At onCreate time, read the fragment arguments
161 // startPreferencePanel launches this fragment with the right title initially, but
345 AccountServerBaseFragment fragment = AccountServerBaseFragment.this; local
350 dialogFragment.show(fragment.getFragmentManager(),
354 mCallback.onProceedNext(mCheckSettingsMode, fragment);
364 * exit to previous fragment
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 62 /// Parent - The data for the section this fragment is in.
65 /// Atom - The atom this fragment is in, as represented by it's defining
75 /// Offset - The offset of this fragment in its section. This is ~0 until
79 /// LayoutOrder - The layout order of this fragment.
111 /// Fixups - The list of fixups in this fragment.
163 /// Inst - The instruction this is a fragment for.
169 /// Fixups - The list of fixups in this fragment.
228 /// cannot be satisfied in this width then this fragment is ignored.
270 /// this is a virtual fill fragment.
303 /// Offset - The offset this fragment should start at
    [all...]
MCMachObjectWriter.h 67 const MCFragment *Fragment,
129 uint64_t getFragmentAddress(const MCFragment *Fragment,
203 const MCFragment *Fragment,
210 const MCFragment *Fragment,
215 const MCFragment *Fragment, const MCFixup &Fixup,
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsReaderActivity.java 59 // The fragment where the headlines are displayed
62 // The fragment where the article is displayed (null if absent)
89 // Register ourselves as the listener for the headlines fragment events.
96 // Set up headlines fragment
169 * This causes the headlines fragment to be repopulated with the appropriate headlines.
194 * selected article; in dual-pane mode we simply display it on the article fragment.
202 // display it on the article fragment
  /external/webkit/LayoutTests/fast/dom/Node/
initial-values-expected.txt 57 PASS fragment.nodeName is '#document-fragment'
58 PASS fragment.localName is null
59 PASS fragment.namespaceURI is null
60 PASS fragment.prefix is null
61 PASS fragment.nodeValue is null
62 PASS fragment.attributes is null
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGInlineText.cpp 200 const SVGTextFragment& fragment = fragments.at(i); local
201 FloatRect fragmentRect(fragment.x, fragment.y - baseline, fragment.width, fragment.height);
202 fragment.buildFragmentTransform(fragmentTransform);
212 closestDistanceFragment = &fragment;
  /frameworks/base/docs/html/sdk/api_diff/12/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.onInflate_added(android.app.Activity, android.util.AttributeSet, android.os.Bundle)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#onInflate(android.app.Activity, android.util.AttributeSet, android.os.Bundle)" target="_top"><code>onInflate</code></A>(<code>Activity,</nobr> AttributeSet<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
101 <A NAME="android.app.Fragment.onInflate_changed(android.util.AttributeSet, android.os.Bundle)"></A>
102 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#onInflate(android.util.AttributeSet, android.os.Bundle)" target="_top"><code>onInflate</code></A>(<code>AttributeSet,</nobr> Bundle<nobr><nobr></code>) </nobr>
  /frameworks/base/docs/html/sdk/api_diff/14/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>
87 <A NAME="android.app.Fragment.onTrimMemory_added(int)"></A>
88 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#onTrimMemory(int)" target="_top"><code>onTrimMemory</code></A>(<code>int</code>)</nobr>
94 <A NAME="android.app.Fragment.setMenuVisibility_added(boolean)"></A>
95 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/app/Fragment.html#setMenuVisibility(boolean)" target="_top"><code>setMenuVisibility</code></A>(<code>boolean</code>)</nobr>
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactDetailActivity.java 33 import android.app.Fragment;
119 public void onAttachFragment(Fragment fragment) {
120 if (fragment instanceof ContactLoaderFragment) {
121 mLoaderFragment = (ContactLoaderFragment) fragment;
166 // Otherwise find the correct fragment to handle the event
277 * This interface should be implemented by {@link Fragment}s within this
PeopleActivity.java 65 import android.app.Fragment;
236 public void onAttachFragment(Fragment fragment) {
237 if (fragment instanceof ContactDetailFragment) {
238 mContactDetailFragment = (ContactDetailFragment) fragment;
239 } else if (fragment instanceof ContactDetailUpdatesFragment) {
240 mContactDetailUpdatesFragment = (ContactDetailUpdatesFragment) fragment;
241 } else if (fragment instanceof ContactsUnavailableFragment) {
242 mContactsUnavailableFragment = (ContactsUnavailableFragment)fragment;
357 // the fragment manager, so first see if there're already the target fragment
883 Fragment fragment = (Fragment) object; local
    [all...]
  /frameworks/base/media/libstagefright/rtsp/
ARTSPConnection.cpp 972 AString fragment; local
973 fragment.append("Authorization: Basic ");
974 fragment.append(out);
975 fragment.append("\r\n");
977 request->insert(fragment, i + 2);
1014 AString fragment; local
1015 fragment.append("Authorization: Digest ");
1016 fragment.append("nonce=\"");
1017 fragment.append(mNonce);
1018 fragment.append("\", ")
    [all...]
  /external/mesa3d/docs/
RELNOTES-5.1 41 NVIDIA's fragment-level programming feature.
104 Vertex/Fragment program debugger
108 interactive debugging of vertex and fragment programs. See the
111 The bulk of the vertex/fragment program debugger is implemented
120 As it is now, the demo lets you set breakpoings in vertex/fragment
165 The files related to vertex and fragment programming have changed.
173 arbfragparse.[ch] - ARB fragment program parsing
175 arbparse.[ch] - ARB vertex/fragment parsing
176 arbparse_syn.h - vertex/fragment program syntax
179 nvfragprog.h - NV fragment program definition
    [all...]
relnotes-6.5.3.html 54 <li>Much faster software execution of vertex, fragment shaders.
64 <li>Fog was errantly applied when a fragment shader was enabled (bug 9346)
66 <li>With 32-bit Z buffer, the fragment Z of lines and points was sometimes wrong.
83 <li>Vertex/fragment shaders are compiled into GPU instructions and
85 <li>Vertex and fragment programs are executed with the same code now.
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 296 PassRefPtr<DocumentFragment> fragment = fragmentFromCFHTML(frame->document(), cfhtml); local
297 if (fragment)
298 return fragment;
312 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str); local
313 if (fragment)
314 return fragment.release();
329 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str); local
330 if (fragment)
331 return fragment.release();
  /external/webkit/Source/WebKit/mac/WebView/
WebDataSource.mm 283 DOMDocumentFragment *fragment = [self _documentFragmentWithArchive:archive];
284 if (fragment)
285 [[self webFrame] _replaceSelectionWithFragment:fragment selectReplacement:selectReplacement smartReplace:NO matchStyle:NO];
297 // FIXME: seems poor form to do this as a side effect of getting a document fragment
301 DOMDocumentFragment *fragment = [[self webFrame] _documentFragmentWithMarkupString:markupString baseURLString:[[mainResource URL] _web_originalDataAsString]];
303 return fragment;
317 DOMDocumentFragment *fragment = [[[self webFrame] DOMDocument] createDocumentFragment];
318 [fragment appendChild:imageElement];
319 return fragment;
  /cts/tests/tests/net/src/android/net/cts/
Uri_BuilderTest.java 75 method = "fragment",
134 Uri uri = Uri.parse("http://google.com/p1?query#fragment");
141 assertEquals("fragment", uri.getFragment());
158 .encodedFragment("fragment")
164 assertEquals("fragment", uri.getEncodedFragment());
  /external/e2fsprogs/e2fsck/
mtrace.h 101 receive a fragment of a block. Fragment sizes are powers of two,
124 logarithm to the base two of the fragment size. */
131 size_t first; /* First free fragment of the block. */
170 /* Free list headers for each fragment size. */
  /external/qemu/slirp/
ip_output.c 108 * Too large for interface; fragment if possible.
109 * Must be able to put at least 8 bytes per fragment.
128 * Loop through length of segment after first fragment,
174 * Update first fragment by trimming what's been copied out
175 * and updating header, then send each fragment (in order).
  /external/qemu/slirp-android/
ip_output.c 108 * Too large for interface; fragment if possible.
109 * Must be able to put at least 8 bytes per fragment.
128 * Loop through length of segment after first fragment,
174 * Update first fragment by trimming what's been copied out
175 * and updating header, then send each fragment (in order).
  /frameworks/base/core/java/android/nfc/
NfcActivityManager.java 28 * <p>Uses a fragment to hook into onPause() and onResume() of the host
68 * onResume hook from fragment attached to activity
80 * onPause hook from fragment attached to activity
92 * onDestroy hook from fragment attached to activity
145 * and ensure the NFC fragment is attached to the activity.
  /packages/apps/Email/src/com/android/email/activity/
ShortcutPicker.java 63 // Load the account picking fragment if we haven't created a fragment yet
64 // NOTE: do not add to history as this will be the first fragment in the flow
65 AccountShortcutPickerFragment fragment = new AccountShortcutPickerFragment(); local
66 getFragmentManager().beginTransaction().add(R.id.shortcut_list, fragment).commit();
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepMessenger.java 54 // Send first fragment
57 if (DBG) Log.d(TAG, "about to send a " + length + " byte fragment");
75 if (DBG) Log.d(TAG, "Got response from first fragment: " + snepResponse.getField());
85 if (DBG) Log.d(TAG, "about to send a " + length + " byte fragment");
124 throw new IOException("Invalid fragment from sender.");
  /external/tinyxml/docs/
index.html 26 <div class="fragment"><pre class="fragment"> &lt;!DOCTYPE Archiv [
79 <div class="fragment"><pre class="fragment"> &amp;amp; &amp;
86 <div class="fragment"><pre class="fragment"> Far &amp;amp; Away
117 <div class="fragment"><pre class="fragment">TiXmlElement* root = document.FirstChildElement( "Document" );
132 <div class="fragment"><pre class="fragment">TiXmlHandle docHandle( &amp;document )
    [all...]

Completed in 664 milliseconds

<<11121314151617181920>>