Home
last modified time | relevance | path

Searched refs:typ (Results 1 – 25 of 123) sorted by relevance

12345

/external/chromium-trace/catapult/third_party/typ/typ/
D__init__.py59 from typ.arg_parser import ArgumentParser
60 from typ.fakes.host_fake import FakeHost
61 from typ.host import Host
62 from typ.json_results import exit_code_from_full_results
63 from typ.json_results import make_full_results, make_upload_request
64 from typ.json_results import Result, ResultSet, ResultType
65 from typ.runner import Runner, TestInput, TestSet, WinMultiprocessing, main
66 from typ.stats import Stats
67 from typ.printer import Printer
68 from typ.test_case import convert_newlines, TestCase, MainTestCase
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_suppressions.cc68 static const char *conv(ReportType typ) { in conv() argument
69 if (typ == ReportTypeRace) in conv()
71 else if (typ == ReportTypeVptrRace) in conv()
73 else if (typ == ReportTypeUseAfterFree) in conv()
75 else if (typ == ReportTypeVptrUseAfterFree) in conv()
77 else if (typ == ReportTypeThreadLeak) in conv()
79 else if (typ == ReportTypeMutexDestroyLocked) in conv()
81 else if (typ == ReportTypeMutexDoubleLock) in conv()
83 else if (typ == ReportTypeMutexBadUnlock) in conv()
85 else if (typ == ReportTypeMutexBadReadLock) in conv()
[all …]
Dtsan_report.cc84 static const char *ReportTypeString(ReportType typ) { in ReportTypeString() argument
85 if (typ == ReportTypeRace) in ReportTypeString()
87 if (typ == ReportTypeVptrRace) in ReportTypeString()
89 if (typ == ReportTypeUseAfterFree) in ReportTypeString()
91 if (typ == ReportTypeVptrUseAfterFree) in ReportTypeString()
93 if (typ == ReportTypeThreadLeak) in ReportTypeString()
95 if (typ == ReportTypeMutexDestroyLocked) in ReportTypeString()
97 if (typ == ReportTypeMutexDoubleLock) in ReportTypeString()
99 if (typ == ReportTypeMutexBadUnlock) in ReportTypeString()
101 if (typ == ReportTypeMutexBadReadLock) in ReportTypeString()
[all …]
Dtsan_rtl_report.cc137 ScopedReport::ScopedReport(ReportType typ) { in ScopedReport() argument
141 rep_->typ = typ; in ScopedReport()
396 EventType typ = (EventType)(ev >> 61); in RestoreStack() local
398 DPrintf2(" %zu typ=%d pc=%zx\n", i, typ, pc); in RestoreStack()
399 if (typ == EventTypeMop) { in RestoreStack()
401 } else if (typ == EventTypeFuncEnter) { in RestoreStack()
405 } else if (typ == EventTypeFuncExit) { in RestoreStack()
410 if (typ == EventTypeLock) { in RestoreStack()
412 } else if (typ == EventTypeUnlock) { in RestoreStack()
414 } else if (typ == EventTypeRLock) { in RestoreStack()
[all …]
Dtsan_suppressions.h33 uptr IsSuppressed(ReportType typ, const ReportStack *stack, Suppression **sp);
34 uptr IsSuppressed(ReportType typ, const ReportLocation *loc, Suppression **sp);
/external/chromium-trace/catapult/third_party/typ/
DREADME.chromium1 Name: typ
2 URL: https://github.com/dpranke/typ.git
11 typ is a simple wrapper around Python's unittest library that provides a
15 To update this copy of typ from the source repo (assuming you are in
20 git clone https://github.com/dpranke/typ.git typ_new
22 version=$(cd typ_new && python -m typ --version)
23 cp typ/OWNERS typ_new
24 cat typ/README.chromium | sed -e "s/^Version: .*/Version: $version/" \
27 rm -fr typ_new/.git typ_new/.gitignore typ/
28 mv typ_new typ
DREADME.rst1 typ (Test Your Program)
3 typ is a simple program for testing command line executables and Python code.
40 typ originated out of work on the Blink and Chromium projects, as a way to
46 typ is still a work in progress, but it's getting close to being done.
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DAPIInfo.java146 public int getVal(int typ) { in getVal() argument
147 validateType(typ); in getVal()
148 if (typ >= shifts.length) { in getVal()
151 return (info >>> shifts[typ]) & masks[typ]; in getVal()
161 public String get(int typ, boolean brief) { in get() argument
162 validateType(typ); in get()
163 String[] vals = brief ? shortNames[typ] : names[typ]; in get()
165 switch (typ) { in get()
173 int val = (info >>> shifts[typ]) & masks[typ]; in get()
182 public void setType(int typ, int val) { in setType() argument
[all …]
DCheckAPI.java97 public abstract int getVal(int typ); in getVal() argument
98 public abstract String get(int typ, boolean brief); in get() argument
110 public int getVal(int typ) { in getVal() argument
111 validateType(typ); in getVal()
112 return (info >> (typ*2)) & 0x3; in getVal()
115 public String get(int typ, boolean brief) { in get() argument
116 validateType(typ); in get()
117 String[] vals = brief ? shortNames[typ] : names[typ]; in get()
119 switch (typ) { in get()
127 int val = (info >> (typ*2)) & 0x3; in get()
[all …]
/external/libvpx/libvpx/vpx/
Dvpx_codec.h393 # define VPX_CTRL_USE_TYPE(id, typ) argument
394 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) argument
395 # define VPX_CTRL_VOID(id, typ) argument
422 # define VPX_CTRL_USE_TYPE(id, typ) \ argument
424 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) UNUSED;\
427 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
442 # define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \ argument
444 vpx_codec_control_##id(vpx_codec_ctx_t*, int, typ) DEPRECATED UNUSED;\
447 vpx_codec_control_##id(vpx_codec_ctx_t *ctx, int ctrl_id, typ data) {\
/external/libvpx/libvpx/vpx_ports/
Dmem.h19 #define DECLARE_ALIGNED(n,typ,val) typ val __attribute__ ((aligned (n))) argument
21 #define DECLARE_ALIGNED(n,typ,val) __declspec(align(n)) typ val argument
24 #define DECLARE_ALIGNED(n,typ,val) typ val argument
Dmem_ops.h52 #define mem_ops_wrap_symbol2(fn,typ) mem_ops_wrap_symbol3(fn,typ) argument
54 #define mem_ops_wrap_symbol3(fn,typ) fn##_as_##typ argument
/external/chromium-trace/catapult/telemetry/telemetry/testing/
Drun_tests.py22 import typ
61 typ.ArgumentParser.add_option_group(parser,
65 typ.ArgumentParser.add_option_group(parser,
114 runner = typ.Runner()
168 runner.win_multiprocessing = typ.WinMultiprocessing.importable
188 test_set.tests_to_skip.append(typ.TestInput(
191 test_set.parallel_tests.append(typ.TestInput(name))
203 test_set.tests_to_skip.append(typ.TestInput(name, msg=reason))
205 test_set.isolated_tests.append(typ.TestInput(name))
207 test_set.parallel_tests.append(typ.TestInput(name))
/external/mdnsresponder/Clients/
Ddns-sd.c984 …const char *nam, const char *typ, const char *dom, const char *host, const char *port, int argc, c… in RegisterService() argument
995 printf("Registering Service %s.%s%s%s", nam[0] ? nam : "<<Default>>", typ, dom[0] ? "." : "", dom); in RegisterService()
1021 …return(DNSServiceRegister(sdref, flags, opinterface, nam, typ, dom, host, registerPort.NotAnIntege… in RegisterService()
1025 static char *gettype(char *buffer, char *typ) in gettype() argument
1027 if (!typ || !*typ || (typ[0] == '.' && typ[1] == 0)) typ = "_http._tcp"; in gettype()
1028 if (!strchr(typ, '.')) { snprintf(buffer, TypeBufferSize, "%s._tcp", typ); typ = buffer; } in gettype()
1029 return(typ); in gettype()
1035 char buffer[TypeBufferSize], *typ, *dom; in main() local
1120 case 'B': typ = (argc < opi+1) ? "" : argv[opi+0]; in main()
1122 typ = gettype(buffer, typ); in main()
[all …]
/external/libvpx/libvpx/vpx/internal/
Dvpx_codec_internal.h365 #define VPX_CTRL_USE_TYPE(id, typ) \ argument
366 static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);}
369 #define VPX_CTRL_USE_TYPE_DEPRECATED(id, typ) \ argument
370 static VPX_INLINE typ id##__value(va_list args) {return va_arg(args, typ);}
/external/boringssl/src/ssl/test/runner/
Ddtls.go70 typ := recordType(b.data[0])
111 return typ, b, nil
124 func (c *Conn) dtlsWriteRecord(typ recordType, data []byte) (n int, err error) {
125 if typ != recordTypeHandshake {
127 return c.dtlsWriteRawRecord(typ, data)
268 func (c *Conn) dtlsSealRecord(typ recordType, data []byte) (b *block, err error) {
296 b.data[0] = byte(typ)
325 func (c *Conn) dtlsWriteRawRecord(typ recordType, data []byte) (n int, err error) {
326 b, err := c.dtlsSealRecord(typ, data)
339 if typ == recordTypeChangeCipherSpec {
/external/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli79 (** [get_global_value_address id typ ee] returns a pointer to the
80 identifier [id] as type [typ], which will be a pointer type for a
85 val get_global_value_address : string -> 'a Ctypes.typ -> llexecutionengine -> 'a
87 (** [get_function_address fn typ ee] returns a pointer to the function
88 [fn] as type [typ], which will be a pointer type for a function
89 (e.g. [(int -> int) typ]), and which will be live as long as [fn]
93 val get_function_address : string -> 'a Ctypes.typ -> llexecutionengine -> 'a
Dllvm_executionengine.ml56 let get_global_value_address name typ ee =
59 let open Ctypes in !@ (coerce (ptr void) (ptr typ) (ptr_of_raw_address vptr))
63 let get_function_address name typ ee =
66 let open Ctypes in coerce (ptr void) typ (ptr_of_raw_address fptr)
/external/boringssl/src/crypto/asn1/
Dtasn_new.c326 ASN1_TYPE *typ; in ASN1_primitive_new() local
359 typ = OPENSSL_malloc(sizeof(ASN1_TYPE)); in ASN1_primitive_new()
360 if (!typ) in ASN1_primitive_new()
362 typ->value.ptr = NULL; in ASN1_primitive_new()
363 typ->type = -1; in ASN1_primitive_new()
364 *pval = (ASN1_VALUE *)typ; in ASN1_primitive_new()
/external/autotest/client/common_lib/test_utils/
Dmock.py306 def expect_new(typ, *args, **dargs): argument
307 obj = typ.make_new(*args, **dargs)
313 def __new__(typ, *args, **dargs): argument
318 def make_new(typ, *args, **dargs): argument
319 obj = super(cls_sub, typ).__new__(typ, *args,
322 typ.cls_count += 1
323 obj_name = "%s_%s" % (name, typ.cls_count)
329 if isinstance(getattr(typ, symbol, None), property):
/external/chromium-trace/catapult/third_party/typ/typ/fakes/tests/
Dtest_result_server_fake_test.py17 from typ.fakes import test_result_server_fake
18 from typ import Host
/external/chromium-trace/catapult/catapult_build/
Drun_with_typ.py25 import typ
26 return typ.main(
/external/deqp/framework/delibs/coding_guidelines/
Dprettify.css1typ{color:#606}.lit{color:#066}.pun{color:#660}.pln{color:#000}.tag{color:#008}.atn{color:#606}.at…
/external/slf4j/slf4j-site/src/site/pages/css/
Dprettify.css4 .typ{color:#606}
23 .typ{color:#404;font-weight:bold}
/external/chromium-trace/catapult/third_party/coverage/coverage/
Dsummary.py97 typ, msg = sys.exc_info()[:2]
100 if typ is NotPython and not fr.should_be_python():
103 writeout(fmt_err % (fr.relative_filename(), typ.__name__, msg))

12345