text
stringlengths
6
13.6M
id
stringlengths
13
176
metadata
dict
__index_level_0__
int64
0
1.69k
// 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_SHELL_PLATFORM_WINDOWS_WINDOWS_LIFECYCLE_MANAGER_H_ #define FLUTTER_SHELL_PLATFORM_WINDOWS_WINDOWS_LIFECYCLE_MANAGER_H_ #include <Windows....
engine/shell/platform/windows/windows_lifecycle_manager.h/0
{ "file_path": "engine/shell/platform/windows/windows_lifecycle_manager.h", "repo_id": "engine", "token_count": 1586 }
371
// 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. // FLUTTER_NOLINT: https://github.com/flutter/flutter/issues/68332 #include "flutter/shell/version/version.h" namespace flutter { const char* GetFlutter...
engine/shell/version/version.cc/0
{ "file_path": "engine/shell/version/version.cc", "repo_id": "engine", "token_count": 167 }
372
#!/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. import argparse import errno import os import shutil import sys def main(): parser = argparse.ArgumentParser( description='...
engine/sky/tools/install_framework_headers.py/0
{ "file_path": "engine/sky/tools/install_framework_headers.py", "repo_id": "engine", "token_count": 390 }
373
# 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 sys import argparse import os import zipfile import subprocess def run_command_checked(command): try: subprocess.check_output(command, stderr=...
engine/testing/android/native_activity/native_activity_apk.py/0
{ "file_path": "engine/testing/android/native_activity/native_activity_apk.py", "repo_id": "engine", "token_count": 1152 }
374
#!/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. import argparse import os import subprocess import sys BUILDROOT_DIR = os.path.abspath(os.path.join(os.path.realpath(__file__), '..'...
engine/testing/android_systrace_test.py/0
{ "file_path": "engine/testing/android_systrace_test.py", "repo_id": "engine", "token_count": 1991 }
375
# 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("//flutter/build/dart/rules.gni") tests = [ "skp_test.dart", "tracing_test.dart", "shader_reload_test.dart", "vmservice_methods_test.dart", ] ...
engine/testing/dart/observatory/BUILD.gn/0
{ "file_path": "engine/testing/dart/observatory/BUILD.gn", "repo_id": "engine", "token_count": 255 }
376
// 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 "flutter/testing/display_list_testing.h" #include <iomanip> #include "flutter/display_list/display_list.h" namespace flutter { namespace testin...
engine/testing/display_list_testing.cc/0
{ "file_path": "engine/testing/display_list_testing.cc", "repo_id": "engine", "token_count": 16456 }
377
// 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 "flutter/testing/mock_canvas.h" #include "flutter/fml/logging.h" #include "flutter/testing/display_list_testing.h" #include "third_party/skia/inc...
engine/testing/mock_canvas.cc/0
{ "file_path": "engine/testing/mock_canvas.cc", "repo_id": "engine", "token_count": 8537 }
378
# 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("//flutter/testing/rules/runtime_mode.gni") template("gradle_task") { action(target_name) { assert(defined(invoker.task), "task is a required pa...
engine/testing/rules/android.gni/0
{ "file_path": "engine/testing/rules/android.gni", "repo_id": "engine", "token_count": 596 }
379
// 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/SpawnMultiEngineTest.java/0
{ "file_path": "engine/testing/scenario_app/android/app/src/androidTest/java/dev/flutter/scenariosui/SpawnMultiEngineTest.java", "repo_id": "engine", "token_count": 331 }
380
<?xml version="1.0" encoding="utf-8"?> <!-- Exclude all files from backup --> <data-extraction-rules> <cloud-backup> <exclude domain="root" path="."/> <exclude domain="file" path="."/> <exclude domain="database" path="."/> <exclude domain="sharedpref" path="."/> <exclude doma...
engine/testing/scenario_app/android/app/src/main/res/xml/data_extraction_rules.xml/0
{ "file_path": "engine/testing/scenario_app/android/app/src/main/res/xml/data_extraction_rules.xml", "repo_id": "engine", "token_count": 275 }
381
// 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 "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; UIButton* op...
engine/testing/scenario_app/ios/FlutterAppExtensionTestHost/FlutterAppExtensionTestHost/ViewController.m/0
{ "file_path": "engine/testing/scenario_app/ios/FlutterAppExtensionTestHost/FlutterAppExtensionTestHost/ViewController.m", "repo_id": "engine", "token_count": 589 }
382
// 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 "AppDelegate.h" #import "ContinuousTexture.h" #import "FlutterEngine+ScenariosTest.h" #import "ScreenBeforeFlutter.h" #import "TextPlatformView.h...
engine/testing/scenario_app/ios/Scenarios/Scenarios/AppDelegate.m/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/Scenarios/AppDelegate.m", "repo_id": "engine", "token_count": 3901 }
383
// 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_SCENARIO_APP_IOS_SCENARIOS_SCENARIOSSHARE_SHAREVIEWCONTROLLER_H_ #define FLUTTER_TESTING_SCENARIO_APP_IOS_SCENARIOS_SCENARIOSSHARE_...
engine/testing/scenario_app/ios/Scenarios/ScenariosShare/ShareViewController.h/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/ScenariosShare/ShareViewController.h", "repo_id": "engine", "token_count": 214 }
384
// 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 "GoldenTestManager.h" #import <XCTest/XCTest.h> @interface GoldenTestManager () @property(readwrite, strong, nonatomic) GoldenImage* goldenImage;...
engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/GoldenTestManager.m/0
{ "file_path": "engine/testing/scenario_app/ios/Scenarios/ScenariosUITests/GoldenTestManager.m", "repo_id": "engine", "token_count": 1989 }
385
// 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:vector_math/vector_math_64.dart'; import 'scenario.dart'; /// Sends the received locale data...
engine/testing/scenario_app/lib/src/locale_initialization.dart/0
{ "file_path": "engine/testing/scenario_app/lib/src/locale_initialization.dart", "repo_id": "engine", "token_count": 1813 }
386
# 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. name: skia_gold_client publish_to: none environment: sdk: '>=3.2.0-0 <4.0.0' # Do not add any dependencies that require more than what is provided in # //t...
engine/testing/skia_gold_client/pubspec.yaml/0
{ "file_path": "engine/testing/skia_gold_client/pubspec.yaml", "repo_id": "engine", "token_count": 765 }
387
// 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:io'; import 'package:path/path.dart' as p; // This script verifies that the release binaries only export the expected...
engine/testing/symbols/verify_exported.dart/0
{ "file_path": "engine/testing/symbols/verify_exported.dart", "repo_id": "engine", "token_count": 2915 }
388
// 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 <cassert> #include <memory> #include <optional> #include "flutter/flutter_vma/flutter_skia_vma.h" #include "flutter/fml/logging.h" #include "flut...
engine/testing/test_vulkan_context.cc/0
{ "file_path": "engine/testing/test_vulkan_context.cc", "repo_id": "engine", "token_count": 2615 }
389
# `flutter/third_party` This directory contains third-party code that is a combination of: - Code that is vendored into the Flutter repository, from an external source. For example, we might have `third_party/glfw`, which contains the GLFW library, vendored from an external repository. > 💡 **TIP**: See [`DEPS...
engine/third_party/README.md/0
{ "file_path": "engine/third_party/README.md", "repo_id": "engine", "token_count": 257 }
390
// 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_AX_COORDINATE_SYSTEM_H_ #define UI_ACCESSIBILITY_AX_COORDINATE_SYSTEM_H_ namespace ui { // The coordinate system of bounds or p...
engine/third_party/accessibility/ax/ax_coordinate_system.h/0
{ "file_path": "engine/third_party/accessibility/ax/ax_coordinate_system.h", "repo_id": "engine", "token_count": 482 }
391
// Copyright 2013 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_data.h" #include <algorithm> #include <cstddef> #include <iterator> #include <set> #include <utility> #include "ax_enum_util.h" #inclu...
engine/third_party/accessibility/ax/ax_node_data.cc/0
{ "file_path": "engine/third_party/accessibility/ax/ax_node_data.cc", "repo_id": "engine", "token_count": 26670 }
392
// 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 <unordered_set> #include "gtest/gtest.h" #include "ax_enum_util.h" #include "ax_enums.h" #include "ax_role_properties.h" namespace ui { TEST(...
engine/third_party/accessibility/ax/ax_role_properties_unittest.cc/0
{ "file_path": "engine/third_party/accessibility/ax/ax_role_properties_unittest.cc", "repo_id": "engine", "token_count": 1154 }
393
// 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. #ifndef UI_ACCESSIBILITY_AX_TREE_OBSERVER_H_ #define UI_ACCESSIBILITY_AX_TREE_OBSERVER_H_ #include <cstdint> #include <string> #include <vector> #includ...
engine/third_party/accessibility/ax/ax_tree_observer.h/0
{ "file_path": "engine/third_party/accessibility/ax/ax_tree_observer.h", "repo_id": "engine", "token_count": 2879 }
394
// 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_DELEGATE_UTILS_WIN_H_ #define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_DELEGATE_UTILS_WIN_H_ #includ...
engine/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.h/0
{ "file_path": "engine/third_party/accessibility/ax/platform/ax_platform_node_delegate_utils_win.h", "repo_id": "engine", "token_count": 218 }
395
// 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_WIN_UNITTEST_H_ #define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_NODE_WIN_UNITTEST_H_ #include "ax_platfo...
engine/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.h/0
{ "file_path": "engine/third_party/accessibility/ax/platform/ax_platform_node_win_unittest.h", "repo_id": "engine", "token_count": 1590 }
396
// 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. #ifndef ACCESSIBILITY_TEST_AX_AX_TREE_MANAGER_H_ #define ACCESSIBILITY_TEST_AX_AX_TREE_MANAGER_H_ #include <memory> #include "ax_tree.h" #include "ax_tr...
engine/third_party/accessibility/ax/test_ax_tree_manager.h/0
{ "file_path": "engine/third_party/accessibility/ax/test_ax_tree_manager.h", "repo_id": "engine", "token_count": 601 }
397
// 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 BASE_NUMERICS_CHECKED_MATH_H_ #define BASE_NUMERICS_CHECKED_MATH_H_ #include <cstddef> #include <limits> #include <type_traits> #include "base/n...
engine/third_party/accessibility/base/numerics/checked_math.h/0
{ "file_path": "engine/third_party/accessibility/base/numerics/checked_math.h", "repo_id": "engine", "token_count": 5476 }
398
// 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_SIMPLE_TOKEN_H_ #define BASE_SIMPLE_TOKEN_H_ #include <functional> #include <optional> #include <string> namespace base { // A simple strin...
engine/third_party/accessibility/base/simple_token.h/0
{ "file_path": "engine/third_party/accessibility/base/simple_token.h", "repo_id": "engine", "token_count": 456 }
399
// 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 BASE_WIN_SCOPED_BSTR_H_ #define BASE_WIN_SCOPED_BSTR_H_ #include <windows.h> #include <oleauto.h> #include <cstddef> #include "base/base_e...
engine/third_party/accessibility/base/win/scoped_bstr.h/0
{ "file_path": "engine/third_party/accessibility/base/win/scoped_bstr.h", "repo_id": "engine", "token_count": 942 }
400
// 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. #ifndef UI_GFX_GEOMETRY_INSETS_F_H_ #define UI_GFX_GEOMETRY_INSETS_F_H_ #include <string> #include "gfx/gfx_export.h" namespace gfx { // A floatin...
engine/third_party/accessibility/gfx/geometry/insets_f.h/0
{ "file_path": "engine/third_party/accessibility/gfx/geometry/insets_f.h", "repo_id": "engine", "token_count": 1057 }
401
// 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" #if defined(OS_WIN) #include <windows.h> #elif defined(OS_IOS) #include <CoreGraphics/CoreGraphics.h> #elif defined(OS_APPLE) #incl...
engine/third_party/accessibility/gfx/geometry/size.cc/0
{ "file_path": "engine/third_party/accessibility/gfx/geometry/size.cc", "repo_id": "engine", "token_count": 1165 }
402
// 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. #import "coordinate_conversion.h" #import <Cocoa/Cocoa.h> #include "gfx/geometry/point.h" #include "gfx/geometry/rect.h" namespace gfx { namespace { ...
engine/third_party/accessibility/gfx/mac/coordinate_conversion.mm/0
{ "file_path": "engine/third_party/accessibility/gfx/mac/coordinate_conversion.mm", "repo_id": "engine", "token_count": 406 }
403
# spring_animation This is directly derived from [Libraries/Animated/animations/SpringAnimation.js](https://github.com/facebook/react-native/blob/494c47360f62761176033a4da359f43b53c2182f/Libraries/Animated/animations/SpringAnimation.js) as of 2023-01-10, a part of the React Native library.
engine/third_party/spring_animation/README.md/0
{ "file_path": "engine/third_party/spring_animation/README.md", "repo_id": "engine", "token_count": 99 }
404
// 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_persistent_value.h" #include "tonic/dart_state.h" #include "tonic/scopes/dart_isolate_scope.h" namespace tonic { DartPersistentValu...
engine/third_party/tonic/dart_persistent_value.cc/0
{ "file_path": "engine/third_party/tonic/dart_persistent_value.cc", "repo_id": "engine", "token_count": 744 }
405
Files ===== A simple cross-platform library with minimal dependencies to work with files and paths.
engine/third_party/tonic/filesystem/README.md/0
{ "file_path": "engine/third_party/tonic/filesystem/README.md", "repo_id": "engine", "token_count": 22 }
406
// 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_LOGGING_DART_ERROR_H_ #define LIB_TONIC_LOGGING_DART_ERROR_H_ #include "third_party/dart/runtime/include/dart_api.h" #include "tonic/da...
engine/third_party/tonic/logging/dart_error.h/0
{ "file_path": "engine/third_party/tonic/logging/dart_error.h", "repo_id": "engine", "token_count": 837 }
407
/* * Copyright 2019 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/skia/paragraph_skia.h/0
{ "file_path": "engine/third_party/txt/src/skia/paragraph_skia.h", "repo_id": "engine", "token_count": 1018 }
408
/* * 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/paragraph_style.h/0
{ "file_path": "engine/third_party/txt/src/txt/paragraph_style.h", "repo_id": "engine", "token_count": 1037 }
409
/* * 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 t...
engine/third_party/txt/src/txt/text_decoration.h/0
{ "file_path": "engine/third_party/txt/src/txt/text_decoration.h", "repo_id": "engine", "token_count": 335 }
410
// 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'; class EmbeddedTestFont { const EmbeddedTestFont._({ required this.fontFamily, required this.data, }); static ...
engine/third_party/web_test_fonts/lib/web_test_fonts/web_test_fonts.dart/0
{ "file_path": "engine/third_party/web_test_fonts/lib/web_test_fonts/web_test_fonts.dart", "repo_id": "engine", "token_count": 13333 }
411
// 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:path/path.dart' as path; import 'package:process/process.dart'; const LocalProcessMana...
engine/tools/android_lint/bin/main.dart/0
{ "file_path": "engine/tools/android_lint/bin/main.dart", "repo_id": "engine", "token_count": 2103 }
412
// 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' as io show Directory, File, Platform, stderr; import 'package:clang_tidy/clang_tidy.dart'; import 'package:clang_tidy/src/command.dart'; ...
engine/tools/clang_tidy/test/clang_tidy_test.dart/0
{ "file_path": "engine/tools/clang_tidy/test/clang_tidy_test.dart", "repo_id": "engine", "token_count": 8839 }
413
# Generated by pub on 2020-01-15 10:08:29.776333. const_finder_fixtures:lib/ const_finder_fixtures_package:pkg/
engine/tools/const_finder/test/fixtures/.packages/0
{ "file_path": "engine/tools/const_finder/test/fixtures/.packages", "repo_id": "engine", "token_count": 42 }
414
// 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 'package:engine_build_configs/engine_build_configs.dart'; import 'command.dart'; import 'flags.dart'; // ignore: public_member_api_docs final clas...
engine/tools/engine_tool/lib/src/commands/query_command.dart/0
{ "file_path": "engine/tools/engine_tool/lib/src/commands/query_command.dart", "repo_id": "engine", "token_count": 1422 }
415
// 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' as convert; import 'dart:ffi' as ffi show Abi; import 'dart:io' as io; import 'package:engine_build_configs/engine_build_configs.dar...
engine/tools/engine_tool/test/lint_command_test.dart/0
{ "file_path": "engine/tools/engine_tool/test/lint_command_test.dart", "repo_id": "engine", "token_count": 1155 }
416
# 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("//flutter/tools/fuchsia/dart/config.gni") import("//flutter/tools/fuchsia/dart/dart.gni") import("//flutter/tools/fuchsia/flutter/internal/flutter_dar...
engine/tools/fuchsia/dart/dart_component.gni/0
{ "file_path": "engine/tools/fuchsia/dart/dart_component.gni", "repo_id": "engine", "token_count": 1430 }
417
#!/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. # ### Builds and copies the Flutter and Dart runners for the Fuchsia platform. ### ### Arguments: ### --runtime-mode: The runtime mode to build F...
engine/tools/fuchsia/devshell/build_and_copy_to_fuchsia.sh/0
{ "file_path": "engine/tools/fuchsia/devshell/build_and_copy_to_fuchsia.sh", "repo_id": "engine", "token_count": 2689 }
418
#!/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. """ Gather all the fuchsia artifacts to a destination directory. """ import argparse import errno import json import os import platf...
engine/tools/fuchsia/gather_flutter_runner_artifacts.py/0
{ "file_path": "engine/tools/fuchsia/gather_flutter_runner_artifacts.py", "repo_id": "engine", "token_count": 893 }
419
#!/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. import sys, math from operator import itemgetter from itertools import groupby import unicodedata import fontforge NAME = "FlutterTe...
engine/tools/gen_test_font.py/0
{ "file_path": "engine/tools/gen_test_font.py", "repo_id": "engine", "token_count": 4167 }
420
// 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 'package:args/command_runner.dart'; import 'messages.dart'; /// The command that implements the post-merge githook class PostMergeCommand extends ...
engine/tools/githooks/lib/src/post_merge_command.dart/0
{ "file_path": "engine/tools/githooks/lib/src/post_merge_command.dart", "repo_id": "engine", "token_count": 173 }
421
include: ../../analysis_options.yaml
engine/tools/golden_tests_harvester/analysis_options.yaml/0
{ "file_path": "engine/tools/golden_tests_harvester/analysis_options.yaml", "repo_id": "engine", "token_count": 12 }
422
# path_ops A small library that exposes C bindings for Skia's SkPathOps, with a minimal interface for SkPath. This library only supports four commands from SkPath: `moveTo`, `lineTo`, `cubicTo`, and `close`. This library is a subset of the functionality provided by Skia's `PathKit` library. It is primarily intended ...
engine/tools/path_ops/README.md/0
{ "file_path": "engine/tools/path_ops/README.md", "repo_id": "engine", "token_count": 122 }
423
// 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 'package:engine_build_configs/src/build_config.dart'; import 'package:engine_build_configs/src/build_config_loader.dart'; import 'package:file/file....
engine/tools/pkg/engine_build_configs/test/build_config_loader_test.dart/0
{ "file_path": "engine/tools/pkg/engine_build_configs/test/build_config_loader_test.dart", "repo_id": "engine", "token_count": 645 }
424
# 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. # This python script uses `pub get --offline` to fill in # .dart_tool/package_config.json files for Dart packages in the tree whose # dependencies should be e...
engine/tools/pub_get_offline.py/0
{ "file_path": "engine/tools/pub_get_offline.py", "repo_id": "engine", "token_count": 2190 }
425
// 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_application.h" #include <utility> #include <vector> #include "flutter/vulkan/procs/vulkan_proc_table.h" #include "vulkan_device.h" #incl...
engine/vulkan/vulkan_application.cc/0
{ "file_path": "engine/vulkan/vulkan_application.cc", "repo_id": "engine", "token_count": 2778 }
426
// 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_provider.h" namespace vulkan { vulkan::VulkanHandle<VkFence> VulkanProvider::CreateFence() { const VkFenceCreateInfo create_info = { ...
engine/vulkan/vulkan_provider.cc/0
{ "file_path": "engine/vulkan/vulkan_provider.cc", "repo_id": "engine", "token_count": 328 }
427
# Copyright (c) 2017, 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 libraries file is only used for building the ddc kernel. # # Note: if you edit this file, you must ...
engine/web_sdk/libraries.yaml/0
{ "file_path": "engine/web_sdk/libraries.yaml", "repo_id": "engine", "token_count": 1057 }
428
name: web_test_utils # Keep the SDK version range in sync with lib/web_ui/pubspec.yaml environment: sdk: '>=3.2.0-0 <4.0.0' dependencies: collection: 1.17.0 crypto: 3.0.1 image: 3.0.1 js: 0.6.4 meta: ^1.7.0 path: 1.8.0 process: 4.2.3 skia_gold_client: path: ../../testing/skia_gold_client typed...
engine/web_sdk/web_test_utils/pubspec.yaml/0
{ "file_path": "engine/web_sdk/web_test_utils/pubspec.yaml", "repo_id": "engine", "token_count": 208 }
429
<project version="4"> <component name="ClientPropertiesManager"> <properties class="javax.swing.JPanel"> <property name="BorderFactoryClass" class="java.lang.String" /> </properties> </component> <component name="ExternalStorageConfigurationManager" enabled="true" /> <component name="FrameworkDete...
flutter-intellij/.idea/misc.xml/0
{ "file_path": "flutter-intellij/.idea/misc.xml", "repo_id": "flutter-intellij", "token_count": 202 }
430
#!/bin/bash # TODO: Warn if 'pub get' needs to be done. dart tool/plugin/bin/main.dart "$@"
flutter-intellij/bin/plugin/0
{ "file_path": "flutter-intellij/bin/plugin", "repo_id": "flutter-intellij", "token_count": 40 }
431
/* * 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.tests.gui import com.intellij.testGuiFramework.framework.GuiTestSuite import com.intellij.testGuiFramework.framework.GuiTestSui...
flutter-intellij/flutter-gui-tests/testSrc/io/flutter/tests/gui/TestSuite.kt/0
{ "file_path": "flutter-intellij/flutter-gui-tests/testSrc/io/flutter/tests/gui/TestSuite.kt", "repo_id": "flutter-intellij", "token_count": 271 }
432
/* * 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; import com.google.common.base.Charsets; import com.intellij.execution.ExecutionException; import com.intellij.execution.configu...
flutter-intellij/flutter-idea/src/io/flutter/FlutterUtils.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/FlutterUtils.java", "repo_id": "flutter-intellij", "token_count": 7471 }
433
/* * 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.CommonDataKeys; import...
flutter-intellij/flutter-idea/src/io/flutter/actions/FlutterPackagesExplorerActionGroup.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/actions/FlutterPackagesExplorerActionGroup.java", "repo_id": "flutter-intellij", "token_count": 369 }
434
/* * 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.ActionManager; import com.intellij.openapi.actionSystem.AnActionEvent; import ...
flutter-intellij/flutter-idea/src/io/flutter/actions/ReloadFlutterApp.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/actions/ReloadFlutterApp.java", "repo_id": "flutter-intellij", "token_count": 834 }
435
/* * 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.analytics; import com.intellij.openapi.project.Project; import com.intellij.openapi.util.text.StringUtil; import com.intellij.op...
flutter-intellij/flutter-idea/src/io/flutter/analytics/ToolWindowTracker.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/analytics/ToolWindowTracker.java", "repo_id": "flutter-intellij", "token_count": 522 }
436
/* * 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.dart; import com.intellij.psi.PsiElement; import com.intellij.psi.impl.source.tree.LeafPsiElement; import com.jetbrains.lang.dar...
flutter-intellij/flutter-idea/src/io/flutter/dart/DartSyntax.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/dart/DartSyntax.java", "repo_id": "flutter-intellij", "token_count": 2338 }
437
/* * 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.editor; import com.intellij.openapi.diagnostic.Logger; import io.flutter.FlutterUtils; import org.jetbrains.annotations.NotNull;...
flutter-intellij/flutter-idea/src/io/flutter/editor/FlutterColors.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/editor/FlutterColors.java", "repo_id": "flutter-intellij", "token_count": 1335 }
438
/* * 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.editor; import com.intellij.openapi.actionSystem.*; import com.intellij.openapi.fileEditor.FileEditor; import com.intellij.opena...
flutter-intellij/flutter-idea/src/io/flutter/editor/NativeEditorNotificationProvider.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/editor/NativeEditorNotificationProvider.java", "repo_id": "flutter-intellij", "token_count": 1973 }
439
/* * 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.font; import com.intellij.openapi.application.ApplicationManager; import com.intellij.openapi.project.Project; import com.intell...
flutter-intellij/flutter-idea/src/io/flutter/font/ProjectOpenListener.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/font/ProjectOpenListener.java", "repo_id": "flutter-intellij", "token_count": 342 }
440
/* * 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.inspector; import io.flutter.inspector.InspectorService.ObjectGroup; import java.util.concurrent.CompletableFuture; /** * Man...
flutter-intellij/flutter-idea/src/io/flutter/inspector/InspectorObjectGroupManager.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/inspector/InspectorObjectGroupManager.java", "repo_id": "flutter-intellij", "token_count": 917 }
441
package io.flutter.jxbrowser; public class InstallationFailedReason { public FailureType failureType; public String detail; public InstallationFailedReason(FailureType failureType) { this(failureType, null); } InstallationFailedReason(FailureType failureType, String detail) { this...
flutter-intellij/flutter-idea/src/io/flutter/jxbrowser/InstallationFailedReason.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/jxbrowser/InstallationFailedReason.java", "repo_id": "flutter-intellij", "token_count": 131 }
442
/* * 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.module.settings; import com.intellij.openapi.ui.ComboBox; import io.flutter.FlutterBundle; import io.flutter.FlutterUtils; impor...
flutter-intellij/flutter-idea/src/io/flutter/module/settings/ProjectType.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/module/settings/ProjectType.java", "repo_id": "flutter-intellij", "token_count": 1594 }
443
/* * 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; /** * Performance metrics. * <p> * Additional performance metrics can be defined without requiring changes to * packag...
flutter-intellij/flutter-idea/src/io/flutter/perf/PerfMetric.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/perf/PerfMetric.java", "repo_id": "flutter-intellij", "token_count": 258 }
444
/* * 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.ide.util.PropertiesComponent; import com.intellij.openapi.application.ApplicationManager; impor...
flutter-intellij/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/performance/FlutterPerformanceViewFactory.java", "repo_id": "flutter-intellij", "token_count": 809 }
445
/* * 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.project; import com.intellij.icons.AllIcons; import com.intellij.ide.IconProvider; import com.intellij.openapi.project.Project; ...
flutter-intellij/flutter-idea/src/io/flutter/project/FlutterIconProvider.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/project/FlutterIconProvider.java", "repo_id": "flutter-intellij", "token_count": 1147 }
446
/* * 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.google.common.annotations.VisibleForTesting; import com.intellij.openapi.application.ApplicationManager; import ...
flutter-intellij/flutter-idea/src/io/flutter/run/FlutterPositionMapper.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/FlutterPositionMapper.java", "repo_id": "flutter-intellij", "token_count": 5490 }
447
/* * 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.run.bazel; import com.intellij.execution.ExecutionException; import com.intellij.execution.Executor; import com.intellij.executi...
flutter-intellij/flutter-idea/src/io/flutter/run/bazel/BazelRunConfig.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/bazel/BazelRunConfig.java", "repo_id": "flutter-intellij", "token_count": 1306 }
448
/* * 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.intellij.psi.PsiElement; import io.flutter.run.common.TestLineMarkerContributor; import org.jetbrains....
flutter-intellij/flutter-idea/src/io/flutter/run/bazelTest/FlutterBazelTestLineMarkerContributor.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/bazelTest/FlutterBazelTestLineMarkerContributor.java", "repo_id": "flutter-intellij", "token_count": 236 }
449
/* * 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.daemon; public class DevToolsInstance { final public String host; final public int port; public DevToolsInstance(Stri...
flutter-intellij/flutter-idea/src/io/flutter/run/daemon/DevToolsInstance.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/daemon/DevToolsInstance.java", "repo_id": "flutter-intellij", "token_count": 118 }
450
/* * 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.test; import com.intellij.execution.ExecutionResult; import com.intellij.execution.runners.ExecutionEnvironment; import com....
flutter-intellij/flutter-idea/src/io/flutter/run/test/TestDebugProcess.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/run/test/TestDebugProcess.java", "repo_id": "flutter-intellij", "token_count": 714 }
451
/* * 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.sdk; import com.intellij.openapi.project.Project; import com.intellij.openapi.roots.libraries.LibraryType; import com.intellij.o...
flutter-intellij/flutter-idea/src/io/flutter/sdk/FlutterPluginLibraryType.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/sdk/FlutterPluginLibraryType.java", "repo_id": "flutter-intellij", "token_count": 597 }
452
/* * 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.template; import com.intellij.psi.PsiComment; import com.intellij.psi.PsiElement; import com.intellij.psi.util.PsiTreeUtil; impo...
flutter-intellij/flutter-idea/src/io/flutter/template/DartToplevelTemplateContextType.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/template/DartToplevelTemplateContextType.java", "repo_id": "flutter-intellij", "token_count": 278 }
453
/* * 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.utils; import com.intellij.execution.RunManager; import com.intellij.execution.RunnerAndConfigurationSettings; import com.intell...
flutter-intellij/flutter-idea/src/io/flutter/utils/FlutterModuleUtils.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/utils/FlutterModuleUtils.java", "repo_id": "flutter-intellij", "token_count": 5764 }
454
/* * 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.utils; import org.dartlang.vm.service.VmServiceListener; import org.dartlang.vm.service.element.Event; public abstract class Vm...
flutter-intellij/flutter-idea/src/io/flutter/utils/VmServiceListenerAdapter.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/utils/VmServiceListenerAdapter.java", "repo_id": "flutter-intellij", "token_count": 159 }
455
/* * Copyright 2022 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.application.ApplicationManager; import com.intellij.openapi.diagnostic.Logger; import com.inte...
flutter-intellij/flutter-idea/src/io/flutter/view/EmbeddedBrowser.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/view/EmbeddedBrowser.java", "repo_id": "flutter-intellij", "token_count": 2301 }
456
/* * 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. */ /* * Copyright 2000-2017 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except...
flutter-intellij/flutter-idea/src/io/flutter/view/MultiIconSimpleColoredComponent.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/view/MultiIconSimpleColoredComponent.java", "repo_id": "flutter-intellij", "token_count": 13967 }
457
/* * 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.vmService; import org.jetbrains.annotations.Nullable; public final class ServiceExtensionState { private final boolean enable...
flutter-intellij/flutter-idea/src/io/flutter/vmService/ServiceExtensionState.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/io/flutter/vmService/ServiceExtensionState.java", "repo_id": "flutter-intellij", "token_count": 181 }
458
/* * 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/FlutterOutline.java/0
{ "file_path": "flutter-intellij/flutter-idea/src/org/dartlang/analysis/server/protocol/FlutterOutline.java", "repo_id": "flutter-intellij", "token_count": 4114 }
459
/* * 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.analytics; import org.junit.Before; import org.junit.Test; import java.io.PrintWriter; import java.io.StringWriter; import sta...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/analytics/AnalyticsTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/analytics/AnalyticsTest.java", "repo_id": "flutter-intellij", "token_count": 568 }
460
/* * 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.editor; import com.intellij.codeInsight.daemon.LineMarkerInfo; import com.intellij.psi.PsiElement; import com.intellij.psi.impl....
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/editor/FlutterIconLineMarkerTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/editor/FlutterIconLineMarkerTest.java", "repo_id": "flutter-intellij", "token_count": 1991 }
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. */ package io.flutter.run; import com.intellij.openapi.roots.ModuleRootModificationUtil; import com.intellij.openapi.vfs.VirtualFile; import io.flutte...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/run/MainFileTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/run/MainFileTest.java", "repo_id": "flutter-intellij", "token_count": 1213 }
462
/* * 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.sdk; import org.junit.Test; import static org.junit.Assert.*; public class FlutterSdkVersionTest { @Test public void parse...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/sdk/FlutterSdkVersionTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/sdk/FlutterSdkVersionTest.java", "repo_id": "flutter-intellij", "token_count": 1780 }
463
/* * 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.Uninterruptibles; import org.junit.Test; import java.util.List; import java.uti...
flutter-intellij/flutter-idea/testSrc/unit/io/flutter/utils/ThreadUtilTest.java/0
{ "file_path": "flutter-intellij/flutter-idea/testSrc/unit/io/flutter/utils/ThreadUtilTest.java", "repo_id": "flutter-intellij", "token_count": 509 }
464
/* * 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/ClassObj.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/ClassObj.java", "repo_id": "flutter-intellij", "token_count": 2247 }
465
/* * 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/ErrorObj.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/ErrorObj.java", "repo_id": "flutter-intellij", "token_count": 666 }
466
/* * 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/Instance.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/Instance.java", "repo_id": "flutter-intellij", "token_count": 5949 }
467
/* * 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/NativeFunction.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/NativeFunction.java", "repo_id": "flutter-intellij", "token_count": 340 }
468
/* * 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/RetainingObject.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/element/RetainingObject.java", "repo_id": "flutter-intellij", "token_count": 891 }
469
/* * 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/internal/VmServiceConst.java/0
{ "file_path": "flutter-intellij/flutter-idea/third_party/vmServiceDrivers/org/dartlang/vm/service/internal/VmServiceConst.java", "repo_id": "flutter-intellij", "token_count": 564 }
470