Home
last modified time | relevance | path

Searched refs:GetFlag (Results 1 – 25 of 30) sorted by relevance

12

/external/webrtc/webrtc/tools/frame_analyzer/
Dframe_analyzer.cc75 if (parser.GetFlag("help") == "true") { in main()
81 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main()
82 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
91 webrtc::test::RunAnalysis(parser.GetFlag("reference_file").c_str(), in main()
92 parser.GetFlag("test_file").c_str(), in main()
93 parser.GetFlag("stats_file").c_str(), width, height, in main()
96 std::string label = parser.GetFlag("label"); in main()
99 parser.GetFlag("stats_file")); in main()
/external/webrtc/webrtc/tools/frame_editing/
Dframe_editing.cc78 if (parser.GetFlag("help") == "true") { in main()
84 const char* in_path = parser.GetFlag("in_path").c_str(); in main()
85 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main()
86 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
87 int first_frame_to_cut = strtol((parser.GetFlag("f")).c_str(), NULL, 10); in main()
88 int interval = strtol((parser.GetFlag("interval")).c_str(), NULL, 10); in main()
89 int last_frame_to_cut = strtol((parser.GetFlag("l")).c_str(), NULL, 10); in main()
91 const char* out_path = parser.GetFlag("out_path").c_str(); in main()
/external/webrtc/webrtc/tools/converter/
Drgba_to_i420_converter.cc62 if (parser.GetFlag("help") == "true") { in main()
68 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main()
69 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
76 bool del_frames = (parser.GetFlag("delete_frames") == "true") ? true : false; in main()
79 bool success = converter.ConvertRGBAToI420Video(parser.GetFlag("frames_dir"), in main()
80 parser.GetFlag("output_file"), in main()
/external/v8/src/
Dcompiler.h182 return GetFlag(kDeferredCalling) || GetFlag(kNonDeferredCalling); in is_calling()
187 bool is_deferred_calling() const { return GetFlag(kDeferredCalling); } in is_deferred_calling()
191 bool is_non_deferred_calling() const { return GetFlag(kNonDeferredCalling); } in is_non_deferred_calling()
195 bool saves_caller_doubles() const { return GetFlag(kSavesCallerDoubles); } in saves_caller_doubles()
199 bool requires_frame() const { return GetFlag(kRequiresFrame); } in requires_frame()
204 return GetFlag(kMustNotHaveEagerFrame); in GetMustNotHaveEagerFrame()
215 bool is_debug() const { return GetFlag(kDebug); } in is_debug()
219 bool will_serialize() const { return GetFlag(kSerializing); } in will_serialize()
226 return GetFlag(kFunctionContextSpecializing); in is_function_context_specializing()
231 bool is_frame_specializing() const { return GetFlag(kFrameSpecializing); } in is_frame_specializing()
[all …]
/external/webrtc/webrtc/tools/psnr_ssim_analyzer/
Dpsnr_ssim_analyzer.cc116 if (parser.GetFlag("help") == "true") { in main()
122 int width = strtol((parser.GetFlag("width")).c_str(), NULL, 10); in main()
123 int height = strtol((parser.GetFlag("height")).c_str(), NULL, 10); in main()
130 CompareFiles(parser.GetFlag("reference_file").c_str(), in main()
131 parser.GetFlag("test_file").c_str(), in main()
132 parser.GetFlag("results_file").c_str(), width, height); in main()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_sequence_coder.cc89 int width = strtol((parser->GetFlag("w")).c_str(), NULL, 10); in SequenceCoder()
90 int height = strtol((parser->GetFlag("h")).c_str(), NULL, 10); in SequenceCoder()
91 int framerate = strtol((parser->GetFlag("f")).c_str(), NULL, 10); in SequenceCoder()
97 int target_bitrate = strtol((parser->GetFlag("b")).c_str(), NULL, 10); in SequenceCoder()
105 std::string encoded_file_name = parser->GetFlag("encoded_file"); in SequenceCoder()
111 std::string input_file_name = parser->GetFlag("input_file"); in SequenceCoder()
118 std::string output_file_name = parser->GetFlag("output_file"); in SequenceCoder()
126 int start_frame = strtol((parser->GetFlag("start_frame")).c_str(), NULL, 10); in SequenceCoder()
127 int num_frames = strtol((parser->GetFlag("num_frames")).c_str(), NULL, 10); in SequenceCoder()
238 if (parser.GetFlag("help") == "true") { in main()
/external/webrtc/webrtc/tools/
Dsimple_command_line_parser_unittest.cc54 EXPECT_EQ("true", parser_->GetFlag("foo")); in TEST_F()
55 EXPECT_EQ("false", parser_->GetFlag("foo-foo")); in TEST_F()
56 EXPECT_EQ("1", parser_->GetFlag("bar")); in TEST_F()
57 EXPECT_EQ("333", parser_->GetFlag("baz")); in TEST_F()
58 EXPECT_EQ("", parser_->GetFlag("unknown")); in TEST_F()
Dsimple_command_line_parser.h64 std::string GetFlag(std::string flag_name);
Dsimple_command_line_parser.cc122 std::string CommandLineParser::GetFlag(std::string flag_name) { in GetFlag() function in webrtc::test::CommandLineParser
/external/gtest/test/
Dgtest_env_var_test.py64 def GetFlag(flag): function
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
Dgtest_test_utils.py115 def GetFlag(flag): function
129 return os.path.abspath(GetFlag('source_dir'))
135 return os.path.abspath(GetFlag('build_dir'))
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
Dgtest_env_var_test.py64 def GetFlag(flag): function
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
Dgtest_test_utils.py115 def GetFlag(flag): function
129 return os.path.abspath(GetFlag('source_dir'))
135 return os.path.abspath(GetFlag('build_dir'))
/external/google-breakpad/src/testing/gtest/test/
Dgtest_env_var_test.py64 def GetFlag(flag): function
79 AssertEq(test_val, GetFlag(flag))
81 AssertEq(default_val, GetFlag(flag))
Dgtest_test_utils.py100 def GetFlag(flag): function
114 return os.path.abspath(GetFlag('source_dir'))
120 return os.path.abspath(GetFlag('build_dir'))
/external/protobuf/gtest/test/
Dgtest_env_var_test.py64 def GetFlag(flag): function
78 AssertEq(test_val, GetFlag(flag))
80 AssertEq(default_val, GetFlag(flag))
Dgtest_test_utils.py100 def GetFlag(flag): function
114 return os.path.abspath(GetFlag('gtest_source_dir'))
120 return os.path.abspath(GetFlag('gtest_build_dir'))
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_pattern.cpp197 FX_DWORD CPDF_MeshStream::GetFlag() { in GetFlag() function in CPDF_MeshStream
238 FX_DWORD flag = GetFlag(); in GetVertex()
291 flag = stream.GetFlag(); in GetShadingBBox()
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/
Dstatetracker_test.py111 flag = comment.GetFlag('param')
Decmalintrules.py638 jsdoc.GetFlag('override').flag_token)
644 jsdoc.GetFlag('inheritDoc').flag_token)
Djavascriptlintrules.py292 flag = function.doc.GetFlag('return')
/external/pdfium/core/src/fxge/ge/
Dfx_ge_ps.cpp98 uint8_t flag = pPathData->GetFlag(i); in OutputPath()
618 switch (TransformedPath.GetFlag(p) & FXPT_TYPE) { in FindPSFontGlyph()
/external/v8/src/parsing/
Dparser.h47 bool getter() const { return GetFlag(flag); } \
70 return GetFlag(kParseRestriction) ? ONLY_SINGLE_FUNCTION_LITERAL in parse_restriction()
206 bool GetFlag(Flag f) const { return (flags_ & f) != 0; } in GetFlag() function
/external/pdfium/core/include/fpdfapi/
Dfpdf_pageobj.h40 int GetFlag(int index) { return m_pObject->m_pPoints[index].m_Flag; } in GetFlag() function
/external/pdfium/core/include/fxge/
Dfx_ge.h123 int GetFlag(int index) const { return m_pPoints[index].m_Flag; } in GetFlag() function

12