| /third_party/rust/rust/src/tools/rust-analyzer/ |
| D | Cargo.toml | 3 exclude = ["crates/proc-macro-test/imp"] 7 rust-version = "1.66" 9 license = "MIT OR Apache-2.0" 10 authors = ["rust-analyzer team"] 19 rowan.opt-level = 3 20 rustc-hash.opt-level = 3 21 smol_str.opt-level = 3 22 text-size.opt-level = 3 24 miniz_oxide.opt-level = 3 31 [patch.'crates-io'] [all …]
|
| D | Cargo.lock | 8 source = "registry+https://github.com/rust-lang/crates.io-index" 17 source = "registry+https://github.com/rust-lang/crates.io-index" 21 name = "always-assert" 23 source = "registry+https://github.com/rust-lang/crates.io-index" 32 source = "registry+https://github.com/rust-lang/crates.io-index" 37 version = "1.0.0-beta.2" 38 source = "registry+https://github.com/rust-lang/crates.io-index" 44 source = "registry+https://github.com/rust-lang/crates.io-index" 50 source = "registry+https://github.com/rust-lang/crates.io-index" 56 source = "registry+https://github.com/rust-lang/crates.io-index" [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/ide/ |
| D | Cargo.toml | 2 name = "ide" 9 rust-version.workspace = true 15 cov-mark = "2.0.0-pre.1" 16 crossbeam-channel = "0.5.5" 21 pulldown-cmark-to-cmark = "10.0.4" 22 pulldown-cmark = { version = "0.9.1", default-features = false } 27 nohash-hasher.workspace = true 31 ide-assists.workspace = true 32 ide-completion.workspace = true 33 ide-db.workspace = true [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/.github/workflows/ |
| D | autopublish.yaml | 6 # - cron: "0 0 * * *" # midnight UTC 10 - release 15 runs-on: ubuntu-latest 17 - name: Checkout repository 20 fetch-depth: 0 22 - name: Install Rust toolchain 23 run: rustup update --no-self-update stable 25 - name: Install cargo-workspaces 26 run: cargo install cargo-workspaces 28 - name: Publish Crates [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/ide-ssr/ |
| D | Cargo.toml | 2 name = "ide-ssr" 5 repository = "https://github.com/rust-lang/rust-analyzer" 10 rust-version.workspace = true 16 cov-mark = "2.0.0-pre.1" 19 nohash-hasher.workspace = true 23 ide-db.workspace = true 27 text-edit.workspace = true 29 [dev-dependencies] 30 expect-test = "1.4.0" 33 test-utils.workspace = true
|
| /third_party/libphonenumber/java/demo/ |
| D | README.md | 9 `$ sudo apt-get install google-cloud-sdk-app-engine-java` 15 `$ brew install google-cloud-sdk` 19 `$ gcloud components install app-engine-java` 21 ## 2. Add IDE Plugin 25 Install [Cloud Code Plugin for Intellij](https://plugins.jetbrains.com/plugin/8079-cloud-code) 32 Install [Cloud Code Plugin for Eclipse](https://marketplace.eclipse.org/content/google-cloud-tools-… 36 …(https://marketplace.visualstudio.com/items?itemName=GoogleCloudTools.cloudcode&ssr=false#overview) 47 This is _not recommended_ with an IDE as you have to manage updating your
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/ |
| D | Cargo.toml | 2 name = "rust-analyzer" 4 homepage = "https://github.com/rust-analyzer/rust-analyzer" 6 documentation = "https://rust-analyzer.github.io/manual.html" 12 rust-version.workspace = true 18 name = "rust-analyzer" 23 crossbeam-channel = "0.5.5" 27 lsp-types = { version = "=0.94", features = ["proposed"] } 31 rustc-hash = "1.1.0" 36 mimalloc = { version = "0.1.30", default-features = false, optional = true } 37 lsp-server = { version = "0.7.0", path = "../../lib/lsp-server" } [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/ide-ssr/src/ |
| D | fragments.rs | 1 //! When specifying SSR rule, you generally want to map one *kind* of thing to 5 //! The problem is, while this *kind* is generally obvious to the human, the ide 6 //! needs to determine it somehow. We do this in a stupid way -- by pasting SSR 11 pub(crate) fn ty(s: &str) -> Result<SyntaxNode, ()> { in ty() 15 pub(crate) fn item(s: &str) -> Result<SyntaxNode, ()> { in item() 19 pub(crate) fn pat(s: &str) -> Result<SyntaxNode, ()> { in pat() 23 pub(crate) fn expr(s: &str) -> Result<SyntaxNode, ()> { in expr() 27 pub(crate) fn stmt(s: &str) -> Result<SyntaxNode, ()> { in stmt() 46 fn fragment<T: AstNode>(template: &str, s: &str) -> Result<SyntaxNode, ()> { in fragment()
|
| /third_party/skia/m133/third_party/externals/icu/source/test/fuzzer/ |
| D | locale_morph_fuzzer_seed_corpus.txt | 1 1sr-Cyrl-RS 2 2zz-UND 5 5en-US-u-islamcal 6 6zh-CN-a-myext-x-private 7 7en-a-myext-b-another 8 8de-419-DE 9 9a-DE 10 0ar-a-aaa-b-bbb-a-ccc 11 asl-rozaj 12 bsl-rozaj-biske [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/ |
| D | cli.rs | 10 mod ssr; module 19 use ide::AnalysisHost; 31 pub fn is_verbose(self) -> bool { in is_verbose() 34 pub fn is_spammy(self) -> bool { in is_spammy() 39 fn read_stdin() -> Result<String> { in read_stdin() 57 let vfs = before.allocated - profile::memory_usage().allocated; in print_memory_usage() 61 let unaccounted = before.allocated - profile::memory_usage().allocated; in print_memory_usage()
|
| D | main_loop.rs | 1 //! The main loop of `rust-analyzer` responsible for dispatching LSP 29 pub fn main_loop(config: Config, connection: Connection) -> Result<()> { in main_loop() 38 // higher-priority thread. in main_loop() 40 // https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities in main_loop() 41 // https://docs.microsoft.com/en-us/windows/win32/procthread/priority-boosts in main_loop() 42 // https://github.com/rust-lang/rust-analyzer/issues/2835 in main_loop() 75 Report(ide::ParallelPrimeCachesProgress), 80 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() 112 fn run(mut self, inbox: Receiver<lsp_server::Message>) -> Result<()> { in run() 175 fn next_event(&self, inbox: &Receiver<lsp_server::Message>) -> Option<Event> { in next_event() [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/ide/src/ |
| D | lib.rs | 1 //! ide crate provides "ide-centric" APIs for the rust-analyzer. That is, 7 //! However, IDE specific bits of the analysis (most notably completion) happen 50 mod ssr; module 147 pub fn new(range: TextRange, info: T) -> RangeInfo<T> { in new() 159 pub fn new(lru_capacity: Option<usize>) -> AnalysisHost { in new() 173 pub fn analysis(&self) -> Analysis { in analysis() 184 pub fn per_query_memory_usage(&mut self) -> Vec<(String, profile::Bytes, usize)> { in per_query_memory_usage() 190 pub fn raw_database(&self) -> &RootDatabase { in raw_database() 193 pub fn raw_database_mut(&mut self) -> &mut RootDatabase { in raw_database_mut() 203 fn default() -> AnalysisHost { in default() [all …]
|
| /third_party/rust/rust/src/tools/rust-analyzer/docs/user/ |
| D | manual.adoc | 4 :page-layout: post 6 :source-highlighter: rouge 10 IMPORTANT: the master copy of this document lives in the https://github.com/rust-lang/rust-analyzer… 13 At its core, rust-analyzer is a *library* for semantic analysis of Rust code as it changes over tim… 14 This manual focuses on a specific usage of the library -- running it as part of a server that imple… 15 https://microsoft.github.io/language-server-protocol/[Language Server Protocol] (LSP). 22 https://github.com/rust-lang/rust-analyzer/blob/master/docs/user/manual.adoc[https://github.com/rus… 24 … which are generated from the source code. Run `cargo test` and `cargo test -p xtask` to create th… 27 If you have questions about using rust-analyzer, please ask them in the https://users.rust-lang.org… 31 In theory, one should be able to just install the <<rust-analyzer-language-server-binary,`rust-anal… [all …]
|
| /third_party/tex-hyphen/data/language-codes/ |
| D | iso-639-3_Name_Index_20080422.tab | 3 aab Alumu-Tesu Alumu-Tesu 9 aai Arifama-Miniafia Arifama-Miniafia 34 abj Aka-Bea Aka-Bea 58 aci Aka-Cari Aka-Cari 59 ack Aka-Kora Aka-Kora 60 acl Akar-Bale Akar-Bale 64 acq Ta'izzi-Adeni Arabic Arabic, Ta'izzi-Adeni 68 acu Achuar-Shiwiar Achuar-Shiwiar 124 afs Afro-Seminole Creole Creole, Afro-Seminole 175 aih Ai-Cham Ai-Cham [all …]
|
| D | iso-639-3_20080422.tab | 3 aab I L Alumu-Tesu 9 aai I L Arifama-Miniafia 34 abj I E Aka-Bea 58 aci I E Aka-Cari 59 ack I E Aka-Kora 60 acl I E Akar-Bale 64 acq I L Ta'izzi-Adeni Arabic 68 acu I L Achuar-Shiwiar 123 afs I L Afro-Seminole Creole 174 aih I L Ai-Cham [all …]
|
| D | language-subtag-registry | 1 File-Date: 2014-04-10 6 Added: 2005-10-16 11 Added: 2005-10-16 12 Suppress-Script: Cyrl 17 Added: 2005-10-16 22 Added: 2005-10-16 23 Suppress-Script: Latn 28 Added: 2005-10-16 34 Added: 2005-10-16 35 Suppress-Script: Ethi [all …]
|
| /third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/ |
| D | hdr-rgb-canarywharf.hdr | 3 FORMAT=32-bit_rle_rgbe 5 -Y 768 +X 768 65 …���������������������)�����������������������������������������������������-���������������������… 76 …���� ������������������������������������������������������������������-���������������������… 81 …������:��������������������������������������������������������������������-���������������������… 87 …����������������MNNNOOQQQ(�������������������������������������������������-���������������������… 91 …��������������������������������������������������������������������������-���������������������… 94 ZZYWVVWWXX�WVVUT�S�T�U�V�UTSRQ�RSRRQPOOPPQP�OPPQRSTTTUUVWWVVWXWXYY�Z\[[Z[\[[]^\[\^_`bdf�g-feed… 100 ]^^__`abccdfg�fg455�6;mlm6lkl666mjhhhgeedccbcccbbccaacccdcbcdddfgfeccddedfggghghh�g-hiiiffhhhgghhe… 116 …``abbcba�b ceffdcdeefghk566656776789:;;;:;;�<;;<�=<<=>>�=<�=�<;:�;�:�9�:-9889765kjhiihhgffedfh… [all …]
|
| D | hdr-rgb-riverwalk.hdr | 3 FORMAT=32-bit_rle_rgbe 5 -Y 768 +X 768 6 …�YAyW���pw����wz���٦���G<6Iyl�lXRbeadigLF4@D80HDPHK82VrI6ODr;3>BOEEdb�ȣSA:<>-?0GPd76KGA1.,J5V2dd��… 7 …Mbn��ԙo~��]}�wUo�Z[LЃ��Ȑ�cg����̮�R@���̖����v~�c���hP��k����~`et�^_ZA,---(BCH*,../.-@7ψvr1>\/011.��… 10 $ %(2!!;/ *-� 27 &��������!4C��U $5B/)OA@LoA ,/)&2((,C-8 34 …-U7QLQ9gTN\ũVM?���`.=�Z<P`PQ|;Lz�����{/@.C�BzX3CLCo�hqHL]6G<1kIH��EH��Jw;Iw}�z}x`Opt�^(&0u'%(%B_q… 40 )'$'6 .-$ 45 -YY�,5 51 /l��<)3b�=5("-=��Jz���u�������ͱE>��P�����ivԧ��& [all …]
|
| /third_party/NuttX/ |
| D | ReleaseNotes | 14 "nuttx-6.27"). 16 NuttX-0.1.0 17 ----------- 23 This release has been verified on both the Linux user-mode and C5471 25 for the C5471 can be found in arch/c5471/doc/test-results.txt. 29 NuttX-0.1.1 30 ----------- 42 This release has been verified on the Linux user-mode platform, the 51 NuttX-0.1.2 52 ----------- [all …]
|