HomeSort by relevance Sort by last modified time
    Searched refs:extension (Results 276 - 300 of 2522) sorted by null

<<11121314151617181920>>

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
AttachmentUtils.java 97 // finally, give up and just show the file extension
105 String extension = Utils.getFileExtension(attachment.getName()); local
106 // show '$EXTENSION File' for unknown file types
107 if (extension != null && extension.length() > 1 && extension.indexOf('.') == 0) {
109 extension.substring(1).toUpperCase());
113 // no extension to display, but the map doesn't accept null entries
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arm64.go 123 // ARM64RegisterExtension parses an ARM64 register with extension or arrangment.
134 return errors.New("invalid register extension")
140 return errors.New("invalid register extension")
146 return errors.New("invalid register extension")
152 return errors.New("invalid register extension")
158 return errors.New("invalid register extension")
164 return errors.New("invalid register extension")
170 return errors.New("invalid register extension")
176 return errors.New("invalid register extension")
219 return errors.New("unsupported register extension type: " + ext
    [all...]
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arm64.go 123 // ARM64RegisterExtension parses an ARM64 register with extension or arrangment.
134 return errors.New("invalid register extension")
140 return errors.New("invalid register extension")
146 return errors.New("invalid register extension")
152 return errors.New("invalid register extension")
158 return errors.New("invalid register extension")
164 return errors.New("invalid register extension")
170 return errors.New("invalid register extension")
176 return errors.New("invalid register extension")
219 return errors.New("unsupported register extension type: " + ext
    [all...]
  /external/libchrome/base/files/
file_path.h 176 // The character used to identify a file extension.
253 // the file has no extension. If non-empty, Extension() will always start
256 // .user.js, this method returns the combined extension. For a single
258 // new_path = path.RemoveExtension().value().append(path.Extension());
261 // returned the extension without a leading "." ("jpg" instead of ".jpg")
262 StringType Extension() const WARN_UNUSED_RESULT;
264 // Returns the path's file extension, as in Extension(), but will
265 // never return a double extension
    [all...]
  /external/mesa3d/src/amd/vulkan/
radv_entrypoints_gen.py 83 # Maps entry points to extension defines
86 extensions = doc.findall('./extensions/extension')
87 for extension in extensions:
88 define = extension.get('protect')
89 entrypoints = extension.findall('./require/command')
  /external/mesa3d/src/intel/vulkan/
anv_entrypoints_gen.py 83 # Maps entry points to extension defines
86 extensions = doc.findall('./extensions/extension')
87 for extension in extensions:
88 define = extension.get('protect')
89 entrypoints = extension.findall('./require/command')
98 # Manually add CreateDmaBufImageINTEL for which we don't have an extension
  /external/nanopb-c/
pb_encode.c 27 static bool checkreturn default_extension_encoder(pb_ostream_t *stream, const pb_extension_t *extension);
298 /* Default handler for extension fields. Expects to have a pb_field_t
299 * pointer in the extension->type->arg field. */
301 const pb_extension_t *extension)
303 const pb_field_t *field = (const pb_field_t*)extension->type->arg;
304 return encode_field(stream, field, extension->dest);
312 const pb_extension_t *extension = *(const pb_extension_t* const *)pData; local
315 while (extension)
318 if (extension->type->encode)
319 status = extension->type->encode(stream, extension)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
packet.cc 94 // Find all RED headers with the extension bit set to 1. That is, all headers
163 &destination->extension, &header_.extension, sizeof(header_.extension));
  /frameworks/layoutlib/rename_font/
build_font_single.py 74 extension = os.path.splitext(input_path)[1].lower()
75 if extension in EXTENSIONS:
76 if not COPY_ONLY and extension == '.ttf':
  /external/libevent/sample/
