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

1 2 3 4 5 6 7 8 91011>>

  /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 };
  /external/chromium_org/content/common/
shared_memory_seqlock_buffer.h 13 // which does the hardware polling, and the consumers of the data,
16 // between producer and consumer) and relatively large data size.
21 template<class Data>
25 Data data; member in class:content::SharedMemorySeqLockBuffer
  /external/llvm/include/llvm/MC/
YAML.h 50 /// \brief Either raw binary data, or a string of hex bytes (must always
52 ArrayRef<uint8_t> Data;
53 /// \brief Discriminator between the two states of the `Data` member.
57 BinaryRef(ArrayRef<uint8_t> Data) : Data(Data), DataIsHexString(false) {}
58 BinaryRef(StringRef Data)
59 : Data(reinterpret_cast<const uint8_t *>(Data.data()), Data.size())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextQuery.h 48 struct Data;
51 typedef bool (SVGTextQuery::*ProcessTextFragmentCallback)(Data*, const SVGTextFragment&) const;
52 bool executeQuery(Data*, ProcessTextFragmentCallback) const;
55 bool mapStartEndPositionsIntoFragmentCoordinates(Data*, const SVGTextFragment&, int& startPosition, int& endPosition) const;
56 void modifyStartEndPositionsRespectingLigatures(Data*, const SVGTextFragment&, int& startPosition, int& endPosition) const;
59 bool numberOfCharactersCallback(Data*, const SVGTextFragment&) const;
60 bool textLengthCallback(Data*, const SVGTextFragment&) const;
61 bool subStringLengthCallback(Data*, const SVGTextFragment&) const;
62 bool startPositionOfCharacterCallback(Data*, const SVGTextFragment&) const;
63 bool endPositionOfCharacterCallback(Data*, const SVGTextFragment&) const
    [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/compiler-rt/lib/ubsan/
ubsan_handlers.cc 29 static void handleTypeMismatchImpl(TypeMismatchData *Data, ValueHandle Pointer,
31 Location Loc = Data->Loc.acquire();
33 // Use the SourceLocation from Data to track deduplication, even if 'invalid'
36 if (Data->Loc.isInvalid())
41 << TypeCheckKinds[Data->TypeCheckKind] << Data->Type;
42 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
45 << TypeCheckKinds[Data->TypeCheckKind] << (void*)Pointer
46 << Data->Alignment << Data->Type
    [all...]
ubsan_handlers.h 36 RECOVERABLE(type_mismatch, TypeMismatchData *Data, ValueHandle Pointer)
44 RECOVERABLE(add_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
47 RECOVERABLE(sub_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
50 RECOVERABLE(mul_overflow, OverflowData *Data, ValueHandle LHS, ValueHandle RHS)
53 RECOVERABLE(negate_overflow, OverflowData *Data, ValueHandle OldVal)
56 RECOVERABLE(divrem_overflow, OverflowData *Data,
67 RECOVERABLE(shift_out_of_bounds, ShiftOutOfBoundsData *Data,
77 RECOVERABLE(out_of_bounds, OutOfBoundsData *Data, ValueHandle Index)
85 void __ubsan_handle_builtin_unreachable(UnreachableData *Data);
88 void __ubsan_handle_missing_return(UnreachableData *Data);
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
LocalAndGlobalData.java 17 package com.google.clearsilver.jsilver.data;
20 * This is a special implementation of ChainedData to be used for holding the local and global Data
22 * global Data object and applies them all to the local data object.
26 private final Data local;
29 * Creates a Data object that encapsulates both request-scoped local HDF and an application
33 * @param local the request-specific HDF data that takes priority.
34 * @param global application global HDF data that should be read but not written to from the
37 public LocalAndGlobalData(Data local, Data global)
    [all...]
ChainedData.java 17 package com.google.clearsilver.jsilver.data;
25 * Implementation of Data that allows for multiple underlying Data objects and checks each one in
27 * implementation of Clearsilver. This is only meant to be a root Data object and hardcodes that
30 * Note: If you have elements foo.1, foo.2, foo.3 in first Data object and foo.4, foo.5, foo.6 in
31 * second Data object, then fetching children of foo will return only foo.1 foo.2 foo.3 from first
32 * Data object.
38 // variable in multiple Data objects in the chain, which usually indicates
42 Data[] dataList;
47 * @param data a single data object to wrap
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingPlatformOther.c 1 /*===- InstrProfilingPlatformOther.c - Profile data default platform ------===*\
32 const __llvm_profile_data *Data = (__llvm_profile_data*)Data_;
34 DataFirst = Data;
35 DataLast = Data + 1;
36 NamesFirst = Data->Name;
37 NamesLast = Data->Name + Data->NameSize;
38 CountersFirst = Data->Counters;
39 CountersLast = Data->Counters + Data->NumCounters
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
SampleSyncAdapterColumns.java 18 import android.provider.ContactsContract.Data;
29 * MIME-type used when storing a profile {@link Data} entry.
34 public static final String DATA_PID = Data.DATA1;
36 public static final String DATA_SUMMARY = Data.DATA2;
38 public static final String DATA_DETAIL = Data.DATA3;
  /external/chromium_org/ios/public/consumer/base/
supports_user_data.h 12 // This is a helper for classes that want to allow users to stash random data by
18 // Derive from this class and add your own data members to associate extra
21 class Data {
23 virtual ~Data() {}
26 // The user data allows the clients to associate data with this object.
27 // Multiple user data values can be stored under different keys.
28 // This object will TAKE OWNERSHIP of the given data pointer, and will
30 Data* GetUserData(const void* key) const;
31 void SetUserData(const void* key, Data* data)
    [all...]
  /external/clang/test/Modules/Inputs/submodules/
hash_map.h 1 template<typename Key, typename Data> class hash_map { };
  /external/chromium_org/cc/base/
scoped_ptr_vector_unittest.cc 13 class Data {
15 static scoped_ptr<Data> Create(int i) { return make_scoped_ptr(new Data(i)); }
16 int data() const { return data_; } function in class:cc::__anon7276::Data
18 explicit Data(int i) : data_(i) {}
24 bool operator()(const Data* data) { return (data->data() % 2) == 1; }
28 ScopedPtrVector<Data> v
    [all...]
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 28 : Length(Length), Data(new PBQPNum[Length]) {
35 : Length(Length), Data(new PBQPNum[Length]) {
39 std::fill(Data, Data + Length, InitVal);
44 : Length(V.Length), Data(new PBQPNum[Length]) {
47 std::copy(V.Data, V.Data + Length, Data);
52 : Length(V.Length), Data(V.Data) {
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyUtil.h 88 SimpleArray() : Data(nullptr), Size(0), Capacity(0) {}
90 : Data(Dat), Size(Sz), Capacity(Cp) {}
92 : Data(Cp == 0 ? nullptr : A.allocateT<T>(Cp)), Size(0), Capacity(Cp) {}
94 : Data(A.Data), Size(A.Size), Capacity(A.Capacity) {
95 A.Data = nullptr;
102 Data = RHS.Data;
106 RHS.Data = nullptr;
116 T *Odata = Data;
    [all...]
  /external/chromium_org/ui/base/
view_prop.cc 11 // Maints the actual view, key and data.
12 class ViewProp::Data : public base::RefCounted<ViewProp::Data> {
14 // Returns the Data* for the view/key pair. If |create| is false and |Get|
19 scoped_refptr<Data>* data) {
22 scoped_refptr<Data> new_data(new Data(view, key));
25 *data = *i;
31 *data = new_data.get()
36 void* data() const { return data_; } function in class:ui::ViewProp::Data
93 scoped_refptr<Data> data; local
    [all...]
  /external/clang/test/Analysis/
simple-stream-checks.c 5 void checkDoubleFClose(int *Data) {
9 if (!Data)
12 fputc(*Data, F);
17 int checkLeak(int *Data) {
23 if (Data) // expected-warning {{Opened file is never closed; potential resource leak}}
24 return *Data;
29 void checkLeakFollowedByAssert(int *Data) {
33 if (!Data)
46 void leakOnEnfOfPath1(int *Data) {
50 void leakOnEnfOfPath2(int *Data) {
    [all...]
  /external/llvm/lib/Support/
RandomNumberGenerator.cpp 39 std::vector<uint32_t> Data;
40 Data.reserve(2 + Salt.size()/4 + 1);
41 Data.push_back(Seed);
42 Data.push_back(Seed >> 32);
50 Data.push_back(Pack);
52 Data.push_back(Pack);
54 std::seed_seq SeedSeq(Data.begin(), Data.end());
  /cts/tests/tests/opengl/libopengltest/
types.h 22 } Data;
  /external/clang/test/CodeGen/
2002-02-18-StaticData.c 12 void *Data[] = { &FOO, &BAR, &XX };
  /external/jsilver/src/com/google/clearsilver/jsilver/
DataLoader.java 19 import com.google.clearsilver.jsilver.data.Data;
25 * Loads data from resources.
30 * Create new Data instance, ready to be populated.
32 Data createData();
35 * Loads data in Hierarchical Data Format (HDF) into an existing Data object.
37 void loadData(final String dataFileName, Data output) throws JSilverBadSyntaxException,
41 * Loads data in Hierarchical Data Format (HDF) into a new Data object
    [all...]
  /external/chromium_org/ios/consumer/base/
supports_user_data.cc 12 // Class that wraps a ios::SupportsUserData::Data object in a
13 // base::SupportsUserData::Data object. The wrapper object takes ownership of
15 class DataAdaptor : public base::SupportsUserData::Data {
17 DataAdaptor(SupportsUserData::Data* data);
20 SupportsUserData::Data* data() { return data_.get(); } function in class:ios::DataAdaptor
23 scoped_ptr<SupportsUserData::Data> data_;
26 DataAdaptor::DataAdaptor(SupportsUserData::Data* data)
    [all...]
  /external/chromium_org/content/renderer/
shared_memory_seqlock_reader.h 36 // Template argument Data should be a pod-like structure only containing
37 // data fields, such that it is copyable by memcpy method.
38 template<typename Data>
45 bool GetLatestData(Data* data) {
47 DCHECK(sizeof(*data) == sizeof(*temp_buffer_));
48 return FetchFromBuffer(&buffer_->seqlock, data, temp_buffer_.get(),
49 &buffer_->data, sizeof(*temp_buffer_));
54 shared_memory_handle, sizeof(SharedMemorySeqLockBuffer<Data>))) {
55 buffer_ = static_cast<SharedMemorySeqLockBuffer<Data>*>(memory)
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
storage_block_unittest.cc 22 memset(entry1.Data(), 0, sizeof(disk_cache::EntryStore));
23 entry1.Data()->hash = 0xaa5555aa;
24 entry1.Data()->rankings_node = 0xa0010002;
27 entry1.Data()->hash = 0x88118811;
28 entry1.Data()->rankings_node = 0xa0040009;
31 EXPECT_EQ(0xaa5555aa, entry1.Data()->hash);
32 EXPECT_EQ(0xa0010002, entry1.Data()->rankings_node);
42 entry1.Data()->hash = 0xaa5555aa;
46 EXPECT_TRUE(entry2.Data() != NULL);
47 EXPECT_TRUE(0 == entry2.Data()->hash)
    [all...]

Completed in 839 milliseconds

1 2 3 4 5 6 7 8 91011>>