HomeSort by relevance Sort by last modified time
    Searched full:rawfile (Results 1 - 25 of 27) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/test/
test_utils.h 32 class RawFile final {
34 explicit RawFile(const std::string& filename);
35 ~RawFile();
43 RTC_DISALLOW_COPY_AND_ASSIGN(RawFile);
78 RawFile* raw_file);
84 RawFile* raw_file);
test_utils.cc 18 RawFile::RawFile(const std::string& filename)
21 RawFile::~RawFile() {
25 void RawFile::WriteSamples(const int16_t* samples, size_t num_samples) {
32 void RawFile::WriteSamples(const float* samples, size_t num_samples) {
68 RawFile* raw_file) {
81 RawFile* raw_file) {
unpack.cc 89 rtc::scoped_ptr<RawFile> reverse_raw_file;
90 rtc::scoped_ptr<RawFile> input_raw_file;
91 rtc::scoped_ptr<RawFile> output_raw_file;
105 reverse_raw_file.reset(new RawFile(FLAGS_reverse_file + ".pcm"));
117 reverse_raw_file.reset(new RawFile(FLAGS_reverse_file + ".float"));
140 input_raw_file.reset(new RawFile(FLAGS_input_file + ".pcm"));
148 input_raw_file.reset(new RawFile(FLAGS_input_file + ".float"));
164 output_raw_file.reset(new RawFile(FLAGS_output_file + ".pcm"));
172 output_raw_file.reset(new RawFile(FLAGS_output_file + ".float"));
process_test.cc 495 rtc::scoped_ptr<RawFile> output_raw_file;
804 output_raw_file.reset(new RawFile(out_filename + ".pcm"));
812 output_raw_file.reset(new RawFile(out_filename + ".float"));
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadDrmHelper.java 68 final String rawFile = file.toString();
69 if (client.canHandle(rawFile, null)) {
70 return client.getOriginalMimeType(rawFile);
  /prebuilts/go/darwin-x86/src/cmd/internal/objfile/
objfile.go 15 type rawFile interface {
25 raw rawFile
37 var openers = []func(*os.File) (rawFile, error){
elf.go 19 func openElf(r *os.File) (rawFile, error) {
goobj.go 19 func openGoobj(r *os.File) (rawFile, error) {
macho.go 22 func openMacho(r *os.File) (rawFile, error) {
plan9obj.go 29 func openPlan9(r *os.File) (rawFile, error) {
pe.go 20 func openPE(r *os.File) (rawFile, error) {
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
objfile.go 15 type rawFile interface {
25 raw rawFile
37 var openers = []func(*os.File) (rawFile, error){
elf.go 19 func openElf(r *os.File) (rawFile, error) {
goobj.go 19 func openGoobj(r *os.File) (rawFile, error) {
macho.go 22 func openMacho(r *os.File) (rawFile, error) {
plan9obj.go 29 func openPlan9(r *os.File) (rawFile, error) {
pe.go 20 func openPE(r *os.File) (rawFile, error) {
  /packages/inputmethods/LatinIME/tools/dicttool/tests/com/android/inputmethod/latin/dicttool/
BinaryDictOffdeviceUtilsTests.java 183 final File rawFile = file;
186 compressCommand.setArgs(new String[] { rawFile.getPath(), file.getPath() });
190 final File rawFile = file;
193 cryptCommand.setArgs(new String[] { rawFile.getPath(), file.getPath() });
  /external/elfutils/src/
ranlib.c 137 char *rawfile = elf_rawfile (elf, &len); local
144 posix_madvise (rawfile + (off & ~(ps - 1)), n, POSIX_MADV_SEQUENTIAL);
146 return write_retry (newfd, rawfile + off, n) != (ssize_t) n;
ar.c 442 char *rawfile = elf_rawfile (elf, &len); local
449 posix_madvise (rawfile + (off & ~(ps - 1)), n, POSIX_MADV_SEQUENTIAL);
451 return write_retry (newfd, rawfile + off, n) != (ssize_t) n;
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/cmd/internal/
objfile.a     [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/cmd/internal/
objfile.a     [all...]
  /external/skia/include/core/
SkXfermode.h 89 // https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html#blending
  /external/skia/src/core/
SkXfermode.cpp 189 // (See https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html#blendingnonseparable)
703 // (See https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html#blendingnonseparable)
    [all...]
  /developers/build/prebuilts/gradle/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
Camera2RawFragment.java 516 File rawFile = new File(Environment.
534 if (rawBuilder != null) rawBuilder.setFile(rawFile);
    [all...]

Completed in 331 milliseconds

1 2