/packages/apps/Settings/res/xml/ |
settings_headers.xml | 27 android:fragment="com.android.settings.wifi.WifiSettings" 34 android:fragment="com.android.settings.bluetooth.BluetoothSettings" 41 android:fragment="com.android.settings.DataUsageSummary" 47 android:fragment="com.android.settings.WirelessSettings" 57 android:fragment="com.android.settings.WirelessSettings" 67 android:fragment="com.android.settings.SoundSettings" 74 android:fragment="com.android.settings.DisplaySettings" 80 android:fragment="com.android.settings.deviceinfo.Memory" 87 android:fragment="com.android.settings.fuelgauge.PowerUsageSummary" 93 android:fragment="com.android.settings.applications.ManageApplications [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/preference/ |
FragmentPreferences.java | 26 * Demonstration of PreferenceFragment, showing a single fragment in an 35 // Display the fragment as the main content. 40 //BEGIN_INCLUDE(fragment) 51 //END_INCLUDE(fragment)
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentTabs.java | 25 import android.support.v4.app.Fragment; 78 * care of switch to the correct fragment shown in a separate content area 92 private Fragment fragment; field in class:FragmentTabs.TabManager.TabInfo 130 // Check to see if we already have a fragment for this tab, probably 133 info.fragment = mActivity.getSupportFragmentManager().findFragmentByTag(tag); 134 if (info.fragment != null && !info.fragment.isDetached()) { 136 ft.detach(info.fragment); 150 if (mLastTab.fragment != null) [all...] |
FragmentHideShowSupport.java | 21 import android.support.v4.app.Fragment; 51 void addShowHideListener(int buttonId, final Fragment fragment) { 58 if (fragment.isHidden()) { 59 ft.show(fragment); 62 ft.hide(fragment); 70 public static class FirstFragment extends Fragment { 78 ((TextView)tv).setText("The fragment saves and restores this text."); 97 public static class SecondFragment extends Fragment { 108 // we are sharing our layout with the other fragment we will customiz [all...] |
FragmentMenuSupport.java | 21 import android.support.v4.app.Fragment; 39 Fragment mFragment1; 40 Fragment mFragment2; 44 // Update fragment visibility when check boxes are changed. 88 // Update fragment visibility based on current check box state. 99 * A fragment that displays a menu. This fragment happens to not 103 public static class MenuFragment extends Fragment { 122 * Second fragment with a menu. 124 public static class Menu2Fragment extends Fragment { [all...] |
FragmentArgumentsSupport.java | 22 import android.support.v4.app.Fragment; 35 * Demonstrates a fragment that can be configured through both Bundle arguments 45 // First-time init; create fragment to embed in activity. 47 Fragment newFragment = MyFragment.newInstance("From Arguments"); 54 //BEGIN_INCLUDE(fragment) 55 public static class MyFragment extends Fragment { 85 * During creation, if arguments have been supplied to the fragment 101 * Create the view for this fragment, using the arguments given to it. 112 //END_INCLUDE(fragment)
|
/external/llvm/lib/Target/CellSPU/ |
SPUMathInstr.td | 66 def DivEstf32: CodeFrag<(FMf32 R32FP:$rA, Interpf32.Fragment)>; 68 def NRaphf32: CodeFrag<(FMAf32 (FNMSf32 DivEstf32.Fragment, R32FP:$rB, R32FP:$rA), 69 Interpf32.Fragment, 70 DivEstf32.Fragment)>; 72 def Epsilonf32: CodeFrag<(AIf32 NRaphf32.Fragment, 1)>; 75 (SELBf32_cond NRaphf32.Fragment, 76 Epsilonf32.Fragment, 77 (CGTIf32 (FNMSf32 R32FP:$rB, Epsilonf32.Fragment, R32FP:$rA), -1))>; 82 def DivEstv4f32: CodeFrag<(FMv4f32 (v4f32 VECREG:$rA), Interpv4f32.Fragment)>; 84 def NRaphv4f32: CodeFrag<(FMAv4f32 (FNMSv4f32 DivEstv4f32.Fragment, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
fragmentlayout-expected-navigate13.txt | 6 [^public class TestFragment extends Fragment {
|
fragmentlayout-expected-navigate14.txt | 6 [^public class TestFragment extends Fragment {
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/preferences/ |
SearchSettingsActivity.java | 59 * Get the name of the fragment that contains only a 'clear shortcuts' preference, and hence 60 * can be removed if zero-query shortcuts are disabled. Returns null if no such fragment exists. 73 String fragment = target.get(i).fragment; local 74 if (DBG) Log.d(TAG, "fragment " + i + ": " + fragment); 75 if (shortcutsFragment.equals(fragment)) {
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentHideShow.java | 22 import android.app.Fragment; 50 void addShowHideListener(int buttonId, final Fragment fragment) { 57 if (fragment.isHidden()) { 58 ft.show(fragment); 61 ft.hide(fragment); 69 public static class FirstFragment extends Fragment { 77 ((TextView)tv).setText("The fragment saves and restores this text."); 96 public static class SecondFragment extends Fragment { 107 // we are sharing our layout with the other fragment we will customiz [all...] |
FragmentMenu.java | 22 import android.app.Fragment; 37 Fragment mFragment1; 38 Fragment mFragment2; 42 // Update fragment visibility when check boxes are changed. 86 // Update fragment visibility based on current check box state. 97 * A fragment that displays a menu. This fragment happens to not 101 public static class MenuFragment extends Fragment { 117 * Second fragment with a menu. 119 public static class Menu2Fragment extends Fragment { [all...] |
FragmentArguments.java | 22 import android.app.Fragment; 33 * Demonstrates a fragment that can be configured through both Bundle arguments 43 // First-time init; create fragment to embed in activity. 45 Fragment newFragment = MyFragment.newInstance("From Arguments"); 52 //BEGIN_INCLUDE(fragment) 53 public static class MyFragment extends Fragment { 83 * During creation, if arguments have been supplied to the fragment 96 * Create the view for this fragment, using the arguments given to it. 107 //END_INCLUDE(fragment)
|
/external/webkit/Source/WebCore/rendering/svg/ |
SVGTextQuery.cpp | 129 const SVGTextFragment& fragment = fragments.at(i); local 130 if ((this->*fragmentCallback)(queryData, fragment)) 133 processedCharacters += fragment.length; 142 bool SVGTextQuery::mapStartEndPositionsIntoFragmentCoordinates(Data* queryData, const SVGTextFragment& fragment, int& startPosition, int& endPosition) const 144 // Reuse the same logic used for text selection & painting, to map our query start/length into start/endPositions of the current text fragment. 152 if (!queryData->textBox->mapStartEndPositionsIntoFragmentCoordinates(fragment, startPosition, endPosition)) 262 bool SVGTextQuery::textLengthCallback(Data* queryData, const SVGTextFragment& fragment) const 265 data->textLength += queryData->isVerticalText ? fragment.height : fragment.width; 294 bool SVGTextQuery::subStringLengthCallback(Data* queryData, const SVGTextFragment& fragment) cons [all...] |
SVGInlineTextBox.cpp | 58 int SVGInlineTextBox::offsetForPositionInFragment(const SVGTextFragment& fragment, float position, bool includePartialGlyphs) const 69 TextRun textRun(constructTextRun(style, fragment)); 74 fragment.buildFragmentTransform(fragmentTransform); 78 return fragment.characterOffset - start() + textRenderer->scaledFont().offsetForPosition(textRun, position * scalingFactor, includePartialGlyphs); 88 FloatRect SVGInlineTextBox::selectionRectForTextFragment(const SVGTextFragment& fragment, int startPosition, int endPosition, RenderStyle* style) 101 FloatPoint textOrigin(fragment.x, fragment.y); 107 FloatRect selectionRect = scaledFont.selectionRectForText(constructTextRun(style, fragment), textOrigin, fragment.height * scalingFactor, startPosition, endPosition); 136 const SVGTextFragment& fragment = m_textFragments.at(i) local 221 SVGTextFragment& fragment = m_textFragments.at(i); local 296 SVGTextFragment& fragment = m_textFragments.at(i); local 726 const SVGTextFragment& fragment = m_textFragments.at(i); local [all...] |
/development/samples/ApiDemos/res/xml/ |
device_admin_headers.xml | 22 android:fragment="com.example.android.apis.app.DeviceAdminSample$GeneralFragment" 26 android:fragment="com.example.android.apis.app.DeviceAdminSample$QualityFragment" 30 android:fragment="com.example.android.apis.app.DeviceAdminSample$ExpirationFragment" 34 android:fragment="com.example.android.apis.app.DeviceAdminSample$LockWipeFragment" 38 android:fragment="com.example.android.apis.app.DeviceAdminSample$EncryptionFragment"
|
/packages/apps/Settings/src/com/android/settings/ |
SettingsPreferenceFragment.java | 21 import android.app.Fragment; 91 Log.e(TAG, "Old dialog fragment not null!"); 102 // mDialogFragment may not be visible yet in parent fragment's onResume(). 139 private Fragment mParentFragment; 148 public SettingsDialogFragment(DialogCreatable fragment, int dialogId) { 150 if (!(fragment instanceof Fragment)) { 151 throw new IllegalArgumentException("fragment argument must be an instance of " 152 + Fragment.class.getName()); 154 mParentFragment = (Fragment) fragment [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLRecordProtocol.java | 52 * Maximum length of allowed plain data fragment 57 * Maximum length of allowed compressed data fragment 63 * Maximum length of allowed ciphered data fragment 184 byte[] fragment = dataStream.getData(MAX_DATA_LENGTH); 185 return wrap(content_type, fragment, 0, fragment.length); 192 * @param fragment: byte[] 196 byte[] fragment, int offset, int len) { 198 logger.println("SSLRecordProtocol.wrap: TLSPlaintext.fragment[" 200 logger.print(fragment, offset, len) [all...] |
ConnectionState.java | 105 * @param fragment - the byte array containing the 108 protected byte[] encrypt(byte type, byte[] fragment) { 109 return encrypt(type, fragment, 0, fragment.length); 116 * @param fragment - the byte array containing the 122 (byte type, byte[] fragment, int offset, int len); 125 * Retrieves the fragment of the Plaintext structure of 128 * @param fragment - the byte array containing the 131 protected byte[] decrypt(byte type, byte[] fragment) { 132 return decrypt(type, fragment, 0, fragment.length) [all...] |
/system/core/libpixelflinger/codeflinger/ |
blending.cpp | 32 component_t& temp, // incomming fragment / output 40 integer_t fragment(temp.reg, temp.h, temp.flags); 59 build_blendFOneMinusF(temp, factor, fragment, fogColor); 64 component_t& temp, // incomming fragment / output 86 // fragment: extracted src 87 // temp: component_t(fragment) and result 126 // expand fb -or- fragment to the larger of the two 128 // for now we expand 'fb' to min(fragment, 8) 136 // convert input fragment to integer_t 142 integer_t fragment(temp.reg, temp.size(), temp.flags) [all...] |
/frameworks/base/core/java/android/nfc/ |
NfcFragment.java | 20 import android.app.Fragment; 27 public final class NfcFragment extends Fragment { 49 Fragment fragment = manager.findFragmentByTag(FRAGMENT_TAG); local 50 if (fragment != null) { 54 manager.beginTransaction().remove(fragment).commitAllowingStateLoss();
|
/external/llvm/include/llvm/MC/ |
MCAsmLayout.h | 39 /// The last fragment which was laid out, or 0 if nothing has been laid 44 /// \brief Make sure that the layout for the given fragment is valid, lazily 56 /// \brief Invalidate all following fragments because a fragment has been 60 /// \brief Perform layout for a single fragment, assuming that the previous 61 /// fragment has already been laid out correctly, and the parent section has 63 void LayoutFragment(MCFragment *Fragment); 76 /// @name Fragment Layout Data 79 /// \brief Get the offset of the given fragment inside its containing section.
|
/external/llvm/test/MC/ELF/ |
no-fixup.s | 5 // same fragment. 10 // CHECK-NEXT: assembler - Number of fragment layouts
|
/external/webkit/LayoutTests/fast/dom/Node/ |
fragment-mutation.html | 3 <title>Fragment Mutation Tests</title> 21 document.body.appendChild(document.createElement("p")).innerHTML = "This test creates a fragment containing three elements: \"B\", \"U\", and \"P\", " + 22 " attempts to " + methodName + " this fragment and studies effects of mutation events on the fragment."; 43 return "FAIL, expected exception with code " + code + ". The resulting fragment was: \"" + produceNodeNameString(stash) + "\"."; 111 testFragment(method, "Inserting an element in front of the next item in fragment should not affect the result", function(evt, frag) 122 testFragment(method, "Appending an element at the end of the fragment should not affect the result", function(evt, frag) 127 testFragment(method, "Continually re-appending removed element to the fragment should eventually throw NOT_FOUND_ERR", function(evt, frag, stash)
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestFrameLayoutLocale.java | 19 import android.app.Fragment; 25 public class BiDiTestFrameLayoutLocale extends Fragment {
|