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

1 2 3 4 5 6 7

  /external/llvm/include/llvm/ADT/
SmallBitVector.h 89 BitVector *getPointer() const {
154 switchToLarge(new BitVector(*RHS.getPointer()));
163 delete getPointer();
168 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
173 return isSmall() ? getSmallSize() : getPointer()->size();
186 return getPointer()->count();
193 return getPointer()->any();
200 return getPointer()->all();
207 return getPointer()->none();
223 return getPointer()->find_first()
    [all...]
Optional.h 108 const T* getPointer() const { assert(hasVal); return reinterpret_cast<const T*>(storage.buffer); }
109 T* getPointer() { assert(hasVal); return reinterpret_cast<T*>(storage.buffer); }
110 const T& getValue() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
111 T& getValue() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
115 const T* operator->() const { return getPointer(); }
116 T* operator->() { return getPointer(); }
117 const T& operator*() const LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
118 T& operator*() LLVM_LVALUE_FUNCTION { assert(hasVal); return *getPointer(); }
121 T&& getValue() && { assert(hasVal); return std::move(*getPointer()); }
122 T&& operator*() && { assert(hasVal); return std::move(*getPointer()); }
    [all...]
  /external/llvm/unittests/ADT/
PointerIntPairTest.cpp 23 EXPECT_EQ(this, Pair.getPointer());
27 EXPECT_EQ(this, Pair.getPointer());
31 EXPECT_EQ(nullptr, Pair.getPointer());
35 EXPECT_EQ(this, Pair.getPointer());
41 EXPECT_EQ(nullptr, Pair.getPointer());
64 EXPECT_EQ((uintptr_t)0, pair.getPointer().Value);
68 EXPECT_EQ((uintptr_t)0x7FFFFFFF, pair.getPointer().Value);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 46 public abstract long getPointer();
52 return getURI(getParserPointer(), getPointer(), index);
58 : getLocalName(getParserPointer(), getPointer(), index);
64 : getQName(getParserPointer(), getPointer(), index);
74 : getValueByIndex(getPointer(), index);
84 long pointer = getPointer();
95 long pointer = getPointer();
123 long pointer = getPointer();
134 long pointer = getPointer();
  /external/clang/include/clang/AST/
LambdaCapture.h 71 bool capturesThis() const { return DeclAndBits.getPointer() == nullptr; }
75 return dyn_cast_or_null<VarDecl>(DeclAndBits.getPointer());
90 return cast<VarDecl>(DeclAndBits.getPointer());
GlobalDecl.h 54 CanonGD.Value.setPointer(Value.getPointer()->getCanonicalDecl());
60 const Decl *getDecl() const { return Value.getPointer(); }
VTableBuilder.h 127 return reinterpret_cast<CXXRecordDecl *>(getPointer());
133 return reinterpret_cast<CXXMethodDecl *>(getPointer());
140 return reinterpret_cast<CXXDestructorDecl *>(getPointer());
146 return reinterpret_cast<CXXMethodDecl *>(getPointer());
180 uintptr_t getPointer() const {
  /external/clang/test/Analysis/inlining/
path-notes.c 29 int *getPointer();
32 int *a = getPointer();
44 a = getPointer();
    [all...]
false-positive-suppression.cpp 82 extern int *getPointer();
83 box = getPointer();
  /external/llvm/include/llvm/IR/
ValueHandle.h 70 if (isValid(VP.getPointer()))
75 if (isValid(VP.getPointer()))
79 if (isValid(VP.getPointer()))
84 if (VP.getPointer() == RHS) return RHS;
85 if (isValid(VP.getPointer())) RemoveFromUseList();
87 if (isValid(VP.getPointer())) AddToUseList();
92 if (VP.getPointer() == RHS.VP.getPointer()) return RHS.VP.getPointer();
93 if (isValid(VP.getPointer())) RemoveFromUseList()
    [all...]
  /external/clang/include/clang/Sema/
ObjCMethodList.h 33 ObjCMethodList *getNext() const { return NextAndExtraBits.getPointer(); }
  /external/llvm/lib/Support/
SourceMgr.cpp 75 if (Loc.getPointer() >= Buffers[i].Buffer->getBufferStart() &&
78 Loc.getPointer() <= Buffers[i].Buffer->getBufferEnd())
103 Cache->LastQuery <= Loc.getPointer()) {
162 const char *LineStart = Loc.getPointer();
169 const char *LineEnd = Loc.getPointer();
182 if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart)
186 if (R.Start.getPointer() < LineStart)
188 if (R.End.getPointer() > LineEnd)
193 ColRanges.push_back(std::make_pair(R.Start.getPointer()-LineStart
    [all...]
  /external/llvm/include/llvm/Support/
SMLoc.h 33 const char *getPointer() const { return Ptr; }
SourceMgr.h 216 if (Range.Start.getPointer() != Other.Range.Start.getPointer())
217 return Range.Start.getPointer() < Other.Range.Start.getPointer();
218 if (Range.End.getPointer() != Other.Range.End.getPointer())
219 return Range.End.getPointer() < Other.Range.End.getPointer();
StreamableMemoryObject.h 34 /// Finally, getPointer can be used instead of readBytes to avoid extra copying.
78 /// getPointer - Ensures that the requested data is in memory, and returns
85 virtual const uint8_t *getPointer(uint64_t address, uint64_t size) const = 0;
114 const uint8_t *getPointer(uint64_t address, uint64_t size) const override {
119 llvm_unreachable("getPointer in streaming memory objects not allowed");
  /external/clang/lib/Sema/
Scope.cpp 116 if (VarDecl *Candidate = NRVO.getPointer()) {
126 else if (NRVO.getPointer())
127 getParent()->addNRVOCandidate(NRVO.getPointer());
215 else if (NRVO.getPointer())
216 OS << "NRVO candidate : (clang::VarDecl*)" << NRVO.getPointer() << '\n';
  /external/clang/include/clang/Lex/
ModuleLoader.h 42 operator Module *() const { return Storage.getPointer(); }
  /external/llvm/lib/Target/Sparc/
SparcTargetObjectFile.cpp 31 if (!StubSym.getPointer()) {
  /external/llvm/lib/IR/
Value.cpp 586 assert(VP.getPointer() == Next->VP.getPointer() && "Added to wrong list?");
602 assert(VP.getPointer() && "Null pointer doesn't have a use list!");
604 LLVMContextImpl *pImpl = VP.getPointer()->getContext().pImpl;
606 if (VP.getPointer()->HasValueHandle) {
609 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()];
623 ValueHandleBase *&Entry = Handles[VP.getPointer()];
626 VP.getPointer()->HasValueHandle = true;
638 assert(I->second && I->first == I->second->VP.getPointer() &&
646 assert(VP.getPointer() && VP.getPointer()->HasValueHandle &
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 988 assert(NeedToReconcileExternalVisibleStorage && LookupPtr.getPointer());
991 for (auto &Lookup : *LookupPtr.getPointer())
1042 if (!(Map = DC->LookupPtr.getPointer()))
1058 if (!(Map = DC->LookupPtr.getPointer()))
1116 (D->NextInContextAndBits.getPointer() || D == LastDecl));
    [all...]
  /external/llvm/include/llvm/Analysis/
PtrUseVisitor.h 70 Instruction *getAbortingInst() const { return AbortedInfo.getPointer(); }
75 Instruction *getEscapingInst() const { return EscapedInfo.getPointer(); }
219 U = ToVisit.UseAndIsOffsetKnown.getPointer();
MemoryDependenceAnalysis.h 138 && Value.getPointer() == reinterpret_cast<Instruction*>(NonLocal);
145 && Value.getPointer() == reinterpret_cast<Instruction*>(NonFuncLocal);
152 && Value.getPointer() == reinterpret_cast<Instruction*>(Unknown);
159 return Value.getPointer();
  /frameworks/rs/tests/cppbasic-getpointer/
compute.cpp 44 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride);
45 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDrawElementsInstanced.cpp 10 indices = (GLvoid *)getPointer(_env, indices_buf, &_array, &_remaining, &_bufferOffset);
  /sdk/emulator/opengl/host/libs/Translator/GLES_CM/
GLEScmContext.cpp 252 const GLESpointer* GLEScmContext::getPointer(GLenum arrType) {
262 return GLEScontext::getPointer(type);
350 ptr = getPointer(GL_VERTEX_ARRAY_POINTER);
356 ptr = getPointer(GL_NORMAL_ARRAY_POINTER);
363 ptr = getPointer(GL_COLOR_ARRAY_POINTER);
370 ptr = getPointer(GL_TEXTURE_COORD_ARRAY_POINTER);
376 ptr = getPointer(GL_POINT_SIZE_ARRAY_POINTER_OES);

Completed in 377 milliseconds

1 2 3 4 5 6 7