HomeSort by relevance Sort by last modified time
    Searched defs:td (Results 1 - 25 of 248) sorted by null

1 2 3 4 5 6 7 8 910

  /external/compiler-rt/test/msan/
textdomain.cc 7 const char *td = textdomain("abcd"); local
8 if (td[0] == 0) {
  /system/core/adb/sysdeps/
stat_test.cpp 26 TemporaryDir td; local
30 ASSERT_EQ(0, stat(td.path, &st));
34 ASSERT_EQ(0, stat((std::string(td.path) + '/').c_str(), &st));
38 ASSERT_EQ(0, stat((std::string(td.path) + '\\').c_str(), &st));
42 std::string nonexistent_path = std::string(td.path) + "/nonexistent";
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadDeathTest.java 26 ThreadDeath td = new ThreadDeath(); local
27 assertNull(td.getCause());
28 assertNull(td.getMessage());
  /bootable/recovery/tests/unit/
dirutil_test.cpp 37 TemporaryDir td; local
38 ASSERT_EQ(0, mkdir_recursively(td.path, 0755, false, nullptr));
50 TemporaryDir td; local
51 std::string prefix(td.path);
69 TemporaryDir td; local
70 std::string prefix(td.path);
87 TemporaryDir td; local
88 std::string prefix(td.path);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /external/curl/tests/
curl_test_data.py 59 td = TestData("./data") variable in class:TestData
60 data = td.get_test_data(1)
  /external/pdfium/third_party/libtiff/
tif_extension.c 39 TIFFDirectory* td = &tif->tif_dir; local
41 return td->td_customValueCount;
47 TIFFDirectory* td = &tif->tif_dir; local
49 if( tag_index < 0 || tag_index >= td->td_customValueCount )
52 return td->td_customValues[tag_index].info->field_tag;
  /external/python/cpython2/Lib/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /external/python/cpython3/Lib/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sortperf.py 15 td = tempfile.gettempdir() variable
22 fn = os.path.join(td, "rr%06d" % n)
  /cts/tests/app/src/android/app/cts/
TaskDescriptionTest.java 83 final TaskDescription td = info.taskDescription; local
84 assertNotNull(td);
86 assertNotNull(td.getIcon());
87 assertNotNull(td.getIconFilename());
89 assertNull(td.getIconFilename());
90 assertNull(td.getIcon());
92 assertEquals(resId, td.getIconResource());
93 assertEquals(label, td.getLabel());
  /external/llvm/
llvm-device-build.mk 53 ## Commands for running tblgen to compile a td file
55 define transform-device-td-to-out
llvm-host-build.mk 72 ## Commands for running tblgen to compile a td file
74 define transform-host-td-to-out
  /external/perfetto/src/base/
temp_file_unittest.cc 106 TempDir td = TempDir::Create(); local
107 ASSERT_NE("", td.path());
108 ASSERT_TRUE(PathExists(td.path()));
109 path = td.path();
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
scalar_opts.ml 41 let td = TargetData.create (target_triple m) in var
44 ++ TargetData.add td
81 TargetData.dispose td
  /external/adhd/cras/src/server/
rate_estimator.c 82 struct timespec td; local
93 subtract_timespecs(now, &re->window_start_ts, &td);
99 td.tv_sec + (double)td.tv_nsec / 1000000000L,
101 if (timespec_after(&td, &re->window_size) &&
  /external/autotest/frontend/client/src/autotest/common/ui/
RightClickTable.java 45 final Element td = getEventTargetCell(Event.as(event.getNativeEvent())); local
46 if (td == null) {
50 RowColumn position = getCellPosition(td);
55 return td;
60 protected RowColumn getCellPosition(Element td) {
61 Element tr = DOM.getParent(td);
64 int column = DOM.getChildIndex(tr, td);
  /external/clang/test/Sema/
static-array.c 25 typedef int td[static 3]; // expected-error {{'static' used in array declarator outside of function prototype}} typedef
  /external/fio/t/
memlock.c 8 } td; variable in typeref:struct:thread_data
12 struct thread_data *td = data; local
18 size = td->mib * 1024UL * 1024UL;
47 td.mib = mib;
50 pthread_create(&pthreads[i], NULL, worker, &td);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
LabelColumn.java 40 public void footer(final HTMLElement td, final ICoverageNode total,
43 td.text("Total");
46 public void item(final HTMLElement td, final ITableItem item,
49 td.a(item, base);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
1-1.c 26 } td; variable in typeref:struct:testdata
36 if (pthread_mutex_lock(&td.mutex) != 0) {
47 rc = pthread_cond_wait(&td.cond, &td.mutex);
56 if (pthread_mutex_unlock(&td.mutex) != 0) {
70 if (pthread_mutex_init(&td.mutex, NULL) != 0) {
74 if (pthread_cond_init(&td.cond, NULL) != 0) {
93 if (pthread_mutex_lock(&td.mutex) != 0) {
97 if (pthread_mutex_unlock(&td.mutex) != 0) {
104 rc = pthread_cond_broadcast(&td.cond)
    [all...]
2-1.c 27 } td; variable in typeref:struct:testdata
37 if (pthread_mutex_lock(&td.mutex) != 0) {
48 rc = pthread_cond_wait(&td.cond, &td.mutex);
54 if (pthread_mutex_trylock(&td.mutex) == 0) {
64 if (pthread_mutex_unlock(&td.mutex) != 0) {
79 if (pthread_mutex_init(&td.mutex, NULL) != 0) {
83 if (pthread_cond_init(&td.cond, NULL) != 0) {
99 if (pthread_mutex_lock(&td.mutex) != 0) {
103 if (pthread_mutex_unlock(&td.mutex) != 0)
    [all...]

Completed in 640 milliseconds

1 2 3 4 5 6 7 8 910