/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | CheckAPI.java | 100 public abstract String get(int typ, boolean brief); in get() argument 101 public abstract void write(BufferedWriter w, boolean brief, boolean html, boolean detail); in write() argument 117 public String get(int typ, boolean brief) { in get() argument 119 String[] vals = brief ? shortNames[typ] : names[typ]; in get() 164 public void write(BufferedWriter w, boolean brief, boolean html, boolean detail) { in write() argument 166 if (brief) { in write() 524 public String get(int typ, boolean brief) { in get() argument 525 return a.get(typ, brief); in get() 528 public void write(BufferedWriter w, boolean brief, boolean html, boolean detail) { in write() argument 529 a.write(w, brief, html, detail); in write() [all …]
|
D | CheckTags.java | 45 boolean brief; field in CheckTags 123 boolean show = !brief || last.reportError; in output() 128 if (isShort || (brief && error)) { in output() 189 this.brief = true; in CheckTags() 328 doDocs(cdoc.fields(), "Fields", !brief); in doDoc() local 329 doDocs(cdoc.constructors(), "Constructors", !brief); in doDoc() local 330 doDocs(cdoc.methods(), "Methods", !brief); in doDoc() local
|
/third_party/mbedtls/tests/suites/ |
D | main_test.function | 61 * \brief Evaluates an expression/macro into its literal integer value. 93 * \brief Checks if the dependency i.e. the compile flag is set. 120 * \brief Function pointer type for test function wrappers. 136 * \brief Table of test function wrappers. Used by dispatch_test(). 148 * \brief Dispatches test functions based on function index. 187 * \brief Checks if test function is supported in this build-time 223 * \brief Program main. Invokes platform specific execute_tests().
|
D | host_test.function | 4 * \brief Verifies that string is in string parameter format i.e. "<str>" 27 * \brief Verifies that string is an integer. Also gives the converted 79 * \brief Usage string. 97 * \brief Read a line from the passed file pointer. 147 * \brief Splits string delimited by ':'. Ignores '\:'. 209 * \brief Converts parameters into test function consumable parameters. 282 * \brief Tests snprintf implementation with test input. 325 * \brief Tests snprintf implementation. 339 /** \brief Write the description of the test case to the outcome CSV file. 386 /** \brief Write the result of the test case to the outcome CSV file. [all …]
|
/third_party/node/deps/v8/tools/debug_helper/ |
D | get-object-properties.cc | 35 std::string AppendAddressAndType(const std::string& brief, uintptr_t address, in AppendAddressAndType() argument 39 return brief.empty() ? brief_stream.str() in AppendAddressAndType() 40 : brief + " (" + brief_stream.str() + ")"; in AppendAddressAndType() 558 std::string brief = FindKnownObject(address, heap_addresses); in GetHeapObjectPropertiesNotCompressed() local 568 brief = JoinWithSpace(brief, extra_info.first); in GetHeapObjectPropertiesNotCompressed() 585 brief = AppendAddressAndType(brief, address, typed.object->GetName()); in GetHeapObjectPropertiesNotCompressed() 595 typed.type_check_result, brief, typed.object->GetName(), std::move(props), in GetHeapObjectPropertiesNotCompressed() 617 std::string brief = FindKnownObject(address, heap_addresses); in GetHeapObjectPropertiesMaybeCompressed() local 618 brief = AppendAddressAndType(brief, address, kTaggedValue); in GetHeapObjectPropertiesMaybeCompressed() 620 d::TypeCheckResult::kUnableToDecompress, brief, kTaggedValue); in GetHeapObjectPropertiesMaybeCompressed()
|
D | debug-helper-internal.h | 131 std::string brief, std::string type) in ObjectPropertiesResult() argument 132 : type_check_result_(type_check_result), brief_(brief), type_(type) {} in ObjectPropertiesResult() 134 d::TypeCheckResult type_check_result, std::string brief, std::string type, in ObjectPropertiesResult() argument 137 : ObjectPropertiesResult(type_check_result, brief, type) { in ObjectPropertiesResult() 146 public_view_.brief = brief_.c_str(); in GetPublicView()
|
D | debug-helper.h | 131 const char* brief; member
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | ModuleWriter.java | 55 public void writeHeader(String define, String[] includeFiles, String brief) in writeHeader() argument 83 if (brief != null) { in writeHeader() 84 output.print(brief); in writeHeader()
|
/third_party/mbedtls/scripts/ |
D | abi_check.py | 151 self.brief = configuration.brief 430 if self.brief: 452 if self.brief: 469 if not (self.keep_all_reports or self.brief): 653 brief=abi_args.brief, unknown
|
/third_party/mesa3d/src/freedreno/registers/ |
D | rules-ng-ng.txt | 50 <brief> and <doc> are tags that can appear inside any other tag, and document 51 whatever it defines. <brief> is supposed to be a short one-line description 55 There should be at most one <doc> and at most one <brief> tag for any parent. 283 <brief>The chipset of the card</brief> 285 <brief>RIVA TNT</brief> 288 <brief>RIVA TNT2</brief> 291 <brief>GeForce 256</brief> 294 <brief>G80: GeForce 8800 GTX, Tesla *870, ...</brief> 297 <brief>G84: GeForce 8600 GT, ...</brief> 300 <brief>G200: GeForce 260 GTX, Tesla C1060, ...</brief> [all …]
|
/third_party/libinput/patch/diff_libinput_mmi/libinput/ |
D | libinput_0000.diff | 415 + * @brief 获取触摸屏的工具类型区域属性 680 + * @brief 获取触摸板的工具类型区域属性 686 + * @brief 获取触摸板工具类型按钮是否按下 778 + * @brief Obtain the device values the EV_LED event type 786 + * @brief Obtain the function key enablement status of a keyboard device 796 + * @brief Turn an LED on or off. Convenience function, if you need to modify multiple 856 +* @brief : brief 868 +* @brief : get joystick button event 879 +* @brief : get joystick axis event 889 + * @brief 获取轴事件的时间 [all …]
|
/third_party/icu/docs/processes/release/tasks/ |
D | announce.md | 36 Adjust the release candidate announcement subsection with a very brief summary 47 Adjust the final-release announcement subsection with a very brief summary 84 * Changes: be VERY brief, and include links if needed.
|
/third_party/googletest/googletest/test/ |
D | googletest-env-var-test_.cc | 89 cout << GTEST_FLAG_GET(brief); in PrintFlag()
|
/third_party/ninja/doc/ |
D | README.md | 2 building it. Here's a brief overview of how it works.
|
/third_party/glib/ |
D | README.rationale | 2 giving a brief rationale of each decision, plus a link to further discussion.
|
/third_party/astc-encoder/Source/ |
D | astcenccli_version.h.in | 19 * @brief Functions and data declarations.
|
/third_party/ltp/testcases/kernel/controllers/ |
D | testplan.txt | 10 A brief description of all the testcases is given in the corresponding
|
/third_party/vk-gl-cts/framework/platform/ios/ |
D | tcuIOSMain.m | 21 * \brief iOS Entry Point.
|
D | tcuEAGLView.m | 21 * \brief iOS Entry Point.
|
D | tcuIOSAppDelegate.m | 21 * \brief iOS Application Delegate.
|
/third_party/rust/crates/regex/.github/ISSUE_TEMPLATE/ |
D | bug_report.md | 17 Give a brief description of the actual problem you're observing.
|
/third_party/vk-gl-cts/framework/platform/osx/ |
D | tcuOSXMetalView.mm | 21 * \brief VK_MVK_macos_surface compatible view
|
/third_party/vk-gl-cts/framework/egl/wrapper/ |
D | eglwTypes.inl | 21 * \brief EGL wrapper base types.
|
/third_party/libcoap/ |
D | SECURITY.md | 25 conditions, please email a brief description of the suspected bug and
|
/third_party/python/Doc/library/ |
D | logging.config.rst | 299 formatter: brief 408 brief: 409 # configuration for formatter with id 'brief' goes here 415 formatter: brief 430 value (such as ``brief``, ``precise`` above) and they are transient, 438 ``brief``, and the formatter for ``h2`` is that described by id 467 brief: 479 ``brief``, is a standard :class:`logging.Formatter` instance with the 483 strings. Shown in Python source form, the ``brief`` and ``default``
|