/packages/apps/Contacts/res/xml/ |
preference_headers.xml | 21 android:fragment="com.android.contacts.preference.DisplayOptionsPreferenceFragment"
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
NonPhoneActivity.java | 49 final NonPhoneDialogFragment fragment = new NonPhoneDialogFragment(); local 50 fragment.setArguments(Bundle.forPair("PHONE_NUMBER", phoneNumber)); 51 getFragmentManager().beginTransaction().add(fragment, "Fragment").commitAllowingStateLoss();
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/ |
SearchableItemsFragment.java | 23 * Fragment for selecting searchable items
|
/packages/apps/Settings/ |
proguard.flags | 2 -keep class com.android.settings.*Fragment
|
/packages/apps/Settings/src/com/android/settings/ |
DialogCreatable.java | 22 * Letting the class, assumed to be Fragment, create a Dialog on it. Should be useful
|
/packages/experimental/LoaderApp/res/layout/ |
details_normal.xml | 20 <fragment xmlns:android="http://schemas.android.com/apk/res/android"
|
/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.cpp | 291 // that this whole fragment is a no-op. 529 component_t fragment; local 532 build_iterated_color(fragment, parts, component, regs); 535 build_texture_environment(fragment, parts, component, regs); 538 if (need_expander && (fragment.size() < dst_size)) { 540 // (so we know for sure fragment is CORRUPTIBLE) 541 expand(fragment, fragment, dst_size); 546 (mInfo[component].needed || fragment.size()<dst_size)) 550 if (fragment.l) [all...] |
/development/samples/ApiDemos/res/layout-land/ |
fragment_layout.xml | 17 <!-- Top-level content view for the layout fragment sample. This version is 25 <fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
|
/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/ |
InputMethodSettingsFragment.java | 31 * This is a helper class for an IME's settings preference fragment. It's recommended for every 32 * IME to have its own settings preference fragment which inherits this class.
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
XRTreeFrag.java | 34 * This class represents an XPath result tree fragment object, and is capable of 149 * @return The result tree fragment as a number or NaN 176 * @return The document fragment node data or the empty string. 201 * @return The document fragment node data or the empty string. 211 * Cast result object to a result tree fragment. 213 * @return The document fragment this wraps 225 * @return The document fragment as a DTMIterator 235 * @return The document fragment as a nodelist
|
/external/libxml2/include/libxml/ |
uri.h | 42 char *fragment; /* the fragment identifier */ member in struct:_xmlURI
|
/external/webkit/Source/WebCore/editing/ |
MoveSelectionCommand.h | 37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false) 39 return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
|
/frameworks/base/graphics/java/android/renderscript/ |
ProgramFragmentFixedFunction.java | 25 * a way to make a simple fragment shader without writing any 86 * color in the fixed function fragment shader 102 * function fragment shader and how they are sampled 192 * Creates a builder for fixed function fragment program 204 * fragment program 237 * program or the constant color set on the fragment program is 239 * fragment shader 248 * Creates the fixed function fragment program from the current
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestCanvas.java | 19 import android.app.Fragment; 29 public class BiDiTestCanvas extends Fragment {
|
/frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/ |
InputMethodSettingsFragment.java | 25 * This is a helper class for an IME's settings preference fragment. It's recommended for every 26 * IME to have its own settings preference fragment which inherits this class.
|
/packages/apps/Contacts/res/layout/ |
contact_detail_fragment_carousel.xml | 25 Container for the "About" page fragment on the contact card for a contact 38 Container for the "Updates" page fragment on the contact card for a contact
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
ContactTileFrequentFragment.java | 25 import android.app.Fragment; 41 * Fragment containing a list of frequently contacted people.
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/ |
BatteryHistoryDetail.java | 19 import android.app.Fragment; 29 public class BatteryHistoryDetail extends Fragment {
|
/external/webkit/Source/WebCore/platform/chromium/ |
PasteboardChromium.cpp | 176 RefPtr<DocumentFragment> fragment = local 178 if (fragment) 179 return fragment.release(); 187 RefPtr<DocumentFragment> fragment = local 189 if (fragment) 190 return fragment.release();
|
/external/webkit/Source/WebCore/platform/haiku/ |
PasteboardHaiku.cpp | 173 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), html, "", FragmentScriptingNotAllowed); local 174 if (fragment) 175 return fragment.release(); 186 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), plainText); local 187 if (fragment) 188 return fragment.release();
|
/external/webkit/Source/WebCore/platform/qt/ |
PasteboardQt.cpp | 113 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), html, "", FragmentScriptingNotAllowed); local 114 if (fragment) 115 return fragment.release(); 121 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), mimeData->text()); local 122 if (fragment) 123 return fragment.release();
|
/packages/apps/Contacts/src/com/android/contacts/detail/ |
ContactDetailUpdatesFragment.java | 54 * This optional view adds an alpha layer over the entire fragment. 59 * This optional view adds a layer over the entire fragment so that when visible, it intercepts 60 * all touch events on the fragment. 137 // It is possible that the contact data was set to the fragment when it was first attached 138 // to the activity, but before this method was called because the fragment was not 162 * Reset the list adapter in this {@link Fragment} to get rid of any saved scroll position
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
ContextPullParser.java | 41 * performs other layout-specific parser behavior like translating fragment tags into 55 /** The layout to be shown for the current {@code <fragment>} tag. Usually null. */ 119 * This method determines whether the {@code <fragment>} tag in the current parsing 126 // We need to look inside the <fragment> tag to see 127 // if it contains a comment which indicates a fragment 150 // The fragment tag contains a comment
|
/external/webkit/Source/WebCore/html/ |
HTMLElement.cpp | 301 static void replaceChildrenWithFragment(HTMLElement* element, PassRefPtr<DocumentFragment> fragment, ExceptionCode& ec) 303 if (!fragment->firstChild()) { 308 if (hasOneTextChild(element) && hasOneTextChild(fragment.get())) { 309 static_cast<Text*>(element->firstChild())->setData(static_cast<Text*>(fragment->firstChild())->data(), ec); 314 element->replaceChild(fragment, element->firstChild(), ec); 319 element->appendChild(fragment, ec); 344 RefPtr<DocumentFragment> fragment; local 346 fragment = DocumentFragment::create(document); 348 fragment->parseHTML(markup, contextElement); 349 return fragment; 362 RefPtr<DocumentFragment> fragment = createFragmentFromSource(html, this, ec); local 376 RefPtr<DocumentFragment> fragment = createFragmentFromSource(html, parent, ec); local 385 RefPtr<DocumentFragment> fragment = DocumentFragment::create(document()); local 459 RefPtr<DocumentFragment> fragment = textToFragment(text, ec); local 588 RefPtr<DocumentFragment> fragment = document()->createDocumentFragment(); local [all...] |
/external/libxml2/ |
xinclude.c | 54 xmlChar *fragment; /* the fragment in the URI */ member in struct:_xmlXIncludeRef 206 if (ref->fragment != NULL) 207 xmlFree(ref->fragment); 240 ret->fragment = NULL; 491 xmlChar *fragment = NULL; local 570 fragment = xmlXIncludeGetProp(ctxt, cur, XINCLUDE_PARSE_XPOINTER); 573 * Check the URL and remove any fragment identifier 579 if (fragment != NULL) 580 xmlFree(fragment); 1396 xmlChar *fragment = NULL; local [all...] |