http-server.c 71 const char *extension; member in struct:table_entry
93 const char *last_period, *extension; local
98 extension = last_period + 1;
99 for (ent = &content_type_table[0]; ent->extension; ++ent) {
100 if (!evutil_ascii_strcasecmp(ent->extension, extension))
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_triggered_response/
BatchRepConditions.java 51 private boolean extension; field in class:BatchRepConditions
111 return extension;
133 extension = isExtensionValue;
150 extension = false;
350 extension = false;
460 extension = false;
568 extension = false;
635 if (extension) {
  /external/ImageMagick/MagickCore/
utility.c 258 % extension to the file already exists, it is first removed.
276 extension[MagickPathExtent],
294 GetPathComponent(filename,ExtensionPath,extension);
295 if ((LocaleCompare(extension,"Z") == 0) ||
296 (LocaleCompare(extension,"bz2") == 0) ||
297 (LocaleCompare(extension,"gz") == 0) ||
298 (LocaleCompare(extension,"wmz") == 0) ||
299 (LocaleCompare(extension,"svgz") == 0))
305 format,extension);
270 extension[MagickPathExtent], local
    [all...]
  /external/autotest/client/cros/faft/utils/
firmware_updater.py 181 self.cbfs_replace_chip(chip_utils.ecrw.fw_name, extension='')
364 def cbfs_extract_chip(self, fw_name, extension='.bin'):
371 The extracted blobs will be <fw_name><extension> and
376 extension: Extension of the name of the cbfs component.
390 cmd = cbfs_extract % (extension, extension)
426 def cbfs_replace_chip(self, fw_name, extension='.bin'):
435 extension: Extension of the name of the cbfs component
    [all...]
  /external/autotest/client/site_tests/graphics_VTSwitch/
graphics_VTSwitch.py 151 extension = 'png'
155 extension)
  /external/autotest/server/cros/ap_configurators/basic_auth_extension/
background.js 9 var bkg = chrome.extension.getBackgroundPage();
  /external/deqp/scripts/build/
common.py 118 for extension in extensions:
119 extResult = whichImpl(binName + extension)
  /external/llvm/include/llvm/Support/
Path.h 131 /// @brief Replace the file extension of \a path with \a extension.
134 /// ./filename.cpp => ./filename.extension
135 /// ./filename => ./filename.extension
136 /// ./ => ./.extension
139 /// @param path A path that has its extension replaced with \a extension.
140 /// @param extension The extension to be added. It may be empty. It may also
143 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
    [all...]
  /external/mesa3d/docs/specs/
MESA_pack_invert.spec 33 This extension adds a new pixel storage parameter to indicate that
42 writing them to a file with image I/O libraries. This extension
56 enough to define a complementary extension for pixel packing in the
MESA_ycbcr_texture.spec 29 This extension is written against the OpenGL 1.4 Specification.
30 NV_texture_rectangle effects the definition of this extension.
34 This extension supports texture images stored in the YCbCr format.
202 19 September 2003 - a few more updates prior to submitting to extension
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
PathV2.h 117 /// @brief Replace the file extension of \a path with \a extension.
119 /// ./filename.cpp => ./filename.extension
120 /// ./filename => ./filename.extension
121 /// ./ => ./.extension
123 /// @param path A path that has its extension replaced with \a extension.
124 /// @param extension The extension to be added. It may be empty. It may also
127 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Path.h 131 /// @brief Replace the file extension of \a path with \a extension.
134 /// ./filename.cpp => ./filename.extension
135 /// ./filename => ./filename.extension
136 /// ./ => ./.extension
139 /// @param path A path that has its extension replaced with \a extension.
140 /// @param extension The extension to be added. It may be empty. It may also
143 void replace_extension(SmallVectorImpl<char> &path, const Twine &extension);
    [all...]
  /external/tensorflow/tensorflow/contrib/ffmpeg/
decode_video_op.cc 51 string extension; variable
52 const string temp_filename = io::GetTempFilename(extension);
  /external/trappy/tests/
test_copyright.py 97 extension = os.path.splitext(fname)[1]
98 if extension in [".py", ".js", ".css"]:
  /external/webrtc/webrtc/base/
pathutils.h 33 // extension() .txt
36 // If extension exists, it consists of a period followed by zero or more
87 std::string extension() const;
89 bool SetExtension(const std::string& extension);
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
remote_estimator_proxy.cc 48 if (!header.extension.hasTransportSequenceNumber) {
50 "is missing the transport sequence number extension!";
55 OnPacketArrival(header.extension.transportSequenceNumber, arrival_time_ms);

Completed in 1132 milliseconds

<<11121314151617181920>>