Searched defs:output_type (Results 1 - 22 of 22) sorted by relevance

/external/compiler-rt/test/asan/android_commands/
H A Dandroid_compile.py11 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/
H A Dzopfli_lib.c28 void ZopfliCompress(const ZopfliOptions* options, ZopfliFormat output_type, argument
31 if (output_type == ZOPFLI_FORMAT_GZIP) {
33 } else if (output_type == ZOPFLI_FORMAT_ZLIB) {
35 } else if (output_type == ZOPFLI_FORMAT_DEFLATE) {
H A Dzopfli_bin.c83 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, filenam
82 CompressFile(const ZopfliOptions* options, ZopfliFormat output_type, const char* infilename, const char* outfilename) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/terminal/
H A Dterminal_private_api.cc50 const std::string& output_type,
55 pid, output_type, output));
61 args->Append(new base::StringValue(output_type));
47 NotifyProcessOutput(Profile* profile, const std::string& extension_id, pid_t pid, const std::string& output_type, const std::string& output) argument
/external/chromium_org/tools/gn/
H A Dtarget_generator.cc62 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) {
59 GenerateTarget(Scope* scope, const FunctionCallNode* function_call, const std::vector<Value>& args, const std::string& output_type, Err* err) argument
H A Dtarget.h58 OutputType output_type() const { return output_type_; } function in class:Target
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_backend_unittest.cc183 AutocompleteMatch::Type output_type; member in struct:__anon2934
215 EXPECT_EQ(cases[i].output_type, match_core.type)
/external/chromium_org/v8/src/compiler/
H A Drepresentation-change.h35 Node* GetRepresentationFor(Node* node, MachineTypeUnion output_type, argument
37 if (!base::bits::IsPowerOfTwo32(output_type & kRepMask)) {
39 return TypeError(node, output_type, use_type);
41 if ((use_type & kRepMask) == (output_type & kRepMask)) {
45 if ((use_type & rWord) && (output_type & rWord)) {
53 return GetTaggedRepresentationFor(node, output_type);
55 return GetFloat64RepresentationFor(node, output_type);
57 return TypeError(node, output_type, use_type); // TODO(titzer): handle
59 return GetBitRepresentationFor(node, output_type);
61 return GetWord32RepresentationFor(node, output_type,
70 GetTaggedRepresentationFor(Node* node, MachineTypeUnion output_type) argument
114 GetFloat64RepresentationFor(Node* node, MachineTypeUnion output_type) argument
150 GetWord32RepresentationFor(Node* node, MachineTypeUnion output_type, bool use_unsigned) argument
192 GetBitRepresentationFor(Node* node, MachineTypeUnion output_type) argument
224 GetWord64RepresentationFor(Node* node, MachineTypeUnion output_type) argument
332 TypeError(Node* node, MachineTypeUnion output_type, MachineTypeUnion use) argument
[all...]
H A Dsimplified-lowering.cc318 MachineTypeUnion output_type = rep | changer_->TypeFromUpperBound(upper); local
319 SetOutput(node, output_type);
325 MachineType type = static_cast<MachineType>(output_type);
335 ProcessInput(node, iter.index(), values > 0 ? output_type : 0);
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
H A Dneteq_external_decoder_unittest.cc139 NetEqOutputType output_type; local
148 &output_type));
157 &output_type));
279 NetEqOutputType output_type; variable
288 &output_type));
291 UpdateState(output_type); variable
294 virtual void UpdateState(NetEqOutputType output_type) { argument
297 if (output_type == kOutputNormal) {
303 if (output_type == kOutputPLC) {
309 if (output_type
[all...]
H A Dneteq_stereo_unittest.cc213 NetEqOutputType output_type; local
220 &output_type));
228 &output_type));
H A Dneteq_unittest.cc1139 NetEqOutputType output_type; local
1148 &output_type));
1166 &output_type));
1184 &output_type));
1217 NetEqOutputType output_type; local
1227 &output_type));
1267 &output_type));
1289 NetEqOutputType output_type; local
1339 &output_type));
/external/llvm/tools/gold/
H A Dgold-plugin.cpp70 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);
/external/qemu/audio/
H A Dfmodaudio.c534 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/v8/src/
H A Dcode-stubs.cc535 Type* output_type = GetType(zone, map); local
538 return Type::Union(output_type, nil_type, zone);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc153 const string& output_type) {
157 result->set_output_type(output_type);
1137 EXPECT_EQ(foo_response_, foo_->output_type());
1138 EXPECT_EQ(bar_response_, bar_->output_type());
3375 " method { name: \"A\" input_type: \"Bar\" output_type: \"Foo\" }"
3389 " method { name: \"A\" input_type: \"Bar\" output_type: \"Foo\" }"
3402 " method { name: \"A\" input_type: \"Foo\" output_type: \"Bar\" }"
3416 " method { name: \"A\" input_type: \"Foo\" output_type: \"Bar\" }"
3940 " output_type: \"TestMessage\""
3965 " output_type
150 AddMethod(ServiceDescriptorProto* service, const string& name, const string& input_type, const string& output_type) argument
[all...]
H A Ddescriptor.cc1620 if (!output_type()->is_unqualified_placeholder_) {
1623 proto->mutable_output_type()->append(output_type()->full_name());
1973 output_type()->full_name());
3996 Symbol output_type = LookupSymbol(proto.output_type(), method->full_name()); local
3997 if (output_type.IsNull()) {
4000 proto.output_type());
4001 } else if (output_type.type != Symbol::MESSAGE) {
4004 "\"" + proto.output_type() + "\" is not a message type.");
4006 method->output_type_ = output_type
[all...]
H A Ddescriptor.pb.h1370 // optional string output_type = 3;
1374 inline const ::std::string& output_type() const;
1380 inline void set_allocated_output_type(::std::string* output_type);
4444 // optional string output_type = 3;
4460 inline const ::std::string& MethodDescriptorProto::output_type() const { function in class:google::protobuf::MethodDescriptorProto
4501 inline void MethodDescriptorProto::set_allocated_output_type(::std::string* output_type) { argument
4505 if (output_type) {
4507 output_type_ = output_type;
/external/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc151 const string& output_type) {
155 result->set_output_type(output_type);
1135 EXPECT_EQ(foo_response_, foo_->output_type());
1136 EXPECT_EQ(bar_response_, bar_->output_type());
2992 " method { name: \"A\" input_type: \"Bar\" output_type: \"Foo\" }"
3005 " method { name: \"A\" input_type: \"Bar\" output_type: \"Foo\" }"
3017 " method { name: \"A\" input_type: \"Foo\" output_type: \"Bar\" }"
3030 " method { name: \"A\" input_type: \"Foo\" output_type: \"Bar\" }"
3513 " output_type: \"TestMessage\""
3537 " output_type
148 AddMethod(ServiceDescriptorProto* service, const string& name, const string& input_type, const string& output_type) argument
[all...]
H A Ddescriptor.cc1476 if (!output_type()->is_unqualified_placeholder_) {
1479 proto->mutable_output_type()->append(output_type()->full_name());
1798 output_type()->full_name());
3602 Symbol output_type = LookupSymbol(proto.output_type(), method->full_name()); local
3603 if (output_type.IsNull()) {
3606 proto.output_type());
3607 } else if (output_type.type != Symbol::MESSAGE) {
3610 "\"" + proto.output_type() + "\" is not a message type.");
3612 method->output_type_ = output_type
[all...]
H A Ddescriptor.pb.h1330 // optional string output_type = 3;
1334 inline const ::std::string& output_type() const;
3549 // optional string output_type = 3;
3559 inline const ::std::string& MethodDescriptorProto::output_type() const { function in class:google::protobuf::MethodDescriptorProto
/external/valgrind/main/perf/
H A Dtinycc.c2031 int tcc_set_output_type(TCCState *s, int output_type);
2410 int output_type;
18591 if (s1->output_type == TCC_OUTPUT_DLL) {
18606 if (s1->output_type == TCC_OUTPUT_DLL) {
18840 if (s1->output_type == TCC_OUTPUT_DLL)
18869 if (s1->output_type == TCC_OUTPUT_EXE)
18878 if (s1->output_type == TCC_OUTPUT_DLL)
18900 if (s1->output_type == TCC_OUTPUT_EXE)
19096 if (s1->output_type != TCC_OUTPUT_MEMORY) {
19117 if (s1->output_type !
2408 int output_type; member in struct:TCCState
21119 tcc_set_output_type(TCCState *s, int output_type) argument
21431 static int output_type; variable
[all...]

Completed in 1802 milliseconds