HomeSort by relevance Sort by last modified time
    Searched full:pack (Results 226 - 250 of 1834) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/net/
DatagramSocketImpl.java 184 * Receives data and stores it in the supplied datagram packet {@code pack}.
189 * @param pack
194 protected abstract void receive(DatagramPacket pack) throws IOException;
197 * Sends the given datagram packet {@code pack}. The packet contains the
200 * @param pack
205 protected abstract void send(DatagramPacket pack) throws IOException;
264 * @param pack
270 protected abstract int peekData(DatagramPacket pack) throws IOException;
  /external/chromium/chrome/common/extensions/docs/static/
packaging.html 51 Click the <b>Pack extension</b> button.
110 Click the <b>Pack extension</b> button.
142 Use the <code>--pack-extension</code> flag
144 Use <code>--pack-extension-key</code>
150 chrome.exe --pack-extension=c:\myext --pack-extension-key=c:\myext.pem
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
packaging.html 54 Click the <b>Pack extension</b> button.
112 Click the <b>Pack extension</b> button.
175 Use the <code>--pack-extension</code> flag
177 Use <code>--pack-extension-key</code>
183 chrome.exe --pack-extension=C:\myext --pack-extension-key=C:\myext.pem
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pixel.c 150 struct gl_pixelstore_attrib *pack, GLsizei mapsize,
159 pack->BufferObj);
170 if (_mesa_is_bufferobj(pack->BufferObj)) {
354 if (!validate_pbo_access(ctx, &ctx->Pack, mapsize, GL_INTENSITY,
359 values = (GLfloat *) _mesa_map_pbo_dest(ctx, &ctx->Pack, values);
361 if (_mesa_is_bufferobj(ctx->Pack.BufferObj)) {
378 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
405 if (!validate_pbo_access(ctx, &ctx->Pack, mapsize, GL_INTENSITY,
410 values = (GLuint *) _mesa_map_pbo_dest(ctx, &ctx->Pack, values);
412 if (_mesa_is_bufferobj(ctx->Pack.BufferObj))
    [all...]
  /external/clang/include/clang/Sema/
Template.h 207 /// For a parameter pack, the local instantiation scope may contain a
227 /// \brief If non-NULL, the template parameter pack that has been
232 /// explicitly-specified template arguments in that pack.
321 /// \returns A pointer to the declaration or argument pack of declarations
331 /// \brief Note that the given parameter pack has been partially substituted
335 /// \param Pack The parameter pack, which will always be a template
336 /// parameter pack.
339 /// for this parameter pack.
342 /// arguments provided for this parameter pack
    [all...]
  /external/mesa3d/src/mesa/main/
pixel.c 150 struct gl_pixelstore_attrib *pack, GLsizei mapsize,
159 pack->BufferObj);
170 if (_mesa_is_bufferobj(pack->BufferObj)) {
354 if (!validate_pbo_access(ctx, &ctx->Pack, mapsize, GL_INTENSITY,
359 values = (GLfloat *) _mesa_map_pbo_dest(ctx, &ctx->Pack, values);
361 if (_mesa_is_bufferobj(ctx->Pack.BufferObj)) {
378 _mesa_unmap_pbo_dest(ctx, &ctx->Pack);
405 if (!validate_pbo_access(ctx, &ctx->Pack, mapsize, GL_INTENSITY,
410 values = (GLuint *) _mesa_map_pbo_dest(ctx, &ctx->Pack, values);
412 if (_mesa_is_bufferobj(ctx->Pack.BufferObj))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 95 self.bframe.pack(anchor="w")
111 b.pack(side="left")
114 self.cframe.pack(side="left")
140 self.status.pack(anchor="w")
142 self.error.pack(anchor="w", fill="x")
146 self.fstack.pack(expand=1, fill="both")
148 self.flocals.pack(expand=1, fill="both")
150 self.fglobals.pack(expand=1, fill="both")
421 self.frame.pack(expand=1, fill="both")
423 self.label.pack(fill="x"
    [all...]
ScrolledList.py 11 self.frame.pack(fill="both", expand=1)
13 self.vbar.pack(side="right", fill="y")
18 listbox.pack(expand=1, fill="both")
ToolTip.py 54 label.pack()
75 listbox.pack()
83 b.pack()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 95 self.bframe.pack(anchor="w")
111 b.pack(side="left")
114 self.cframe.pack(side="left")
140 self.status.pack(anchor="w")
142 self.error.pack(anchor="w", fill="x")
146 self.fstack.pack(expand=1, fill="both")
148 self.flocals.pack(expand=1, fill="both")
150 self.fglobals.pack(expand=1, fill="both")
421 self.frame.pack(expand=1, fill="both")
423 self.label.pack(fill="x"
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 3 import org.bouncycastle.crypto.util.Pack;
68 // X[xOff] = Pack.bigEndianToInt(in, inOff);
99 Pack.intToBigEndian(H1, out, outOff);
100 Pack.intToBigEndian(H2, out, outOff + 4);
101 Pack.intToBigEndian(H3, out, outOff + 8);
102 Pack.intToBigEndian(H4, out, outOff + 12);
103 Pack.intToBigEndian(H5, out, outOff + 16);
  /external/chromium_org/ui/base/resource/
data_pack.cc 25 #pragma pack(push,2)
43 #pragma pack(pop)
102 DLOG(ERROR) << "Data pack file corruption: incomplete file header.";
114 LOG(ERROR) << "Bad data pack version: got " << version << ", expected "
128 LOG(ERROR) << "Bad data pack text encoding: got " << text_encoding_type_
140 LOG(ERROR) << "Data pack file corruption: too short for number of "
153 LOG(ERROR) << "Entry #" << i << " in data pack points off end of file. "
  /external/clang/include/clang/AST/
TemplateBase.h 60 /// The template argument is a pack expansion of a template name that was
66 /// The template argument is actually a parameter pack. Arguments are stored
68 Pack
154 /// \brief Construct a template argument that is a template pack expansion.
184 /// \brief Construct a template argument that is a template argument pack.
188 TemplateArgument(const TemplateArgument *Args, unsigned NumArgs) : Kind(Pack){
197 /// \brief Create a new template argument pack by copying the given set of
219 /// parameter pack.
222 /// \brief Determine whether this template argument is a pack expansion.
258 /// is a pack expansion, return the pattern as a template name
    [all...]
TemplateName.h 40 /// template names or an already-substituted template template parameter pack.
113 /// parameter pack.
115 /// This kind of template names occurs when the parameter pack has been
116 /// provided with a template template argument pack in a context where its
117 /// enclosing pack expansion could not be fully expanded.
131 /// \brief Retrieve the template template parameter pack being substituted.
136 /// \brief Retrieve the template template argument pack with which this
203 /// \brief A template template parameter pack that has been substituted for
204 /// a template template argument pack, but has not yet been expanded into
262 /// \brief Retrieve the substituted template template parameter pack, if
    [all...]
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 1 // RUN: %clang_cc1 -verify -std=c++11 -Wno-anonymous-pack-parens %s
82 int c(Ts ...&); // expected-error {{'...' must be innermost component of anonymous pack declaration}}
83 int d(Ts ...(...&...)); // expected-error 2{{'...' must be innermost component of anonymous pack declaration}}
84 int e(Ts ...*[]); // expected-error {{'...' must be innermost component of anonymous pack declaration}}
85 int f(Ts ...(...*)()); // expected-error 2{{'...' must be innermost component of anonymous pack declaration}}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xdrlib.py 40 """Pack various data representations into a buffer."""
54 self.__buf.write(struct.pack('>L', x))
57 self.__buf.write(struct.pack('>l', x))
72 try: self.__buf.write(struct.pack('>f', x))
77 try: self.__buf.write(struct.pack('>d', x))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xdrlib.py 40 """Pack various data representations into a buffer."""
54 self.__buf.write(struct.pack('>L', x))
57 self.__buf.write(struct.pack('>l', x))
72 try: self.__buf.write(struct.pack('>f', x))
77 try: self.__buf.write(struct.pack('>d', x))
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext3DImagePacking.cpp 560 void pack(const SourceType*, DstType*, unsigned) function in namespace:WebCore::__anon10841
565 template<> void pack<GraphicsContext3D::DataFormatA8, GraphicsContext3D::AlphaDoNothing, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
574 template<> void pack<GraphicsContext3D::DataFormatR8, GraphicsContext3D::AlphaDoNothing, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
583 template<> void pack<GraphicsContext3D::DataFormatR8, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
595 template<> void pack<GraphicsContext3D::DataFormatR8, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
606 template<> void pack<GraphicsContext3D::DataFormatRA8, GraphicsContext3D::AlphaDoNothing, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
616 template<> void pack<GraphicsContext3D::DataFormatRA8, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
629 template<> void pack<GraphicsContext3D::DataFormatRA8, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
641 template<> void pack<GraphicsContext3D::DataFormatRGB8, GraphicsContext3D::AlphaDoNothing, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
652 template<> void pack<GraphicsContext3D::DataFormatRGB8, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint8_t>(const (…) function in namespace:WebCore::__anon10841
668 template<> void pack<GraphicsContext3D::DataFormatRGB8, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
684 template<> void pack<GraphicsContext3D::DataFormatRGBA8, GraphicsContext3D::AlphaDoNothing, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
689 template<> void pack<GraphicsContext3D::DataFormatRGBA8, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
706 template<> void pack<GraphicsContext3D::DataFormatRGBA8, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint8_t>(const uint8_t* source, uint8_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
722 template<> void pack<GraphicsContext3D::DataFormatRGBA4444, GraphicsContext3D::AlphaDoNothing, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
737 template<> void pack<GraphicsContext3D::DataFormatRGBA4444, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
754 template<> void pack<GraphicsContext3D::DataFormatRGBA4444, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
770 template<> void pack<GraphicsContext3D::DataFormatRGBA5551, GraphicsContext3D::AlphaDoNothing, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
785 template<> void pack<GraphicsContext3D::DataFormatRGBA5551, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
802 template<> void pack<GraphicsContext3D::DataFormatRGBA5551, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
818 template<> void pack<GraphicsContext3D::DataFormatRGB565, GraphicsContext3D::AlphaDoNothing, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
832 template<> void pack<GraphicsContext3D::DataFormatRGB565, GraphicsContext3D::AlphaDoPremultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
848 template<> void pack<GraphicsContext3D::DataFormatRGB565, GraphicsContext3D::AlphaDoUnmultiply, uint8_t, uint16_t>(const uint8_t* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
863 template<> void pack<GraphicsContext3D::DataFormatRGB32F, GraphicsContext3D::AlphaDoNothing, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
874 template<> void pack<GraphicsContext3D::DataFormatRGB32F, GraphicsContext3D::AlphaDoPremultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
886 template<> void pack<GraphicsContext3D::DataFormatRGB32F, GraphicsContext3D::AlphaDoUnmultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
899 template<> void pack<GraphicsContext3D::DataFormatRGBA32F, GraphicsContext3D::AlphaDoNothing, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
904 template<> void pack<GraphicsContext3D::DataFormatRGBA32F, GraphicsContext3D::AlphaDoPremultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
917 template<> void pack<GraphicsContext3D::DataFormatRGBA32F, GraphicsContext3D::AlphaDoUnmultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
930 template<> void pack<GraphicsContext3D::DataFormatA32F, GraphicsContext3D::AlphaDoNothing, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
939 template<> void pack<GraphicsContext3D::DataFormatR32F, GraphicsContext3D::AlphaDoNothing, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
948 template<> void pack<GraphicsContext3D::DataFormatR32F, GraphicsContext3D::AlphaDoPremultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
958 template<> void pack<GraphicsContext3D::DataFormatR32F, GraphicsContext3D::AlphaDoUnmultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
968 template<> void pack<GraphicsContext3D::DataFormatRA32F, GraphicsContext3D::AlphaDoNothing, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
978 template<> void pack<GraphicsContext3D::DataFormatRA32F, GraphicsContext3D::AlphaDoPremultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
989 template<> void pack<GraphicsContext3D::DataFormatRA32F, GraphicsContext3D::AlphaDoUnmultiply, float, float>(const float* source, float* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1000 template<> void pack<GraphicsContext3D::DataFormatRGBA16F, GraphicsContext3D::AlphaDoNothing, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1012 template<> void pack<GraphicsContext3D::DataFormatRGBA16F, GraphicsContext3D::AlphaDoPremultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1025 template<> void pack<GraphicsContext3D::DataFormatRGBA16F, GraphicsContext3D::AlphaDoUnmultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1038 template<> void pack<GraphicsContext3D::DataFormatRGB16F, GraphicsContext3D::AlphaDoNothing, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1049 template<> void pack<GraphicsContext3D::DataFormatRGB16F, GraphicsContext3D::AlphaDoPremultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1061 template<> void pack<GraphicsContext3D::DataFormatRGB16F, GraphicsContext3D::AlphaDoUnmultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1073 template<> void pack<GraphicsContext3D::DataFormatRA16F, GraphicsContext3D::AlphaDoNothing, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1083 template<> void pack<GraphicsContext3D::DataFormatRA16F, GraphicsContext3D::AlphaDoPremultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1094 template<> void pack<GraphicsContext3D::DataFormatRA16F, GraphicsContext3D::AlphaDoUnmultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1105 template<> void pack<GraphicsContext3D::DataFormatR16F, GraphicsContext3D::AlphaDoNothing, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1114 template<> void pack<GraphicsContext3D::DataFormatR16F, GraphicsContext3D::AlphaDoPremultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1124 template<> void pack<GraphicsContext3D::DataFormatR16F, GraphicsContext3D::AlphaDoUnmultiply, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
1134 template<> void pack<GraphicsContext3D::DataFormatA16F, GraphicsContext3D::AlphaDoNothing, float, uint16_t>(const float* source, uint16_t* destination, unsigned pixelsPerRow) function in namespace:WebCore::__anon10841
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
DatagramSocketImplTest.java 116 protected int peekData(DatagramPacket pack) throws IOException {
121 protected void receive(DatagramPacket pack) throws IOException {
126 protected void send(DatagramPacket pack) throws IOException {
  /external/chromium_org/chrome/browser/chromeos/policy/
app_pack_updater.h 45 // Returns true if the ExternalLoader for the app pack has already been
70 // Called when the app pack device setting changes.
77 // it with an updated list of app-pack extensions.
  /external/chromium_org/chrome/common/
partial_circular_buffer.h 45 #pragma pack(push)
46 #pragma pack(4)
53 #pragma pack(pop)
  /external/clang/lib/Sema/
SemaAttr.cpp 25 // Pragma 'pack' and 'options align'
39 /// pack.
46 /// Stack - Entries in the #pragma pack stack, consisting of saved
116 // If there is no pack context, we don't need any attributes.
195 // pack(0) is like pack(), which just works out since that is what
215 case Sema::PPK_Default: // pack([n])
219 case Sema::PPK_Show: // pack(show)
232 case Sema::PPK_Push: // pack(push [, id] [, [n])
239 case Sema::PPK_Pop: // pack(pop [, id] [, n]
    [all...]
  /external/eigen/cmake/
CMakeDetermineVSServicePack.cmake 2 # Visual Studio service pack in use.
59 # A function to call to determine the Visual Studio service pack
98 "The Visual Studio Release with Service Pack")
  /external/libvorbis/lib/
backends.h 31 void (*pack) (vorbis_info_floor *,oggpack_buffer *); member in struct:__anon21115
89 void (*pack) (vorbis_info_residue *,oggpack_buffer *); member in struct:__anon21118
123 void (*pack) (vorbis_info *,vorbis_info_mapping *, member in struct:__anon21119
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c     [all...]

Completed in 2093 milliseconds

1 2 3 4 5 6 7 8 91011>>