/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
OffsetInstructionFormatMethodItem.java | 29 package org.jf.baksmali.Adaptors.Format; 63 switch (opcode.format) {
|
PackedSwitchMethodItem.java | 29 package org.jf.baksmali.Adaptors.Format;
|
SparseSwitchMethodItem.java | 29 package org.jf.baksmali.Adaptors.Format;
|
/external/chromium_org/chromeos/dbus/ |
fake_cros_disks_client.cc | 59 void FakeCrosDisksClient::Format(const std::string& device_path,
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_post.h | 24 struct Format { 34 } format; member in struct:SkOTTablePostScript
|
/external/jhead/ |
makernote.c | 8 // Process exif format directory, as used by Cannon maker note 38 int Tag, Format, Components; 45 Format = Get16u(DirEntry+2); 48 if ((Format-1) >= NUM_FORMATS) { 50 ErrNonfatal("Illegal number format %d for tag %04x", Format, Tag); 59 ByteCount = Components * BytesPerFormat[Format]; 86 switch(Format){ 115 PrintFormatNumber(ValuePtr, Format, ByteCount); 126 if (Tag == 4 && Format == FMT_USHORT) [all...] |
/external/skia/src/sfnt/ |
SkOTTable_post.h | 24 struct Format { 34 } format; member in struct:SkOTTablePostScript
|
/libcore/luni/src/main/java/java/text/ |
Format.java | 35 * Many of the concrete subclasses of {@code Format} employ the notion of a 39 * common US English format for currency values, yielding strings such as 42 * patterns, the notion of a pattern is not inherent to {@code Format} classes 47 * {@code NumberFormat} which allows the user to format different number ranges 50 * is a formatter which utilizes other {@code Format} objects to format a string 57 public abstract class Format implements Serializable, Cloneable { 64 protected Format() { 68 * Returns a copy of this {@code Format} instance. 70 * @return a shallow copy of this format 92 public final String format(Object object) { method in class:Format 117 public abstract StringBuffer format(Object object, StringBuffer buffer, method in class:Format [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
iphlpapi.h | 140 NET_ADDRESS_FORMAT Format;
|
/art/runtime/verifier/ |
dex_gc_map.h | 29 * Format enumeration for RegisterMap data area. 85 // The format of the table of the PCs for the table 86 RegisterMapFormat Format() const { 92 RegisterMapFormat format = Format(); local 93 switch (format) { 99 LOG(FATAL) << "Invalid format " << static_cast<int>(format);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebClipboard.h | 49 enum Format { 67 virtual bool isFormatAvailable(Format, Buffer) { return false; }
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
window.h | 67 static uint64 Format(const WindowT& id) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format_parse.py | 104 class Format: 105 '''Describe a pixel format.''' 121 '''Make up a short norm for a format, suitable to be used as suffix in 231 '''Parse the format descrition in CSV format in terms of the 232 Channel and Format classes above.''' 301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace) 302 formats.append(format)
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.h | 1 // Protocol Buffers - Google's data interchange format 58 // Format key for constructor 59 enum Format { 66 // Simpler zlib stream format. 70 // buffer_size and format may be -1 for default of 64kB and GZIP format 73 Format format = AUTO, 92 Format format_; 112 // Format key for constructo 123 Format format; member in struct:google::protobuf::io::GzipOutputStream::Options [all...] |
/external/chromium_org/third_party/skia/experimental/PdfViewer/ |
chop_transparency_main.cpp | 26 struct Format { 28 SkImageDecoder::Format fFormat; 33 static const Format gFormats[] = {
|
/external/chromium_org/third_party/skia/include/core/ |
SkMask.h | 17 the 3-channel 3D format. These are passed to SkMaskFilter objects. 20 enum Format { 36 Format fFormat; 78 * this asserts that the mask's format is kLCD16_Format, and that (x,y) 91 * this asserts that the mask's format is kLCD32_Format, and that (x,y) 104 * this asserts that the mask's format is 32bits, and that (x,y) 117 * at runtime based on the mask format. This will be slightly slower than 118 * using one of the routines where the format is implied by the name
|
/external/chromium_org/third_party/webrtc/base/ |
window.h | 50 static uint64 Format(const WindowT& id) {
|
/external/chromium_org/tools/grit/grit/format/ |
data_pack.py | 38 def Format(root, lang='en', output_dir='.'): 39 """Writes out the data pack file format (platform agnostic resource file).""" 79 """Returns a string with a map of id=>data in the data pack format.""" 197 # format, for easier diffing.
|
rc.py | 18 def Format(root, lang='en', output_dir='.'): 279 return 'unknown language: see tools/grit/format/rc.py' 368 # Escape quotation marks (RC format uses doubling-up 443 filename = filename.replace('\\', '\\\\') # escape for the RC format
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data.h | 58 enum Format { 102 virtual void SetPickledData(const CustomFormat& format, 112 virtual bool GetPickledData(const CustomFormat& format, 118 virtual bool HasCustomFormat(const CustomFormat& format) const = 0; 167 // a format suitable for exchange with the OS. 183 // Adds pickled data of the specified format. 184 void SetPickledData(const CustomFormat& format, const Pickle& data); 198 bool GetPickledData(const CustomFormat& format, Pickle* data) const; 205 bool HasCustomFormat(const CustomFormat& format) const; 208 // |formats| or any custom format in |custom_formats| [all...] |
/external/clang/lib/Format/ |
FormatToken.cpp | 1 //===--- FormatToken.cpp - Format C++ code --------------------------------===// 18 #include "clang/Format/Format.h" 23 namespace format { namespace in namespace:clang 72 // Calculate the number of code points we have to format this list. As the 78 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); 82 if (!Format) 85 // Format the entire list. 96 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; 102 if (Column == Format->Columns || State.NextToken->MustBreakBefore) [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format_parse.py | 104 class Format: 105 '''Describe a pixel format.''' 121 '''Make up a short norm for a format, suitable to be used as suffix in 231 '''Parse the format descrition in CSV format in terms of the 232 Channel and Format classes above.''' 301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace) 302 formats.append(format)
|
/external/skia/experimental/PdfViewer/ |
chop_transparency_main.cpp | 26 struct Format { 28 SkImageDecoder::Format fFormat; 33 static const Format gFormats[] = {
|
/external/skia/include/core/ |
SkMask.h | 17 the 3-channel 3D format. These are passed to SkMaskFilter objects. 20 enum Format { 36 Format fFormat; 78 * this asserts that the mask's format is kLCD16_Format, and that (x,y) 91 * this asserts that the mask's format is kLCD32_Format, and that (x,y) 104 * this asserts that the mask's format is 32bits, and that (x,y) 117 * at runtime based on the mask format. This will be slightly slower than 118 * using one of the routines where the format is implied by the name
|
/external/chromium_org/media/audio/ |
audio_parameters.h | 33 enum Format { 37 AUDIO_LAST_FORMAT // Only used for validation of format. 57 AudioParameters(Format format, ChannelLayout channel_layout, 60 AudioParameters(Format format, ChannelLayout channel_layout, 64 AudioParameters(Format format, ChannelLayout channel_layout, 69 void Reset(Format format, ChannelLayout channel_layout 91 Format format() const { return format_; } function in class:media::AudioParameters [all...] |