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

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionStateTLS.java 237 protected byte[] encrypt(byte type, byte[] fragment, int offset, int len) {
242 System.arraycopy(fragment, offset, res, 0, len);
250 encMac.update(fragment, offset, len);
257 // logger.print(fragment, offset, len);
293 * Retrieves the fragment of the Plaintext structure of
299 protected byte[] decrypt(byte type, byte[] fragment,
302 byte[] data = decCipher.update(fragment, offset, len);
327 decMac.update(data, 0, content.length); // mac.update(fragment);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
LayoutTestBase.java 109 // Check that each graphics fragment is drawn
110 for (String fragment : graphicsFragments) {
111 if (!drawn.contains(fragment)) {
114 System.out.println("Could not find: " + fragment);
117 assertTrue(fragment + " not found; full=" + drawn, drawn.contains(fragment));
  /system/core/libpixelflinger/
scanline.cpp 446 static void blending(context_t* c, pixel_t* fragment, pixel_t* fb);
473 void blending(context_t* c, pixel_t* fragment, pixel_t* fb)
475 rescale(fragment->c[0], fragment->s[0], fb->c[0], fb->s[0]);
476 rescale(fragment->c[1], fragment->s[1], fb->c[1], fb->s[1]);
477 rescale(fragment->c[2], fragment->s[2], fb->c[2], fb->s[2]);
478 rescale(fragment->c[3], fragment->s[3], fb->c[3], fb->s[3])
677 pixel_t fragment; local
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.cpp 127 // Figure out length of fragment.
130 // Figure out fragment metrics.
281 SVGTextFragment& fragment = fragments.at(i); local
282 String fragmentString(characters + fragment.characterOffset, fragment.length);
283 fprintf(stderr, " -> Fragment %i, x=%lf, y=%lf, width=%lf, height=%lf, characterOffset=%i, length=%i, characters='%s'\n"
284 , i, fragment.x, fragment.y, fragment.width, fragment.height, fragment.characterOffset, fragment.length, fragmentString.utf8().data())
    [all...]
  /external/libxml2/
uri.c 204 * fragment = *( pchar / "/" / "?" )
206 * in the fragment identifier but this is used very broadly for
227 if (uri->fragment != NULL)
228 xmlFree(uri->fragment);
230 uri->fragment = STRNDUP(*str, cur - *str);
232 uri->fragment = xmlURIUnescapeString(*str, cur - *str, NULL);
760 * relative-ref = relative-part [ "?" query ] [ "#" fragment ]
818 * scheme ":" hier-part [ "?" query ] [ "#" fragment ]
893 * URI-reference = [ absoluteURI | relativeURI ] [ "#" fragment ]
1342 if (uri->fragment != NULL)
    [all...]
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 181 component_t& fragment,
186 fragment.setTo( regs.obtain(), 0, 32, CORRUPTIBLE);
193 extract(fragment, parts.iterated, component);
195 fragment.h = GGL_COLOR_BITS;
196 fragment.l = GGL_COLOR_BITS - 8;
197 fragment.flags |= CLEAR_LO;
204 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c);
206 ADD(AL, 0, dx, fragment.reg, dx);
209 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c);
214 regs.recycle(fragment.reg)
    [all...]
  /frameworks/base/core/java/android/app/
Activity.java 146 * implementations can make use of the {@link Fragment} class to better
4697 Fragment fragment = id != View.NO_ID ? mFragments.findFragmentById(id) : null; local
    [all...]
  /frameworks/base/core/java/android/preference/
PreferenceActivity.java 19 import android.app.Fragment;
116 * fragment, the Prefs1FragmentInner implemented here. This allows the user
118 * fragment off the stack to return to the previous preferences.
134 * string to specify which fragment should be initially displayed.
141 * to that fragment when it is instantiated during the initial creation
149 * that fragment.
156 * that fragment.
165 * the activity to display a specific fragment that the user has navigated
186 // --- State for new mode when showing a list of headers + prefs fragment
232 if (header != null && header.fragment != null)
374 public String fragment; field in class:PreferenceActivity.Header
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
DialtactsActivity.java 24 import android.app.Fragment;
127 public Fragment getItem(int position) {
136 throw new IllegalStateException("No fragment at position " + position);
294 Log.w(TAG, "Search Fragment isn't available when ContactListFilter is changed");
349 * Fragment for searching phone numbers. Unlike the other Fragments, this doesn't correspond
376 * The index of the Fragment (or, the tab) that has last been manually selected.
428 * Listener used to send search queries to the phone search fragment.
607 * Add search fragment. Note this is called during onLayout, so there's some restrictions,
611 // In order to take full advantage of "fragment deferred start", we need to create the
612 // search fragment after all other fragments are created
1212 final Fragment fragment = getFragmentAt(position); local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
http_header_util.py 249 if parsed.fragment:
250 path += '#' + parsed.fragment
  /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...]
  /frameworks/base/libs/hwui/
Program.cpp 29 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) {
39 mFragmentShader = buildShader(fragment, GL_FRAGMENT_SHADER);
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 413 * @param expected a file containing an XML document fragment.
428 * Returns the given file's XML fragment as a single node, wrapped in
448 String fragment = rawContents; local
452 if (fragment.startsWith("<?xml")) {
453 int declarationEnd = fragment.indexOf("?>");
454 fragment = fragment.substring(declarationEnd + 2);
457 // Parse it as document fragment wrapped in <result> tags.
459 fragment = "<result>" + fragment + "</result>"
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarSettingsActivity.java 54 accountHeader.fragment =
68 tardisHeader.fragment = "com.android.calendar.OtherPreferences";
  /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/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java 23 import android.app.Fragment;
47 * There are three components that work together. 1. This fragment is retained and non-displayed,
55 public class AccountCheckSettingsFragment extends Fragment {
125 * Create a retained, invisible fragment that checks accounts
129 public static AccountCheckSettingsFragment newInstance(int mode, Fragment parentFragment) {
136 * Fragment initialization. Because we never implement onCreateView, and call
137 * setRetainInstance here, this creates an invisible, persistent, "worker" fragment.
146 * This is called when the Fragment's Activity is ready to go, after
148 * the initial fragment creation and after the fragment is re-attache
809 ErrorDialog fragment = new ErrorDialog(); local
892 SecurityRequiredDialog fragment = new SecurityRequiredDialog(); local
    [all...]
  /packages/apps/Email/src/com/android/email/widget/
WidgetConfiguration.java 70 // Load the account picking fragment if we haven't created a fragment yet
71 // NOTE: do not add to history as this will be the first fragment in the flow
72 AccountShortcutPickerFragment fragment = new AccountShortcutPickerFragment(); local
73 getFragmentManager().beginTransaction().add(R.id.shortcut_list, fragment).commit();
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperActivity.java 23 import android.app.Fragment;
44 Fragment fragmentView = getFragmentManager().findFragmentById(R.id.live_wallpaper_fragment);
46 /* When the screen is XLarge, the fragment is not included in the layout, so show it
49 DialogFragment fragment = WallpaperDialog.newInstance(); local
50 fragment.show(getFragmentManager(), "dialog");
94 * when the activity is no longer associated with this dying dialog fragment. We
119 /* If this fragment is embedded in the layout of this activity, then we should
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DateTimeEditor.java 131 final String tag, Button button, final DialogFragment fragment) {
135 fragment.show(ft, tag);
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ANTLR.g 106 FRAGMENT='fragment';
366 // add grammar fragment to a list so we can make fake rules for them later.
377 public static GrammarAST createSimpleRuleAST( String name, GrammarAST block, boolean fragment ) {
381 if ( fragment )
383 modifier = (GrammarAST)adaptor.create( FRAGMENT, "fragment" );
569 | p4='fragment' //{modifier=$p4.tree;}
1048 fragment STRING_LITERAL : ;
1049 fragment FORCED_ACTION :
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
properties.rb 85 fragment WS :
  /external/openssl/include/openssl/
dtls1.h 174 unsigned char *fragment; member in struct:hm_fragment_st
  /external/openssl/ssl/
dtls1.h 174 unsigned char *fragment; member in struct:hm_fragment_st
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodedocumentfragmentnodename.js 84 equal to "#document-fragment".
105 assertEquals("nodeDocumentFragmentNodeNameAssert1","#document-fragment",documentFragmentName);
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodedocumentfragmentnodename.js 84 equal to "#document-fragment".
105 assertEquals("nodeDocumentFragmentNodeNameAssert1","#document-fragment",documentFragmentName);

Completed in 546 milliseconds

1 2 3 4 56 7 8 91011>>