/external/compiler-rt/test/asan/android_commands/ |
android_compile.py | 11 output_type = 'executable' variable 17 output_type = 'shared' variable 19 output_type = 'object' variable 31 if output_type in ['executable', 'shared']: 34 if output_type == 'executable':
|
/external/zopfli/src/zopfli/ |
zopfli_lib.c | 28 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, 31 if (output_type == ZOPFLI_FORMAT_GZIP) { 33 } else if (output_type == ZOPFLI_FORMAT_ZLIB) { 35 } else if (output_type == ZOPFLI_FORMAT_DEFLATE) {
|
zopfli_bin.c | 83 ZopfliFormat output_type, 96 ZopfliCompress(options, output_type, in, insize, &out, &outsize); 130 ZopfliFormat output_type = ZOPFLI_FORMAT_GZIP; local 142 output_type = ZOPFLI_FORMAT_DEFLATE; 144 else if (StringsEqual(arg, "--zlib")) output_type = ZOPFLI_FORMAT_ZLIB; 145 else if (StringsEqual(arg, "--gzip")) output_type = ZOPFLI_FORMAT_GZIP; 181 } else if (output_type == ZOPFLI_FORMAT_GZIP) { 183 } else if (output_type == ZOPFLI_FORMAT_ZLIB) { 186 assert(output_type == ZOPFLI_FORMAT_DEFLATE); 192 CompressFile(&options, output_type, filename, outfilename) [all...] |
zopfli.h | 84 output_type: the output format to use 89 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type,
|
/external/chromium_org/tools/gn/ |
ninja_target_writer.cc | 60 if (target->output_type() == Target::COPY_FILES) { 63 } else if (target->output_type() == Target::ACTION || 64 target->output_type() == Target::ACTION_FOREACH) { 67 } else if (target->output_type() == Target::GROUP) { 70 } else if (target->output_type() == Target::EXECUTABLE || 71 target->output_type() == Target::STATIC_LIBRARY || 72 target->output_type() == Target::SHARED_LIBRARY || 73 target->output_type() == Target::SOURCE_SET) { 89 bool list_sources_as_input_deps = target_->output_type() == Target::ACTION; 92 bool add_script_source_as_dep = target_->output_type() == Target::ACTION | [all...] |
ninja_helper.cc | 154 (target->output_type() == Target::SHARED_LIBRARY || 155 target->output_type() == Target::STATIC_LIBRARY) && 163 if (target->output_type() == Target::GROUP || 164 target->output_type() == Target::SOURCE_SET || 165 target->output_type() == Target::COPY_FILES || 166 target->output_type() == Target::ACTION || 167 target->output_type() == Target::ACTION_FOREACH) { 170 extension = GetExtensionForOutputType(target->output_type(), 182 if (target->output_type() == Target::EXECUTABLE || 184 (target->output_type() == Target::SHARED_LIBRARY | [all...] |
target_generator.cc | 62 const std::string& output_type, 85 if (output_type == functions::kCopy) { 88 } else if (output_type == functions::kAction) { 92 } else if (output_type == functions::kActionForEach) { 96 } else if (output_type == functions::kExecutable) { 100 } else if (output_type == functions::kGroup) { 103 } else if (output_type == functions::kSharedLibrary) { 107 } else if (output_type == functions::kSourceSet) { 111 } else if (output_type == functions::kStaticLibrary) {
|
target.cc | 168 if (dep->output_type() == STATIC_LIBRARY || 169 dep->output_type() == SHARED_LIBRARY || 170 dep->output_type() == SOURCE_SET) 175 if (dep->output_type() != SHARED_LIBRARY && 176 dep->output_type() != EXECUTABLE) { 191 if (output_type() == GROUP)
|
ninja_binary_target_writer.cc | 61 switch (target->output_type()) { 91 if (target_->output_type() == Target::SOURCE_SET) 196 if (target_->output_type() == Target::SHARED_LIBRARY) { 212 if (target_->output_type() == Target::SHARED_LIBRARY) { 412 (target_->output_type() == Target::EXECUTABLE || 413 target_->output_type() == Target::SHARED_LIBRARY); 415 if (dep->output_type() == Target::SOURCE_SET) { 425 if (target_->output_type() != Target::SOURCE_SET && 426 target_->output_type() != Target::STATIC_LIBRARY) {
|
command_desc.cc | 81 if (sorted_deps[i].ptr->output_type() == Target::GROUP) 260 if (target->output_type() == Target::ACTION) { 264 } else if (target->output_type() == Target::ACTION_FOREACH) { 536 target->output_type() != Target::GROUP && 537 target->output_type() != Target::COPY_FILES && 538 target->output_type() != Target::ACTION && 539 target->output_type() != Target::ACTION_FOREACH; 551 Target::GetStringForOutputType(target->output_type())) + "\n"); 579 if (target->output_type() == Target::ACTION || 580 target->output_type() == Target::ACTION_FOREACH) [all...] |
target_generator.h | 42 const std::string& output_type,
|
ninja_action_target_writer.cc | 51 if (target_->output_type() == Target::ACTION_FOREACH) { 56 DCHECK(target_->output_type() == Target::ACTION);
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 155 " $output_type$* response,\n" 220 sub_vars["output_type"] = ClassName(method->output_type(), true); 225 " $output_type$*,\n" 250 sub_vars["output_type"] = ClassName(method->output_type(), true); 258 " ::google::protobuf::down_cast< $output_type$*>(response),\n" 290 (which == REQUEST) ? method->input_type() : method->output_type(); [all...] |
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.cc | 149 sub_vars["output_type"] = ClassName(method->output_type(), true); 155 " $output_type$* response,\n" 220 sub_vars["output_type"] = ClassName(method->output_type(), true); 225 " $output_type$*,\n" 250 sub_vars["output_type"] = ClassName(method->output_type(), true); 258 " ::google::protobuf::down_cast< $output_type$*>(response),\n" 290 (which == REQUEST) ? method->input_type() : method->output_type(); [all...] |
/external/chromium_org/chrome/browser/extensions/api/terminal/ |
terminal_private_api.cc | 50 const std::string& output_type, 55 pid, output_type, output)); 61 args->Append(new base::StringValue(output_type));
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
neteq_external_decoder_unittest.cc | 159 NetEqOutputType output_type; local 166 &output_type)); 173 &output_type));
|
neteq_stereo_unittest.cc | 213 NetEqOutputType output_type; local 220 &output_type)); 228 &output_type));
|
/external/chromium_org/tools/cygprofile/ |
symbolize.py | 191 parser.add_option('-t', '--outputType', dest='output_type', 202 output_type = options.output_type 222 if output_type == 'lineize': 226 elif output_type == 'orderfile':
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/ |
java_service.cc | 198 vars["output"] = ClassName(method->output_type()); 243 vars["output"] = ClassName(method->output_type()); 287 (which == REQUEST) ? method->input_type() : method->output_type()); 338 vars["output"] = ClassName(method->output_type()); 402 vars["output"] = ClassName(method->output_type()); 426 vars["output"] = ClassName(method->output_type()); 441 vars["output"] = ClassName(method->output_type());
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_service.cc | 189 vars["output"] = ClassName(method->output_type()); 234 vars["output"] = ClassName(method->output_type()); 278 (which == REQUEST) ? method->input_type() : method->output_type()); 329 vars["output"] = ClassName(method->output_type()); 393 vars["output"] = ClassName(method->output_type()); 417 vars["output"] = ClassName(method->output_type()); 432 vars["output"] = ClassName(method->output_type());
|
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 94 output_type=None) 318 output_type: '.protobuf_unittest.FooResponse' 323 output_type: '.protobuf_unittest.BarResponse'
|
/external/qemu/audio/ |
fmodaudio.c | 534 int output_type = -1; local 555 output_type = drvtab[i].type; 569 if (output_type != -1) { 570 status = FSOUND_SetOutput (output_type); 572 fmod_logerr ("FSOUND_SetOutput(%d) failed\n", output_type);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/ |
audio_classifier_test.cc | 26 " channels output_type <input file name> <output file name> "
|
/external/llvm/tools/gold/ |
gold-plugin.cpp | 70 static lto_codegen_model output_type = LTO_CODEGEN_PIC_MODEL_STATIC; variable 162 output_type = LTO_CODEGEN_PIC_MODEL_DYNAMIC; 165 output_type = LTO_CODEGEN_PIC_MODEL_STATIC; 440 CodeGen->setCodePICModel(output_type);
|
/device/samsung/manta/audio/ |
audio_hw.c | 122 enum output_type { enum 432 * out stream(s) in enum output_type order 631 enum output_type type; 974 enum output_type type; 1028 enum output_type type; 1043 enum output_type type = OUTPUT_TOTAL; [all...] |