HomeSort by relevance Sort by last modified time
    Searched refs:pack (Results 251 - 275 of 678) sorted by null

<<11121314151617181920>>

  /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/grub/netboot/
pci.c 304 int pack; local
321 "=a" (pack)
327 present_status = (pack >> 16) & 0xff;
328 major_revision = (pack >> 8) & 0xff;
329 minor_revision = pack & 0xff;
  /libcore/luni/src/test/java/libcore/java/net/
OldURLClassLoaderTest.java 166 Package pack = tucl.definePackage(packageName + i, manifest, urls[i]); local
167 assertEquals(packageName + i, pack.getName());
169 pack.getImplementationTitle());
171 pack.getImplementationVendor());
173 pack.getImplementationVersion());
OldAndroidDatagramTest.java 174 DatagramPacket pack = new DatagramPacket(new byte[100], 100); local
176 sock.receive(pack);
  /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...]
keybindingDialog.py 50 frameMain.pack(side=TOP,expand=TRUE,fill=BOTH)
52 frameButtons.pack(side=BOTTOM,fill=X)
74 labelTitleBasic.pack(anchor=W)
77 labelKeysBasic.pack(ipadx=5,ipady=5,fill=X)
111 labelTitleAdvanced.pack(anchor=W)
114 self.entryKeysAdvanced.pack(fill=X)
267 Button(root,text='Dialog',command=run).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...]
keybindingDialog.py 50 frameMain.pack(side=TOP,expand=TRUE,fill=BOTH)
52 frameButtons.pack(side=BOTTOM,fill=X)
74 labelTitleBasic.pack(anchor=W)
77 labelKeysBasic.pack(ipadx=5,ipady=5,fill=X)
111 labelTitleAdvanced.pack(anchor=W)
114 self.entryKeysAdvanced.pack(fill=X)
267 Button(root,text='Dialog',command=run).pack()
  /external/chromium_org/chrome/browser/resources/extensions/
pack_extension_overlay.js 8 * Encapsulated handling of the 'Pack Extension' overlay page.
45 * Handles a click on the pack button.
51 chrome.send('pack', [extensionPath, privateKeyPath, 0]);
95 * Wrap up the pack process by showing the success |message| and closing
  /external/chromium_org/chrome/browser/themes/
theme_service.cc 69 // Writes the theme pack to disk on a separate thread.
70 void WritePackToDiskCallback(BrowserThemePack* pack,
72 if (!pack->WriteToDisk(path))
73 NOTREACHED() << "Could not write theme pack to disk";
352 // If we don't have a file pack, we're updating from an old version.
436 scoped_refptr<BrowserThemePack> pack(
438 if (!pack.get()) {
455 base::Bind(&WritePackToDiskCallback, pack, pack_path));
458 SwapThemeSupplier(pack);
browser_theme_pack.h 58 // Builds the theme pack from all data from |extension|. This is often done
64 // Builds the theme pack from a previously performed WriteToDisk(). This
74 // Builds a data pack on disk at |path| for future quick loading by
211 // Data pack, if we have one.
216 #pragma pack(push,1)
252 #pragma pack(pop)
254 // The scale factors represented by the images in the theme pack.
268 // Cache of images created in BuildFromExtension(). Once the theme pack is
  /external/chromium_org/ipc/
ipc_message.h 232 #pragma pack(push, 4)
242 #pragma pack(pop)
  /external/chromium_org/sandbox/win/src/
service_resolver_64.cc 12 #pragma pack(push, 1)
71 #pragma pack(pop)
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 17 #pragma pack(push, 1)
212 #pragma pack(pop)
  /external/harfbuzz/src/
harfbuzz-shaper.h 38 #pragma pack(push, 1)
262 #pragma pack(pop)
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-shaper.h 38 #pragma pack(push, 1)
231 #pragma pack(pop)
  /external/skia/src/sfnt/
SkOTTable_glyf.h 17 #pragma pack(push, 1)
212 #pragma pack(pop)
  /frameworks/base/media/java/android/media/
FocusRequester.java 84 boolean hasSamePackage(String pack) {
86 return mPackageName.compareTo(pack) == 0;
139 + " -- pack: " + mPackageName
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
AddressUnitTests.java 555 * Simple quick checks of empty-input edge conditions for pack()
564 result = Address.pack(null);
568 result = Address.pack(new Address[] { });
617 String packed = Address.pack(list);
630 String packed = Address.pack(list);
638 * Tests that parseAndPack() returns the same result as pack(parse()).
642 String s2 = Address.pack(Address.parse(MULTI_ADDRESSES_LIST));
649 String packed1 = address.pack();
651 String packed2 = Address.pack(addrArray);
666 String packed = Address.pack(list)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cciss_ioctl.h 88 #pragma pack(1)
163 #pragma pack()
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 88 #pragma pack(1)
163 #pragma pack()
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cciss_ioctl.h 88 #pragma pack(1)
163 #pragma pack()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
Audio_mac.py 62 h1 = struct.pack('llHhllbbl',
72 h3 = struct.pack('hhlll',
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compileall.py 31 compare = struct.pack('<4sl', imp.get_magic(), mtime)
52 self.recreation_check(struct.pack('<4sl', imp.get_magic(), 1))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compileall.py 31 compare = struct.pack('<4sl', imp.get_magic(), mtime)
52 self.recreation_check(struct.pack('<4sl', imp.get_magic(), 1))

Completed in 1589 milliseconds

<<11121314151617181920>>