Home
last modified time | relevance | path

Searched +full:- +full:- +full:no +full:- +full:index (Results 1 – 25 of 1488) sorted by relevance

12345678910>>...60

/external/giflib/tests/
Dfire.dmp4 Screen Size - Width = 30, Height = 60.
17 Transparency on: no
19 Transparent Index: -1
23 Image Size - Left = 0, Top = 0, Width = 30, Height = 60.
25 No Image Color Map.
30 Transparency on: no
32 Transparent Index: -1
36 Image Size - Left = 0, Top = 0, Width = 30, Height = 60.
38 No Image Color Map.
43 Transparency on: no
[all …]
/external/clang/test/SemaCXX/
Darray-bounds.cpp1 // RUN: %clang_cc1 -verify %s
4 int x[2]; // expected-note 4 {{array 'x' declared here}} in foo()
5 int y[2]; // expected-note 2 {{array 'y' declared here}} in foo()
6 int z[1]; // expected-note {{array 'z' declared here}} in foo()
7 int w[1][1]; // expected-note {{array 'w' declared here}} in foo()
8 int v[1][1][1]; // expected-note {{array 'v' declared here}} in foo()
9 int *p = &y[2]; // no-warning in foo()
10 (void) sizeof(x[2]); // no-warning in foo()
11 …y[2] = 2; // expected-warning {{array index 2 is past the end of the array (which contains 2 eleme… in foo()
12 …z[1] = 'x'; // expected-warning {{array index 1 is past the end of the array (which contains 1 ele… in foo()
[all …]
/external/clang/test/Analysis/
Darray-struct-region.c1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -analyzer-constr…
7 char b[2] = "abc"; // expected-warning{{too long}} in string_literal_init()
10 clang_analyzer_eval(a[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init()
11 clang_analyzer_eval(b[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init()
12 clang_analyzer_eval(c[1] == 'b'); // expected-warning{{TRUE}} in string_literal_init()
14 clang_analyzer_eval(a[3] == 0); // expected-warning{{TRUE}} in string_literal_init()
15 clang_analyzer_eval(c[3] == 0); // expected-warning{{TRUE}} in string_literal_init()
17 clang_analyzer_eval(c[4] == 0); // expected-warning{{TRUE}} in string_literal_init()
23 …int vec[6][2] = {{0.195, 0.02}, {0.383, 0.067}, {0.55, 0.169}, // expected-warning 6 {{implicit c… in nested_compound_literals()
24 …{0.831, 0.45}, {0.924, 0.617}, {0.98, 0.805}}; // expected-warning 6 {{implicit conversion from 'd… in nested_compound_literals()
[all …]
Drange_casts.c2 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -analyze -analyzer-checker=core,debug.ExprInspection…
8 unsigned index = -1; in f1() local
9 if (index < foo) index = foo; in f1()
10 if (index + 1 == 0) // because of foo range, index is in range [0; UINT_MAX] in f1()
11 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f1()
13 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f1()
18 int index = -1; in f2() local
19 if (index < foo) index = foo; // index equals ULONG_MAX in f2()
20 if (index + 1 == 0) in f2()
21 clang_analyzer_warnIfReached(); // expected-warning{{REACHABLE}} in f2()
[all …]
/external/cronet/tot/net/http/
Dhttp_no_vary_search_data_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
165 {// No No-Vary-Search Header case
167 "Set-Cookie: a\r\n"
168 "Set-Cookie: b\r\n\r\n",
171 {// No-Vary-Search Header doesn't parse as a dictionary.
173 R"(No-Vary-Search: "a")"
177 {// No-Vary-Search Header doesn't parse as a dictionary.
179 "No-Vary-Search: (a)\r\n\r\n",
184 R"(No-Vary-Search: params=("b"),except=("a"))"
191 "No-Vary-Search: unknown-key\r\n\r\n",
[all …]
/external/cronet/stable/net/http/
Dhttp_no_vary_search_data_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
165 {// No No-Vary-Search Header case
167 "Set-Cookie: a\r\n"
168 "Set-Cookie: b\r\n\r\n",
171 {// No-Vary-Search Header doesn't parse as a dictionary.
173 R"(No-Vary-Search: "a")"
177 {// No-Vary-Search Header doesn't parse as a dictionary.
179 "No-Vary-Search: (a)\r\n\r\n",
184 R"(No-Vary-Search: params=("b"),except=("a"))"
191 "No-Vary-Search: unknown-key\r\n\r\n",
[all …]
/external/jemalloc_new/include/jemalloc/internal/
Dsize_classes.sh13 # The range of tiny size classes is [2^lg_tmin..2^(lg_q-1)].
28 while [ ${e} -gt 0 ] ; do
30 e=$((${e} - 1))
37 while [ ${x} -gt 1 ] ; do
47 if [ ${pow2_floor} -lt ${y} ] ; then
77 while [ ${perfect} -eq 0 ] ; do
83 if [ ${perfect_slab_size} -eq $((${perfect_nregs} * ${reg_size})) ] ; then
92 index=$1
99 if [ ${lg_delta} -ge ${lg_p} ] ; then
107 if [ ${sz} -eq $((${npgs} * ${p})) ] ; then
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DMachOLinkGraphBuilder.h1 //===----- MachOLinkGraphBuilder.h - MachO LinkGraph builder ----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
42 assert((!Name || !Name->empty()) && "Name must be none or non-empty"); in NormalizedSymbol()
98 /// Index is zero-based (MachO section indexes are usually one-based) and
99 /// assumed to be in-range. Client is responsible for checking.
100 NormalizedSection &getSectionByIndex(unsigned Index) { in getSectionByIndex() argument
101 auto I = IndexToSection.find(Index); in getSectionByIndex()
102 assert(I != IndexToSection.end() && "No section recorded at index"); in getSectionByIndex()
[all …]
/external/llvm/test/Transforms/LoopVectorize/
Dinduction.ll1 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -S | FileCheck %s
2 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=1 -force-vector-width=2 -instcombine -S | …
3 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=2 -instcombine -S | …
4 ; RUN: opt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=2 -S | FileCheck %s
5 …pt < %s -loop-vectorize -force-vector-interleave=2 -force-vector-width=4 -enable-interleaved-mem-a…
7 …t = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:1…
10 ; CHECK-LABEL: @multi_int_induction(
12 ; CHECK: %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
13 ; CHECK: %[[VAR:.*]] = trunc i64 %index to i32
39 ; IND-LABEL: scalar_use
[all …]
/external/sdv/vsomeip/third_party/boost/numeric/odeint/doc/
DJamfile.v21 # Copyright 2009-2013 Karsten Ahnert
2 # Copyright 2011-2012 Mario Mulansky
13 path-constant here : . ;
19 if --enable-index in [ modules.peek : ARGV ]
21 ECHO "Building the odeint docs with automatic index generation enabled." ;
23 using auto-index ;
27 <auto-index>on
28 <auto-index-verbose>on
31 <format>html:<auto-index-internal>on # on (or off) to use internally generated indexes.
32 # <format>html:<xsl:param>generate.index=0 # Don't let the XSL stylesheets generate indexes.
[all …]
/external/angle/third_party/glslang/src/Test/baseResults/
D100Limits.vert.out21 0:24 No loop body
26 0:26 No loop body
29 0:28 No loop condition
30 0:28 No loop body
37 0:29 No loop body
40 0:30 No loop condition
41 0:30 No loop body
43 0:30 Post-Increment ( temp highp float)
51 0:31 No loop condition
52 0:31 No loop body
[all …]
Dhlsl.intrinsics.negative.frag.out6 ERROR: 0:28: 'refract' : no matching overloaded function found
8 ERROR: 0:39: 'GetRenderTargetSamplePosition' : no matching overloaded function found
10 ERROR: 0:47: 'CheckAccessFullyMapped' : no matching overloaded function found
11 ERROR: 0:49: 'cross' : no matching overloaded function found
12 ERROR: 0:50: 'D3DCOLORtoUBYTE4' : no matching overloaded function found
13 ERROR: 0:51: 'determinant' : no matching overloaded function found
14 ERROR: 0:57: 'transpose' : no matching overloaded function found
15 ERROR: 0:64: 'CheckAccessFullyMapped' : no matching overloaded function found
16 ERROR: 0:66: 'D3DCOLORtoUBYTE4' : no matching overloaded function found
17 ERROR: 0:67: 'determinant' : no matching overloaded function found
[all …]
/external/deqp-deps/glslang/Test/baseResults/
D100Limits.vert.out21 0:24 No loop body
26 0:26 No loop body
29 0:28 No loop condition
30 0:28 No loop body
37 0:29 No loop body
40 0:30 No loop condition
41 0:30 No loop body
43 0:30 Post-Increment ( temp highp float)
51 0:31 No loop condition
52 0:31 No loop body
[all …]
Dhlsl.intrinsics.negative.frag.out6 ERROR: 0:28: 'refract' : no matching overloaded function found
8 ERROR: 0:39: 'GetRenderTargetSamplePosition' : no matching overloaded function found
10 ERROR: 0:47: 'CheckAccessFullyMapped' : no matching overloaded function found
11 ERROR: 0:49: 'cross' : no matching overloaded function found
12 ERROR: 0:50: 'D3DCOLORtoUBYTE4' : no matching overloaded function found
13 ERROR: 0:51: 'determinant' : no matching overloaded function found
14 ERROR: 0:57: 'transpose' : no matching overloaded function found
15 ERROR: 0:64: 'CheckAccessFullyMapped' : no matching overloaded function found
16 ERROR: 0:66: 'D3DCOLORtoUBYTE4' : no matching overloaded function found
17 ERROR: 0:67: 'determinant' : no matching overloaded function found
[all …]
/external/tensorflow/tensorflow/lite/objc/sources/
DTFLInterpreter.mm7 // http://www.apache.org/licenses/LICENSE-2.0
62 #pragma mark - NSObject
64 - (void)dealloc {
69 #pragma mark - Public
71 - (nullable instancetype)initWithModelPath:(NSString *)modelPath error:(NSError **)error {
78 - (nullable instancetype)initWithModelPath:(NSString *)modelPath
84 - (nullable instancetype)initWithModelPath:(NSString *)modelPath
169 - (NSArray<NSString *> *)signatureKeys {
187 - (BOOL)invokeWithError:(NSError **)error {
192 return NO;
[all …]
/external/cronet/stable/third_party/icu/source/common/unicode/
Dedits.h18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text.
29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul…
32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
43 * next() on the iterator, skips over no-change edits (unchanged regions).
44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
53 * <li>abc ⇨ abc (no-change)
56 * <li>e ⇨ e (no-change)
[all …]
/external/icu/icu4c/source/common/unicode/
Dedits.h18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text.
29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul…
32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
43 * next() on the iterator, skips over no-change edits (unchanged regions).
44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
53 * <li>abc ⇨ abc (no-change)
56 * <li>e ⇨ e (no-change)
[all …]
/external/icu/libicu/cts_headers/unicode/
Dedits.h18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text.
29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul…
32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
43 * next() on the iterator, skips over no-change edits (unchanged regions).
44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
53 * <li>abc ⇨ abc (no-change)
56 * <li>e ⇨ e (no-change)
[all …]
/external/cronet/tot/third_party/icu/source/common/unicode/
Dedits.h18 * \brief C++ API: C++ class Edits for low-level string transformations on styled text.
29 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
31 …* {@link #addUnchanged(int32_t)} (for no-change edits). Change edits are retained with full granul…
32 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
43 * next() on the iterator, skips over no-change edits (unchanged regions).
44 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
47 * calling next() on the iterator, skips over no-change edits (unchanged regions).
50 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
53 * <li>abc ⇨ abc (no-change)
56 * <li>e ⇨ e (no-change)
[all …]
/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/text/
DEdits.java12 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
14 …* {@link #addUnchanged(int)} (for no-change edits). Change edits are retained with full granularit…
15 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
25 * next() on the iterator, skips over no-change edits (unchanged regions).
26 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
29 * calling next() on the iterator, skips over no-change edits (unchanged regions).
32 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
35 * <li>abc ⇨ abc (no-change)
38 * <li>e ⇨ e (no-change)
43 * <li>abc ⇨ abc (no-change)
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DEdits.java13 * There are two types of edits: <em>change edits</em> and <em>no-change edits</em>. Add edits to
15 …* {@link #addUnchanged(int)} (for no-change edits). Change edits are retained with full granularit…
16 …* whereas adjacent no-change edits are always merged together. In no-change edits, there is a one-
26 * next() on the iterator, skips over no-change edits (unchanged regions).
27 …* <li>{@link #getCoarseIterator()} treats adjacent change edits as a single edit. (Adjacent no-cha…
30 * calling next() on the iterator, skips over no-change edits (unchanged regions).
33 * For example, consider the string "abcßDeF", which case-folds to "abcssdef". This string has the
36 * <li>abc ⇨ abc (no-change)
39 * <li>e ⇨ e (no-change)
44 * <li>abc ⇨ abc (no-change)
[all …]
/external/sdv/vsomeip/third_party/boost/pool/doc/
Djamfile.v213 path-constant boost-root : $(BOOST) ;
14 path-constant images_location : images ; # location of SVG and PNG images referenced by Quickbook.
28 # and problem with 'no type' in jamfile.
29 # error: target { ../../../boost/pool/detail/pool_construct.inc. } has no type
33 <doxygen:param>WARNINGS=YES # Default NO, but useful to see warnings, especially in a logfile.
37 # and make sure that there are no Doxygen errors or significant warnings in the log file.
38 <doxygen:param>RECURSIVE=NO # Search recursively down subdirectories.
39 <doxygen:param>EXTRACT_ALL=NO
41 <doxygen:param>EXTRACT_PRIVATE=NO
48 xml pool : pool.qbk : <include>$(boost-root)/tools/auto_index/include ;
[all …]
/external/squashfs-tools/kernel/Documentation/filesystems/
Dsquashfs.txt4 Squashfs is a compressed read-only filesystem for Linux.
10 Squashfs is intended for general read-only filesystem use, for archival
15 Mailing list: squashfs-devel@lists.sourceforge.net
19 ----------------------
31 Metadata compression: yes no
32 Directory indexes: yes no
33 Sparse file support: yes no
34 Tail-end packing (fragments): yes no
35 Exportable (NFS etc.): yes no
36 Hard link support: yes no
[all …]
/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3beta1/src/main/java/com/google/cloud/translate/v3beta1/
DBatchDocumentOutputConfigOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
34 * While the input documents are being processed, we write/update an index
35 * file `index.csv` under `gcs_destination.output_uri_prefix` (for example,
36 * gs://translation_output/index.csv) The index file is generated/updated as
45 * no content to output.
48 * empty if we have no content to output.
49 * Once a row is present in index.csv, the input/output matching never
51 * processed and ready to be consumed (that is, no partial output file is
53 * Since index.csv will be keeping updated during the process, please make
54 * sure there is no custom retention policy applied on the output bucket
[all …]
/external/google-cloud-java/java-translate/proto-google-cloud-translate-v3/src/main/java/com/google/cloud/translate/v3/
DBatchDocumentOutputConfigOrBuilder.java8 * https://www.apache.org/licenses/LICENSE-2.0
34 * While the input documents are being processed, we write/update an index
35 * file `index.csv` under `gcs_destination.output_uri_prefix` (for example,
36 * gs://translation_output/index.csv) The index file is generated/updated as
45 * no content to output.
48 * empty if we have no content to output.
49 * Once a row is present in index.csv, the input/output matching never
51 * processed and ready to be consumed (that is, no partial output file is
53 * Since index.csv will be keeping updated during the process, please make
54 * sure there is no custom retention policy applied on the output bucket
[all …]

12345678910>>...60