HomeSort by relevance Sort by last modified time
    Searched defs:Data (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/clang/test/CodeGenCXX/
2005-02-13-BadDynamicInit.cpp 3 struct Data {
4 unsigned *data; member in struct:Data
9 Data shared_null = { shared_null.array };
m64-ptr.cpp 9 const char *Data;
  /external/clang/test/CodeGen/
2002-02-18-StaticData.c 12 void *Data[] = { &FOO, &BAR, &XX };
2002-07-14-MiscListTests.c 15 // Recursive data structure tests...
18 int Data;
22 list *Data;
28 Data = (list*)malloc(12); // This is not a proper list allocation
41 void InsertIntoListTail(list **L, int Data) {
45 (*L)->Data = Data;
50 list *FindData(list *L, int Data) {
52 if (L->Data == Data) return L
    [all...]
  /external/clang/test/SemaTemplate/
dependent-names-no-std.cpp 8 struct Data {};
18 void f(ns::Data); // expected-note {{in namespace 'PR10053::ns'}}
20 A<ns::Data> a; // expected-note {{in instantiation of member function}}
  /external/clang/tools/libclang/
CXString.h 26 llvm::SmallString<128> Data;
50 /// \brief Returns true if the CXString data is managed by a pool.
  /frameworks/base/media/libstagefright/codecs/aacdec/
s_sbr_element_stream.h 77 UChar Data[MAXSBRBYTES];
  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
45 const char* Data() const { return bytes_ + start_; }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 10 // This file defines BlockCounter, an abstract data type used to count
30 /// \brief An abstract data type used to count the number of times a given
33 void *Data;
35 BlockCounter(void *D) : Data(D) {}
38 BlockCounter() : Data(0) {}
  /external/llvm/include/llvm/Support/
DynamicLibrary.h 40 // Opaque data used to interface with OS-specific dynamic library handling.
41 void *Data;
43 explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
46 bool isValid() { return Data != &Invalid; }
DataExtractor.h 18 StringRef Data;
24 /// This constructor allows us to use data that is owned by the
25 /// caller. The data must stay around as long as this object is
27 DataExtractor(StringRef Data, bool IsLittleEndian, uint8_t PointerSize)
28 : Data(Data), IsLittleEndian(IsLittleEndian), PointerSize(PointerSize) {}
30 /// getData - Get the data pointed to by this extractor.
31 StringRef getData() const { return Data; }
39 /// Returns a pointer to a C String from the data at the offset
46 /// A pointer to an offset within the data that will be advance
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadSpecific.h 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
88 struct Data {
89 WTF_MAKE_NONCOPYABLE(Data);
91 Data(T* value, ThreadSpecific<T>* owner) : value(value), owner(owner) {}
93 ~Data() { owner->destroy(this); }
110 QThreadStorage<Data*> m_key;
151 Data* data = static_cast<Data*>(pthread_getspecific(m_key)); local
152 return data ? data->value : 0
172 Data* data = static_cast<Data*>(m_key.localData()); local
180 Data* data = new Data(ptr, this); local
195 Data* data = static_cast<Data*>(g_static_private_get(&m_key)); local
203 Data* data = new Data(ptr, this); local
246 Data* data = static_cast<Data*>(TlsGetValue(tlsKeys()[m_index])); local
254 Data* data = new Data(ptr, this); local
268 Data* data = static_cast<Data*>(ptr); local
    [all...]
  /external/chromium/net/tools/testserver/
asn1der.py 18 def Data(tag, data):
23 data: the data for the given tag.
27 if len(data) == 0:
29 assert len(data) <= 0xffff;
30 return struct.pack(">BBH", tag, 0x82, len(data)) + data;
40 data = '%x' % value
41 return Data(INTEGER, binascii.unhexlify('00' + '0' * (len(data) % 2) + data)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmllite/
qname.h 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
61 class Data {
63 Data(const std::string & ns, const std::string & local) :
68 Data() : refcount_(0) {}
81 Data * data_;
  /external/llvm/include/llvm/MC/
MCAtom.h 11 // represent a contiguous region in a decoded object that is uniformly data or
27 /// MCData - An entry in a data MCAtom.
32 /// or data (a DataAtom). Address ranges are expressed as _closed_ intervals.
42 std::vector<MCData> Data;
  /external/llvm/include/llvm/Object/
Archive.h 28 StringRef Data;
31 Child(const Archive *p, StringRef d) : Parent(p), Data(d) {}
34 return (Parent == other.Parent) && (Data.begin() == other.Data.begin());
Binary.h 35 MemoryBuffer *Data;
  /external/webkit/Source/WebKit2/Shared/
WebGeolocationPosition.h 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
40 struct Data {
42 static bool decode(CoreIPC::ArgumentDecoder*, Data&);
62 const Data& data() const { return m_data; } function in class:WebKit::WebGeolocationPosition
69 Data m_data;
WebOpenPanelParameters.h 19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
44 struct Data {
46 static bool decode(CoreIPC::ArgumentDecoder*, Data&);
54 static PassRefPtr<WebOpenPanelParameters> create(const Data&);
60 explicit WebOpenPanelParameters(const Data&);
64 Data m_data;
  /frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Init.c 56 INST_ALLOC Data;
90 InstAlloc_Init( &Data , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].pBaseAddress);
154 pLVPSA_Inst->pBP_Taps = InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(Biquad_1I_Order2_Taps_t) );
155 pLVPSA_Inst->pQPD_Taps = InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(QPD_Taps_t) );
LVPSA_Memory.c 58 INST_ALLOC Data;
65 InstAlloc_Init( &Data , LVM_NULL);
152 * Persistent data memory
154 InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(Biquad_1I_Order2_Taps_t) );
155 InstAlloc_AddMember( &Data, pInitParams->nBands * sizeof(QPD_Taps_t) );
156 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_DATA].Size = InstAlloc_GetTotal(&Data);
  /system/media/mca/filterfw/native/core/
native_frame.h 25 // A NativeFrame stores data in a memory buffer (on the heap). It is used for
26 // data processing on the CPU.
34 // Set the frame data and size in bytes. The NativeFrame object takes ownership of the data.
35 // To copy data into an existing frame, use WriteData().
36 bool SetData(uint8_t* data, int size);
38 // Write the specified data of the given size to the frame at the specified offset. The
39 // receiver must be large enough to hold the data.
40 bool WriteData(const uint8_t* data, int offset, int size);
42 // Returns a pointer to the data, or NULL if no data was set
    [all...]
  /external/chromium/net/base/
address_list.cc 38 struct AddressList::Data : public base::RefCountedThreadSafe<Data> {
39 Data(struct addrinfo* ai, bool is_system_created);
46 friend class base::RefCountedThreadSafe<Data>;
48 ~Data();
97 data_ = new Data(ai, false /*is_system_created*/);
114 data_ = new Data(head, true /*is_system_created*/);
118 data_ = new Data(CreateCopyOfAddrinfo(head, recursive),
127 data_ = new Data(new_head, false /*is_system_created*/);
131 // Find the end of current linked list and append new data there
    [all...]
  /external/chromium/base/mac/
mac_util.h 163 CF_TO_NS_MUTABLE_CAST_DECL(Data);
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h 21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
123 class Data {
125 Data() : refcount_(1) {}
126 Data(const std::string & node, const std::string &domain, const std::string & resource) :
141 Data * data_;

Completed in 656 milliseconds

1 2 3 4 5 6