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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
ControlAccessor.py 39 data = struct.pack(structfmt, data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 39 lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0,
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
49 print 'struct.pack: ', repr(lockdata)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 39 lockdata = struct.pack(off_t + off_t + pid_t + 'hh', 0, 0, 0,
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
49 print 'struct.pack: ', repr(lockdata)
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
close_code.h 43 #pragma pack(pop)
  /prebuilts/tools/linux-x86/sdl/include/SDL/
close_code.h 43 #pragma pack(pop)
  /prebuilts/tools/windows/sdl/include/SDL/
close_code.h 43 #pragma pack(pop)
  /external/clang/lib/AST/
TemplateBase.cpp 116 case Pack:
157 case Pack:
174 case Pack:
216 case Pack:
277 case Pack:
304 case Pack:
330 case Pack:
388 case Pack:
445 case TemplateArgument::Pack:
492 case TemplateArgument::Pack:
    [all...]
  /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());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Containers_and_folders.py 62 # element 'pack' as ['indx', 'name']
79 # element 'pack' as ['indx', 'name']
93 # element 'pack' as ['indx', 'name']
129 # element 'pack' as ['indx', 'name']
149 # element 'pack' as ['indx', 'name']
  /libcore/luni/src/main/java/java/net/
DatagramSocket.java 230 * pack}. All fields of {@code pack} must be set according to the data
235 * @param pack
240 public synchronized void receive(DatagramPacket pack) throws IOException {
243 if (pack == null) {
244 throw new NullPointerException("pack == null");
249 pack.resetLengthForReceive();
250 impl.receive(pack);
256 * @param pack
261 public void send(DatagramPacket pack) throws IOException
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiate.cpp 708 /// \brief Retrieve the depth and index of a parameter pack.
    [all...]
  /external/chromium/chrome/browser/themes/
theme_service.cc 173 // Writes the theme pack to disk on a separate thread.
176 WritePackToDiskTask(BrowserThemePack* pack, const FilePath& path)
177 : theme_pack_(pack), pack_path_(path) {}
181 NOTREACHED() << "Could not write theme pack to disk";
566 // If we don't have a file pack, we're updating from an old version.
636 scoped_refptr<BrowserThemePack> pack(
638 if (!pack.get()) {
648 new WritePackToDiskTask(pack, pack_path));
651 theme_pack_ = pack;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java 78 // delimiters are chars that do not appear in an email address, used by pack/unpack
367 * Returns exactly the same result as Address.pack(Address.parse(textList)).
370 return Address.pack(Address.parse(textList));
394 * compatibility) previously packed with pack()
395 * @param addressList string packed with pack() or CSV of RFC822 addresses
444 * NOTE: We used to "pack" these addresses in an app-specific format, but no longer do so
446 public static String pack(Address[] addresses) { method in class:Address
451 * Produces the same result as pack(array), but only packs one (this) address.
453 public String pack() { method in class:Address
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 103 for pack in new_includes[arch]:
104 self.append_sysincludes(arch, pack[0], pack[1], platform)
150 for pack in self.bionic_includes[arch]:
151 root = pack[0]
154 for include in pack[1]:
  /external/chromium/chrome/common/
automation_messages.h 257 // Traits for SetWindowPos_Params structure to pack/unpack.
307 // Traits for AutomationURLRequest structure to pack/unpack.
316 // Traits for AutomationURLResponse structure to pack/unpack.
325 // Traits for ExternalTabSettings structure to pack/unpack.
334 // Traits for NavigationInfo structure to pack/unpack.
343 // Traits for MiniContextMenuParams structure to pack/unpack.
  /external/clang/lib/Parse/
ParsePragma.cpp 243 // #pragma pack(...) comes in the following delicious flavors:
244 // pack '(' [integer] ')'
245 // pack '(' 'show' ')'
246 // pack '(' ('push' | 'pop') [',' identifier] [, integer] ')'
255 PP.Diag(Tok.getLocation(), diag::warn_pragma_expected_lparen) << "pack";
270 // In MSVC/gcc, #pragma pack(4) sets the alignment without affecting
272 // In Apple gcc, #pragma pack(4) is equivalent to #pragma pack(push, 4)
321 // In MSVC/gcc, #pragma pack() resets the alignment without affecting
323 // In Apple gcc #pragma pack() is equivalent to #pragma pack(pop)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.def 359 /* Represents an argument pack of types (or templates). An argument
360 pack stores zero or more arguments that will be used to instantiate
361 a parameter pack.
364 pack.
372 Values is a (template) parameter pack. When tuple<int, float,
373 double> is instantiated, the Values parameter pack is instantiated
374 with the argument pack <int, float, double>. ARGUMENT_PACK_ARGS will
378 /* Represents an argument pack of values, which can be used either for
392 argument in an argument pack.
397 packs that are used in this pack expansion
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.def 359 /* Represents an argument pack of types (or templates). An argument
360 pack stores zero or more arguments that will be used to instantiate
361 a parameter pack.
364 pack.
372 Values is a (template) parameter pack. When tuple<int, float,
373 double> is instantiated, the Values parameter pack is instantiated
374 with the argument pack <int, float, double>. ARGUMENT_PACK_ARGS will
378 /* Represents an argument pack of values, which can be used either for
392 argument in an argument pack.
397 packs that are used in this pack expansion
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/cp/
cp-tree.def 359 /* Represents an argument pack of types (or templates). An argument
360 pack stores zero or more arguments that will be used to instantiate
361 a parameter pack.
364 pack.
372 Values is a (template) parameter pack. When tuple<int, float,
373 double> is instantiated, the Values parameter pack is instantiated
374 with the argument pack <int, float, double>. ARGUMENT_PACK_ARGS will
378 /* Represents an argument pack of values, which can be used either for
392 argument in an argument pack.
397 packs that are used in this pack expansion
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/cp/
cp-tree.def 359 /* Represents an argument pack of types (or templates). An argument
360 pack stores zero or more arguments that will be used to instantiate
361 a parameter pack.
364 pack.
372 Values is a (template) parameter pack. When tuple<int, float,
373 double> is instantiated, the Values parameter pack is instantiated
374 with the argument pack <int, float, double>. ARGUMENT_PACK_ARGS will
378 /* Represents an argument pack of values, which can be used either for
392 argument in an argument pack.
397 packs that are used in this pack expansion
    [all...]
  /cts/suite/cts/deviceTests/opengl/
cob_exporter.py 43 f.write(struct.pack(">i", len(uvtex.data) * 3))# write length
53 f.write(struct.pack(">ffffffff", v[0], v[1], v[2], n[0], n[1], n[2], t[0], 1 - t[1]))
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
native-messaging-example-host 23 sys.stdout.write(struct.pack('I', len(message)))
58 self.pack()
  /external/chromium_org/components/policy/tools/
make_policy_zip.py 18 """Pack a list of files into a zip archive, that is already
46 """Pack a list of files into a zip archive.
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_glyf.h 17 #pragma pack(push, 1)
212 #pragma pack(pop)
SkOTTable_head.h 15 #pragma pack(push, 1)
143 #pragma pack(pop)

Completed in 3396 milliseconds

<<11121314151617181920>>