Home
last modified time | relevance | path

Searched +full:misleading +full:- +full:indentation (Results 1 – 25 of 46) sorted by relevance

12

/third_party/mesa3d/bin/
Dtoml_lint.py11 ) -> bool:
18 # Allow de-indenting when starting a new section (`[`) or
19 # terminating a multi-line list (`]`)
22 f'Misleading indentation found')
/third_party/unity/examples/example_2/
Dmakefile2 # Unity Project - A Test Framework for C
9 ifeq ($(shell uname -s),) # not in a bash-like shell
12 else # in a bash-like shell, like msys
13 CLEANUP = rm -f
14 MKDIR = mkdir -p
18 CLEANUP = rm -f
19 MKDIR = mkdir -p
24 ifeq ($(shell uname -s), Darwin)
30 CFLAGS=-std=c99
31 CFLAGS += -Wall
[all …]
/third_party/rust/rust/src/tools/clippy/clippy_lints/src/
Drc_clone_in_vec_init.rs16 /// Checks for reference-counted pointers (`Arc`, `Rc`, `rc::Weak`, and `sync::Weak`)
20 /// This will create `elem` once and clone it `len` times - doing so with `Arc`/`Rc`/`Weak`
21 /// is a bit misleading, as it will create references to the same pointer, rather
47 "initializing reference-counted pointer in `vec![elem; len]`"
61 fn loop_init_suggestion(elem: &str, len: &str, indent: &str) -> String { in loop_init_suggestion()
71 fn extract_suggestion(elem: &str, len: &str, indent: &str) -> String { in extract_suggestion()
87 "initializing a reference-counted pointer in `vec![elem; len]`", in emit_lint()
91 let indentation = " ".repeat(indent_of(cx, lint_span).unwrap_or(0)); in emit_lint() localVariable
92 …let loop_init_suggestion = loop_init_suggestion(&elem_snippet, len_snippet.as_ref(), &indentation); in emit_lint()
93 … let extract_suggestion = extract_suggestion(&elem_snippet, len_snippet.as_ref(), &indentation); in emit_lint()
[all …]
/third_party/unity/examples/example_1/
Dmakefile2 # Unity Project - A Test Framework for C
9 ifeq ($(shell uname -s),) # not in a bash-like shell
12 else # in a bash-like shell, like msys
13 CLEANUP = rm -f
14 MKDIR = mkdir -p
18 CLEANUP = rm -f
19 MKDIR = mkdir -p
24 ifeq ($(shell uname -s), Darwin)
30 CFLAGS=-std=c89
31 CFLAGS += -Wall
[all …]
/third_party/mesa3d/src/compiler/nir/
Dmeson.build2 # SPDX-License-Identifier: MIT
48 command : [prog_python, '@INPUT@', '--out', '@OUTPUT@'],
56 command : [prog_python, '@INPUT@', '--outdir', meson.current_build_dir()],
65 command : [prog_python, '@INPUT@', '--outdir', meson.current_build_dir()],
74 command : [prog_python, '@INPUT@', '--outdir', meson.current_build_dir()],
308 # When a file is too large, -Wmisleading-indentation will give a note about
315 no_misleading_indentation += cc.get_supported_arguments('-Wno-misleading-indentation')
332 # Headers-only dependency
/third_party/python/Doc/library/
Dxml.dom.minidom.rst1 :mod:`xml.dom.minidom` --- Minimal DOM implementation
13 --------------
26 unauthenticated data see :ref:`xml-vulnerabilities`.
47 either a file name, or a file-like object. *parser*, if given, must be a SAX2
66 convert them into a DOM tree. The name of the functions are perhaps misleading,
96 :meth:`unlink` method to encourage early cleanup of the now-unneeded
97 objects. :meth:`unlink` is an :mod:`xml.dom.minidom`\ -specific
104 `Document Object Model (DOM) Level 1 Specification <https://www.w3.org/TR/REC-DOM-Level-1/>`_
108 .. _minidom-objects:
111 -----------
[all …]
Dast.rst1 :mod:`ast` --- Abstract Syntax Trees
16 --------------
24 a flag to the :func:`compile` built-in function, or using the :func:`parse`
27 compiled into a Python code object using the built-in :func:`compile` function.
30 .. _abstract-grammar:
33 ----------------
42 ------------
48 :ref:`above <abstract-grammar>`. They are defined in the :mod:`_ast` C
49 module and re-exported in :mod:`ast`.
51 There is one class defined for each left-hand side symbol in the abstract
[all …]
/third_party/libabigail/
DNEWS4 elf-helpers: make sure config.h is included first
8 release-text-template.txt: Modernize a little bit.
9 dwarf-reader: Don't compute canonical type while propagating one
10 Bug 29693 - clang-libs from f37 fails self test
11 Bug 30466 - harfbuzz fails self-check on f38
12 Bug 30467 - enlightenment fails self check on f38
14 Bug 30503 - Fail to compare non-anonymous struct vs named struct data members
15 Bug 30461 - insight fails self-compare
16 fedabipkgdiff: Don't choke Koji servers with self-signed SSL certs
19 corpus,tools-utils: Support loading a corpus, its deps & other binaries
[all …]
/third_party/icu/icu4c/source/test/intltest/
Dpunyref.cpp6 * Copyright (C) 2003-2005, International Business Machines
11 * encoding: UTF-8
13 * indentation:4
28 redistributed derivative works do not contain misleading author or
32 punycode.c 0.4.0 (2001-Nov-17-Sat)
63 /* base-1, or base if cp is does not represent a value. */
67 return cp - 48 < 10 ? cp - 22 : cp - 65 < 26 ? cp - 65 : in decode_digit()
68 cp - 97 < 26 ? cp - 97 : static_cast<punycode_uint>(base); in decode_digit()
73 /* the range 0 to base-1. The lowercase form is used unless flag is */
79 return (char) d + 22 + 75 * (d < 26) - ((flag != 0) << 5); in encode_digit()
[all …]
/third_party/skia/m133/third_party/externals/icu/source/test/intltest/
Dpunyref.cpp6 * Copyright (C) 2003-2005, International Business Machines
11 * encoding: UTF-8
13 * indentation:4
28 redistributed derivative works do not contain misleading author or
32 punycode.c 0.4.0 (2001-Nov-17-Sat)
63 /* base-1, or base if cp is does not represent a value. */
67 return cp - 48 < 10 ? cp - 22 : cp - 65 < 26 ? cp - 65 : in decode_digit()
68 cp - 97 < 26 ? cp - 97 : static_cast<punycode_uint>(base); in decode_digit()
73 /* the range 0 to base-1. The lowercase form is used unless flag is */
79 return (char) d + 22 + 75 * (d < 26) - ((flag != 0) << 5); in encode_digit()
[all …]
/third_party/icu/icu4c/source/common/
Dpunycode.cpp6 * Copyright (C) 2002-2011, International Business Machines
11 * encoding: UTF-8
13 * indentation:4
22 punycode.c 0.4.0 (2001-Nov-17-Sat)
35 redistributed derivative works do not contain misleading author or
41 * - ICU data types and coding conventions
42 * - ICU string buffer handling with implicit source lengths
44 * - UTF-16 handling
61 /* Punycode ----------------------------------------------------------------- */
91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dpunycode.cpp6 * Copyright (C) 2002-2011, International Business Machines
11 * encoding: UTF-8
13 * indentation:4
22 punycode.c 0.4.0 (2001-Nov-17-Sat)
35 redistributed derivative works do not contain misleading author or
41 * - ICU data types and coding conventions
42 * - ICU string buffer handling with implicit source lengths
44 * - UTF-16 handling
61 /* Punycode ----------------------------------------------------------------- */
91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
[all …]
/third_party/skia/m133/third_party/externals/icu/source/common/
Dpunycode.cpp6 * Copyright (C) 2002-2011, International Business Machines
11 * encoding: UTF-8
13 * indentation:4
22 punycode.c 0.4.0 (2001-Nov-17-Sat)
35 redistributed derivative works do not contain misleading author or
41 * - ICU data types and coding conventions
42 * - ICU string buffer handling with implicit source lengths
44 * - UTF-16 handling
61 /* Punycode ----------------------------------------------------------------- */
91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
[all …]
/third_party/mesa3d/.gitlab-ci/build/
Dgitlab-ci.yml2 .build-common:
3 extends: .container+build-rules
7 # Build jobs don't take more than 1-3 minutes. 5-8 min max on a fresh runner
22 - _build/meson-logs/*.txt
23 - _build/meson-logs/strace
24 - _build/.ninja_log
25 - artifacts
28 .build-linux:
29 extends: .build-common
36 - !reference [default, before_script]
[all …]
/third_party/backends/ChangeLogs/
DChangeLog-1.0.282 Author: Olaf Meeuwissen <paddy-hack@member.fsf.org>
3 Date: 2019-07-31 20:39:43 +0900
8 Author: Olaf Meeuwissen <paddy-hack@member.fsf.org>
9 Date: 2019-07-30 22:40:11 +0900
14 Author: Rolf Bensch <rolf@bensch-online.de>
15 Date: 2019-07-29 22:34:13 +0200
19 https://alioth-lists.debian.net/pipermail/sane-devel/2019-July/036877.html
23 Author: Rolf Bensch <rolf@bensch-online.de>
24 Date: 2019-07-29 17:27:07 +0200
29 Author: Rolf Bensch <rolf@bensch-online.de>
[all …]
DChangeLog-1.0.161 ****** Release of sane-backends 1.0.16. End of code freeze ******
3 2005-08-07 Henning Meier-Geinitz <henning@meier-geinitz.de>
7 2005-08-05 St�hane Voltz <stefdev@modulonet.fr>
12 2005-08-02 Henning Meier-Geinitz <henning@meier-geinitz.de>
14 * po/sane-backends.da.po: Updated Danish translation (from
17 2005-08-02 Mattias Ellert <mattias.ellert@tsl.uu.se>
19 * po/sane-backends.sv.po: Update Swedish translation
21 2005-08-01 Eddy De Greef <eddy_de_greef at tiscali dot be>
23 * doc/sane-mustek_pp.man: updated URL for additional CIS driver info.
25 2005-07-31 Henning Meier-Geinitz <henning@meier-geinitz.de>
[all …]
DChangeLog-1.2.13 Date: 2023-02-04 16:16:54 -0800
14 Date: 2023-02-04 09:40:07 -0800
23 Date: 2023-02-01 17:19:56 +0000
29 See merge request sane-project/backends!779
33 Date: 2023-02-01 18:53:17 +0200
39 Date: 2023-01-27 18:09:57 -0500
49 Date: 2023-01-07 07:48:17 +0000
51 Merge branch '634-llvm-15-on-freebsd-support-for-sane-backends-1-1-1' into 'master'
53 Resolve "LLVM 15 on FreeBSD support for sane-backends 1.1.1"
57 See merge request sane-project/backends!777
[all …]
/third_party/mesa3d/docs/relnotes/
D7.10.rst16 -------------
20 0a70c15c135561824bdcae92bf232e43 MesaLib-7.10.tar.gz
21 33fb94eccc02cbb4d8d1365615e38e46 MesaLib-7.10.tar.bz2
22 5cafdc0eda0f9bf370b95c98df3338fa MesaLib-7.10.zip
23 bc644be551ed585fc4f66c16b64a91c9 MesaGLUT-7.10.tar.gz
24 5c2677a155672352d62b177e4f0f92e8 MesaGLUT-7.10.tar.bz2
25 2ce5001f74496d1ba719ef74d910a5cf MesaGLUT-7.10.zip
28 ------------
30 - GL_ARB_explicit_attrib_location extension (Intel and software
32 - GL_ARB_texture_rg (Intel, software drivers, gallium drivers).
[all …]
D24.0.0.rst1 Mesa 24.0.0 Release Notes / 2024-02-01
20 ---------------
24 dc7e8c077bc5884df95478263b34bdebb7e88e600689cb56fb07be2b8c304c36 mesa-24.0.0.tar.xz
28 ------------
30 - VK_EXT_image_compression_control on RADV
31 - VK_EXT_device_fault on RADV
32 - OpenGL 3.3 on Asahi
33 - Geometry shaders on Asahi
34 - GL_ARB_texture_cube_map_array on Asahi
35 - GL_ARB_clip_control on Asahi
[all …]
D22.2.0.rst1 Mesa 22.2.0 Release Notes / 2022-09-21
20 ---------------
24 b1f9c8fd08f2cae3adf83355bef4d2398e8025f44947332880f2d0066bdafa8c mesa-22.2.0.tar.xz
29 ------------
31 - WGL_ARB_create_context_robustness
33 - d3d12 ARB_robust_buffer_access_behavior
35 - VK_EXT_robustness2 for lavapipe
37 - VK_EXT_image_2d_view_of_3d on RADV
39 - zink and d3d12 GL_EXT_memory_object_win32 and GL_EXT_semaphore_win32 support
41 - vertexAttributeInstanceRateZeroDivisor support for lavapipe
[all …]
/third_party/skia/third_party/externals/libwebp/
DChangeLog3 731246ba update ChangeLog (tag: v1.2.1-rc2)
10 ece18e55 dsp.h: respect --disable-sse2/sse4.1/neon
56 98bbe35b Fix multi-threading with palettes.
63 8fdaecb0 Disable cross-color when palette is used.
77 fee64287 Merge "wicdec,icc: treat unsupported op as non-fatal"
79 b27ea852 wicdec,icc: treat unsupported op as non-fatal
82 a8853394 SSE4.1 versions of BGRA to RGB/BGR color-space conversions
88 373eb170 gif2webp: don't store loop-count if there's only 1 frame
95 fedac6cc update ChangeLog (tag: v1.2.0-rc3, tag: v1.2.0)
113 2e7bed79 WebPPicture: clarify the ownership of user-owned data.
[all …]
/third_party/skia/m133/third_party/externals/libwebp/
DChangeLog2 cf7c5a5d provide a way to opt-out/override WEBP_NODISCARD
3 cc34288a update ChangeLog (tag: v1.4.0-rc1)
11 07216886 webp-container-spec: fix VP8 chunk ref ('VP8'->'VP8 ')
14 d537cd37 cmake: fix vwebp_sdl compile w/libsdl-org release
16 7b0bc235 man/cwebp.1: add more detail to -partition_limit
21 1bf46358 man/cwebp.1: clarify -pass > 1 behavior w/o -size/-psnr
22 eba03acb webp-container-spec: replace 'above' with 'earlier'
23 a16d30cb webp-container-spec: clarify chunk order requirements
24 8a7e9112 Merge "CMakeLists.txt: apply cmake-format" into main
28 fba7d62e CMakeLists.txt: apply cmake-format
[all …]
/third_party/skia/m133/third_party/externals/libpng/
DCHANGES1 CHANGES - changes for libpng
4 initial work-in-progress release
68 added png_read_update_info() - updates info structure with transformations
79 fixed some bugs (16-bit, 4-bit interlaced, etc.)
103 Changed warning/error callback functions to fix bug - this means you
115 in pngconf.h) - if nobody uses this, it may disappear in the future.
129 libpng will use the zlib CRC routines by (compile-time) default
130 Changed DOS small/medium model memory support - needs zlib 1.04 (Tim Wegner)
139 of nearly identical error messages (will simplify multi-lingual
141 Try to get ready for unknown-chunk callback functions:
[all …]
/third_party/mesa3d/src/imgui/
Dimgui_internal.h26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
41 #pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of…
46 #pragma clang diagnostic ignored "-Wunused-function" // for stb_textedit.h
47 #pragma clang diagnostic ignored "-Wmissing-prototypes" // for stb_textedit.h
48 #pragma clang diagnostic ignored "-Wold-style-cast"
49 #if __has_warning("-Wzero-as-null-pointer-constant")
50 #pragma clang diagnostic ignored "-Wzero-as-null-pointer-constant"
52 #if __has_warning("-Wdouble-promotion")
53 #pragma clang diagnostic ignored "-Wdouble-promotion"
[all …]
/third_party/skia/third_party/externals/libpng/
DCHANGES1 CHANGES - changes for libpng
4 initial work-in-progress release
68 added png_read_update_info() - updates info structure with transformations
79 fixed some bugs (16-bit, 4-bit interlaced, etc.)
103 Changed warning/error callback functions to fix bug - this means you
115 in pngconf.h) - if nobody uses this, it may disappear in the future.
129 libpng will use the zlib CRC routines by (compile-time) default
130 Changed DOS small/medium model memory support - needs zlib 1.04 (Tim Wegner)
139 of nearly identical error messages (will simplify multi-lingual
141 Try to get ready for unknown-chunk callback functions:
[all …]

12