Home
last modified time | relevance | path

Searched +full:unused +full:- +full:but +full:- +full:set +full:- +full:variable (Results 1 – 25 of 1037) sorted by relevance

12345678910>>...42

/external/angle/
DAndroid.bp1 // GENERATED FILE - DO NOT EDIT.
5 // Use of this source code is governed by a BSD-style license that can be
50 "-O2",
51 "-Wno-unknown-warning-option",
52 "-fno-stack-protector",
53 "-fno-unwind-tables",
60 "-DANDROID",
61 "-DANDROID_NDK_VERSION_ROLL=r26b_1",
62 "-DCR_CLANG_REVISION=\"llvmorg-19-init-10646-g084e2b53-57\"",
63 "-DDYNAMIC_ANNOTATIONS_ENABLED=0",
[all …]
/external/libffi/testsuite/libffi.bhaible/
Dbhaible.exp9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 dg-init
18 libffi-init
27set warning_options "-Wno-unused-variable -Wno-unused-parameter -Wno-unused-but-set-variable -Wno-
30 # -wd4996 suggest use of vsprintf_s instead of vsprintf
31 # -wd4116 unnamed type definition
32 # -wd4101 unreferenced local variable
33 # -wd4244 warning about implicit double to float conversion
34 set warning_options "-wd4996 -wd4116 -wd4101 -wd4244";
37 set warning_options "-Wno-unused-variable -Wno-unused-parameter -Wno-uninitialized";
[all …]
/external/libpcap/
Dbuild.sh1 #!/bin/sh -e
13 if [ -z "$PREFIX" ]; then
15 echo "PREFIX set to '$PREFIX'"
21 # The norm is to compile without any warnings, but libpcap builds on some OSes
22 # are not warning-free for one or another reason. If you manage to fix one of
27 gcc-*/Linux-*)
28 # This warning is a bit odd. It is steadily present in Cirrus CI, but not
30 # as Cirrus CI it reproduces only if GCC receives the "-g" flag:
31 # make CFLAGS=-g -- does not reproduce
32 # CFLAGS=-g make -- reproduces
[all …]
/external/OpenCL-CTS/test_conformance/images/kernel_read_write/
DCMakeLists.txt1 set(MODULE_NAME IMAGE_STREAMS)
3 set(${MODULE_NAME}_SOURCES
22 # Make unused variables not fatal in this module; see
23 # https://github.com/KhronosGroup/OpenCL-CTS/issues/1484
24 set_gnulike_module_compile_flags("-Wno-error=unused-variable -Wno-unused-but-set-variable -Wno-sign
/external/python/cpython2/Python/
Dthread_pthread.h37 #error "THREAD_STACK_SIZE defined but _POSIX_THREAD_ATTR_STACKSIZE undefined"
47 #if (_POSIX_SEMAPHORES+0) == -1
101 * -> a thread tries to lock a mutex it already has locked
102 * -> a thread tries to unlock a mutex locked by a different thread
178 return -1; in PyThread_start_new_thread()
186 return -1; in PyThread_start_new_thread()
208 return -1; in PyThread_start_new_thread()
221 - It does not guarantee the promise that a non-zero integer is returned.
222 - The cast to long is inherently unsafe.
223 - It is not clear that the 'volatile' (for AIX?) and ugly casting in the
[all …]
/external/deqp-deps/glslang/
DCMakeLists.txt1 # Copyright (C) 2020-2023 The Khronos Group Inc.
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 # https://cmake.org/cmake/help/latest/variable/PROJECT_IS_TOP_LEVEL.html
41 set(GLSLANG_TESTS_DEFAULT ON) # Can be turned off, below, based on environment.
42 set(GLSLANG_ENABLE_INSTALL_DEFAULT ON) # Can be turned off, below, based on environment.
57 set(LIB_TYPE STATIC)
60 set(LIB_TYPE SHARED)
64 # This logic inside SPIRV-Tools, which can upset build target dependencies
68 set(CMAKE_BUILD_TYPE "Debug")
[all …]
/external/angle/third_party/glslang/src/
DCMakeLists.txt1 # Copyright (C) 2020-2023 The Khronos Group Inc.
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 # https://cmake.org/cmake/help/latest/variable/PROJECT_IS_TOP_LEVEL.html
41 set(GLSLANG_TESTS_DEFAULT ON) # Can be turned off, below, based on environment.
42 set(GLSLANG_ENABLE_INSTALL_DEFAULT ON) # Can be turned off, below, based on environment.
57 set(LIB_TYPE STATIC)
60 set(LIB_TYPE SHARED)
64 # This logic inside SPIRV-Tools, which can upset build target dependencies
68 set(CMAKE_BUILD_TYPE "Debug")
[all …]
/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/
DUnicodeRegex.java5 * Copyright (C) 2009-2015, Google, International Business Machines Corporation
24 import java.util.Set;
38 * 2015-sep-03: This is used there, and also in CLDR and in UnicodeTools.
43 private static final Pattern SUPP_ESCAPE = Pattern.compile("\\\\U00([0-9a-fA-F]{6})");
45 // Note: we don't currently have any state, but intend to in the future,
51 * Set the symbol table for internal processing
77 * <p>Not thread-safe; create a separate copy for different threads.
176 * Compile a composed string from a set of BNF lines; see the List version for more information.
186 * Compile a composed string from a set of BNF lines, such as for composing a regex
187 * expression. The lines can be in any order, but there must not be any
[all …]
/external/pigweed/docs/
Dembedded_cpp_guide.rst1 .. _docs-embedded-cpp:
21 expression, such as a template parameter, constexpr variable initialization, or
28 likely to inline it than other functions. Marking non-trivial functions as
35 constexpr-constructible unless it actually needs to be used in a constant
41 can be used in any constant expression, such as a non-type template argument,
42 ``static_assert`` statement, or another constexpr variable initialization.
47 the ``const`` qualifier when declaring a constexpr variable.
52 .. code-block:: cpp
68 .. code-block:: cpp
81 The above code works seamlessly with values of any type -- float, int, or even a
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUnicodeRegex.java6 * Copyright (C) 2009-2015, Google, International Business Machines Corporation
25 import java.util.Set;
39 * 2015-sep-03: This is used there, and also in CLDR and in UnicodeTools.
45 private static final Pattern SUPP_ESCAPE = Pattern.compile("\\\\U00([0-9a-fA-F]{6})");
47 // Note: we don't currently have any state, but intend to in the future,
53 * Set the symbol table for internal processing
79 * <p>Not thread-safe; create a separate copy for different threads.
178 * Compile a composed string from a set of BNF lines; see the List version for more information.
188 * Compile a composed string from a set of BNF lines, such as for composing a regex
189 * expression. The lines can be in any order, but there must not be any
[all …]
/external/swiftshader/docs/
DVulkanShaderDebugging.md3 …ebugger that uses the [Debug Adapter Protocol](https://microsoft.github.io/debug-adapter-protocol).
5 This debugger is still actively being developed. Please see the [Known Issues](#Known-Issues).
9 …eds to be built using the CMake `SWIFTSHADER_ENABLE_VULKAN_DEBUGGER` flag (`-DSWIFTSHADER_ENABLE_V…
13 …EBUGGER_PORT` - set to an unused port number that will be used to create the DAP localhost socket.…
14- if defined, the debugger will block on `vkCreateDevice()` until a debugger connection is establi…
18variable set, you can connect to the debugger using the following Visual Studio Code `"debugServer…
29 Note that the `"type": "node"` field is unused, but is required.
31 …issues/148373102): Create a Visual Studio Code extension that provides a pre-built SwiftShader dri…
35 You can use the following function breakpoint names to set a breakpoint on the entry to all shaders…
40 # High-level Shader debugging
[all …]
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/
Dvariable_scope_shim.py7 # http://www.apache.org/licenses/LICENSE-2.0
15 # pylint: disable=g-classes-have-attributes
50 fn: Function, or function-like object (e.g., result of `functools.partial`).
56 `TypeError`: If fn is not a Function, or function-like object.
64 "fn should be a function-like object, but is of type {}.".format(
70 """Get argument names for function-like object.
73 fn: Function, or function-like object (e.g., result of `functools.partial`).
103 """Given user-provided variable properties, sets defaults and validates."""
114 "Invalid variable aggregation mode: {} for variable: {}".format(
123 "Invalid variable synchronization mode: {} for variable: {}".format(
[all …]
/external/tensorflow/tensorflow/python/trackable/
Dbase.py1 """An object-local variable management scheme."""
8 # http://www.apache.org/licenses/LICENSE-2.0
127 When supplied as an initial value, objects of this type let a `Variable`
128 (`Variable`, `ResourceVariable`, etc.) know the UID of the restore the initial
131 initial value is not set (e.g. due to a custom getter interfering).
177 # The checkpoint proto id of the slot variable.
197 A decorated method which sets and un-sets automatic dependency tracking for
203 self._self_setattr_tracking = False # pylint: disable=protected-access
207 self._self_setattr_tracking = previous_value # pylint: disable=protected-access
229 self._track_trackable("name2", var) # We track variable with name `name2`
[all …]
/external/angle/third_party/abseil-cpp/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Wnon-virtual-dtor",
22 "-Woverlength-strings",
23 "-Wpointer-arith",
24 "-Wundef",
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Woverlength-strings",
22 "-Wpointer-arith",
23 "-Wundef",
24 "-Wunused-local-typedefs",
[all …]
/external/abseil-cpp/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Woverlength-strings",
22 "-Wpointer-arith",
23 "-Wundef",
24 "-Wunused-local-typedefs",
[all …]
/external/cronet/third_party/abseil-cpp/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Woverlength-strings",
22 "-Wpointer-arith",
23 "-Wundef",
24 "-Wunused-local-typedefs",
[all …]
/external/libtextclassifier/abseil-cpp/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Woverlength-strings",
22 "-Wpointer-arith",
23 "-Wundef",
24 "-Wunused-local-typedefs",
[all …]
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/copts/
Dcopts.py15 "-Wall",
16 "-Wextra",
17 "-Wcast-qual",
18 "-Wconversion-null",
19 "-Wformat-security",
20 "-Wmissing-declarations",
21 "-Woverlength-strings",
22 "-Wpointer-arith",
23 "-Wundef",
24 "-Wunused-local-typedefs",
[all …]
/external/clang/test/SemaObjC/
Darc-repeated-weak.mm1 … RUN: %clang_cc1 -fsyntax-only -fobjc-runtime-has-weak -fobjc-arc -fblocks -Wno-objc-root-class -s…
11 - (__weak id)implicitProp;
22 …ected-warning{{weak property 'weakProp' is accessed multiple times in this function but may be unp…
23 use(a.weakProp); // expected-note{{also accessed here}}
26 use(a.strongProp); // no-warning
28 use(a.weakProp); // expected-note{{also accessed here}}
32 use(a.weakProp); // no-warning
33 use(a.strongProp); // no-warning
37 a.weakProp = get(); // no-warning
41 a.weakProp = next; // no-warning
[all …]
/external/mesa3d/src/amd/addrlib/
Dmeson.build14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
60 cpp_args_addrlib = ['-DADDR_FASTCALL=']
63 cpp_args_addrlib += '-DLITTLEENDIAN_CPU'
65 cpp_args_addrlib += '-DBIGENDIAN_CPU'
69 ['-Wno-unused-variable', '-Wno-unused-local-typedefs',
70 '-Wno-unused-but-set-variable', '-Wno-maybe-uninitialized',
71 '-Wno-self-assign', '/wd4189']
/external/mesa3d/src/microsoft/vulkan/
Dmeson.build15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 prog_python, '@INPUT0@', '--xml', '@INPUT1@', '--proto', '--weak',
28 '--out-h', '@OUTPUT0@', '--out-c', '@OUTPUT1@', '--prefix', 'dzn',
29 '--beta', with_vulkan_beta.to_string()
64 dzn_flags += '-DVK_USE_PLATFORM_WIN32_KHR'
70 '-Werror=unused-variable',
71 '-Werror=unused-but-set-variable',
72 '-Werror=unused-value',
73 '-Werror=format',
74 '-Werror=switch',
[all …]
/external/minijail/
Dutil.h3 * Use of this source code is governed by a BSD-style license that can be
27 * Silence compiler warnings for unused variables/functions.
29 * If the definition is actually used, the attribute should be removed, but if
32 * If the definition is actually unused, the compiler is free to remove it from
46 * Mark the function as a printf-style function.
63 * Mark a local variable for automatic cleanup when exiting its scope.
65 * Make sure any variable using this is always initialized to something.
66 * @func The function to call on (a pointer to) the variable.
95 * attribute_cleanup_fd int fd = -1;
125 /* clang-format off */
[all …]
/external/libcups/config-scripts/
Dcups-compiler.m44 dnl Copyright 2007-2020 by Apple Inc.
5 dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
10 dnl Clear the debugging and non-shared library options unless the user asks
15 AC_ARG_WITH(optim, [ --with-optim set optimization flags ],
20 AC_ARG_ENABLE(debug, [ --enable-debug build with debugging symbols])
21 AC_ARG_ENABLE(debug_guards, [ --enable-debug-guards build with memory allocation guards])
22 AC_ARG_ENABLE(debug_printfs, [ --enable-debug-printfs build with CUPS_DEBUG_LOG support])
23 AC_ARG_ENABLE(unit_tests, [ --enable-unit-tests build and run unit tests])
26 if test x$enable_debug = xyes -a "x$OPTIM" = x; then
27 OPTIM="-g"
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/src/
Dapply-shim.js5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
12 * https://tabatkins.github.io/specs/css-apply-rule/.
15 * --foo: {color: red; background: blue;}
19 * --foo_-_color: red;
20 * --foo_-_background: blue;
22 * Then where `@apply --foo` is used, that is converted to:
24 * color: var(--foo_-_color);
25 * background: var(--foo_-_background);
27 * This approach generally works but there are some issues and limitations.
[all …]

12345678910>>...42