HomeSort by relevance Sort by last modified time
    Searched refs:joins (Results 1 - 25 of 30) sorted by null

1 2

  /external/python/cpython3/Lib/test/
test_glob.py 16 def joins(self, *tuples): member in class:GlobTests
220 eq(self.rglob('**'), self.joins(('',), *full))
222 self.joins((os.curdir, ''), *((os.curdir,) + i for i in full)))
227 eq(self.rglob('**', ''), self.joins(('',), *dirs))
229 eq(self.rglob('a', '**'), self.joins(
232 eq(self.rglob('a**'), self.joins(('a',), ('aaa',), ('aab',)))
236 eq(self.rglob('**', 'EF'), self.joins(*expect))
240 eq(self.rglob('**', '*F'), self.joins(*expect))
242 eq(self.rglob('**', 'bcd', '*'), self.joins(
244 eq(self.rglob('a', '**', 'bcd'), self.joins(('a', 'bcd'))
    [all...]
  /external/skia/tests/
StrokeTest.cpp 63 static const SkPaint::Join joins[] = { local
67 for (size_t i = 0; i < SK_ARRAY_COUNT(joins); ++i) {
68 paint.setStrokeJoin(joins[i]);
76 bool isMiter = SkPaint::kMiter_Join == joins[i];
PaintTest.cpp 226 const SkPaint::Join joins[] = { local
254 FOR_SETUP(m, joins, setStrokeJoin)
  /external/skqp/tests/
StrokeTest.cpp 63 static const SkPaint::Join joins[] = { local
67 for (size_t i = 0; i < SK_ARRAY_COUNT(joins); ++i) {
68 paint.setStrokeJoin(joins[i]);
76 bool isMiter = SkPaint::kMiter_Join == joins[i];
PaintTest.cpp 226 const SkPaint::Join joins[] = { local
254 FOR_SETUP(m, joins, setStrokeJoin)
  /external/autotest/scheduler/
scheduler_models.py 308 def fetch_rows(cls, where='', params=(), joins='', order_by=''):
320 query = ('SELECT %(fields)s FROM %(table)s %(joins)s '
323 'joins' : joins,
330 def fetch(cls, where='', params=(), joins='', order_by=''):
336 rows = cls.fetch_rows(where=where, params=params, joins=joins,
526 def fetch(cls, where='', params=(), joins='', order_by=''):
534 rows = cls.fetch_rows(where=where, params=params, joins=joins,
    [all...]
query_managers.py 102 # are then filtered. The joins are comparably fast: There's usually just
112 joins=('INNER JOIN afe_jobs ON (job_id=afe_jobs.id) '
325 joins='%s %s' % (hqe_join, special_task_join),
monitor_db_unittest.py 164 joins='INNER JOIN afe_jobs ON (job_id=afe_jobs.id)',
    [all...]
  /prebuilts/go/darwin-x86/src/sort/
example_keys_test.go 35 // planetSorter joins a By function and a slice of Planets to be sorted.
  /prebuilts/go/linux-x86/src/sort/
example_keys_test.go 35 // planetSorter joins a By function and a slice of Planets to be sorted.
  /external/guice/extensions/persist/lib/
hibernate-annotations.jar 
  /external/skia/gm/
convex_all_line_paths.cpp 284 const SkPaint::Join joins[3] = { SkPaint::kRound_Join, local
295 paint.setStrokeJoin(joins[i%3]);
  /external/skqp/gm/
convex_all_line_paths.cpp 284 const SkPaint::Join joins[3] = { SkPaint::kRound_Join, local
295 paint.setStrokeJoin(joins[i%3]);
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
lex_test.go 271 // lines joins the arguments together as complete lines.
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
lex_test.go 271 // lines joins the arguments together as complete lines.
  /external/skia/src/pipe/
SkPipeCanvas.cpp 93 unsigned filter, unsigned style, unsigned caps, unsigned joins,
101 ASSERT_FITS_IN(joins, kJoins_BPF);
117 shift -= kJoins_BPF; packed |= (joins << shift);
    [all...]
  /external/skqp/src/pipe/
SkPipeCanvas.cpp 93 unsigned filter, unsigned style, unsigned caps, unsigned joins,
101 ASSERT_FITS_IN(joins, kJoins_BPF);
117 shift -= kJoins_BPF; packed |= (joins << shift);
    [all...]
  /prebuilts/go/darwin-x86/src/path/
path.go 152 // Join joins any number of path elements into a single path, adding a
  /prebuilts/go/linux-x86/src/path/
path.go 152 // Join joins any number of path elements into a single path, adding a
  /build/soong/android/
paths.go 562 // PathForSource joins the provided path components and validates that the result
667 // PathForOutput joins the provided paths and returns an OutputPath that is
720 // PathForDist joins the provided paths and returns a DistPath that is
  /prebuilts/go/darwin-x86/src/debug/dwarf/
line.go 604 // pathJoin joins dirname and filename. filename must be relative.
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 204 // Join joins any number of path elements into a single path, adding
  /prebuilts/go/linux-x86/src/debug/dwarf/
line.go 604 // pathJoin joins dirname and filename. filename must be relative.
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 204 // Join joins any number of path elements into a single path, adding
  /prebuilts/go/darwin-x86/src/html/template/
escape.go 428 // join joins the two contexts of a branch template node. The result is an

Completed in 1215 milliseconds

1 2