Home
last modified time | relevance | path

Searched refs:analyze (Results 1 – 25 of 194) sorted by relevance

12345678

/third_party/typescript_eslint/packages/experimental-utils/src/ts-eslint-scope/
Danalyze.ts1 import { analyze as ESLintAnalyze } from 'eslint-scope';
16 const analyze = ESLintAnalyze as ( constant
21 export { analyze, AnalysisOptions };
/third_party/typescript_eslint/packages/scope-manager/tests/eslint-scope/
Dchild-visitor-keys.test.ts3 import { analyze } from '../../src/analyze';
17 const result = analyze(ast, {
41 const result = analyze(ast, {
Dmap-ecma-version.test.ts1 import { analyze } from '../../src/analyze';
40 analyze(fakeNode, { ecmaVersion: ecmaVersion as EcmaVersion });
Dget-declared-variables.test.ts4 import { analyze } from '../../src/analyze';
12 const scopeManager = analyze(ast, {
/third_party/typescript_eslint/packages/scope-manager/tests/util/
Dparse.ts2 import { analyze, AnalyzeOptions } from '../../src/analyze';
33 scopeManager: ReturnType<typeof analyze>;
56 const scopeManager = analyze(ast, analyzeOptions);
/third_party/flutter/flutter/dev/devicelab/bin/tasks/
Ddartdocs.dart19 <String>['analyze', '--no-preamble', '--flutter-repo', '--dartdocs'],
56 throw Exception('flutter analyze did not output final message');
58 throw Exception('flutter analyze exited with unexpected error code $result');
60 … throw Exception('flutter analyze exited with successful status code despite reporting errors');
62 …throw Exception('flutter analyze had unexpected output (we saw $otherLines unexpected line${ other…
/third_party/ffmpeg/tests/fate/
Dfilter-audio.mak327 # test the different analyze modes
328 …S-$(call FILTERDEMDECENCMUX, HDCD, FLAC, FLAC, PCM_S24LE, PCM_S24LE) += fate-filter-hdcd-analyze-pe
329 fate-filter-hdcd-analyze-pe: SRC = $(TARGET_SAMPLES)/filter/hdcd-mix.flac
330 fate-filter-hdcd-analyze-pe: CMD = md5 -i $(SRC) -af hdcd=analyze_mode=pe -f s24le
331 fate-filter-hdcd-analyze-pe: CMP = oneline
332 fate-filter-hdcd-analyze-pe: REF = 2d839d8a1cf73b10a566ce3d4cfaa79e
333 …-$(call FILTERDEMDECENCMUX, HDCD, FLAC, FLAC, PCM_S24LE, PCM_S24LE) += fate-filter-hdcd-analyze-lle
334 fate-filter-hdcd-analyze-lle: SRC = $(TARGET_SAMPLES)/filter/hdcd-mix.flac
335 fate-filter-hdcd-analyze-lle: CMD = md5 -i $(SRC) -af hdcd=analyze_mode=lle -f s24le
336 fate-filter-hdcd-analyze-lle: CMP = oneline
[all …]
/third_party/gstreamer/gstplugins_good/gst/replaygain/
Dgstrganalysis.c290 filter->analyze = NULL; in gst_rg_analysis_init()
383 filter->analyze = NULL; in gst_rg_analysis_start()
425 filter->analyze = rg_analysis_analyze_mono_float; in gst_rg_analysis_set_caps()
427 filter->analyze = rg_analysis_analyze_stereo_float; in gst_rg_analysis_set_caps()
434 filter->analyze = rg_analysis_analyze_mono_int16; in gst_rg_analysis_set_caps()
436 filter->analyze = rg_analysis_analyze_stereo_int16; in gst_rg_analysis_set_caps()
447 filter->analyze = NULL; in gst_rg_analysis_set_caps()
461 g_return_val_if_fail (filter->analyze != NULL, GST_FLOW_NOT_NEGOTIATED); in gst_rg_analysis_transform_ip()
471 filter->analyze (filter->ctx, map.data, map.size, filter->depth); in gst_rg_analysis_transform_ip()
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/commands/
Danalyze_once_test.dart11 import 'package:flutter_tools/src/commands/analyze.dart';
29 group('analyze once', () {
62 arguments: <String>['analyze'],
71 arguments: <String>['analyze', libMain.path],
98 arguments: <String>['analyze'],
124 arguments: <String>['analyze'],
158 arguments: <String>['analyze'],
179 arguments: <String>['analyze'],
197 arguments: <String>['analyze'],
/third_party/flutter/flutter/dev/bots/test/
Danalyze-sample-code_test.dart10 test('analyze-sample-code', () {
13 <String>['analyze-sample-code.dart', 'test/analyze-sample-code-test-input'],
/third_party/typescript_eslint/packages/experimental-utils/typings/
Deslint-scope.d.ts61 const analyze: unknown; constant
62 export { analyze, version };
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Danalyze.dart46 // Not used by analyze --watch
62 String get name => 'analyze';
94 ).analyze();
102 ).analyze();
Danalyze_once.dart17 import 'analyze.dart';
36 Future<void> analyze() async {
68 throwToolExit('Nothing to analyze.', exitCode: 0);
70 // analyze all
/third_party/alsa-utils/bat/
DMakefile.am21 alsabat_SOURCES += analyze.c
22 noinst_HEADERS += analyze.h
Danalyze.c65 int check_peak(struct bat *bat, struct analyze *a, int end, int peak, float hz, in check_peak()
104 static int check(struct bat *bat, struct analyze *a, int channel) in check()
163 static void calc_magnitude(struct bat *bat, struct analyze *a, int N) in calc_magnitude()
177 static int find_and_check_harmonics(struct bat *bat, struct analyze *a, in find_and_check_harmonics()
442 struct analyze a; in analyze_capture()
/third_party/python/Tools/c-analyzer/cpython/
D__main__.py128 _analyze=_analyzer.analyze,
142 _analyze=_analyzer.analyze,
175 analyze = None
178 def analyze(files, **kwargs): function
195 def analyze(files, **kwargs): function
202 _analyze=analyze,
/third_party/json/
DMakefile454 rm -fr cmake-build-clang-analyze
455 mkdir cmake-build-clang-analyze
456 …cd cmake-build-clang-analyze ; CCC_CXX=$(COMPILER_DIR)/clang++ CXX=$(COMPILER_DIR)/clang++ $(COMPI…
457 cd cmake-build-clang-analyze ; \
460 --use-c++=$(COMPILER_DIR)/clang++ -analyze-headers -o report ninja
461 open cmake-build-clang-analyze/report/*/index.html
479 cd cmake-build-pvs-studio ; pvs-studio-analyzer analyze -j 10
632 …rm -fr cmake-build-coverage cmake-build-benchmarks fuzz-testing cmake-build-clang-analyze cmake-bu…
/third_party/typescript_eslint/packages/scope-manager/src/
Danalyze.ts91 function analyze( function
122 export { analyze, AnalyzeOptions };
Dindex.ts1 export { analyze, AnalyzeOptions } from './analyze';
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDominanceFrontier.cpp50 DF.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree()); in runOnFunction()
84 DF.analyze(AM.getResult<DominatorTreeAnalysis>(F)); in run()
/third_party/python/Tools/c-analyzer/c_analyzer/
D__init__.py14 analyze as _analyze,
20 def analyze(filenmes, **kwargs): function
/third_party/flutter/flutter/dev/devicelab/lib/tasks/
Danalysis.dart80 await flutter('analyze', options: options);
87 /// Times how long it takes to analyze the Flutter repository.
104 /// Times how long it takes to analyze the generated "mega_gallery" app.
/third_party/typescript_eslint/packages/scope-manager/
DREADME.md28 ### `analyze(tree, options)`
92 import { analyze } from '@typescript-eslint/scope-manager';
100 const scope = analyze(ast, {
/third_party/typescript_eslint/packages/parser/src/
Dparser.ts9 analyze,
169 const scopeManager = analyze(ast, analyzeOptions);
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DVertexShader.cpp56 analyze(); in VertexShader()
77 analyze(); in VertexShader()
201 void VertexShader::analyze() in analyze() function in sw::VertexShader

12345678