HomeSort by relevance Sort by last modified time
    Searched refs:fragment (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
ConnectionState.java 97 * @param fragment - the byte array containing the
100 protected byte[] encrypt(byte type, byte[] fragment) {
101 return encrypt(type, fragment, 0, fragment.length);
108 * @param fragment - the byte array containing the
114 (byte type, byte[] fragment, int offset, int len);
117 * Retrieves the fragment of the Plaintext structure of
120 * @param fragment - the byte array containing the
123 protected byte[] decrypt(byte type, byte[] fragment) {
124 return decrypt(type, fragment, 0, fragment.length)
    [all...]
SSLRecordProtocol.java 56 * Maximum length of allowed plain data fragment
61 * Maximum length of allowed compressed data fragment
67 * Maximum length of allowed ciphered data fragment
185 * @param fragment: byte[]
189 byte[] fragment = dataStream.getData(MAX_DATA_LENGTH);
190 return wrap(content_type, fragment, 0, fragment.length);
197 * @param fragment: byte[]
201 byte[] fragment, int offset, int len) {
203 logger.println("SSLRecordProtocol.wrap: TLSPlaintext.fragment["
    [all...]
  /external/webkit/WebCore/editing/
MoveSelectionCommand.h 37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartMove = false)
39 return adoptRef(new MoveSelectionCommand(fragment, position, smartMove));
MoveSelectionCommand.cpp 34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartMove)
35 : CompositeEditCommand(position.node()->document()), m_fragment(fragment), m_position(position), m_smartMove(smartMove)
ReplaceSelectionCommand.h 38 static PassRefPtr<ReplaceSelectionCommand> create(Document* document, PassRefPtr<DocumentFragment> fragment,
42 return adoptRef(new ReplaceSelectionCommand(document, fragment, selectReplacement, smartReplace, matchStyle, preventNesting, movingParagraph, action));
  /external/opencore/protocols/rtp_payload_parser/rfc_3640/src/
rfc3640_payload_parser.cpp 161 //Establish a pointer to the payload fragment for iterating past the
163 BitStreamParser fragment((uint8*)input.vfragments[fragmentNumber].getMemFragPtr(),
173 headersLength = fragment.ReadUInt16() + BITS_PER_UINT16;
188 while (fragment.BitsRead() < headersLength)
196 size = fragment.ReadBits(sizeLength);
206 index = fragment.ReadBits(indexLength);
210 indexDelta = fragment.ReadBits(indexDeltaLength);
219 CTSFlag = fragment.ReadBits(1);
222 CTSDelta = fragment.ReadBits(CTSDeltaLength);
228 DTSFlag = fragment.ReadBits(1)
    [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...]
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...]
  /external/webkit/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();
  /external/opencore/protocols/systems/tools/general/common/src/
media_fragment.cpp 38 // Default fragment allocator. Just malloc's and free's memory as needed.
50 OSCL_EXPORT_REF MediaFragment* DefFragmentAllocator::allocate_fragment(MediaFragment* fragment,
53 return OSCL_NEW(MediaFragment, (*fragment, ptr, len));
57 OSCL_EXPORT_REF int32 DefFragmentAllocator::deallocate_fragment(MediaFragment* fragment)
59 OSCL_DELETE(fragment);
74 // Buffer fragment pool. Memory is pre-allocated at constructor time.
136 OSCL_EXPORT_REF MediaFragment* PoolFragmentAllocator::allocate_fragment(MediaFragment* fragment,
140 return OSCL_NEW(MediaFragment, (*fragment, ptr, len));
143 OSCL_EXPORT_REF int32 PoolFragmentAllocator::deallocate_fragment(MediaFragment* fragment)
145 fragment->Set(NULL, 0, NULL)
    [all...]
media_packet.cpp 25 OSCL_EXPORT_REF MediaFragment* MediaPacket::GetMediaFragment(int32 idx, MediaFragment& fragment)
30 fragment.Set(*GetFragment(idx), state);
31 return &fragment;
35 OSCL_EXPORT_REF BufFragStatusClass::status_t MediaPacket::AddMediaFragment(MediaFragment* fragment, int32 location_offset)
37 return AddFragment(*fragment->GetFragment(), fragment->GetState(), location_offset);
129 // Retrieve memory fragment to write to
141 // update the filled length of the fragment
177 // add fragment to packet and send
  /external/webkit/WebCore/platform/win/
DragDataWin.cpp 135 if (PassRefPtr<DocumentFragment> fragment = fragmentFromFilenames(doc, m_platformDragData))
136 return fragment;
139 if (PassRefPtr<DocumentFragment> fragment = fragmentFromHTML(doc, m_platformDragData))
140 return fragment;
  /dalvik/libcore/luni/src/main/java/java/net/
URI.java 64 private transient String fragment; field in class:URI
95 * {@code [scheme:]scheme-specific-part[#fragment]}
102 * the fragment part of the URI.
132 * {@code [scheme:][user-info@]host[:port][path][?query][#fragment]}
148 * @param fragment
149 * the fragment part of the URI.
155 String path, String query, String fragment)
159 && query == null && fragment == null) {
211 if (fragment != null) {
214 uri.append(quoteComponent(fragment, allLegal))
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
UriTest.java 40 parcelAndUnparcel(Uri.fromParts("foo", "bob lee", "fragment"));
46 .fragment("foo")
80 Uri b = a.buildUpon().fragment("new").build();
87 .fragment("tee")
89 b = a.buildUpon().fragment("new").build();
243 .fragment("tee")
511 Uri withFragment = uri.buildUpon().fragment("top").build();
608 testHierarchical("http", "google.com", "/p1/p2", "query", "fragment");
611 testHierarchical("http", "google.com", "/p1/p2", null, "fragment");
612 testHierarchical("http", "google.com", "", null, "fragment");
    [all...]
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 43 parcelAndUnparcel(Uri.fromParts("foo", "bob lee", "fragment"));
49 .fragment("foo")
142 .fragment("tee")
192 Uri b = a.buildUpon().fragment("new").build();
203 .fragment("tee")
205 Uri b = a.buildUpon().fragment("new").build();
386 Uri withFragment = uri.buildUpon().fragment("top").build();
392 testHierarchical("http", "google.com", "/p1/p2", "query", "fragment");
395 testHierarchical("http", "google.com", "/p1/p2", null, "fragment");
396 testHierarchical("http", "google.com", "", null, "fragment");
    [all...]
  /external/opencore/baselibs/media_data_structures/src/
access_unit.cpp 62 MediaStatusClass::status_t AccessUnit::AddLocalAUFrag(BufferFragment& fragment,
65 return rep->AddLocalAUFrag(fragment, location_offset);
69 MediaStatusClass::status_t AccessUnit::AddCodecInfo(BufferFragment& fragment)
71 return rep->AddCodecInfo(fragment);
80 MediaStatusClass::status_t AccessUnit::GetLocalFragment(BufferFragment& fragment)
82 return rep->GetLocalFragment(fragment);
access_unit.h 46 OSCL_IMPORT_REF MediaStatusClass::status_t AddCodecInfo(BufferFragment& fragment);
56 MediaStatusClass::status_t GetLocalFragment(BufferFragment& fragment);
58 MediaStatusClass::status_t AddLocalAUFrag(BufferFragment& fragment, int32 location_offset = APPEND_MEDIA_AT_END);
  /external/opencore/protocols/systems/tools/general/common/include/
media_fragment.h 20 /* file contents : media fragment class & utilities */
154 /* Default media fragment and allocator. */
160 OSCL_IMPORT_REF virtual MediaFragment* allocate_fragment(MediaFragment* fragment,
162 OSCL_IMPORT_REF virtual int32 deallocate_fragment(MediaFragment* fragment) = 0;
177 OSCL_IMPORT_REF virtual MediaFragment* allocate_fragment(MediaFragment* fragment,
179 OSCL_IMPORT_REF virtual int32 deallocate_fragment(MediaFragment* fragment);
185 /* Media fragment pool and allocator. */
225 OSCL_IMPORT_REF virtual MediaFragment* allocate_fragment(MediaFragment* fragment,
227 OSCL_IMPORT_REF virtual int32 deallocate_fragment(MediaFragment* fragment);
media_packet.h 41 OSCL_IMPORT_REF BufFragStatusClass::status_t AddMediaFragment(MediaFragment* fragment, int32 location_offset = APPEND_MEDIA_AT_END);
43 OSCL_IMPORT_REF MediaFragment* GetMediaFragment(int32 idx, MediaFragment& fragment);
  /external/webkit/WebCore/platform/chromium/
PasteboardChromium.cpp 171 RefPtr<DocumentFragment> fragment = local
173 if (fragment)
174 return fragment.release();
182 RefPtr<DocumentFragment> fragment = local
184 if (fragment)
185 return fragment.release();
  /external/webkit/WebCore/platform/qt/
PasteboardQt.cpp 106 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), html, "", FragmentScriptingNotAllowed); local
107 if (fragment)
108 return fragment.release();
114 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), mimeData->text()); local
115 if (fragment)
116 return fragment.release();
  /external/webkit/WebCore/platform/wince/
PasteboardWince.cpp 276 PassRefPtr<DocumentFragment> fragment = fragmentFromCF_HTML(frame->document(), cf_html); local
277 if (fragment)
278 return fragment;
292 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str); local
293 if (fragment)
294 return fragment.release();
309 RefPtr<DocumentFragment> fragment = createFragmentFromText(context.get(), str); local
310 if (fragment)
311 return fragment.release();
  /frameworks/base/core/java/android/net/
Uri.java 35 * Immutable URI reference. A URI reference includes a URI and a fragment, the
87 components and fragment identifier in order to determine what
172 * scheme separator ':' and the fragment separator '#'. If this is a
183 * scheme separator ':' and the fragment separator '#'. If this is a
268 * the query separator ('?') and before the fragment separator ('#'). This
278 * the query separator ('?') and before the fragment separator ('#'). This
287 * Gets the decoded fragment part of this URI, everything after the '#'.
289 * @return the decoded fragment or null if there isn't one
294 * Gets the encoded fragment part of this URI, everything after the '#'.
296 * @return the encoded fragment or null if there isn't on
620 private Part fragment; field in class:Uri.StringUri
784 private final Part fragment; field in class:Uri.OpaqueUri
1092 private final Part fragment; field in class:Uri.HierarchicalUri
1272 private Part fragment; field in class:Uri.Builder
1401 Builder fragment(Part fragment) { method in class:Uri.Builder
1409 public Builder fragment(String fragment) { method in class:Uri.Builder
    [all...]
  /external/webkit/WebCore/xml/
XSLTProcessor.cpp 104 RefPtr<DocumentFragment> fragment = DocumentFragment::create(outputDoc); local
107 parseHTMLDocumentFragment(sourceString, fragment.get());
109 fragment->addChild(Text::create(outputDoc, sourceString));
111 bool successfulParse = parseXMLDocumentFragment(sourceString, fragment.get(), outputDoc->documentElement());
118 return fragment;
  /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...]

Completed in 1101 milliseconds

1 2 3 4 5