Searched refs:Ptr (Results 26 - 50 of 507) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dmerger.cc45 Ptr<FontInfo> merged_info;
53 Ptr<FontAssembler> font_assembler = new FontAssembler(merged_info);
58 Ptr<FontInfo> font_info = new FontInfo;
62 Ptr<FontSourcedInfoBuilder> info_builder =
64 Ptr<FontInfo> current_font_info;
H A Dfont_assembler.h60 sfntly::Ptr<FontInfo> font_info_;
61 sfntly::Ptr<sfntly::FontFactory> font_factory_;
62 sfntly::Ptr<sfntly::Font::Builder> font_builder_;
H A Ddebug_main.cc49 Ptr<Subsetter> subsetter = new Subsetter(font, NULL);
50 Ptr<Font> new_font;
H A Dmerger_main.cc51 Ptr<Font> font;
57 Ptr<Merger> merger = new Merger(&fonts);
/external/sfntly/cpp/src/sample/subtly/
H A Dmerger.cc45 Ptr<FontInfo> merged_info;
53 Ptr<FontAssembler> font_assembler = new FontAssembler(merged_info);
58 Ptr<FontInfo> font_info = new FontInfo;
62 Ptr<FontSourcedInfoBuilder> info_builder =
64 Ptr<FontInfo> current_font_info;
H A Dfont_assembler.h60 sfntly::Ptr<FontInfo> font_info_;
61 sfntly::Ptr<sfntly::FontFactory> font_factory_;
62 sfntly::Ptr<sfntly::Font::Builder> font_builder_;
/external/clang/include/clang/AST/
H A DDeclarationName.h65 /// upper bits of the Ptr field. This is only used internally.
77 /// Ptr - The lowest two bits are used to express what kind of name
79 /// on the kind of name this is, the upper bits of Ptr may have one
82 /// StoredIdentifier - The name is a normal identifier, and Ptr is
86 /// selector with zero arguments, and Ptr is an IdentifierInfo
90 /// with one argument, and Ptr is an IdentifierInfo pointer
93 /// StoredDeclarationNameExtra - Ptr is actually a pointer to a
97 uintptr_t Ptr; member in class:clang::DeclarationName
100 /// Ptr.
102 return static_cast<StoredNameKind>(Ptr
159 DeclarationName(uintptr_t Ptr) argument
[all...]
H A DDeclFriend.h174 FriendDecl *Ptr; member in class:CXXRecordDecl::friend_iterator
177 explicit friend_iterator(FriendDecl *Ptr) : Ptr(Ptr) {} argument
187 reference operator*() const { return Ptr; }
190 assert(Ptr && "attempt to increment past end of friend list");
191 Ptr = Ptr->getNextFriend();
202 return Ptr == Other.Ptr;
[all...]
H A DExternalASTSource.h317 mutable uint64_t Ptr; member in struct:clang::LazyOffsetPtr
320 LazyOffsetPtr() : Ptr(0) { }
322 explicit LazyOffsetPtr(T *Ptr) : Ptr(reinterpret_cast<uint64_t>(Ptr)) { } argument
323 explicit LazyOffsetPtr(uint64_t Offset) : Ptr((Offset << 1) | 0x01) {
326 Ptr = 0;
329 LazyOffsetPtr &operator=(T *Ptr) { argument
330 this->Ptr = reinterpret_cast<uint64_t>(Ptr);
443 getFromOpaqueValue(void *Ptr) argument
456 typedef clang::LazyGenerationalUpdatePtr<Owner, T, Update> Ptr; typedef in struct:llvm::PointerLikeTypeTraits
[all...]
/external/llvm/lib/IR/
H A DIRBuilder.cpp42 Value *IRBuilderBase::getCastedInt8PtrValue(Value *Ptr) { argument
43 PointerType *PT = cast<PointerType>(Ptr->getType());
45 return Ptr;
49 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
64 CreateMemSet(Value *Ptr, Value *Val, Value *Size, unsigned Align, argument
66 Ptr = getCastedInt8PtrValue(Ptr);
67 Value *Ops[] = { Ptr, Val, Size, getInt32(Align), getInt1(isVolatile) };
68 Type *Tys[] = { Ptr->getType(), Size->getType() };
125 CallInst *IRBuilderBase::CreateLifetimeStart(Value *Ptr, ConstantIn argument
140 CreateLifetimeEnd(Value *Ptr, ConstantInt *Size) argument
[all...]
/external/clang/test/FixIt/
H A Dfixit-vexing-parse.cpp90 typedef void *Ptr; typedef
93 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
97 Ptr p(); // expected-warning {{function declaration}} expected-note {{replace parentheses with an initializer}}
/external/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/
H A Ddifference_type.pass.cpp52 typedef std::unique_ptr<int, do_nothing> Ptr; typedef
53 Ptr p[5];
56 test(p, 3, Ptr(i+3));
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
H A Dgeneric_table_builder.cc27 Ptr<GenericTable> table = new GenericTable(header(), InternalReadData());
34 Ptr<GenericTableBuilder> builder =
H A Dtable.h61 Ptr<Header> header_;
95 Ptr<Header> header_;
96 Ptr<Font> font_;
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
/external/sfntly/cpp/src/sfntly/table/
H A Dgeneric_table_builder.cc27 Ptr<GenericTable> table = new GenericTable(header(), InternalReadData());
34 Ptr<GenericTableBuilder> builder =
H A Dtable.h61 Ptr<Header> header_;
95 Ptr<Header> header_;
96 Ptr<Font> font_;
106 typedef Ptr<Table> TablePtr;
108 typedef Ptr<Table::Builder> TableBuilderPtr;
/external/llvm/include/llvm/Support/
H A DAllocator.h58 /// \brief Deallocate \a Ptr to \a Size bytes of memory allocated by this
60 void Deallocate(const void *Ptr, size_t Size) { argument
69 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size);
84 Deallocate(T *Ptr, size_t Num = 1) { argument
85 Deallocate(static_cast<const void *>(Ptr), Num * sizeof(T));
98 void Deallocate(const void *Ptr, size_t /*Size*/) { argument
99 free(const_cast<void *>(Ptr));
215 char *Ptr = alignPtr(CurPtr, Alignment); local
218 if (Ptr + Size <= End) {
219 CurPtr = Ptr
333 void *Ptr = PtrAndSize.first; local
393 void *Ptr = PtrAndSize.first; local
[all...]
H A Draw_os_ostream.h29 void write_impl(const char *Ptr, size_t Size) override;
/external/clang/test/CodeGenCXX/
H A Darm-cc.cpp4 const char *Ptr; member in class:SMLoc
/external/llvm/lib/Support/
H A Draw_ostream.cpp295 raw_ostream &raw_ostream::write(const char *Ptr, size_t Size) { argument
300 write_impl(Ptr, Size);
305 return write(Ptr, Size);
315 write_impl(Ptr, BytesToWrite);
319 return write(Ptr + BytesToWrite, BytesRemaining);
321 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining);
327 copy_to_buffer(Ptr, NumBytes);
329 return write(Ptr + NumBytes, Size - NumBytes);
332 copy_to_buffer(Ptr, Size);
337 void raw_ostream::copy_to_buffer(const char *Ptr, size_ argument
515 write_impl(const char *Ptr, size_t Size) argument
692 write_impl(const char *Ptr, size_t Size) argument
731 write_impl(const char *Ptr, size_t Size) argument
775 write_impl(const char *Ptr, size_t Size) argument
[all...]
H A DSmallPtrSet.cpp37 bool SmallPtrSetImplBase::insert_imp(const void * Ptr) { argument
42 if (*APtr == Ptr)
47 SmallArray[NumElements++] = Ptr;
63 const void **Bucket = const_cast<const void**>(FindBucketFor(Ptr));
64 if (*Bucket == Ptr) return false; // Already inserted, good.
69 *Bucket = Ptr;
74 bool SmallPtrSetImplBase::erase_imp(const void * Ptr) {
79 if (*APtr == Ptr) {
91 void **Bucket = const_cast<void**>(FindBucketFor(Ptr));
92 if (*Bucket != Ptr) retur
[all...]
/external/clang/include/clang/Lex/
H A DLexer.h428 static inline char getCharAndSizeNoWarn(const char *Ptr, unsigned &Size, argument
432 if (isObviouslySimpleCharacter(Ptr[0])) {
434 return *Ptr;
438 return getCharAndSizeSlowNoWarn(Ptr, Size, LangOpts);
506 inline char getAndAdvanceChar(const char *&Ptr, Token &Tok) { argument
509 if (isObviouslySimpleCharacter(Ptr[0])) return *Ptr++;
512 char C = getCharAndSizeSlow(Ptr, Size, &Tok);
513 Ptr += Size;
521 const char *ConsumeChar(const char *Ptr, unsigne argument
537 getCharAndSize(const char *Ptr, unsigned &Size) argument
[all...]
/external/clang/include/clang/Sema/
H A DOwnership.h46 void *Ptr; member in class:clang::OpaquePtr
47 explicit OpaquePtr(void *Ptr) : Ptr(Ptr) {} argument
52 OpaquePtr() : Ptr(nullptr) {}
75 return Traits::getFromVoidPointer(Ptr);
79 Ptr = Traits::getAsVoidPointer(P);
82 LLVM_EXPLICIT operator bool() const { return Ptr != nullptr; }
84 void *getAsOpaquePtr() const { return Ptr; }
91 void *Ptr; member in struct:clang::UnionOpaquePtr
[all...]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
H A Dunique.pass.cpp94 typedef std::unique_ptr<int, do_nothing> Ptr; typedef
102 Ptr ia[1];
108 Ptr ib[2];
116 Ptr ic[2];
122 Ptr id[3];
130 Ptr ie[4];
139 Ptr ig[4];
148 Ptr ih[3];
157 Ptr ii[7];
183 test1<forward_iterator<Ptr*> >();
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallPtrSet.h103 bool insert_imp(const void * Ptr);
109 bool erase_imp(const void * Ptr);
111 bool count_imp(const void * Ptr) const {
116 if (*APtr == Ptr)
122 return *FindBucketFor(Ptr) == Ptr;
128 const void * const *FindBucketFor(const void *Ptr) const;
256 bool insert(PtrType Ptr) {
257 return insert_imp(PtrTraits::getAsVoidPointer(Ptr));
262 bool erase(PtrType Ptr) {
[all...]

Completed in 1642 milliseconds

1234567891011>>