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

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/browser/themes/
browser_theme_pack_unittest.cc 148 void VerifyStarGazing(BrowserThemePack* pack) {
151 EXPECT_TRUE(pack->GetColor(ThemeService::COLOR_BOOKMARK_TEXT,
155 EXPECT_TRUE(pack->GetColor(ThemeService::COLOR_NTP_BACKGROUND,
161 EXPECT_TRUE(pack->GetTint(ThemeService::TINT_BUTTONS, &actual));
167 EXPECT_TRUE(pack->GetDisplayProperty(
172 EXPECT_TRUE(pack->HasCustomImage(IDR_THEME_BUTTON_BACKGROUND));
173 EXPECT_TRUE(pack->HasCustomImage(IDR_THEME_FRAME));
174 EXPECT_TRUE(pack->HasCustomImage(IDR_THEME_NTP_BACKGROUND));
175 EXPECT_TRUE(pack->HasCustomImage(IDR_THEME_TAB_BACKGROUND));
176 EXPECT_TRUE(pack->HasCustomImage(IDR_THEME_TOOLBAR))
423 scoped_refptr<BrowserThemePack> pack = local
    [all...]
  /external/pixman/pixman/
pixman.c 50 #define PACK(neither, src, dest, both) \
59 PACK (CLEAR, CLEAR, CLEAR, CLEAR),
60 PACK (SRC, SRC, SRC, SRC),
61 PACK (DST, DST, DST, DST),
62 PACK (OVER, SRC, OVER, SRC),
63 PACK (OVER_REVERSE, OVER_REVERSE, DST, DST),
64 PACK (IN, IN, SRC, SRC),
65 PACK (IN_REVERSE, DST, IN_REVERSE, DST),
66 PACK (OUT, OUT, CLEAR, CLEAR),
67 PACK (OUT_REVERSE, CLEAR, OUT_REVERSE, CLEAR)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pbo.c 67 const struct gl_pixelstore_attrib *pack,
80 if (!_mesa_is_bufferobj(pack->BufferObj)) {
85 size = pack->BufferObj->Size;
106 start = _mesa_image_offset(dimensions, pack, width, height,
110 end = _mesa_image_offset(dimensions, pack, width, height,
221 ASSERT(unpack != &ctx->Pack); /* catch pack/unpack mismatch */
238 const struct gl_pixelstore_attrib *pack,
243 if (_mesa_is_bufferobj(pack->BufferObj)) {
244 /* pack into PBO *
    [all...]
texgetimage.c 42 #include "pack.h"
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
106 _mesa_pack_depth_span(ctx, width, dest, type, depthRow, &ctx->Pack);
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
151 if (ctx->Pack.SwapBytes) {
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
201 if (!ctx->Pack.SwapBytes)
204 else if (ctx->Pack.SwapBytes) {
240 /* Decompress into temp float buffer, then pack into user buffer */
300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels
    [all...]
  /external/mesa3d/src/mesa/main/
pbo.c 67 const struct gl_pixelstore_attrib *pack,
80 if (!_mesa_is_bufferobj(pack->BufferObj)) {
85 size = pack->BufferObj->Size;
106 start = _mesa_image_offset(dimensions, pack, width, height,
110 end = _mesa_image_offset(dimensions, pack, width, height,
221 ASSERT(unpack != &ctx->Pack); /* catch pack/unpack mismatch */
238 const struct gl_pixelstore_attrib *pack,
243 if (_mesa_is_bufferobj(pack->BufferObj)) {
244 /* pack into PBO *
    [all...]
texgetimage.c 42 #include "pack.h"
101 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
106 _mesa_pack_depth_span(ctx, width, dest, type, depthRow, &ctx->Pack);
146 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
151 if (ctx->Pack.SwapBytes) {
191 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels,
201 if (!ctx->Pack.SwapBytes)
204 else if (ctx->Pack.SwapBytes) {
240 /* Decompress into temp float buffer, then pack into user buffer */
300 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels
    [all...]
  /external/clang/test/Parser/
cxx0x-ambig.cpp 116 void g(S(...[sizeof(T)])); // expected-note {{here}} expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
119 void h(T(...)); // function type, expected-error {{unexpanded parameter pack}}
120 void h(T...); // pack expansion, ok
123 void i(int(T, ...)); // function type, expected-error {{unexpanded parameter pack}}
124 void i(int(T, ...a)); // expected-error {{expected ')'}} expected-note {{to match}} expected-error {{unexpanded parameter pack}}
127 void j(T(int...)); // expected-error {{unexpanded parameter pack}}
128 void j(T(T...)); // expected-error {{unexpanded parameter pack}}
131 void l(int(&...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
132 void l(int(*...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}}
133 void l(int(S<int>::*...)(T)); // expected-warning {{ISO C++11 requires a parenthesized pack declaration to have a name}
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_struct.py 19 struct.pack('q', 5)
37 # SF bug 1530559. struct.pack raises TypeError where it used
41 got = struct.pack(format, number)
46 expected = struct.pack(format, int(number))
50 self.assertEqual((struct.pack('=i', 1)[0] == chr(0)), ISBIGENDIAN)
64 self.assertRaises(struct.error, struct.pack, 'iii', 3)
65 self.assertRaises(struct.error, struct.pack, 'i', 3, 3, 3)
66 self.assertRaises((TypeError, struct.error), struct.pack, 'i', 'foo')
67 self.assertRaises((TypeError, struct.error), struct.pack, 'P', 'foo')
69 s = struct.pack('ii', 1, 2
    [all...]
  /external/chromium_org/chrome/browser/resources/apps_debugger/js/
pack_item_overlay.js 19 * Encapsulated handling of the 'Pack Item' overlay page.
33 $('pack-item-dismiss').addEventListener('click',
35 $('pack-item-commit').addEventListener('click',
42 * Handles a click on the pack button.
54 * Handles a commit on the pack request.
80 * Wrap up the pack process by showing the success |message| and closing
  /external/chromium_org/third_party/JSON/JSON-2.59/blib/lib/JSON/backportPP/
Compat5006.pm 34 $downgrade .= pack("C", $c);
37 $downgrade .= pack("U", $c);
52 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
55 $_[0] = pack( "U*", unpack( "C*", $_[0] ) );
56 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
64 $_[0] = pack( "U*", unpack( "U*", $_[0] ) );
  /external/chromium_org/third_party/JSON/JSON-2.59/lib/JSON/backportPP/
Compat5006.pm 34 $downgrade .= pack("C", $c);
37 $downgrade .= pack("U", $c);
52 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
55 $_[0] = pack( "U*", unpack( "C*", $_[0] ) );
56 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
64 $_[0] = pack( "U*", unpack( "U*", $_[0] ) );
  /external/chromium_org/third_party/JSON/out/lib/perl5/JSON/backportPP/
Compat5006.pm 34 $downgrade .= pack("C", $c);
37 $downgrade .= pack("U", $c);
52 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
55 $_[0] = pack( "U*", unpack( "C*", $_[0] ) );
56 $_[0] = pack( "C*", unpack( "C*", $_[0] ) );
64 $_[0] = pack( "U*", unpack( "U*", $_[0] ) );
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGStaticPropertyTearOff.h 28 // UpdateMethod is 12 bytes. We have to pack to a size greater than or equal to that to avoid an
30 #pragma pack(push, 16)
61 #pragma pack(pop)
  /external/chromium_org/third_party/angle/samples/gles2_book/Common/Win32/
esUtil_TGA.c 27 #pragma pack(push,x1) // Byte alignment (8-bit)
28 #pragma pack(1)
47 #pragma pack(pop,x1)
  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 43 Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
46 int tag = pack(jpeg, offset, 4, false);
47 count = pack(jpeg, offset - 2, 2, littleEndian);
102 length = pack(jpeg, offset, 2, false);
110 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
111 pack(jpeg, offset + 6, 2, false) == 0) {
130 int tag = pack(jpeg, offset, 4, false);
138 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
150 count = pack(jpeg, offset - 2, 2, littleEndian);
154 tag = pack(jpeg, offset, 2, littleEndian)
182 private static int pack(final InputStreamBuffer bytes, int offset, int length, method in class:Exif
    [all...]
  /external/chromium_org/third_party/freetype/src/truetype/
ttinterp.c     [all...]
  /external/freetype/src/truetype/
ttinterp.c     [all...]
  /external/chromium_org/net/data/websocket/
close-code-and-reason_wsh.py 24 data = struct.pack('!H', int(code)) + reason.encode('utf-8')
  /external/chromium_org/tools/grit/grit/format/
data_pack.py 6 '''Support for formatting a data pack file used for platform agnostic resource
40 '''Writes out the data pack file format (platform agnostic resource file).'''
53 """Reads a data pack file and returns a dictionary."""
80 """Write a map of id=>data into a string in the data pack format and return
86 ret.append(struct.pack("<IIB", PACK_FILE_VERSION, len(ids), encoding))
96 ret.append(struct.pack("<HI", id, data_offset))
99 ret.append(struct.pack("<HI", 0, data_offset))
108 """Write a map of id=>data into output_file as a data pack."""
115 """Write a new data pack to |output_file| based on a list of filenames
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p5-0x.cpp 17 // - A function parameter pack that does not occur at the end of the
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 4 // template-parameter that is not a template parameter pack.
5 template<typename ...Types = int> // expected-error{{template parameter pack cannot have a default argument}}
8 template<int ...Values = 0> // expected-error{{template parameter pack cannot have a default argument}}
13 template<template<class> class ...Templates = vector> // expected-error{{template parameter pack cannot have a default argument}}
  /external/clang/test/CodeGen/
pragma-pack-3.c 8 #pragma pack(push, 2)
  /external/clang/test/Sema/
pragma-pack-4.c 6 #pragma pack(4)
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 92 /// elements that are pack expansions.
150 /// \brief Suppress traversal of template argument pack expansions.
158 /// \brief Suppress traversal of template argument pack expansions.
167 /// parameter pack. In this case, the unexpanded pack can occur anywhere,
169 /// lambda, we don't propagate the 'contains unexpanded parameter pack' bit
180 // If any capture names a function parameter pack, that pack is expanded
210 // parameter pack, and we are done.
259 // An appearance of a name of a parameter pack that is not expanded is
    [all...]

Completed in 846 milliseconds

1 2 3 45 6 7 8 91011>>