text
stringlengths
6
13.6M
id
stringlengths
13
176
metadata
dict
__index_level_0__
int64
0
1.69k
#!/bin/bash # Gather information from a core dump. # # This script can be invoked by the run_tests.py script after an # engine test crashes. BUILDROOT=$1 EXE=$2 CORE=$3 OUTPUT=$4 UNAME=$(uname) if [ "$UNAME" == "Linux" ]; then if [ -x "$(command -v gdb)" ]; then GDB=gdb else GDB=$BUILDROOT/third_party/an...
engine/testing/analyze_core_dump.sh/0
{ "file_path": "engine/testing/analyze_core_dump.sh", "repo_id": "engine", "token_count": 197 }
439
This is a Dart project that runs the engine benchmarks, and send the metrics to the cloud for storage and analysis.
engine/testing/benchmark/README.md/0
{ "file_path": "engine/testing/benchmark/README.md", "repo_id": "engine", "token_count": 25 }
440
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:typed_data'; import 'dart:ui'; import 'package:litetest/litetest.dart'; import 'impeller_enabled.dart'; const Color transparent = Color(0x0...
engine/testing/dart/color_filter_test.dart/0
{ "file_path": "engine/testing/dart/color_filter_test.dart", "repo_id": "engine", "token_count": 1835 }
441
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:typed_data'; import 'dart:ui'; import 'package:litetest/litetest.dart'; import 'impeller_enabled.dart'; const Color red = Color(0xFFAA0000)...
engine/testing/dart/image_filter_test.dart/0
{ "file_path": "engine/testing/dart/image_filter_test.dart", "repo_id": "engine", "token_count": 4288 }
442
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:typed_data'; import 'dart:ui'; import 'package:litetest/litetest.dart'; typedef CanvasCallback = void Function(Canvas canvas); void main() ...
engine/testing/dart/painting_test.dart/0
{ "file_path": "engine/testing/dart/painting_test.dart", "repo_id": "engine", "token_count": 1526 }
443
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:typed_data'; import 'dart:ui'; import 'package:litetest/litetest.dart'; final Uint8List imageData = Uint8List.fromList(<int>[ // Small WebP ...
engine/testing/dart/stringification_test.dart/0
{ "file_path": "engine/testing/dart/stringification_test.dart", "repo_id": "engine", "token_count": 774 }
444
{ include: [ "sys/component/realm_builder_absolute.shard.cml", ], facets: { // shell_unittests and embedder_unittests require vulkan to function. "fuchsia.test": { type: "vulkan" }, }, program: { // TODO(fxbug.dev/80338): Switch to gtest_runner after the filters in ...
engine/testing/fuchsia/meta/test_suite.cml/0
{ "file_path": "engine/testing/fuchsia/meta/test_suite.cml", "repo_id": "engine", "token_count": 677 }
445
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication*)application didFinishLaunchi...
engine/testing/ios/IosUnitTests/App/AppDelegate.m/0
{ "file_path": "engine/testing/ios/IosUnitTests/App/AppDelegate.m", "repo_id": "engine", "token_count": 219 }
446
# package:litetest This is a wrapper around `package:async_helper` from the Dart SDK source repo at `//pkg/async_helper` that works in the environment of `flutter_tester`. This wrapper is needed to ensure that all tests run to completion before the process exits. This is accomplished by opening a `ReceivePort` for eac...
engine/testing/litetest/README.md/0
{ "file_path": "engine/testing/litetest/README.md", "repo_id": "engine", "token_count": 170 }
447
TESTING_DIRECTORY=$(cd $(dirname "${BASH_SOURCE[0]}"); pwd -P) ENGINE_BUILDROOT=$(cd $TESTING_DIRECTORY/../..; pwd -P) case "$(uname -s)" in Linux) BUILDTOOLS_DIRECTORY="${ENGINE_BUILDROOT}/buildtools/linux-x64" ;; Darwin) BUILDTOOLS_DIRECTORY="${ENGINE_BUILDROOT}/buildtools/mac-x64" ;; esac TSAN_...
engine/testing/sanitizer_suppressions.sh/0
{ "file_path": "engine/testing/sanitizer_suppressions.sh", "repo_id": "engine", "token_count": 455 }
448
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package dev.flutter.scenariosui; import android.content.Intent; import androidx.annotation.NonNull; import androidx.test.filters.LargeTest; import android...
engine/testing/scenario_app/android/app/src/androidTest/java/dev/flutter/scenariosui/MemoryLeakTests.java/0
{ "file_path": "engine/testing/scenario_app/android/app/src/androidTest/java/dev/flutter/scenariosui/MemoryLeakTests.java", "repo_id": "engine", "token_count": 394 }
449
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package dev.flutter.scenarios; import android.content.Context; import androidx.annotation.NonNull; import io.flutter.embedding.engine.FlutterEngine; impor...
engine/testing/scenario_app/android/app/src/main/java/dev/flutter/scenarios/SpawnMultiEngineActivity.java/0
{ "file_path": "engine/testing/scenario_app/android/app/src/main/java/dev/flutter/scenarios/SpawnMultiEngineActivity.java", "repo_id": "engine", "token_count": 329 }
450
include ':app'
engine/testing/scenario_app/android/settings.gradle/0
{ "file_path": "engine/testing/scenario_app/android/settings.gradle", "repo_id": "engine", "token_count": 6 }
451
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication*)application didFinishLaunchi...
engine/testing/scenario_app/ios/FlutterAppExtensionTestHost/FlutterAppExtensionTestHost/AppDelegate.m/0
{ "file_path": "engine/testing/scenario_app/ios/FlutterAppExtensionTestHost/FlutterAppExtensionTestHost/AppDelegate.m", "repo_id": "engine", "token_count": 443 }
452
<?xml version="1.0" encoding="UTF-8"?> <Workspace version = "1.0"> <FileRef location = "container:Scenarios/Scenarios.xcodeproj"> </FileRef> </Workspace>
engine/testing/scenario_app/ios/Scenarios.xcworkspace/contents.xcworkspacedata/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios.xcworkspace/contents.xcworkspacedata", "repo_id": "engine", "token_count": 73 }
453
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import "FlutterEngine+ScenariosTest.h" @implementation FlutterEngine (ScenariosTest) - (instancetype)initWithScenario:(NSString*)scenario ...
engine/testing/scenario_app/ios/Scenarios/Scenarios/FlutterEngine+ScenariosTest.m/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/Scenarios/FlutterEngine+ScenariosTest.m", "repo_id": "engine", "token_count": 736 }
454
// Copyright 2020 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import <Flutter/Flutter.h> #import <XCTest/XCTest.h> @interface RenderingSelectionTest : XCTestCase @property(nonatomic, strong) XCUIApplication* applica...
engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/RenderingSelectionTest.m/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/RenderingSelectionTest.m", "repo_id": "engine", "token_count": 313 }
455
// Copyright 2020 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #import <XCTest/XCTest.h> static const NSInteger kSecondsToWaitForFlutterView = 30; @interface iPadGestureTests : XCTestCase @end @implementation iPadG...
engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/iPadGestureTests.m/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/iPadGestureTests.m", "repo_id": "engine", "token_count": 5561 }
456
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:ui'; import 'channel_util.dart'; import 'scenario.dart'; import 'scenarios.dart'; /// Displays a platform texture with the given width and h...
engine/testing/scenario_app/lib/src/texture.dart/0
{ "file_path": "engine/testing/scenario_app/lib/src/texture.dart", "repo_id": "engine", "token_count": 449 }
457
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:io'; import 'package:args/args.dart'; import 'package:engine_repo_tools/engine_repo_tools.dart'; import 'package:git_repo_tools/git_repo_tool...
engine/testing/skia_gold_client/tool/generate.dart/0
{ "file_path": "engine/testing/skia_gold_client/tool/generate.dart", "repo_id": "engine", "token_count": 1434 }
458
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef FLUTTER_TESTING_TEST_GL_SURFACE_H_ #define FLUTTER_TESTING_TEST_GL_SURFACE_H_ #include <cstdint> #include "flutter/fml/macros.h" #include "third...
engine/testing/test_gl_surface.h/0
{ "file_path": "engine/testing/test_gl_surface.h", "repo_id": "engine", "token_count": 601 }
459
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "testing.h" #include <utility> #include "flutter/fml/file.h" #include "flutter/fml/paths.h" namespace flutter { namespace testing { std::strin...
engine/testing/testing.cc/0
{ "file_path": "engine/testing/testing.cc", "repo_id": "engine", "token_count": 1441 }
460
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_AX_ACTION_DATA_H_ #define UI_ACCESSIBILITY_AX_ACTION_DATA_H_ #include "ax_enums.h" #include "ax_export.h" #include "ax_tree_id.h...
engine/third_party/accessibility/ax/ax_action_data.h/0
{ "file_path": "engine/third_party/accessibility/ax/ax_action_data.h", "repo_id": "engine", "token_count": 842 }
461
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_AX_EVENT_GENERATOR_H_ #define UI_ACCESSIBILITY_AX_EVENT_GENERATOR_H_ #include <bitset> #include <map> #include <ostream> #includ...
engine/third_party/accessibility/ax/ax_event_generator.h/0
{ "file_path": "engine/third_party/accessibility/ax/ax_event_generator.h", "repo_id": "engine", "token_count": 4542 }
462
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ax_node_text_styles.h" constexpr int kUnsetValue = -1; namespace ui { AXNodeTextStyles::AXNodeTextStyles() : background_color(kUnsetValue)...
engine/third_party/accessibility/ax/ax_node_text_styles.cc/0
{ "file_path": "engine/third_party/accessibility/ax/ax_node_text_styles.cc", "repo_id": "engine", "token_count": 1110 }
463
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ax_tree_data.h" #include <set> #include "ax_enum_util.h" #include "ax_enums.h" #include "base/string_utils.h" namespace ui { AXTreeData::AXT...
engine/third_party/accessibility/ax/ax_tree_data.cc/0
{ "file_path": "engine/third_party/accessibility/ax/ax_tree_data.cc", "repo_id": "engine", "token_count": 1349 }
464
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ax_fragment_root_win.h" #include "ax_platform_node_win.h" #include "ax_platform_node_win_unittest.h" #include "test_ax_node_wrapper.h" #include...
engine/third_party/accessibility/ax/platform/ax_fragment_root_win_unittest.cc/0
{ "file_path": "engine/third_party/accessibility/ax/platform/ax_fragment_root_win_unittest.cc", "repo_id": "engine", "token_count": 11101 }
465
// Copyright 2019 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_TEXTPROVIDER_WIN_H_ #define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_TEXTPROVIDER_WIN_H_ #include <a...
engine/third_party/accessibility/ax/platform/ax_platform_node_textprovider_win.h/0
{ "file_path": "engine/third_party/accessibility/ax/platform/ax_platform_node_textprovider_win.h", "repo_id": "engine", "token_count": 902 }
466
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ax_unique_id.h" #include <memory> #include "gtest/gtest.h" namespace ui { TEST(AXPlatformUniqueIdTest, IdsAreUnique) { AXUniqueId id1, id2...
engine/third_party/accessibility/ax/platform/ax_unique_id_unittest.cc/0
{ "file_path": "engine/third_party/accessibility/ax/platform/ax_unique_id_unittest.cc", "repo_id": "engine", "token_count": 801 }
467
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_COLOR_UTILS_H_ #define BASE_COLOR_UTILS_H_ /** Returns alpha byte from color value. */ #define ColorGetA(color) (((color) >> 24) & 0xFF) /*...
engine/third_party/accessibility/base/color_utils.h/0
{ "file_path": "engine/third_party/accessibility/base/color_utils.h", "repo_id": "engine", "token_count": 227 }
468
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_NUMERICS_SAFE_CONVERSIONS_H_ #define BASE_NUMERICS_SAFE_CONVERSIONS_H_ #include <cmath> #include <cstddef> #include <limits> #include <type_...
engine/third_party/accessibility/base/numerics/safe_conversions.h/0
{ "file_path": "engine/third_party/accessibility/base/numerics/safe_conversions.h", "repo_id": "engine", "token_count": 6004 }
469
// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_WIN_ATL_MODULE_H_ #define UI_BASE_WIN_ATL_MODULE_H_ namespace ui { namespace win { // Ensure that we have exactly one ATL module reg...
engine/third_party/accessibility/base/win/atl_module.h/0
{ "file_path": "engine/third_party/accessibility/base/win/atl_module.h", "repo_id": "engine", "token_count": 323 }
470
// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <wrl/client.h> #include <wrl/implements.h> #include <cstdint> #include <utility> #include "base/win/dispatch_stub.h" #include "base/win/sco...
engine/third_party/accessibility/base/win/scoped_variant_unittest.cc/0
{ "file_path": "engine/third_party/accessibility/base/win/scoped_variant_unittest.cc", "repo_id": "engine", "token_count": 4068 }
471
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "point_f.h" #include "base/string_utils.h" namespace gfx { void PointF::SetToMin(const PointF& other) { x_ = x_ <= other.x_ ? x_ : other...
engine/third_party/accessibility/gfx/geometry/point_f.cc/0
{ "file_path": "engine/third_party/accessibility/gfx/geometry/point_f.cc", "repo_id": "engine", "token_count": 298 }
472
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "size.h" #include "gtest/gtest.h" #include "size_conversions.h" #include "size_f.h" namespace gfx { namespace { static constexpr float kTr...
engine/third_party/accessibility/gfx/geometry/size_unittest.cc/0
{ "file_path": "engine/third_party/accessibility/gfx/geometry/size_unittest.cc", "repo_id": "engine", "token_count": 3987 }
473
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "gfx/test/gfx_util.h" #include <iomanip> #include <sstream> #include <string> #include "gfx/geometry/point.h" #include "gfx/geometry/point_f.h"...
engine/third_party/accessibility/gfx/test/gfx_util.cc/0
{ "file_path": "engine/third_party/accessibility/gfx/test/gfx_util.cc", "repo_id": "engine", "token_count": 1664 }
474
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "tonic/dart_class_provider.h" #include "tonic/converter/dart_converter.h" #include "tonic/dart_state.h" #include "tonic/logging/dart_error.h" na...
engine/third_party/tonic/dart_class_provider.cc/0
{ "file_path": "engine/third_party/tonic/dart_class_provider.cc", "repo_id": "engine", "token_count": 338 }
475
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "tonic/dart_wrappable.h" #include "tonic/dart_class_library.h" #include "tonic/dart_state.h" #include "tonic/dart_wrapper_info.h" #include "tonic...
engine/third_party/tonic/dart_wrappable.cc/0
{ "file_path": "engine/third_party/tonic/dart_wrappable.cc", "repo_id": "engine", "token_count": 1538 }
476
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "tonic/filesystem/filesystem/path.h" #include <windows.h> #include <direct.h> #include <shellapi.h> #include <sys/stat.h> #include <sys/types.h>...
engine/third_party/tonic/filesystem/filesystem/path_win.cc/0
{ "file_path": "engine/third_party/tonic/filesystem/filesystem/path_win.cc", "repo_id": "engine", "token_count": 2847 }
477
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "tonic/scopes/dart_isolate_scope.h" namespace tonic { DartIsolateScope::DartIsolateScope(Dart_Isolate isolate) { isolate_ = isolate; previou...
engine/third_party/tonic/scopes/dart_isolate_scope.cc/0
{ "file_path": "engine/third_party/tonic/scopes/dart_isolate_scope.cc", "repo_id": "engine", "token_count": 270 }
478
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef LIB_TONIC_TYPED_DATA_UINT8_LIST_H_ #define LIB_TONIC_TYPED_DATA_UINT8_LIST_H_ #warning uint8_list.h is deprecated; use typed_list.h instead. #inc...
engine/third_party/tonic/typed_data/uint8_list.h/0
{ "file_path": "engine/third_party/tonic/typed_data/uint8_list.h", "repo_id": "engine", "token_count": 154 }
479
/* * Copyright 2017 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
engine/third_party/txt/src/txt/font_collection.h/0
{ "file_path": "engine/third_party/txt/src/txt/font_collection.h", "repo_id": "engine", "token_count": 821 }
480
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <lib/zx/channel.h> #include "third_party/skia/include/ports/SkFontMgr_fuchsia.h" #include "txt/platform.h" #if defined(SK_FONTMGR_FREETYPE_EMPTY...
engine/third_party/txt/src/txt/platform_fuchsia.cc/0
{ "file_path": "engine/third_party/txt/src/txt/platform_fuchsia.cc", "repo_id": "engine", "token_count": 403 }
481
/* * Copyright 2018 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
engine/third_party/txt/src/txt/typeface_font_asset_provider.h/0
{ "file_path": "engine/third_party/txt/src/txt/typeface_font_asset_provider.h", "repo_id": "engine", "token_count": 776 }
482
[ { "url": "https://maven.google.com/androidx/lifecycle/lifecycle-common/2.2.0/lifecycle-common-2.2.0.jar", "out_file_name": "androidx_lifecycle_common.jar", "maven_dependency": "androidx.lifecycle:lifecycle-common:2.2.0", "provides": [ "androidx.lifecycle.Lifecycle", "androidx.lifecycle.L...
engine/tools/androidx/files.json/0
{ "file_path": "engine/tools/androidx/files.json", "repo_id": "engine", "token_count": 1514 }
483
# Updating malioc Flutter uses `malioc` from the Arm Mobile Studio to statically analyze Impeller's shaders. See `impeller/tools/malioc_diff.py` for more information about that. The files in this directory are instructions for updating the `flutter_internal` CIPD package that CI uses to obtain `malioc`. ## Steps 1....
engine/tools/cipd/malioc/README.md/0
{ "file_path": "engine/tools/cipd/malioc/README.md", "repo_id": "engine", "token_count": 318 }
484
name: compare_goldens environment: sdk: '>=3.2.0-0 <4.0.0'
engine/tools/compare_goldens/pubspec.yaml/0
{ "file_path": "engine/tools/compare_goldens/pubspec.yaml", "repo_id": "engine", "token_count": 32 }
485
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // ignore_for_file: prefer_const_constructors, depend_on_referenced_packages import 'package:const_finder_fixtures/target.dart'; void createTargetInPackag...
engine/tools/const_finder/test/fixtures/pkg/package.dart/0
{ "file_path": "engine/tools/const_finder/test/fixtures/pkg/package.dart", "repo_id": "engine", "token_count": 151 }
486
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async' show Timer, runZoned; import 'dart:io' as io show IOSink, stderr, stdout; import 'package:logging/logging.dart' as log; import 'packag...
engine/tools/engine_tool/lib/src/logger.dart/0
{ "file_path": "engine/tools/engine_tool/lib/src/logger.dart", "repo_id": "engine", "token_count": 3878 }
487
# Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. if (host_os == "win") { host_executable_suffix = ".exe" } else { host_executable_suffix = "" } template("executable_action") { action(target_name) { ...
engine/tools/executable_action.gni/0
{ "file_path": "engine/tools/executable_action.gni", "repo_id": "engine", "token_count": 407 }
488
#!/usr/bin/env python3 # # Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Builds all Fuchsia artifacts vended by Flutter. """ import argparse import errno import os import platform import re import shut...
engine/tools/fuchsia/build_fuchsia_artifacts.py/0
{ "file_path": "engine/tools/fuchsia/build_fuchsia_artifacts.py", "repo_id": "engine", "token_count": 5825 }
489
#!/bin/bash # Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # ### Tests run_unit_tests.sh by running it with various arguments. ### This script doesn't assert the results but just checks that the script runs...
engine/tools/fuchsia/devshell/test/test_run_unit_tests.sh/0
{ "file_path": "engine/tools/fuchsia/devshell/test/test_run_unit_tests.sh", "repo_id": "engine", "token_count": 470 }
490
#!/usr/bin/env python3 # # Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Parses manifest file and dumps it to json. """ import argparse import json import os import sys import hashlib def main(): p...
engine/tools/fuchsia/parse_manifest.py/0
{ "file_path": "engine/tools/fuchsia/parse_manifest.py", "repo_id": "engine", "token_count": 479 }
491
// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // The following segment is not only used in the generating script, but also // copied to the generated package. /*@@@ SHARED SEGMENT START @@@*/ /// Used...
engine/tools/gen_web_locale_keymap/lib/common.dart/0
{ "file_path": "engine/tools/gen_web_locale_keymap/lib/common.dart", "repo_id": "engine", "token_count": 2835 }
492
# Updating gradle version used in engine repo The instructions in this README explain how to create a CIPD package that contains the gradle build-time dependency of the Android embedding of the Engine. The Android embedder is shipped to Flutter end-users, but gradle is not. ## Requirements 1. If you have a flutter/e...
engine/tools/gradle/README.md/0
{ "file_path": "engine/tools/gradle/README.md", "repo_id": "engine", "token_count": 400 }
493
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:convert'; import 'dart:core' hide RegExp; import 'dart:io' as system; import 'cache.dart'; import 'formatter.dart'; import 'limits.dart'; imp...
engine/tools/licenses/lib/licenses.dart/0
{ "file_path": "engine/tools/licenses/lib/licenses.dart", "repo_id": "engine", "token_count": 19155 }
494
## Overview This package contains libraries and example code for working with the engine_v2 build config json files that live under `flutter/ci/builders`. * `lib/src/build_config.dart`: Contains the Dart object representations of the build config json files. * `lib/src/build_config_loader.dart`: Contains a helper c...
engine/tools/pkg/engine_build_configs/README.md/0
{ "file_path": "engine/tools/pkg/engine_build_configs/README.md", "repo_id": "engine", "token_count": 431 }
495
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /// A minimal library for discovering and probing a local engine repository. /// /// This library is intended to be used by tools that need to interact wit...
engine/tools/pkg/engine_repo_tools/lib/engine_repo_tools.dart/0
{ "file_path": "engine/tools/pkg/engine_repo_tools/lib/engine_repo_tools.dart", "repo_id": "engine", "token_count": 3393 }
496
# Copyright 2013 The Flutter Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. if (is_fuchsia) { import("//flutter/tools/fuchsia/gn-sdk/src/gn_configs.gni") } source_set("vulkan") { sources = [ "vulkan_application.cc", "vulk...
engine/vulkan/BUILD.gn/0
{ "file_path": "engine/vulkan/BUILD.gn", "repo_id": "engine", "token_count": 631 }
497
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "vulkan_debug_report.h" #include <algorithm> #include <iomanip> #include <vector> #include "flutter/fml/compiler_specific.h" #include "vulkan_ut...
engine/vulkan/vulkan_debug_report.cc/0
{ "file_path": "engine/vulkan/vulkan_debug_report.cc", "repo_id": "engine", "token_count": 2917 }
498
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "vulkan_swapchain.h" #include "flutter/vulkan/procs/vulkan_proc_table.h" #include "third_party/skia/include/core/SkColorSpace.h" #include "third...
engine/vulkan/vulkan_swapchain.cc/0
{ "file_path": "engine/vulkan/vulkan_swapchain.cc", "repo_id": "engine", "token_count": 7857 }
499
// Copyright 2013 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:convert'; import 'dart:js_interop'; import 'package:test/test.dart'; // ignore: implementation_imports import 'package:u...
engine/web_sdk/web_engine_tester/lib/golden_tester.dart/0
{ "file_path": "engine/web_sdk/web_engine_tester/lib/golden_tester.dart", "repo_id": "engine", "token_count": 1048 }
500
<component name="CopyrightManager"> <copyright> <option name="myName" value="chromium" /> <option name="notice" value="Copyright &amp;#36;today.year The Chromium Authors. All rights reserved.&#10;Use of this source code is governed by a BSD-style license that can be&#10;found in the LICENSE file." /> </copy...
flutter-intellij/.idea/copyright/chromium.xml/0
{ "file_path": "flutter-intellij/.idea/copyright/chromium.xml", "repo_id": "flutter-intellij", "token_count": 104 }
501
<?xml version="1.0" encoding="UTF-8"?> <project version="4"> <component name="VcsDirectoryMappings"> <mapping directory="" vcs="Git" /> <mapping directory="$PROJECT_DIR$" vcs="Git" /> </component> </project>
flutter-intellij/.idea/vcs.xml/0
{ "file_path": "flutter-intellij/.idea/vcs.xml", "repo_id": "flutter-intellij", "token_count": 82 }
502
plugins { id "org.jetbrains.intellij" version "0.4.9" id 'org.jetbrains.kotlin.jvm' version '1.3.21' } group 'io.flutter.tests.gui' version '1.0-SNAPSHOT' repositories { mavenLocal() mavenCentral() jcenter() // this repo contains the test target plugin produced by the plugin tool, io.flutter:SNAPSHOT fl...
flutter-intellij/flutter-gui-tests/build.gradle/0
{ "file_path": "flutter-intellij/flutter-gui-tests/build.gradle", "repo_id": "flutter-intellij", "token_count": 1248 }
503
NEEDS TO BE UPDATED a/o 9 NOV 21 # Gradle Module Structure This module is a mirror of flutter-intellij (the non-Gradle version) that has sources structured in a way that the IntelliJ plugin for Gradle expects. A new module was required because the flutter-studio module has dependencies on a number of classes defined ...
flutter-intellij/flutter-idea/README.md/0
{ "file_path": "flutter-intellij/flutter-idea/README.md", "repo_id": "flutter-intellij", "token_count": 493 }
504
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.actions; import com.intellij.ide.ActivityTracker; import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.action...
flutter-intellij/flutter-idea/src/io/flutter/actions/DeviceSelectorAction.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/actions/DeviceSelectorAction.java", "repo_id": "flutter-intellij", "token_count": 2769 }
505
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.actions; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.DefaultActionGroup; im...
flutter-intellij/flutter-idea/src/io/flutter/actions/FlutterToolsActionGroup.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/actions/FlutterToolsActionGroup.java", "repo_id": "flutter-intellij", "token_count": 301 }
506
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.actions; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.i...
flutter-intellij/flutter-idea/src/io/flutter/actions/RestartFlutterDaemonAction.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/actions/RestartFlutterDaemonAction.java", "repo_id": "flutter-intellij", "token_count": 262 }
507
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.bazel; import com.google.common.annotations.VisibleForTesting; import com.google.common.base.Objects; import com.google.gson.Gso...
flutter-intellij/flutter-idea/src/io/flutter/bazel/PluginConfig.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/bazel/PluginConfig.java", "repo_id": "flutter-intellij", "token_count": 3134 }
508
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.devtools; public class DevToolsUtils { public static String findWidgetId(String url) { final String searchFor = "inspector...
flutter-intellij/flutter-idea/src/io/flutter/devtools/DevToolsUtils.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/devtools/DevToolsUtils.java", "repo_id": "flutter-intellij", "token_count": 181 }
509
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.editor; import com.intellij.openapi.editor.markup.GutterIconRenderer; import com.intellij.openapi.project.DumbAware; import com....
flutter-intellij/flutter-idea/src/io/flutter/editor/FlutterIconRenderer.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/editor/FlutterIconRenderer.java", "repo_id": "flutter-intellij", "token_count": 397 }
510
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.editor; import com.intellij.openapi.project.Project; import io.flutter.dart.FlutterDartAnalysisServer; import io.flutter.inspect...
flutter-intellij/flutter-idea/src/io/flutter/editor/WidgetEditingContext.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/editor/WidgetEditingContext.java", "repo_id": "flutter-intellij", "token_count": 307 }
511
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.inspector; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonNull; import com.goo...
flutter-intellij/flutter-idea/src/io/flutter/inspector/DiagnosticsNode.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/inspector/DiagnosticsNode.java", "repo_id": "flutter-intellij", "token_count": 8940 }
512
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.inspector; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.project.Project; import com.intel...
flutter-intellij/flutter-idea/src/io/flutter/inspector/JumpToSourceActionBase.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/inspector/JumpToSourceActionBase.java", "repo_id": "flutter-intellij", "token_count": 902 }
513
<?xml version="1.0" encoding="UTF-8"?> <form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="io.flutter.module.FlutterGeneratorPeer"> <grid id="27dc6" binding="myMainPanel" layout-manager="GridLayoutManager" row-count="6" column-count="12" same-size-horizontally="false" same-size-verticall...
flutter-intellij/flutter-idea/src/io/flutter/module/FlutterGeneratorPeer.form/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/module/FlutterGeneratorPeer.form", "repo_id": "flutter-intellij", "token_count": 1981 }
514
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.perf; import com.intellij.codeInsight.hint.HintManager; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.o...
flutter-intellij/flutter-idea/src/io/flutter/perf/EditorPerfDecorations.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/perf/EditorPerfDecorations.java", "repo_id": "flutter-intellij", "token_count": 5584 }
515
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.perf; import com.intellij.openapi.util.Pair; import com.intellij.openapi.util.Ref; import com.intellij.openapi.vfs.VirtualFile; ...
flutter-intellij/flutter-idea/src/io/flutter/perf/ScriptManager.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/perf/ScriptManager.java", "repo_id": "flutter-intellij", "token_count": 2207 }
516
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.performance; import com.intellij.openapi.Disposable; import com.intellij.openapi.actionSystem.ActionGroup; import com.intellij.o...
flutter-intellij/flutter-idea/src/io/flutter/performance/WidgetPerfTable.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/performance/WidgetPerfTable.java", "repo_id": "flutter-intellij", "token_count": 7549 }
517
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.pub; import com.intellij.openapi.module.Module; import com.intellij.openapi.module.ModuleManager; import com.intellij.openapi.pr...
flutter-intellij/flutter-idea/src/io/flutter/pub/PubRoots.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/pub/PubRoots.java", "repo_id": "flutter-intellij", "token_count": 587 }
518
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.run; import com.intellij.execution.*; import com.intellij.execution.configurations.CommandLineState; import com.intellij.executi...
flutter-intellij/flutter-idea/src/io/flutter/run/LaunchState.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/LaunchState.java", "repo_id": "flutter-intellij", "token_count": 6254 }
519
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.run.bazelTest; import com.google.common.annotations.VisibleForTesting; import com.intellij.execution.actions.ConfigurationContex...
flutter-intellij/flutter-idea/src/io/flutter/run/bazelTest/BazelTestConfigProducer.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/bazelTest/BazelTestConfigProducer.java", "repo_id": "flutter-intellij", "token_count": 2006 }
520
/* * Copyright 2021 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.run.coverage; import com.intellij.coverage.CoverageDataManager; import com.intellij.coverage.CoverageSuitesBundle; import com.in...
flutter-intellij/flutter-idea/src/io/flutter/run/coverage/FlutterCoverageAnnotator.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/coverage/FlutterCoverageAnnotator.java", "repo_id": "flutter-intellij", "token_count": 671 }
521
/* * Copyright 2020 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.run.test; import com.google.common.annotations.VisibleForTesting; import com.google.gson.Gson; import com.google.gson.reflect.Ty...
flutter-intellij/flutter-idea/src/io/flutter/run/test/DartTestLocationProviderZ.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/test/DartTestLocationProviderZ.java", "repo_id": "flutter-intellij", "token_count": 2796 }
522
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.samples; import org.jetbrains.annotations.NotNull; public class FlutterSample { @NotNull private final String libraryName; ...
flutter-intellij/flutter-idea/src/io/flutter/samples/FlutterSample.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/samples/FlutterSample.java", "repo_id": "flutter-intellij", "token_count": 345 }
523
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.sdk; import com.google.common.annotations.VisibleForTesting; import com.intellij.openapi.util.Version; import com.intellij.opena...
flutter-intellij/flutter-idea/src/io/flutter/sdk/FlutterSdkVersion.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/sdk/FlutterSdkVersion.java", "repo_id": "flutter-intellij", "token_count": 3668 }
524
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.utils; import com.google.common.util.concurrent.RateLimiter; import com.intellij.openapi.Disposable; import com.intellij.openapi...
flutter-intellij/flutter-idea/src/io/flutter/utils/AsyncRateLimiter.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/utils/AsyncRateLimiter.java", "repo_id": "flutter-intellij", "token_count": 1429 }
525
/* * Copyright 2016 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.utils; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.progress.ProgressIndicator; impor...
flutter-intellij/flutter-idea/src/io/flutter/utils/ProgressHelper.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/utils/ProgressHelper.java", "repo_id": "flutter-intellij", "token_count": 994 }
526
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.utils.math; import java.util.Arrays; /** * 4D Matrix. * <p> * Values are stored in column major order. * <p> * This code i...
flutter-intellij/flutter-idea/src/io/flutter/utils/math/Matrix4.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/utils/math/Matrix4.java", "repo_id": "flutter-intellij", "token_count": 36240 }
527
/* * Copyright 2018 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.view; import com.intellij.openapi.Disposable; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openap...
flutter-intellij/flutter-idea/src/io/flutter/view/FlutterViewLocalToggleableAction.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/view/FlutterViewLocalToggleableAction.java", "repo_id": "flutter-intellij", "token_count": 1030 }
528
// This code is forked from // com.intellij.openapi.actionSystem.ex.ComboBoxAction // to create a ComboBoxAction that dispays in a toolbar without a button border. // Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. package io.flu...
flutter-intellij/flutter-idea/src/io/flutter/view/ToolbarComboBoxAction.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/view/ToolbarComboBoxAction.java", "repo_id": "flutter-intellij", "token_count": 4740 }
529
package io.flutter.vmService.frame; import com.intellij.icons.AllIcons; import com.intellij.ui.ColoredTextContainer; import com.intellij.ui.SimpleTextAttributes; import com.intellij.xdebugger.frame.XStackFrame; import org.jetbrains.annotations.NotNull; /** * A XStackFrame used to render a separator between two sets ...
flutter-intellij/flutter-idea/src/io/flutter/vmService/frame/DartAsyncMarkerFrame.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/vmService/frame/DartAsyncMarkerFrame.java", "repo_id": "flutter-intellij", "token_count": 210 }
530
/* * Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file * for details. All rights reserved. Use of this source code is governed by a * BSD-style license that can be found in the LICENSE file. * * This file has been automatically generated. Please do not edit it manually. * To regenerate the...
flutter-intellij/flutter-idea/src/org/dartlang/analysis/server/protocol/FlutterWidgetPropertyEditorKind.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/org/dartlang/analysis/server/protocol/FlutterWidgetPropertyEditorKind.java", "repo_id": "flutter-intellij", "token_count": 410 }
531
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.bazel; import com.intellij.openapi.roots.ModifiableRootModel; import com.intellij.openapi.roots.ModuleRootModificationUtil; impo...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/bazel/WorkspaceCacheTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/bazel/WorkspaceCacheTest.java", "repo_id": "flutter-intellij", "token_count": 1053 }
532
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.logging; import org.junit.Test; import static org.junit.Assert.assertEquals; public class FlutterErrorHelperTest { @Test p...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/logging/FlutterErrorHelperTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/logging/FlutterErrorHelperTest.java", "repo_id": "flutter-intellij", "token_count": 2373 }
533
/* * Copyright 2019 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.run.bazelTest; import org.junit.Test; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.MatcherAssert...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/run/bazelTest/BazelTestConfigurationFactoryTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/run/bazelTest/BazelTestConfigurationFactoryTest.java", "repo_id": "flutter-intellij", "token_count": 344 }
534
/* * Copyright 2017 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ package io.flutter.testing; import com.intellij.openapi.module.Module; import com.intellij.openapi.project.Project; import com.intellij.testFramewo...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/testing/ProjectFixture.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/testing/ProjectFixture.java", "repo_id": "flutter-intellij", "token_count": 218 }
535
/* * Copyright (c) 2015, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or...
flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/Field.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/Field.java", "repo_id": "flutter-intellij", "token_count": 1064 }
536
/* * Copyright (c) 2015, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or...
flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/IsolateGroup.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/IsolateGroup.java", "repo_id": "flutter-intellij", "token_count": 660 }
537
/* * Copyright (c) 2015, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or...
flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/SentinelKind.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/SentinelKind.java", "repo_id": "flutter-intellij", "token_count": 444 }
538