Home
last modified time | relevance | path

Searched full:category (Results 1 – 25 of 2769) sorted by relevance

12345678910>>...111

/third_party/typescript/src/compiler/
DdiagnosticMessages.json3 "category": "Error", string
7 "category": "Error", string
11 "category": "Error", string
15 "category": "Error", string
19 "category": "Error", string
23 "category": "Error", string
27 "category": "Error", string
31 "category": "Error", string
35 "category": "Error", string
39 "category": "Error", string
[all …]
/third_party/openssl/crypto/
Dtrace.c60 int category; member
68 size_t cnt = ctx->callback(buf, num, ctx->category, OSSL_TRACE_CTRL_WRITE, in trace_write()
93 ctx->callback("", 0, ctx->category, cmd, ctx->data); in trace_ctrl()
173 /* We use one trace channel for each trace category */
193 static int trace_attach_cb(int category, int type, const void *data) in trace_attach_cb() argument
197 OSSL_TRACE2(TRACE, "Attach channel %p to category '%s'\n", in trace_attach_cb()
198 data, trace_categories[category].name); in trace_attach_cb()
201 OSSL_TRACE2(TRACE, "Attach prefix \"%s\" to category '%s'\n", in trace_attach_cb()
202 (const char *)data, trace_categories[category].name); in trace_attach_cb()
205 OSSL_TRACE2(TRACE, "Attach suffix \"%s\" to category '%s'\n", in trace_attach_cb()
[all …]
/third_party/selinux/libsepol/tests/policies/test-cond/
Drefpolicy-base.conf547 category c0; category c1; category c2; category c3;
548 category c4; category c5; category c6; category c7;
549 category c8; category c9; category c10; category c11;
550 category c12; category c13; category c14; category c15;
551 category c16; category c17; category c18; category c19;
552 category c20; category c21; category c22; category c23;
553 category c24; category c25; category c26; category c27;
554 category c28; category c29; category c30; category c31;
555 category c32; category c33; category c34; category c35;
556 category c36; category c37; category c38; category c39;
[all …]
/third_party/openssl/include/openssl/
Dtrace.h28 * categories. For every trace category, the application can register a separate
30 * created for this category. This channel consists essentially of an internal
34 * The ALL category can be used as a fallback category to register a single
61 /* Returns the trace category number for the given |name| */
64 /* Returns the trace category name for the given |num| */
72 * Enables tracing for the given |category| by providing a BIO sink
74 * trace channel is removed and tracing for the category is disabled.
78 int OSSL_trace_set_channel(int category, BIO* channel);
81 * Attach a prefix and a suffix to the given |category|, to be printed at the
89 int OSSL_trace_set_prefix(int category, const char *prefix);
[all …]
/third_party/skia/third_party/externals/angle2/src/third_party/trace_event/
Dtrace_event.h58 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
61 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
94 // in for category, name, and arg_names. Thus, the following code will
102 // Notes: The category must always be in a long-lived char* (i.e. static const).
108 // TRACE_EVENT1("category", "name",
111 // TRACE_EVENT1("category", "name",
114 // TRACE_EVENT1("category", "name",
119 // A thread safe singleton and mutex are used for thread safety. Category
123 // TRACE_EVENT macros first cache a pointer to a category. The categories are
125 // category is protected by the TraceLog::lock_. Multiple threads initializing
[all …]
/third_party/rust/rust/compiler/rustc_apfloat/tests/
Dieee.rs5 use rustc_apfloat::{Category, ExpInt, IEK_INF, IEK_NAN, IEK_ZERO};
1654 (p_inf, p_inf, "inf", Status::OK, Category::Infinity), in add()
1655 (p_inf, m_inf, "nan", Status::INVALID_OP, Category::NaN), in add()
1656 (p_inf, p_zero, "inf", Status::OK, Category::Infinity), in add()
1657 (p_inf, m_zero, "inf", Status::OK, Category::Infinity), in add()
1658 (p_inf, qnan, "nan", Status::OK, Category::NaN), in add()
1661 (p_inf, snan, "nan", Status::INVALID_OP, Category::NaN), in add()
1663 (p_inf, p_normal_value, "inf", Status::OK, Category::Infinity), in add()
1664 (p_inf, m_normal_value, "inf", Status::OK, Category::Infinity), in add()
1665 (p_inf, p_largest_value, "inf", Status::OK, Category::Infinity), in add()
[all …]
Dppc.rs2 use rustc_apfloat::{Category, Float, Round};
37 // (1 + 0) + (-1 + 0) = Category::Zero in ppc_double_double_add_special()
38 (0x3ff0000000000000, 0xbff0000000000000, Category::Zero, Round::NearestTiesToEven), in ppc_double_double_add_special()
39 // LDBL_MAX + (1.1 >> (1023 - 106) + 0)) = Category::Infinity in ppc_double_double_add_special()
43 Category::Infinity, in ppc_double_double_add_special()
49 // 160))) = Category::Normal in ppc_double_double_add_special()
53 Category::Normal, in ppc_double_double_add_special()
56 // LDBL_MAX + (1.1 >> (1023 - 106) + 0)) = Category::Infinity in ppc_double_double_add_special()
60 Category::Infinity, in ppc_double_double_add_special()
63 // NaN + (1 + 0) = Category::NaN in ppc_double_double_add_special()
[all …]
/third_party/icu/icu4c/source/common/
Dpluralmap.h27 * category, but rather represents the absence of a plural category.
29 enum Category { enum
41 * Converts a category name such as "zero", "one", "two", "few", "many"
42 * or "other" to a category enum. Returns NONE for an unrecognized
43 * category name.
45 static Category toCategory(const char *categoryName);
48 * Converts a category name such as "zero", "one", "two", "few", "many"
49 * or "other" to a category enum. Returns NONE for unrecognized
50 * category name.
52 static Category toCategory(const UnicodeString &categoryName);
[all …]
/third_party/skia/m133/third_party/externals/icu/source/common/
Dpluralmap.h27 * category, but rather represents the absence of a plural category.
29 enum Category { enum
41 * Converts a category name such as "zero", "one", "two", "few", "many"
42 * or "other" to a category enum. Returns NONE for an unrecognized
43 * category name.
45 static Category toCategory(const char *categoryName);
48 * Converts a category name such as "zero", "one", "two", "few", "many"
49 * or "other" to a category enum. Returns NONE for unrecognized
50 * category name.
52 static Category toCategory(const UnicodeString &categoryName);
[all …]
/third_party/skia/third_party/externals/icu/source/common/
Dpluralmap.h27 * category, but rather represents the absence of a plural category.
29 enum Category { enum
41 * Converts a category name such as "zero", "one", "two", "few", "many"
42 * or "other" to a category enum. Returns NONE for an unrecognized
43 * category name.
45 static Category toCategory(const char *categoryName);
48 * Converts a category name such as "zero", "one", "two", "few", "many"
49 * or "other" to a category enum. Returns NONE for urecongized
50 * category name.
52 static Category toCategory(const UnicodeString &categoryName);
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_platform/tracing/
DTraceEvent.h68 // TRACE_EVENT_ASYNC_BEGIN0("category", "MyTracedClass", this);
71 // TRACE_EVENT_ASYNC_END0("category", "MyTracedClass", this);
104 // in for category, name, and arg_names. Thus, the following code will
112 // Notes: The category must always be in a long-lived char* (i.e. static const).
118 // TRACE_EVENT1("category", "name",
121 // TRACE_EVENT1("category", "name",
124 // TRACE_EVENT1("category", "name",
129 // A thread safe singleton and mutex are used for thread safety. Category
133 // TRACE_EVENT macros first cache a pointer to a category. The categories are
135 // category is protected by the TraceLog::lock_. Multiple threads initializing
[all …]
/third_party/skia/m133/third_party/externals/libyuv/infra/config/
Dluci-milo.cfg15 category: "Android|Builder"
20 category: "Android|Builder"
25 category: "Android|Builder"
30 category: "Android|Builder|x86"
35 category: "Android|Builder|x64"
40 category: "Android|Tester|ARM 32"
45 category: "Android|Tester|ARM 32"
50 category: "Android|Tester|ARM 64"
55 category: "Linux"
60 category: "Linux"
[all …]
/third_party/typescript/tests/baselines/reference/
DexcessiveStackDepthFlatArray.types65 … ( <ul> <li>All</li> {categories.map((category) => ( <li key={category}>{categ…
74 >( <ul> <li>All</li> {categories.map((category) => ( <li key={category}>{catego…
77 ><ul> <li>All</li> {categories.map((category) => ( <li key={category}>{category}</…
85 {categories.map((category) => (
86 >categories.map((category) => ( <li key={category}>{category}</li> // Error about 'key' only…
90 >(category) => ( <li key={category}>{category}</li> // Error about 'key' only ) : (cate…
91 >category : string
92 >( <li key={category}>{category}</li> // Error about 'key' only ) : any
94 <li key={category}>{category}</li> // Error about 'key' only
95 ><li key={category}>{category}</li> : any
[all …]
/third_party/skia/m133/third_party/externals/expat/testdata/largefiles/
Dnes96.xml166 <txt level="category">
174 <txt level="category">
288 <txt level="category">
320 <txt level="category">
351 <txt level="category">
383 <txt level="category">
410 <txt level="category">
418 <txt level="category">
450 <txt level="category">
458 <txt level="category">
[all …]
/third_party/skia/third_party/externals/expat/testdata/largefiles/
Dnes96.xml166 <txt level="category">
174 <txt level="category">
288 <txt level="category">
320 <txt level="category">
351 <txt level="category">
383 <txt level="category">
410 <txt level="category">
418 <txt level="category">
450 <txt level="category">
458 <txt level="category">
[all …]
/third_party/python/Lib/
Dwarnings.py10 def showwarning(message, category, filename, lineno, file=None, line=None): argument
12 msg = WarningMessage(message, category, filename, lineno, file, line)
15 def formatwarning(message, category, filename, lineno, line=None): argument
17 msg = WarningMessage(message, category, filename, lineno, None, line)
36 category = msg.category.__name__
37 s = f"{msg.filename}:{msg.lineno}: {category}: {msg.message}\n"
89 s += (f'{category}: Enable tracemalloc to get the object '
109 sw(msg.message, msg.category, msg.filename, msg.lineno,
126 return fw(msg.message, msg.category,
130 def filterwarnings(action, message="", category=Warning, module="", lineno=0, argument
[all …]
/third_party/skia/third_party/externals/angle2/infra/config/generated/
Dluci-milo.cfg15 category: "compile|android|clang|arm"
20 category: "compile|android|clang|arm"
25 category: "compile|android|clang|arm64"
30 category: "test|android|clang|arm64"
35 category: "test|linux|clang|x64"
40 category: "test|linux|clang|x64"
45 category: "test|linux|clang|x64"
50 category: "compile|linux|clang|x64"
55 category: "test|linux|clang|x64"
60 category: "compile|mac|clang|x64"
[all …]
/third_party/rust/rust/src/etc/
Dlldb_commands1 type synthetic add -l lldb_lookup.synthetic_lookup -x ".*" --category Rust
2 type summary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)String$" --category
3 type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?str$" --category Rust
4 type summary add -F lldb_lookup.summary_lookup -e -x -h "^&(mut )?\\[.+\\]$" --category Rust
5 …ry add -F lldb_lookup.summary_lookup -e -x -h "^(std::ffi::([a-z_]+::)+)OsString$" --category Rust
6 …ummary add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)Vec<.+>$" --category Rust
7 …y add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)VecDeque<.+>$" --category Rust
8 …y add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeSet<.+>$" --category Rust
9 …y add -F lldb_lookup.summary_lookup -e -x -h "^(alloc::([a-z_]+::)+)BTreeMap<.+>$" --category Rust
10 …ldb_lookup.summary_lookup -e -x -h "^(std::collections::([a-z_]+::)+)HashMap<.+>$" --category Rust
[all …]
/third_party/selinux/libsepol/tests/policies/test-expander/
Drole-base.conf401 # Each category has a name and zero or more aliases.
403 category c0; category c1; category c2; category c3;
404 category c4; category c5; category c6; category c7;
405 category c8; category c9; category c10; category c11;
406 category c12; category c13; category c14; category c15;
407 category c16; category c17; category c18; category c19;
408 category c20; category c21; category c22; category c23;
Duser-base.conf401 # Each category has a name and zero or more aliases.
403 category c0; category c1; category c2; category c3;
404 category c4; category c5; category c6; category c7;
405 category c8; category c9; category c10; category c11;
406 category c12; category c13; category c14; category c15;
407 category c16; category c17; category c18; category c19;
408 category c20; category c21; category c22; category c23;
Dalias-base.conf401 # Each category has a name and zero or more aliases.
403 category c0; category c1; category c2; category c3;
404 category c4; category c5; category c6; category c7;
405 category c8; category c9; category c10; category c11;
406 category c12; category c13; category c14; category c15;
407 category c16; category c17; category c18; category c19;
408 category c20; category c21; category c22; category c23;
/third_party/selinux/libsepol/tests/policies/test-hooks/
Dcmp_policy.conf401 # Each category has a name and zero or more aliases.
403 category c0; category c1; category c2; category c3;
404 category c4; category c5; category c6; category c7;
405 category c8; category c9; category c10; category c11;
406 category c12; category c13; category c14; category c15;
407 category c16; category c17; category c18; category c19;
408 category c20; category c21; category c22; category c23;
Dsmall-base.conf401 # Each category has a name and zero or more aliases.
403 category c0; category c1; category c2; category c3;
404 category c4; category c5; category c6; category c7;
405 category c8; category c9; category c10; category c11;
406 category c12; category c13; category c14; category c15;
407 category c16; category c17; category c18; category c19;
408 category c20; category c21; category c22; category c23;
/third_party/mesa3d/src/mapi/glapi/gen/
DglX_API.xml14 <category name="1.0" window_system="glX">
86 </category>
88 <category name="1.1" window_system="glX">
96 </category>
98 <category name="1.3" window_system="glX">
146 </category>
148 <category name="GLX_SGI_swap_control" number="40" window_system="glX">
153 </category>
155 <category name="GLX_SGI_make_current_read" number="42" window_system="glX">
164 </category>
[all …]
Des_EXT.xml9 <category name="GL_OES_blend_equation_separate" number="1">
18 </category>
21 <category name="GL_OES_blend_func_separate" number="2">
33 </category>
36 <category name="GL_OES_blend_subtract" number="3">
45 </category>
48 <category name="GL_OES_byte_coordinates" number="4">
50 </category>
52 <category name="GL_OES_compressed_ETC1_RGB8_texture" number="5">
54 </category>
[all …]

12345678910>>...111