repo_id
stringlengths
21
168
file_path
stringlengths
36
210
content
stringlengths
1
9.98M
__index_level_0__
int64
0
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/charcode/html_entity.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source is governed by a // BSD-style license that can be found in the LICENSE file. /// Character codes based on HTML 4.01 character entity names. /// /// For each entity name, e.g., `nbsp`, /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging/logging.dart
// Copyright (c) 2012, 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. import 'src/log_record.dart'; import 'src/logger.dart'; export 'src/level.dart'; export 'src/log_recor...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging/src/logger.dart
import 'dart:async'; import 'dart:collection'; import 'level.dart'; import 'log_record.dart'; /// Whether to allow fine-grain logging and configuration of loggers in a /// hierarchy. /// /// When false, all hierarchical logging instead is merged in the root logger. bool hierarchicalLoggingEnabled = false; /// Automa...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging/src/log_record.dart
import 'dart:async'; import 'level.dart'; import 'logger.dart'; /// A log entry representation used to propagate information from [Logger] to /// individual handlers. class LogRecord { final Level level; final String message; /// Non-string message passed to Logger. final Object object; /// Logger where t...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/logging/src/level.dart
// 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. /// [Level]s to control logging output. Logging can be enabled to include all /// levels above certain [...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/http_parser.dart
// Copyright (c) 2014, 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. export 'src/authentication_challenge.dart'; export 'src/case_insensitive_map.dart'; export 'src/chunked...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/chunked_coding.dart
// Copyright (c) 2016, 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. import 'dart:convert'; import 'chunked_coding/decoder.dart'; import 'chunked_coding/encoder.dart'; ex...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/media_type.dart
// Copyright (c) 2014, 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. import 'package:collection/collection.dart'; import 'package:string_scanner/string_scanner.dart'; impo...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/scan.dart
// Copyright (c) 2015, 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. import 'package:string_scanner/string_scanner.dart'; /// An HTTP token. final token = RegExp(r'[^()<>@...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/authentication_challenge.dart
// Copyright (c) 2015, 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. import 'dart:collection'; import 'package:string_scanner/string_scanner.dart'; import 'case_insensiti...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/case_insensitive_map.dart
// Copyright (c) 2015, 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. import 'package:collection/collection.dart'; /// A map from case-insensitive strings to values. /// //...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/utils.dart
// Copyright (c) 2015, 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. import 'package:source_span/source_span.dart'; /// Runs [body] and wraps any format exceptions it prod...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/http_date.dart
// Copyright (c) 2014, 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. import 'package:string_scanner/string_scanner.dart'; import 'utils.dart'; const _weekdays = ['Mon', '...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/chunked_coding/decoder.dart
// Copyright (c) 2016, 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. import 'dart:convert'; import 'dart:math' as math; import 'dart:typed_data'; import 'package:charcode/...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_parser/src/chunked_coding/encoder.dart
// Copyright (c) 2016, 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. import 'dart:convert'; import 'dart:typed_data'; import 'package:charcode/ascii.dart'; /// The canoni...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/shelf_web_socket/shelf_web_socket.dart
// Copyright (c) 2014, 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. import 'package:shelf/shelf.dart'; import 'package:web_socket_channel/web_socket_channel.dart'; import...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/shelf_web_socket
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/shelf_web_socket/src/web_socket_handler.dart
// Copyright (c) 2014, 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. import 'dart:convert'; import 'package:shelf/shelf.dart'; import 'package:web_socket_channel/web_socke...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_multi_server/http_multi_server.dart
// Copyright (c) 2014, 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. import 'dart:async'; import 'dart:io'; import 'package:async/async.dart'; import 'src/multi_headers.d...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_multi_server
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_multi_server/src/multi_headers.dart
// Copyright (c) 2014, 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. import 'dart:io'; /// A class that delegates header access and setting to many [HttpHeaders] /// insta...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_multi_server
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/http_multi_server/src/utils.dart
// Copyright (c) 2014, 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. import 'dart:async'; import 'dart:io'; /// Returns whether this computer supports binding to IPv6 addr...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/protobuf.dart
// Copyright (c) 2011, 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. library protobuf; import 'dart:collection' show ListBase, MapBase; import 'dart:convert' show base...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/meta.dart
// Copyright (c) 2015, 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. /// Provides metadata about GeneratedMessage and ProtobufEnum to /// dart-protoc-plugin. (Experimental ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/extension.dart
// Copyright (c) 2012, 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. part of protobuf; /// An object representing an extension field. class Extension<T> extends FieldInfo<...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/pb_list.dart
// Copyright (c) 2011, 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. part of protobuf; typedef CheckFunc<E> = void Function(E x); class FrozenPbList<E> extends PbListBase...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/pb_map.dart
// Copyright (c) 2018, 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. part of protobuf; class PbMap<K, V> extends MapBase<K, V> { final int keyFieldType; final int valu...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/exceptions.dart
// Copyright (c) 2012, 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. part of protobuf; class InvalidProtocolBufferException implements Exception { final String message; ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/coded_buffer_reader.dart
// Copyright (c) 2011, 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. part of protobuf; class CodedBufferReader { static const int DEFAULT_RECURSION_LIMIT = 64; static ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/readonly_message.dart
// Copyright (c) 2015, 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. part of protobuf; /// Modifies a GeneratedMessage so that it's read-only. abstract class ReadonlyMessa...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/permissive_compare.dart
// 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. /// Returns true if [a] and [b] are the same ignoring case and all instances of /// `-` and `_`. /// /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/field_info.dart
// Copyright (c) 2012, 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. part of protobuf; /// An object representing a protobuf message field. class FieldInfo<T> { FrozenPb...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/type_registry.dart
// 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. import '../../protobuf.dart'; /// A TypeRegistry is used to resolve Any messages in the proto3 JSON co...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/field_set.dart
// Copyright (c) 2015, 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. part of protobuf; typedef FrozenMessageErrorHandler = void Function(String messageName, [String me...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/generated_message.dart
// Copyright (c) 2011, 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. part of protobuf; typedef CreateBuilderFunc = GeneratedMessage Function(); typedef MakeDefaultFunc = F...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/unknown_field_set.dart
// Copyright (c) 2011, 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. part of protobuf; class UnknownFieldSet { static final UnknownFieldSet emptyUnknownFieldSet = Unknow...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/generated_service.dart
// Copyright (c) 2015, 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. part of protobuf; /// Server side context. class ServerContext { // TODO: Place server specific info...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/rpc_client.dart
// Copyright (c) 2015, 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. part of protobuf; /// Client side context. class ClientContext { /// The desired timeout of the RPC ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/json.dart
// Copyright (c) 2015, 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. part of protobuf; Map<String, dynamic> _writeToJsonMap(_FieldSet fs) { dynamic convertToMap(dynamic ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/coded_buffer.dart
// Copyright (c) 2015, 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. part of protobuf; void _writeToCodedBufferWriter(_FieldSet fs, CodedBufferWriter out) { // Sorting b...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/protobuf_enum.dart
// Copyright (c) 2011, 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. part of protobuf; /// A base class for all Protocol Buffer enum types. /// /// All Protocol Buffer [:e...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/json_parsing_context.dart
// 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. class JsonParsingContext { // A list of indices into maps and lists pointing to the current root. f...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/field_type.dart
// Copyright (c) 2012, 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. part of protobuf; bool _isRepeated(int fieldType) => (fieldType & PbFieldType._REPEATED_BIT) != 0; bo...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/event_plugin.dart
part of protobuf; /// An EventPlugin receives callbacks when the fields of a GeneratedMessage /// change. /// /// A GeneratedMessage mixin can install a plugin by overriding the eventPlugin /// property. The intent is provide mechanism, not policy; each mixin defines /// its own public API, perhaps using streams. /// ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/field_error.dart
// Copyright (c) 2015, 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. part of protobuf; /// Returns the error message for an invalid field value, /// or null if it's valid....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/wire_format.dart
// Copyright (c) 2011, 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. part of protobuf; const int TAG_TYPE_BITS = 3; const int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1; co...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/utils.dart
// Copyright (c) 2013, 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. part of protobuf; // TODO(antonm): reconsider later if PbList should take care of equality. bool _deep...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/unpack.dart
// Copyright (c) 2018, 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. part of protobuf; /// Unpacks the message in [value] into [instance]. /// /// Throws a [InvalidProtoco...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/proto3_json.dart
// 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. part of protobuf; Object _writeToProto3Json(_FieldSet fs, TypeRegistry typeRegistry) { String conver...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/extension_field_set.dart
// Copyright (c) 2015, 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. part of protobuf; class _ExtensionFieldSet { final _FieldSet _parent; final Map<int, Extension> _i...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/coded_buffer_writer.dart
// Copyright (c) 2011, 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. part of protobuf; /// Writer used for converting [GeneratedMessage]s into binary /// representation. /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/extension_registry.dart
// Copyright (c) 2011, 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. part of protobuf; /// A collection of [Extension] objects, organized by the message type they /// exte...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/builder_info.dart
// Copyright (c) 2011, 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. part of protobuf; /// Per-message type setup. class BuilderInfo { /// The fully qualified name of th...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/mixins/map_mixin.dart
// Copyright (c) 2015, 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. library protobuf.mixins.map; import 'package:protobuf/protobuf.dart' show BuilderInfo; /// Note that ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/mixins/event_mixin.dart
// Copyright (c) 2015, 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. library protobuf.mixins.event; import 'dart:async' show StreamController, scheduleMicrotask; import 'd...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/protobuf/src/protobuf/mixins/well_known.dart
// 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. import 'dart:convert'; import 'package:fixnum/fixnum.dart'; import '../json_parsing_context.dart'; im...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/path.dart
// Copyright (c) 2012, 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. /// A comprehensive, cross-platform path manipulation library. /// /// The path library was designed to...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/style.dart
// Copyright (c) 2013, 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. import 'context.dart'; import 'style/posix.dart'; import 'style/url.dart'; import 'style/windows.dart';...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/parsed_path.dart
// Copyright (c) 2013, 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. import 'internal_style.dart'; import 'style.dart'; class ParsedPath { /// The [InternalStyle] that w...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/path_set.dart
// Copyright (c) 2018, 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. import 'dart:collection'; import '../path.dart' as p; /// A set containing paths, compared using [equ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/characters.dart
// Copyright (c) 2014, 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 library contains character-code definitions. const plus = 0x2b; const minus = 0x2d; const peri...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/path_exception.dart
// Copyright (c) 2013, 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. /// An exception class that's thrown when a path operation is unable to be /// computed accurately. cla...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/path_map.dart
// Copyright (c) 2018, 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. import 'dart:collection'; import '../path.dart' as p; /// A map whose keys are paths, compared using ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/internal_style.dart
// Copyright (c) 2014, 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. import 'context.dart'; import 'style.dart'; /// The internal interface for the [Style] type. /// /// U...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/utils.dart
// Copyright (c) 2014, 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. import 'characters.dart' as chars; /// Returns whether [char] is the code for an ASCII letter (upperca...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/context.dart
// Copyright (c) 2013, 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. import 'dart:math' as math; import '../path.dart' as p; import 'characters.dart' as chars; import 'int...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/style/windows.dart
// Copyright (c) 2013, 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. import '../characters.dart' as chars; import '../internal_style.dart'; import '../parsed_path.dart'; im...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/style/posix.dart
// Copyright (c) 2013, 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. import '../characters.dart' as chars; import '../internal_style.dart'; import '../parsed_path.dart'; /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/path/src/style/url.dart
// Copyright (c) 2013, 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. import '../characters.dart' as chars; import '../internal_style.dart'; import '../utils.dart'; /// The...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/uuid/uuid_util.dart
library uuid_util; import 'dart:math'; class UuidUtil { /// Math.Random()-based RNG. All platforms, fast, not cryptographically strong. Optional Seed passable. static List<int> mathRNG({int seed = -1}) { var b = List<int>(16); var rand = (seed == -1) ? Random() : Random(seed); for (var i = 0; i < 16;...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/uuid/uuid.dart
library uuid; import 'uuid_util.dart'; import 'package:crypto/crypto.dart' as crypto; import 'package:convert/convert.dart' as convert; /// uuid for Dart /// Author: Yulian Kuncheff /// Released under MIT License. class Uuid { // RFC4122 provided namespaces for v3 and v5 namespace based UUIDs static const NAMESP...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/dom.dart
/// A simple tree API that results from parsing html. Intended to be compatible /// with dart:html, but it is missing many types and APIs. library dom; // TODO(jmesserly): lots to do here. Originally I wanted to generate this using // our Blink IDL generator, but another idea is to directly use the excellent // http:/...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/dom_parsing.dart
/// This library contains extra APIs that aren't in the DOM, but are useful /// when interacting with the parse tree. library dom_parsing; import 'dom.dart'; import 'src/constants.dart' show rcdataElements; /// A simple tree visitor for the DOM nodes. class TreeVisitor { void visit(Node node) { switch (node.nod...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/parser.dart
/// This library has a parser for HTML5 documents, that lets you parse HTML /// easily from a script or server side application: /// /// import 'package:html/parser.dart' show parse; /// import 'package:html/dom.dart'; /// main() { /// var document = parse( /// '<body>Hello world! <a href="w...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/tokenizer.dart
library tokenizer; import 'dart:collection'; import 'package:html/parser.dart' show HtmlParser; import 'constants.dart'; import 'html_input_stream.dart'; import 'token.dart'; import 'utils.dart'; // Group entities by their first character, for faster lookups // TODO(jmesserly): we could use a better data structure h...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/css_class_set.dart
// Copyright (c) 2014, 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. // TODO(jmesserly): everything in this file is copied straight from "dart:html". library html.dom.src; ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/html_input_stream.dart
import 'dart:collection'; import 'dart:convert' show ascii, utf8; import 'package:source_span/source_span.dart'; import 'constants.dart'; import 'encoding_parser.dart'; import 'utils.dart'; /// Provides a unicode stream of characters to the HtmlTokenizer. /// /// This class takes care of character encoding and remov...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/encoding_parser.dart
import 'constants.dart'; import 'html_input_stream.dart'; // TODO(jmesserly): I converted StopIteration to StateError("No more elements"). // Seems strange to throw this from outside of an iterator though. /// String-like object with an associated position and various extra methods /// If the position is ever greater ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/token.dart
/// This library contains token types used by the html5 tokenizer. library token; import 'dart:collection'; import 'package:source_span/source_span.dart'; /// An html5 token. abstract class Token { FileSpan span; int get kind; } abstract class TagToken extends Token { String name; bool selfClosing; TagT...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/constants.dart
import 'utils.dart'; // TODO(jmesserly): fix up the const lists. For the bigger ones, we need faster // lookup than linear search "contains". In the Python code they were // frozensets. final String eof = null; class ReparseException implements Exception { final String message; ReparseException(this.message); ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/list_proxy.dart
/// A [List] proxy that you can subclass. library list_proxy; import 'dart:collection'; abstract class ListProxy<E> extends ListBase<E> { /// The inner [List<T>] with the actual storage. final List<E> _list = <E>[]; @override bool remove(Object item) => _list.remove(item); @override int get length => _l...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/query_selector.dart
/// Query selector implementation for our DOM. library html.src.query; import 'package:csslib/parser.dart' as css; import 'package:csslib/parser.dart' show TokenKind, Message; import 'package:csslib/visitor.dart'; // the CSSOM import 'package:html/dom.dart'; import 'package:html/src/constants.dart' show isWhitespaceCC...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/utils.dart
import 'constants.dart'; class Pair<F, S> { final F first; final S second; const Pair(this.first, this.second); @override int get hashCode => 37 * first.hashCode + second.hashCode; @override bool operator ==(other) => other.first == first && other.second == second; } bool startsWithAny(String str, Li...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/html/src/treebuilder.dart
/// Internals to the tree builders. library treebuilder; import 'dart:collection'; import 'package:html/dom.dart'; import 'package:html/parser.dart' show getElementNameTuple; import 'package:source_span/source_span.dart'; import 'constants.dart'; import 'list_proxy.dart'; import 'token.dart'; import 'utils.dart'; // ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/collection.dart
// Copyright (c) 2013, 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. export 'src/algorithms.dart'; export 'src/canonicalized_map.dart'; export 'src/combined_wrappers/combin...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/algorithms.dart
// Copyright (c) 2013, 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. /// Import `collection.dart` instead. @Deprecated('Will be removed in collection 2.0.0.') library dart....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/priority_queue.dart
// Copyright (c) 2014, 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. /// Import `collection.dart` instead. @Deprecated('Will be removed in collection 2.0.0.') library dart....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/equality.dart
// Copyright (c) 2013, 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. /// Import `collection.dart` instead. @Deprecated('Will be removed in collection 2.0.0.') library dart....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/iterable_zip.dart
// Copyright (c) 2013, 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. /// Import `collection.dart` instead. @Deprecated('Will be removed in collection 2.0.0.') library dart....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/wrappers.dart
// Copyright (c) 2013, 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. /// Import `collection.dart` instead. @Deprecated('Will be removed in collection 2.0.0.') library dart....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/equality_set.dart
// Copyright (c) 2016, 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. import 'dart:collection'; import 'equality.dart'; import 'wrappers.dart'; /// A [Set] whose key equal...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/empty_unmodifiable_set.dart
// Copyright (c) 2016, 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. import 'dart:collection'; import 'unmodifiable_wrappers.dart'; // Unfortunately, we can't use Unmodif...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/union_set_controller.dart
// Copyright (c) 2016, 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. import 'union_set.dart'; /// A controller that exposes a view of the union of a collection of sets. //...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/functions.dart
// Copyright (c) 2016, 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. import 'dart:collection'; import 'dart:math' as math; import 'utils.dart'; /// Creates a new map from...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/comparators.dart
// Copyright (c) 2015, 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. // Character constants. const int _zero = 0x30; const int _upperCaseA = 0x41; const int _upperCaseZ = 0...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/algorithms.dart
// Copyright (c) 2013, 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. import 'dart:math' as math; import 'utils.dart'; /// Returns a position of the [value] in [sortedList...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/priority_queue.dart
// Copyright (c) 2014, 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. import 'dart:collection'; import 'utils.dart'; /// A priority queue is a priority based work-list of ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/equality.dart
// Copyright (c) 2013, 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. import 'dart:collection'; import 'comparators.dart'; const int _HASH_MASK = 0x7fffffff; /// A generi...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/iterable_zip.dart
// Copyright (c) 2013, 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. import 'dart:collection'; /// Iterable that iterates over lists of values from other iterables. /// //...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/utils.dart
// Copyright (c) 2014, 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. /// A pair of values. class Pair<E, F> { E first; F last; Pair(this.first, this.last); } /// Re...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/canonicalized_map.dart
// Copyright (c) 2014, 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. import 'dart:collection'; import 'utils.dart'; /// A map whose keys are converted to canonical values...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/collection/src/queue_list.dart
// Copyright (c) 2014, 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. import 'dart:collection'; /// A class that efficiently implements both [Queue] and [List]. // TODO(nwe...
0