Home
last modified time | relevance | path

Searched refs:capture_end (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/v8/src/arm64/
Dregexp-macro-assembler-arm64.cc812 Register capture_end = w13; in GetCode() local
837 __ Lsr(capture_end.X(), capture_start.X(), kWRegSizeInBits); in GetCode()
845 __ Add(capture_end, input_length, Operand(capture_end, ASR, 1)); in GetCode()
848 __ Add(capture_end, input_length, capture_end); in GetCode()
852 capture_end, in GetCode()
872 __ Ldp(capture_end, in GetCode()
884 __ Add(capture_end, input_length, Operand(capture_end, ASR, 1)); in GetCode()
887 __ Add(capture_end, input_length, capture_end); in GetCode()
891 capture_end, in GetCode()
898 __ Ldp(capture_end, in GetCode()
[all …]
/external/clang/lib/AST/
DExprCXX.cpp1029 LambdaExpr::capture_iterator LambdaExpr::capture_end() const { in capture_end() function in LambdaExpr
1034 return capture_range(capture_begin(), capture_end()); in captures()
1056 return capture_end(); in implicit_capture_end()
DExpr.cpp2991 E = LE->capture_end(); I != E; ++I) in HasSideEffects()
/external/clang/include/clang/AST/
DDecl.h3363 return capture_range(capture_begin(), capture_end()); in captures()
3366 return capture_const_range(capture_begin(), capture_end()); in captures()
3370 capture_iterator capture_end() { return Captures + NumCaptures; } in capture_end() function
3372 capture_const_iterator capture_end() const { return Captures + NumCaptures; } in capture_end() function
DStmt.h2114 return capture_range(capture_begin(), capture_end()); in captures()
2117 return capture_const_range(capture_begin(), capture_end()); in captures()
2126 capture_iterator capture_end() const { in capture_end() function
DExprCXX.h1440 capture_iterator capture_end() const;
/external/clang/lib/Sema/
DSemaTemplateVariadic.cpp183 E = Lambda->capture_end(); in TraverseLambdaExpr()
DTreeTransform.h8631 CEnd = E->capture_end(); in TransformLambdaExpr()
8777 CEnd = E->capture_end(); in TransformLambdaScope()
DSemaDeclCXX.cpp141 if (Lambda->capture_begin() == Lambda->capture_end()) in VisitLambdaExpr()
/external/clang/lib/CodeGen/
DCGBlocks.cpp352 (block->capture_end() - block->capture_begin())); in computeBlockInfo()
DCodeGenFunction.h179 E = S.capture_end(); in Kind()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp293 Record.push_back(std::distance(S->capture_begin(), S->capture_end())); in VisitCapturedStmt()