HomeSort by relevance Sort by last modified time
    Searched refs:tail (Results 601 - 625 of 890) sorted by null

<<21222324252627282930>>

  /external/python/cpython2/Modules/
gcmodule.c 278 PyGC_Head *tail; local
281 tail = to->gc.gc_prev;
282 tail->gc.gc_next = from->gc.gc_next;
283 tail->gc.gc_next->gc.gc_prev = tail;
    [all...]
  /external/vulkan-validation-layers/scripts/
helper_file_generator.py 232 if ((elem.tag is not 'type') and (elem.tail is not None)) and '*' in elem.tail:
240 if (paramname.tail is not None) and ('[' in paramname.tail):
241 isstaticarray = paramname.tail.count('[')
    [all...]
  /art/test/
run-test     [all...]
  /external/libchrome/mojo/public/tools/bindings/
mojom_bindings_generator.py 28 path, tail = os.path.split(path)
29 assert tail
30 if tail == dirname:
  /external/skia/src/core/
SkString.cpp 564 size_t tail = size - (offset + length); local
565 if (tail) {
566 memcpy(dst + offset, src + (offset + length), tail);
  /external/skqp/src/core/
SkString.cpp 564 size_t tail = size - (offset + length); local
565 if (tail) {
566 memcpy(dst + offset, src + (offset + length), tail);
  /external/swiftshader/third_party/SPIRV-Tools/source/opt/
loop_unswitch_pass.cpp 242 if_block->tail()->SetInOperand(0, {loop_pre_header->id()});
293 Instruction* iv_condition = &*switch_block_->tail();
402 context_->KillInst(&*if_block->tail());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 413 const char* tail; local
417 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail);
452 const char* tail; local
463 rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail);
498 const char* tail; local
509 rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 859 StepPattern tail = step; local
935 tail = pat;
942 XNumber score = tail.getStaticScore();
943 tail.setRelativePathPattern(selfPattern);
944 tail.setStaticScore(score);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
swapchain9.c 426 screen->fence_reference(screen, &fence, This->swap_fences[This->tail]);
427 screen->fence_reference(screen, &This->swap_fences[This->tail++], NULL);
428 This->tail &= DRI_SWAP_FENCES_MASK;
451 screen->fence_reference(screen, &fence, This->swap_fences[This->tail]);
493 screen->fence_reference(screen, &This->swap_fences[This->tail++], NULL);
494 This->tail &= DRI_SWAP_FENCES_MASK;
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 423 const char* tail; local
427 rc = sqlite3_prepare(self->db, self->begin_statement, -1, &statement, &tail);
462 const char* tail; local
472 rc = sqlite3_prepare(self->db, "COMMIT", -1, &statement, &tail);
507 const char* tail; local
518 rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
    [all...]
  /external/python/cpython3/Lib/importlib/
_bootstrap_external.py 65 front, _, tail = path.rpartition(path_sep)
66 return front, tail
69 front, tail = path.rsplit(x, maxsplit=1)
70 return front, tail
297 head, tail = _path_split(path)
298 base, sep, rest = tail.rpartition('.')
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 383 const char* tail; local
387 rc = sqlite3_prepare_v2(self->db, self->begin_statement, -1, &statement, &tail);
419 const char* tail; local
429 rc = sqlite3_prepare_v2(self->db, "COMMIT", -1, &statement, &tail);
461 const char* tail; local
472 rc = sqlite3_prepare_v2(self->db, "ROLLBACK", -1, &statement, &tail);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
ntpath.py 187 # Split a path in head (everything up to the last '/') and tail (the
189 # join(head, tail) == p holds.
195 Return tuple (head, tail) where tail is everything after the final slash.
203 head, tail = p[:i], p[i:] # now tail has no slashes
209 return d + head, tail
222 # Return the tail (basename) part of a path.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
FSProxy.py 71 head, tail = os.path.split(name)
72 if head or not tail: return 0
  /external/curl/lib/
altsvc.c 165 Curl_llist_insert_next(&asi->list, asi->list.tail, as, &as->node);
511 Curl_llist_insert_next(&asi->list, asi->list.tail, as, &as->node);
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 262 dst.col(k).tail(rows()-k-1).setZero();
266 dst.col(k).tail(rows()-k-1).setZero();
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 175 knots.tail(degree).fill(temporaryKnots.template tail<1>()[0]);
  /external/mesa3d/src/compiler/nir/
nir.h 1596 struct exec_node *tail = exec_list_get_tail(&block->instr_list); local
1766 struct exec_node *tail = exec_list_get_tail(&if_stmt->then_list); local
1780 struct exec_node *tail = exec_list_get_tail(&if_stmt->else_list); local
1794 struct exec_node *tail = exec_list_get_tail(&loop->body); local
    [all...]
  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
MutableViewData.java 372 IntervalBucket tail = CheckerFrameworkUtils.castNonNull(buckets.peekLast()); local
373 double fractionTail = tail.getFraction(now);
  /external/python/cpython2/Demo/pdist/
FSProxy.py 71 head, tail = os.path.split(name)
72 if head or not tail: return 0
  /external/python/cpython2/Lib/
ntpath.py 169 # Split a path in head (everything up to the last '/') and tail (the
171 # join(head, tail) == p holds.
177 Return tuple (head, tail) where tail is everything after the final slash.
185 head, tail = p[:i], p[i:] # now tail has no slashes
191 return d + head, tail
204 # Return the tail (basename) part of a path.
  /external/python/cpython3/Lib/
compileall.py 141 head, tail = name[:-3], name[-3:]
142 if tail == '.py':
  /external/python/cpython3/Lib/test/
test_xml_etree.py 170 properties = operator.attrgetter('tag', 'tail', 'text', 'attrib')
206 for attr in 'tag', 'attrib', 'text', 'tail':
216 if element.tail is not None:
217 check_string(element.tail)
284 self.assertIsNone(element.tail)
285 element.tail = 'Tail'
286 self.assertEqual(element.tail, 'Tail')
287 element.tail = 'TAIL
    [all...]
  /external/swiftshader/third_party/LLVM/test/lib/
llvm.exp 142 set filename [file tail $test]

Completed in 1529 milliseconds

<<21222324252627282930>>