/external/clang/lib/CodeGen/ |
D | CGBlocks.h | 152 class Capture { 173 static Capture makeIndex(unsigned index) { in makeIndex() 174 Capture v; in makeIndex() 179 static Capture makeConstant(llvm::Value *value) { in makeConstant() 180 Capture v; in makeConstant() 206 llvm::DenseMap<const VarDecl*, Capture> Captures; 233 const Capture &getCapture(const VarDecl *var) const { in getCapture() 236 Capture &getCapture(const VarDecl *var) { in getCapture() 237 llvm::DenseMap<const VarDecl*, Capture>::iterator in getCapture()
|
D | CGBlocks.cpp | 195 const BlockDecl::Capture *Capture; // null for 'this' member 200 const BlockDecl::Capture *capture, in BlockLayoutChunk() 203 Capture(capture), Type(type) {} in BlockLayoutChunk() 207 if (!Capture) in setIndex() 210 info.Captures[Capture->getVariable()] in setIndex() 211 = CGBlockInfo::Capture::makeIndex(index); in setIndex() 219 bool LeftByref = left.Capture ? left.Capture->isByRef() : false; in operator <() 220 bool RightByref = right.Capture ? right.Capture->isByRef() : false; in operator <() 402 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); in computeBlockInfo() 605 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); in enterBlockScope() [all …]
|
/external/v8/testing/ |
D | gmock-support.h | 13 class Capture { 15 Capture() : value_(), has_value_(false) {} in Capture() function 37 explicit CaptureEqMatcher(Capture<T>* capture) : capture_(capture) {} in CaptureEqMatcher() 57 Capture<T>* capture_; 66 Matcher<T> CaptureEq(Capture<T>* capture) { in CaptureEq()
|
/external/clang/include/clang/Sema/ |
D | ScopeInfo.h | 375 class Capture { 414 Capture(VarDecl *Var, bool Block, bool ByRef, bool IsNested, in Capture() function 423 Capture(IsThisCapture, bool IsNested, SourceLocation Loc, in Capture() function 486 SmallVector<Capture, 4> Captures; 499 Captures.push_back(Capture(Var, isBlock, isByref, isNested, Loc, in addCapture() 505 Captures.push_back(Capture(/*Var*/ nullptr, /*isBlock*/ false, in addVLATypeCapture() 518 Capture &getCXXThisCapture() { in getCXXThisCapture() 533 Capture &getCapture(VarDecl *Var) { in getCapture() 538 const Capture &getCapture(VarDecl *Var) const { in getCapture() 842 Captures.push_back(Capture(Capture::ThisCapture, isNested, Loc, CaptureType, in addThisCapture()
|
D | Initialization.h | 158 struct C Capture; member 193 Capture.VarID = VarID; in InitializedEntity() 194 Capture.Location = Loc.getRawEncoding(); in InitializedEntity() 421 return Capture.VarID->getName(); in getCapturedVarName() 427 return SourceLocation::getFromRawEncoding(Capture.Location); in getCaptureLoc()
|
/external/easymock/src/org/easymock/internal/matchers/ |
D | Captures.java | 20 import org.easymock.Capture; 28 private final Capture<T> capture; 32 public Captures(Capture<T> captured) { in Captures()
|
/external/v8/src/compiler/ |
D | change-lowering-unittest.cc | 16 using testing::Capture; 132 Capture<Node*> branch; in TARGET_TEST_P() 159 Capture<Node*> heap_number; in TARGET_TEST_P() 203 Capture<Node*> add, branch, heap_number, if_true; in TARGET_TEST_F() 233 Capture<Node*> branch, if_true; in TARGET_TEST_F() 262 Capture<Node*> branch, if_true; in TARGET_TEST_F() 288 Capture<Node*> branch, if_true; in TARGET_TEST_F() 314 Capture<Node*> branch, heap_number, if_false; in TARGET_TEST_F() 370 Capture<Node*> branch, if_true; in TARGET_TEST_F() 399 Capture<Node*> branch, if_true; in TARGET_TEST_F() [all …]
|
D | js-builtin-reducer-unittest.cc | 12 using testing::Capture; 129 Capture<Node*> branch; in TEST_F()
|
/external/easymock/src/org/easymock/ |
D | Capture.java | 29 public class Capture<T> implements Serializable { class 40 public Capture() { in Capture() method in Capture 50 public Capture(CaptureType type) { in Capture() method in Capture
|
/external/android-mock/tests/com/google/android/testing/mocking/ |
D | AndroidMockTest.java | 29 import org.easymock.Capture; 833 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Byte>()))).andReturn(null); in testCapture() 834 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Character>()))).andReturn(null); in testCapture() 835 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Double>()))).andReturn(null); in testCapture() 836 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Float>()))).andReturn(null); in testCapture() 837 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Integer>()))).andReturn(null); in testCapture() 838 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<Long>()))).andReturn(null); in testCapture() 839 AndroidMock.expect(mockMap.get(AndroidMock.capture(new Capture<String>()))).andReturn(null); in testCapture()
|
/external/regex-re2/re2/ |
D | compile.cc | 158 Frag Capture(Frag a, int n); 448 Frag Compiler::Capture(Frag a, int n) { in Capture() function in re2::Compiler 830 return Capture(child_frags[0], re->cap()); in PostVisit() 889 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap()); in IsAnchorStart() 937 *pre = Regexp::Capture(sub, re->parse_flags(), re->cap()); in IsAnchorEnd()
|
D | regexp.h | 391 static Regexp* Capture(Regexp* sub, ParseFlags flags, int cap);
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 1071 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const { in getStoredCaptures() 1076 llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in getStoredCaptures() 1078 return reinterpret_cast<Capture *>( in getStoredCaptures() 1084 ArrayRef<Capture> Captures, in CapturedStmt() 1103 Capture *Buffer = getStoredCaptures(); in CapturedStmt() 1115 ArrayRef<Capture> Captures, in Create() 1133 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in Create() 1134 Size += sizeof(Capture) * Captures.size(); in Create() 1146 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>()); in CreateDeserialized() 1147 Size += sizeof(Capture) * NumCaptures; in CreateDeserialized()
|
D | ExprCXX.cpp | 929 ArrayRef<Capture> Captures, in LambdaExpr() 958 Data.Captures = (Capture *)Context.Allocate(sizeof(Capture) * NumCaptures); in LambdaExpr() 959 Capture *ToCapture = Data.Captures; in LambdaExpr() 992 ArrayRef<Capture> Captures, in Create()
|
/external/libxml2/ |
D | libxml.m4 | 76 /* Capture xml2-config output via autoconf/configure variables */ 85 /* Capture the version information from the header files */
|
/external/clang/lib/Sema/ |
D | SemaLambda.cpp | 1414 LambdaScopeInfo::Capture From = LSI->Captures[I]; in ActOnLambdaExpr() 1630 BlockDecl::Capture Capture(/*Variable=*/CapVar, /*ByRef=*/false, in BuildBlockForLambdaConversion() local 1632 Block->setCaptures(Context, &Capture, &Capture + 1, in BuildBlockForLambdaConversion()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1996 class Capture { 2009 Capture(SourceLocation Loc, VariableCaptureKind Kind, 2068 CapturedStmt(Stmt *S, CapturedRegionKind Kind, ArrayRef<Capture> Captures, 2078 Capture *getStoredCaptures() const; 2085 ArrayRef<Capture> Captures, 2133 typedef Capture *capture_iterator; 2134 typedef const Capture *const_capture_iterator;
|
D | Decl.h | 3381 class Capture { 3396 Capture(VarDecl *variable, bool byRef, bool nested, Expr *copy) in Capture() function 3432 Capture *Captures; 3512 typedef const Capture *capture_iterator; 3513 typedef const Capture *capture_const_iterator; 3539 const Capture *begin, 3540 const Capture *end,
|
/external/chromium-trace/trace-viewer/third_party/Paste/ |
D | README.rst | 89 * Capture ``print`` output and present it in the browser for
|
D | PKG-INFO | 97 * Capture ``print`` output and present it in the browser for
|
/external/android-mock/src/com/google/android/testing/mocking/ |
D | AndroidMock.java | 18 import org.easymock.Capture; 2359 public static <T> T capture(Capture<T> captured) { in capture()
|
/external/chromium-trace/trace-viewer/third_party/Paste/Paste.egg-info/ |
D | PKG-INFO | 97 * Capture ``print`` output and present it in the browser for
|
/external/clang/tools/libclang/ |
D | CIndexCodeCompletion.cpp | 714 CaptureCompletionResults Capture(Opts, *Results, &TU); in clang_codeCompleteAt_Impl() local 722 Capture, in clang_codeCompleteAt_Impl()
|
/external/chromium-trace/trace-viewer/third_party/Paste/docs/ |
D | developer-features.txt | 121 * Capture ``print`` output and present it in the browser for
|
/external/libpcap/ |
D | README | 41 User-level Packet Capture''. A compressed PostScript version can be
|