| /third_party/rust/crates/pin-project-lite/tests/ui/pin_project/ |
| D | unsupported.stderr | 1 error: no rules expected the token `}` 2 --> tests/ui/pin_project/unsupported.rs:3:1 5 4 | | struct Struct1 {} //~ ERROR no rules expected the token `}` 7 | |_^ no rules expected this token in macro call 9 …n the macro `$crate::__pin_project_expand` (in Nightly builds, run with -Z macro-backtrace for mor… 11 error: no rules expected the token `}` 12 --> tests/ui/pin_project/unsupported.rs:3:1 15 4 | | struct Struct1 {} //~ ERROR no rules expected the token `}` 17 | |_^ no rules expected this token in macro call 19 …n the macro `$crate::__pin_project_expand` (in Nightly builds, run with -Z macro-backtrace for mor… [all …]
|
| D | invalid-bounds.stderr | 1 error: no rules expected the token `:` 2 --> tests/ui/pin_project/invalid-bounds.rs:4:33 4 4 | struct Generics1<T: 'static : Sized> { //~ ERROR no rules expected the token `:` 5 | ^ no rules expected this token in macro call 7 error: no rules expected the token `:` 8 --> tests/ui/pin_project/invalid-bounds.rs:10:33 10 10 | struct Generics2<T: 'static : ?Sized> { //~ ERROR no rules expected the token `:` 11 | ^ no rules expected this token in macro call 14 --> tests/ui/pin_project/invalid-bounds.rs:15:1 27 …cro `$crate::__pin_project_parse_generics` (in Nightly builds, run with -Z macro-backtrace for mor… [all …]
|
| D | invalid.stderr | 1 error: no rules expected the token `struct` 2 --> tests/ui/pin_project/invalid.rs:3:1 6 5 | | #[pin()] //~ ERROR no rules expected the token `(` 10 | |_^ no rules expected this token in macro call 12 …n the macro `$crate::__pin_project_expand` (in Nightly builds, run with -Z macro-backtrace for mor… 14 error: no rules expected the token `struct` 15 --> tests/ui/pin_project/invalid.rs:3:1 19 5 | | #[pin()] //~ ERROR no rules expected the token `(` 23 | |_^ no rules expected this token in macro call 25 …n the macro `$crate::__pin_project_expand` (in Nightly builds, run with -Z macro-backtrace for mor… [all …]
|
| /third_party/openssl/include/openssl/ |
| D | ui.h.in | 2 * {- join("\n * ", @autowarntext) -} 4 * Copyright 2001-2020 The OpenSSL Project Authors. All Rights Reserved. 12 {- 14 -} 47 * All the following functions return -1 or NULL on error and in some cases 48 * (UI_process()) -2 if interrupted or in some other way cancelled. When 49 * everything is fine, they return 0, a positive value or a non-NULL pointer, 54 UI *UI_new(void); 55 UI *UI_new_method(const UI_METHOD *method); 56 void UI_free(UI *ui); [all …]
|
| /third_party/openssl/ohos_lite/include/openssl/ |
| D | ui.h | 2 * Copyright 2001-2018 The OpenSSL Project Authors. All Rights Reserved. 35 * All the following functions return -1 or NULL on error and in some cases 36 * (UI_process()) -2 if interrupted or in some other way cancelled. When 37 * everything is fine, they return 0, a positive value or a non-NULL pointer, 42 UI *UI_new(void); 43 UI *UI_new_method(const UI_METHOD *method); 44 void UI_free(UI *ui); 46 /*- 53 functions are used verbatim, no copying is done. 64 Honestly, there's currently no difference between info and error for the [all …]
|
| /third_party/libunwind/src/coredump/ |
| D | _UCD_create.c | 1 /* libunwind - a platform-independent unwind library 19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 57 struct UCD_info *ui = memset(malloc(sizeof(*ui)), 0, sizeof(*ui)); in _UCD_create() local 58 ui->edi.di_cache.format = -1; in _UCD_create() 59 ui->edi.di_debug.format = -1; in _UCD_create() 61 ui->edi.ktab.format = -1; in _UCD_create() 64 int fd = ui->coredump_fd = open(filename, O_RDONLY); in _UCD_create() 67 ui->coredump_filename = strdup(filename); in _UCD_create() 69 /* No sane ELF32 file is going to be smaller then ELF64 _header_, in _UCD_create() 70 * so let's just read 64-bit sized one. in _UCD_create() [all …]
|
| D | _UCD_find_proc_info.c | 1 /* libunwind - a platform-independent unwind library 19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 34 get_unwind_info(struct UCD_info *ui, unw_addr_space_t as, unw_word_t ip) in get_unwind_info() argument 39 if (!ui->edi.ktab.start_ip && _Uia64_get_kernel_table (&ui->edi.ktab) < 0) in get_unwind_info() 40 return -UNW_ENOINFO; in get_unwind_info() 42 if (ui->edi.ktab.format != -1 && ip >= ui->edi.ktab.start_ip && ip < ui->edi.ktab.end_ip) in get_unwind_info() 46 if ((ui->edi.di_cache.format != -1 in get_unwind_info() 47 && ip >= ui->edi.di_cache.start_ip && ip < ui->edi.di_cache.end_ip) in get_unwind_info() 49 || (ui->edi.di_debug.format != -1 in get_unwind_info() 50 && ip >= ui->edi.di_arm.start_ip && ip < ui->edi.di_arm.end_ip) in get_unwind_info() [all …]
|
| D | _UCD_get_mapinfo_linux.c | 19 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 * the offset field in a core file, there is no further information available on 42 * Following the array of mapinfo structures is a block of null-terminated C strings 69 struct UCD_info *ui = (struct UCD_info *)arg; in _handle_file_note() local 80 char *strings = (char *)(desc + mapinfo_offset + sizeof(linux_mapinfo_t)*mapinfo->count); in _handle_file_note() 81 for (unsigned long i = 0; i < mapinfo->count; ++i) in _handle_file_note() 84 for (unsigned p = 0; p < ui->phdrs_count; ++p) in _handle_file_note() 86 if (ui->phdrs[p].p_type == PT_LOAD in _handle_file_note() 87 && maps[i].start >= ui->phdrs[p].p_vaddr in _handle_file_note() 88 && maps[i].end <= ui->phdrs[p].p_vaddr + ui->phdrs[p].p_filesz) in _handle_file_note() [all …]
|
| D | _UCD_destroy.c | 1 /* libunwind - a platform-independent unwind library 19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 27 _UCD_destroy (struct UCD_info *ui) in _UCD_destroy() argument 29 if (!ui) in _UCD_destroy() 32 if (ui->coredump_fd >= 0) in _UCD_destroy() 33 close(ui->coredump_fd); in _UCD_destroy() 34 free(ui->coredump_filename); in _UCD_destroy() 36 invalidate_edi (&ui->edi); in _UCD_destroy() 39 for (i = 0; i < ui->phdrs_count; i++) in _UCD_destroy() 41 struct coredump_phdr *phdr = &ui->phdrs[i]; in _UCD_destroy() [all …]
|
| /third_party/flutter/engine/flutter/lib/web_ui/test/ |
| D | keyboard_test.dart | 2 // Use of this source code is governed by a BSD-style license that can be 8 import 'package:ui/src/engine.dart'; 9 import 'package:ui/ui.dart' as ui; 24 ui.window.onPlatformMessage = (String channel, ByteData data, 25 ui.PlatformMessageResponseCallback callback) { 36 // Unfortunately there's no way to fake `keyCode`. 39 // Unfortunately there's no way to fake `key`. 46 ui.window.onPlatformMessage = (String channel, ByteData data, 47 ui.PlatformMessageResponseCallback callback) { 58 // Unfortunately there's no way to fake `keyCode`. [all …]
|
| /third_party/openssl/doc/man3/ |
| D | UI_STRING.pod | 10 - User interface string parsing 14 #include <openssl/ui.h> 22 UIT_BOOLEAN, /* Prompt for a yes/no response */ 36 int UI_set_result(UI *ui, UI_STRING *uis, const char *result); 37 int UI_set_result_ex(UI *ui, UI_STRING *uis, const char *result, int len); 41 The B<UI_STRING> gets created internally and added to a B<UI> whenever 47 For a B<UI_METHOD> user, there's no need to know more. 69 and UI_get_result_string_length() returns -1. 79 For all other B<UI_STRING> types, -1 is returned. 82 For B<UIT_PROMPT> and B<UIT_VERIFY> type UI strings, this sets the [all …]
|
| D | UI_new.pod | 5 UI, 13 UI_get_method, UI_set_method, UI_OpenSSL, UI_null - user interface 17 #include <openssl/ui.h> 19 typedef struct ui_st UI; 21 UI *UI_new(void); 22 UI *UI_new_method(const UI_METHOD *method); 23 void UI_free(UI *ui); 25 int UI_add_input_string(UI *ui, const char *prompt, int flags, 27 int UI_dup_input_string(UI *ui, const char *prompt, int flags, 29 int UI_add_verify_string(UI *ui, const char *prompt, int flags, [all …]
|
| /third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
| D | platform_view.h | 2 // Use of this source code is governed by a BSD-style license that can be 12 #include <fuchsia/ui/gfx/cpp/fidl.h> 13 #include <fuchsia/ui/input/cpp/fidl.h> 14 #include <fuchsia/ui/scenic/cpp/fidl.h> 18 #include "flutter/lib/ui/window/viewport_metrics.h" 21 #include "lib/ui/scenic/cpp/id.h" 27 using OnMetricsUpdate = fit::function<void(const fuchsia::ui::gfx::Metrics&)>; 38 private fuchsia::ui::scenic::SessionListener, 39 public fuchsia::ui::input::InputMethodEditorClient { 46 fidl::InterfaceRequest<fuchsia::ui::scenic::SessionListener> [all …]
|
| /third_party/cef/libcef/common/alloy/ |
| D | alloy_content_client.cc | 3 // Use of this source code is governed by a BSD-style license that can be 38 #include "ui/base/l10n/l10n_util.h" 39 #include "ui/base/resource/resource_bundle.h" 47 // The following plugin-related methods are from 59 // Appends the known built-in plugins to the given vector. Some built-in 80 plugins->push_back(pdf_info); in ComputeBuiltInPlugins() 107 CefAppManager::Get()->AddAdditionalSchemes(schemes); in AddAdditionalSchemes() 112 ui::ResourceBundle::GetSharedInstance().GetLocalizedString(message_id); in GetLocalizedString() 114 LOG(ERROR) << "No localized string available for id " << message_id; in GetLocalizedString() 124 LOG(ERROR) << "No localized string available for id " << message_id; in GetLocalizedString() [all …]
|
| /third_party/libunwind/src/ptrace/ |
| D | _UPT_find_proc_info.c | 1 /* libunwind - a platform-independent unwind library 2 Copyright (C) 2003-2004 Hewlett-Packard Co 3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com> 21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 41 if (!edi->ktab.start_ip && _Uia64_get_kernel_table (&edi->ktab) < 0) in get_unwind_info() 42 return -UNW_ENOINFO; in get_unwind_info() 44 if (edi->ktab.format != -1 && ip >= edi->ktab.start_ip && ip < edi->ktab.end_ip) in get_unwind_info() 48 if ((edi->di_cache.format != -1 in get_unwind_info() 49 && ip >= edi->di_cache.start_ip && ip < edi->di_cache.end_ip) in get_unwind_info() 51 || (edi->di_debug.format != -1 in get_unwind_info() [all …]
|
| /third_party/icu/icu4j/main/classes/currdata/.externalToolBuilders/ |
| D | copy-data-currdata.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-currdata/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-currdata"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/collate/.externalToolBuilders/ |
| D | copy-data-collate.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-collate/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-collate"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/translit/.externalToolBuilders/ |
| D | copy-data-translit.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-translit/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-translit"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/langdata/.externalToolBuilders/ |
| D | copy-data-langdata.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-langdata/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-langdata"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/charset/.externalToolBuilders/ |
| D | copy-data-charset.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-charset/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-charset"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/regiondata/.externalToolBuilders/ |
| D | copy-data-regiondata.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-regiondata/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-regiondata"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/classes/core/.externalToolBuilders/ |
| D | copy-data-core.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-data,"/> 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-core/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-core"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/tests/charset/.externalToolBuilders/ |
| D | copy-charset-test-data.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-charset-test-dat… 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-charset-test-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-charset-tests/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-charset-tests"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/tests/translit/.externalToolBuilders/ |
| D | copy-translit-test-data.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-translit-test-da… 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-translit-test-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-translit-tests/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-translit-tests"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|
| /third_party/icu/icu4j/main/tests/collate/.externalToolBuilders/ |
| D | copy-collate-test-data.launch | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 3 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_AFTER_CLEAN_TARGETS" value="copy-collate-test-dat… 4 <stringAttribute key="org.eclipse.ant.ui.ATTR_ANT_MANUAL_TARGETS" value="copy-collate-test-data,"/> 5 <booleanAttribute key="org.eclipse.ant.ui.ATTR_TARGETS_UPDATED" value="true"/> 6 <booleanAttribute key="org.eclipse.ant.ui.DEFAULT_VM_INSTALL" value="false"/> 8 <listEntry value="/icu4j-collate-tests/build.xml"/> 13 <booleanAttribute key="org.eclipse.debug.ui.ATTR_LAUNCH_IN_BACKGROUND" value="false"/> 14 <stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntCl… 16 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="icu4j-collate-tests"/> 17 <mapAttribute key="org.eclipse.ui.externaltools.ATTR_ANT_PROPERTIES"> [all …]
|