HomeSort by relevance Sort by last modified time
    Searched refs:format (Results 476 - 500 of 8082) sorted by null

<<11121314151617181920>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 71 throw new IllegalArgumentException(String.format(
109 throw new FileNotFoundException(String.format("CTS test app file %s does not exist",
153 String ctsPlanRelativePath = String.format("%s.xml", planName);
163 throw new FileNotFoundException(String.format(
167 throw new FileNotFoundException(String.format(
172 throw new FileNotFoundException(String.format(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
IvAlgorithmParameters.java 26 String format)
29 if (isASN1FormatString(format))
34 if (format.equals("RAW"))
86 String format)
89 if (isASN1FormatString(format))
105 if (format.equals("RAW"))
111 throw new IOException("Unknown parameters format in IV parameters object");
  /external/chromium_org/media/audio/
audio_parameters.cc 22 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout,
25 : format_(format),
34 AudioParameters::AudioParameters(Format format, ChannelLayout channel_layout,
38 : format_(format),
47 void AudioParameters::Reset(Format format, ChannelLayout channel_layout,
54 format_ = format;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
utilities.h 35 GLsizei ComputeCompressedPitch(GLsizei width, GLenum format);
36 GLsizei ComputeCompressedSize(GLsizei width, GLsizei height, GLenum format);
38 bool IsCompressed(GLenum format);
39 bool IsDepthTexture(GLenum format);
40 bool IsStencilTexture(GLenum format);
43 GLint ConvertSizedInternalFormat(GLenum format, GLenum type);
  /external/chromium_org/v8/src/
checks.cc 38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) {
48 va_start(arguments, format);
49 i::OS::VPrintError(format, arguments);
95 void API_Fatal(const char* location, const char* format, ...) {
98 va_start(arguments, format);
99 i::OS::VPrintError(format, arguments);
  /external/elfutils/libebl/
eblauxvinfo.c 97 const char *name, *format; member in struct:__anon19925
107 ebl_auxv_info (ebl, a_type, name, format)
111 const char **format;
113 int result = ebl->auxv_info (a_type, name, format);
118 *format = auxv_types[a_type].format;
  /external/llvm/tools/llvm-objdump/
ELFDump.cpp 17 #include "llvm/Support/Format.h"
61 << format(Fmt, (uint64_t)pi->p_offset)
63 << format(Fmt, (uint64_t)pi->p_vaddr)
65 << format(Fmt, (uint64_t)pi->p_paddr)
66 << format("align 2**%u\n", countTrailingZeros<uint64_t>(pi->p_align))
68 << format(Fmt, (uint64_t)pi->p_filesz)
70 << format(Fmt, (uint64_t)pi->p_memsz)
  /external/v8/src/
checks.cc 38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) {
46 va_start(arguments, format);
47 i::OS::VPrintError(format, arguments);
92 void API_Fatal(const char* location, const char* format, ...) {
95 va_start(arguments, format);
96 i::OS::VPrintError(format, arguments);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ToRGBAFilter.java 30 import android.filterfw.format.ImageFormat;
61 public FrameFormat getConvertedFormat(FrameFormat format) {
62 MutableFrameFormat result = format.mutableCopy();
68 public void createProgram(FilterContext context, FrameFormat format) {
69 mInputBPP = format.getBytesPerSample();
71 mLastFormat = format;
ToRGBFilter.java 30 import android.filterfw.format.ImageFormat;
61 public FrameFormat getConvertedFormat(FrameFormat format) {
62 MutableFrameFormat result = format.mutableCopy();
68 public void createProgram(FilterContext context, FrameFormat format) {
69 mInputBPP = format.getBytesPerSample();
71 mLastFormat = format;
  /frameworks/native/opengl/tests/include/
EGLUtils.h 42 int32_t format,
79 int32_t format,
105 if (nativeVisualId>0 && format == nativeVisualId) {
128 int format; local
133 if ((err = window->query(window, NATIVE_WINDOW_FORMAT, &format)) < 0) {
137 return selectConfigForPixelFormat(dpy, attrs, format, outConfig);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.form/
form4.pass.cpp 15 // format(const char_type* fmt,
31 std::string out = m.format(fmt);
40 std::string out = m.format(fmt, std::regex_constants::format_sed);
49 std::string out = m.format(fmt, std::regex_constants::format_sed);
59 std::wstring out = m.format(fmt);
68 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
77 std::wstring out = m.format(fmt, std::regex_constants::format_sed);
  /sdk/files/
android.el 73 (format "%s -attach localhost:%s -sourcepath%s"
76 (format "%s/src" root))))
96 (compile (format "adb install -r %s" apk)))
104 (compile (format "adb uninstall %s" package-name)))
116 (compile (format "adb shell am start -n %s/%s" package class)))
128 (compile (format "adb shell am start -D -n %s/%s" package class)))
  /cts/tests/tests/graphics/src/android/opengl/cts/
CompressedTextureTest.java 30 private void launchTest(String format) throws Exception {
32 extras.putString("TextureFormat", format);
  /dalvik/dx/src/com/android/dx/io/instructions/
OneRegisterDecodedInstruction.java 31 public OneRegisterDecodedInstruction(InstructionCodec format, int opcode,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 35 public RegisterRangeDecodedInstruction(InstructionCodec format, int opcode,
38 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 34 public TwoRegisterDecodedInstruction(InstructionCodec format, int opcode,
37 super(format, opcode, index, indexType, target, literal);
  /development/ndk/platforms/android-3/include/android/
log.h 101 __attribute__ ((format(printf, 3, 4)))
120 __attribute__ ((format(printf, 3, 4)))
  /device/asus/flo/camera/hdr/include/
morpho_hdr_checker.h 64 * @param[in] format ???????t?H?[?}?b?g
71 const char *format);
81 * @param[in] format ???????t?H?[?}?b?g
91 const char *format);
  /device/lge/mako/camera/hdr/include/
morpho_hdr_checker.h 64 * @param[in] format ???????t?H?[?}?b?g
71 const char *format);
81 * @param[in] format ???????t?H?[?}?b?g
91 const char *format);
  /external/chromium_org/ppapi/thunk/
ppb_flash_clipboard_api.h 23 uint32_t format) = 0;
26 uint32_t format) = 0;
ppb_flash_clipboard_thunk.cc 27 uint32_t format) {
31 return enter.functions()->IsFormatAvailable(instance, clipboard_type, format);
36 uint32_t format) {
40 return enter.functions()->ReadData(instance, clipboard_type, format);
57 PP_Flash_Clipboard_Format format) {
59 static_cast<uint32_t>(format));
64 PP_Flash_Clipboard_Format format) {
65 return ReadData(instance, clipboard_type, static_cast<uint32_t>(format));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGlyphRefElement.idl 25 [Reflect] attribute DOMString format;
  /external/chromium_org/third_party/WebKit/Source/wtf/
FilePrintStream.cpp 53 void FilePrintStream::vprintf(const char* format, va_list argList)
55 vfprintf(m_file, format, argList);
  /external/chromium_org/third_party/icu/source/i18n/
currfmt.h 56 * Override Format API.
58 virtual UBool operator==(const Format& other) const;
61 * Override Format API.
63 virtual Format* clone() const;
66 using MeasureFormat::format;
69 * Override Format API.
71 virtual UnicodeString& format(const Formattable& obj,
77 * Override Format API.
84 * Override Format API.

Completed in 3154 milliseconds

<<11121314151617181920>>