HomeSort by relevance Sort by last modified time
    Searched defs:unpack (Results 1 - 25 of 40) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 111 def unpack( *data ) method in class:ANTLR3.DFA
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 184 def unpack(cls, string): member in class:DFA
185 """@brief Unpack the runlength encoded table data.
213 unpack = classmethod(unpack) variable in class:DFA
  /libcore/luni/src/main/java/java/util/jar/
Pack200.java 243 static final String DEFLATE_HINT = "unpack.deflate.hint";
258 static final String PROGRESS = "unpack.progress";
273 * Unpack the specified stream to the specified JAR output stream.
282 void unpack(InputStream in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
285 * Unpack the contents of the specified {@code File} to the specified
295 void unpack(File in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
PackedString.java 70 public Map<String, String> unpack() { method in class:PackedString
Address.java 78 // delimiters are chars that do not appear in an email address, used by pack/unpack
360 * Returns exactly the same result as Address.toString(Address.unpack(packedList)).
363 return toString(unpack(packedList));
375 * The same as Address.unpack(packedList)[0] for non-empty list.
379 Address[] array = unpack(packedList);
389 return toHeader(unpack(packedList));
396 * @return array of addresses resulting from unpack
398 public static Address[] unpack(String addressList) { method in class:Address
407 // Otherwise, do backward-compatibile unpack
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 5 unpack(desc) does the reverse
131 def unpack(desc, formodulename=""): function
132 """Unpack an AE descriptor to a python object"""
143 l.append(unpack(item, formodulename))
149 d[keyword] = unpack(item, formodulename)
153 return mkaetext(unpack(record, formodulename))
158 return struct.unpack('b', desc.data)[0]
174 return struct.unpack('d', data)[0]
181 return mkinsertionloc(unpack(record, formodulename))
184 script, language = struct.unpack('hh', desc.data[:4]
    [all...]
aetools.py 4 unpack(desc) does the reverse
36 from aepack import packkey, pack, unpack, coerce, AEDescType namespace
43 # Special code to unpack an AppleEvent (which is *not* a disguised record!)
74 parameters['----'] = unpack(dirobj, formodulename)
82 parameters['errn'] = unpack(dirobj, formodulename)
87 parameters[key] = unpack(ae.AEGetParamDesc(key, '****'), formodulename)
96 attributes[key] = unpack(desc, formodulename)
219 """Send a pre-created appleevent, await the reply and unpack it"""
228 """Send an appleevent given code/subcode/pars/attrs and unpack the reply"""
pimp.py 197 def unpack(self, archive, output=None, package=None): member in class:PimpUnpacker
206 """Unpack archives by calling a Unix utility"""
210 def unpack(self, archive, output=None, package=None): member in class:PimpCommandUnpacker
213 return "unpack command failed"
216 """Unpack tarfiles using the builtin tarfile module"""
220 def unpack(self, archive, output=None, package=None): member in class:PimpTarUnpacker
705 """Unpack a downloaded package archive."""
716 rv = unpacker.unpack(self.archiveFilename, output=output)
726 """Download, unpack and install a single package.
739 return "%s: unpack: %s" % (self.fullname(), msg
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_drawpix.c 55 const struct gl_pixelstore_attrib *unpack,
59 _mesa_image_address2d(unpack, pixels, width,
61 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
102 const struct gl_pixelstore_attrib *unpack,
106 _mesa_image_address2d(unpack, pixels, width,
109 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
151 const struct gl_pixelstore_attrib *unpack,
155 _mesa_image_address2d(unpack, pixels, width,
158 _mesa_image_row_stride(unpack, width, format, type);
200 struct gl_pixelstore_attrib unpack; local
    [all...]
  /external/libvorbis/lib/
backends.h 32 vorbis_info_floor *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon21115
90 vorbis_info_residue *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon21118
125 vorbis_info_mapping *(*unpack)(vorbis_info *,oggpack_buffer *); member in struct:__anon21119
  /external/mesa3d/src/mesa/swrast/
s_drawpix.c 55 const struct gl_pixelstore_attrib *unpack,
59 _mesa_image_address2d(unpack, pixels, width,
61 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
102 const struct gl_pixelstore_attrib *unpack,
106 _mesa_image_address2d(unpack, pixels, width,
109 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
151 const struct gl_pixelstore_attrib *unpack,
155 _mesa_image_address2d(unpack, pixels, width,
158 _mesa_image_row_stride(unpack, width, format, type);
200 struct gl_pixelstore_attrib unpack; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ParametricEditor.java 131 unpack(mViewID, mLayoutID); method
Editor.java 149 protected void unpack(int viewid, int layoutid) { method in class:Editor
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext3DImagePacking.cpp 252 void unpack(const SourceType*, DstType*, unsigned) function in namespace:WebCore::__anon10841
257 template<> void unpack<GraphicsContext3D::DataFormatRGB8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
269 template<> void unpack<GraphicsContext3D::DataFormatBGR8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
281 template<> void unpack<GraphicsContext3D::DataFormatARGB8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
293 template<> void unpack<GraphicsContext3D::DataFormatABGR8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
305 template<> void unpack<GraphicsContext3D::DataFormatBGRA8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
323 template<> void unpack<GraphicsContext3D::DataFormatRGBA5551, uint16_t, uint8_t>(const uint16_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
342 template<> void unpack<GraphicsContext3D::DataFormatRGBA4444, uint16_t, uint8_t>(const uint16_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
362 template<> void unpack<GraphicsContext3D::DataFormatRGB565, uint16_t, uint8_t>(const uint16_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
381 template<> void unpack<GraphicsContext3D::DataFormatR8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, un (…) function in namespace:WebCore::__anon10841
393 template<> void unpack<GraphicsContext3D::DataFormatRA8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
405 template<> void unpack<GraphicsContext3D::DataFormatAR8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
417 template<> void unpack<GraphicsContext3D::DataFormatA8, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
429 template<> void unpack<GraphicsContext3D::DataFormatRGBA8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
442 template<> void unpack<GraphicsContext3D::DataFormatBGRA8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
455 template<> void unpack<GraphicsContext3D::DataFormatABGR8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
468 template<> void unpack<GraphicsContext3D::DataFormatARGB8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
481 template<> void unpack<GraphicsContext3D::DataFormatRGB8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
494 template<> void unpack<GraphicsContext3D::DataFormatBGR8, uint8_t, float>(const uint8_t* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
507 template<> void unpack<GraphicsContext3D::DataFormatRGB32F, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
519 template<> void unpack<GraphicsContext3D::DataFormatR32F, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
531 template<> void unpack<GraphicsContext3D::DataFormatRA32F, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
543 template<> void unpack<GraphicsContext3D::DataFormatA32F, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Address.java 75 // delimiters are chars that do not appear in an email address, used by pack/unpack
390 * Returns exactly the same result as Address.toString(Address.unpack(packedList)).
393 return toString(unpack(packedList));
405 * The same as Address.unpack(packedList)[0] for non-empty list.
409 Address[] array = unpack(packedList);
419 return toHeader(unpack(packedList));
425 * @return array of addresses resulting from unpack
427 public static Address[] unpack(String addressList) { method in class:Address
467 * and parse. Packed lists can be unpacked with unpack().
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_texture.c 527 const struct gl_pixelstore_attrib *unpack)
530 _mesa_store_teximage(ctx, dims, texImage, format, type, pixels, unpack);
798 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking; local
801 unpack.Invert = GL_TRUE;
825 &unpack);
    [all...]
st_cb_drawpixels.c 481 const struct gl_pixelstore_attrib *unpack,
501 pixels = _mesa_map_pbo_source(ctx, unpack, pixels);
508 _mesa_unmap_pbo_source(ctx, unpack);
541 unpack);
553 _mesa_unmap_pbo_source(ctx, unpack);
831 const struct gl_pixelstore_attrib *unpack,
841 struct gl_pixelstore_attrib clippedUnpack = *unpack;
1338 struct gl_pixelstore_attrib pack, unpack; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.c 527 const struct gl_pixelstore_attrib *unpack)
530 _mesa_store_teximage(ctx, dims, texImage, format, type, pixels, unpack);
798 struct gl_pixelstore_attrib unpack = ctx->DefaultPacking; local
801 unpack.Invert = GL_TRUE;
825 &unpack);
    [all...]
st_cb_drawpixels.c 481 const struct gl_pixelstore_attrib *unpack,
501 pixels = _mesa_map_pbo_source(ctx, unpack, pixels);
508 _mesa_unmap_pbo_source(ctx, unpack);
541 unpack);
553 _mesa_unmap_pbo_source(ctx, unpack);
831 const struct gl_pixelstore_attrib *unpack,
841 struct gl_pixelstore_attrib clippedUnpack = *unpack;
1338 struct gl_pixelstore_attrib pack, unpack; local
    [all...]
  /packages/apps/Email/src/com/android/email/
LegacyConversions.java 342 Address[] from = Address.unpack(localMessage.mFrom);
353 message.setRecipients(RecipientType.TO, Address.unpack(localMessage.mTo));
354 message.setRecipients(RecipientType.CC, Address.unpack(localMessage.mCc));
355 message.setRecipients(RecipientType.BCC, Address.unpack(localMessage.mBcc));
356 message.setReplyTo(Address.unpack(localMessage.mReplyTo));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
teximage.c 2926 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack; local
    [all...]
format_unpack.c 84 /* Unpack, returning GLfloat colors */
1623 unpack_rgba_func unpack = get_unpack_rgba_function(format); local
2844 unpack_rgba_func unpack = get_unpack_rgba_function(format); local
2943 unpack_float_z_func unpack; local
3047 unpack_uint_z_func unpack; local
    [all...]
  /external/mesa3d/src/mesa/main/
teximage.c 2926 const struct gl_pixelstore_attrib *unpack = &ctx->Unpack; local
    [all...]
format_unpack.c 84 /* Unpack, returning GLfloat colors */
1623 unpack_rgba_func unpack = get_unpack_rgba_function(format); local
2844 unpack_rgba_func unpack = get_unpack_rgba_function(format); local
2943 unpack_float_z_func unpack; local
3047 unpack_uint_z_func unpack; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/lib/
pdebuild-ant.jar 

Completed in 1276 milliseconds

1 2