HomeSort by relevance Sort by last modified time
    Searched defs:Data (Results 51 - 75 of 427) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/tools/libclang/
BuildSystem.cpp 80 StringRef Data = OS.str();
81 *out_buffer_ptr = (char*)malloc(Data.size());
82 *out_buffer_size = Data.size();
83 memcpy(*out_buffer_ptr, Data.data(), Data.size());
142 StringRef Data = OS.str();
143 *out_buffer_ptr = (char*)malloc(Data.size());
144 *out_buffer_size = Data.size();
145 memcpy(*out_buffer_ptr, Data.data(), Data.size())
    [all...]
  /external/clang/unittests/Basic/
FileManagerTest.cpp 32 FileData Data;
33 Data.Name = Path;
34 Data.Size = 0;
35 Data.ModTime = 0;
36 Data.UniqueID = llvm::sys::fs::UniqueID(1, INode);
37 Data.IsDirectory = !IsFile;
38 Data.IsNamedPipe = false;
39 Data.InPCH = false;
40 StatCalls[Path] = Data;
55 LookupResult getStat(const char *Path, FileData &Data, bool isFile
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_mop.cc 220 static int Data[4];
223 int ClassWithStatic::Data[4];
229 MainThread().Access(&ClassWithStatic::Data, true, 4, false);
231 t1.Access(&ClassWithStatic::Data, true, 2, true);
  /external/compiler-rt/test/profile/
instrprof-value-prof-2.c 12 void __llvm_profile_set_num_value_sites(__llvm_profile_data *Data,
16 __llvm_profile_iterate_data(const __llvm_profile_data *Data);
17 void *__llvm_get_function_addr(const __llvm_profile_data *Data);
18 void __llvm_profile_instrument_target(uint64_t TargetValue, void *Data,
32 const __llvm_profile_data *Data, *DataEnd;
34 Data = __llvm_profile_begin_data();
36 for (; Data < DataEnd; Data = __llvm_profile_iterate_data(Data)) {
37 void *func = __llvm_get_function_addr(Data);
    [all...]
  /external/libchrome/base/
scoped_generic.h 66 struct Data : public Traits {
67 explicit Data(const T& in) : generic(in) {}
68 Data(const T& in, const Traits& other) : Traits(other), generic(in) {}
133 // associated data type.
162 Data data_;
  /external/llvm/include/llvm/IR/
GlobalObject.h 49 unsigned Data = getGlobalValueSubClassData();
50 unsigned AlignmentData = Data & AlignmentMask;
  /external/llvm/lib/ExecutionEngine/Orc/
ExecutionUtils.cpp 70 Value *Data = CS->getOperand(2);
71 return Element(Priority->getZExtValue(), Func, Data);
  /external/vulkan-validation-layers/libs/glm/gtx/
simd_quat.hpp 84 __m128 Data;
88 __m128 Data;
95 fquatSIMD(__m128 const & Data);
  /external/webrtc/webrtc/base/
bytebuffer.h 43 const char* Data() const { return bytes_ + start_; }
49 // enough data left for the specified type.
82 // permanently remove data, so remembered read positions are still valid
  /external/clang/lib/Driver/
InputInfo.h 39 } Data;
51 Data.Filename = _Filename;
56 Data.InputArg = _InputArg;
67 return Data.Filename;
71 return *Data.InputArg;
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 2 struct Data { };
4 Data *begin();
5 Data *end();
9 Data *end();
13 Data *begin();
14 Data *end() = delete; //expected-note {{'end' has been explicitly marked deleted here}}
23 Data *begin();
26 Data *end(); // expected-note 2 {{declared private here}}
30 Data * begin(ADLNoEnd); // expected-note 6 {{candidate function not viable: no known conversion}}
86 for (Data *p : pt) { } // expected-error {{invalid range expression of type 'T *'; did you mean to dereferen (…)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedTransliterator.java 279 private Data data; field in class:RuleBasedTransliterator
302 // data = (Data)parser.dataVector.get(0);
303 // setMaximumContextLength(data.ruleSet.getMaximumContextLength());
317 RuleBasedTransliterator(String ID, Data data, UnicodeFilter filter) {
319 this.data = data;
320 setMaximumContextLength(data.ruleSet.getMaximumContextLength())
    [all...]
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
RuleBasedTransliterator.java 277 private Data data; field in class:RuleBasedTransliterator
300 // data = (Data)parser.dataVector.get(0);
301 // setMaximumContextLength(data.ruleSet.getMaximumContextLength());
315 RuleBasedTransliterator(String ID, Data data, UnicodeFilter filter) {
317 this.data = data;
318 setMaximumContextLength(data.ruleSet.getMaximumContextLength())
    [all...]
  /external/libchrome/base/mac/
foundation_util.h 228 CF_TO_NS_MUTABLE_CAST_DECL(Data);
321 // retrieving values from data that you can't fully control. For
  /external/llvm/include/llvm/ADT/
StringRef.h 37 /// This class does not own the string data, it is expected to be used in
38 /// situations where the character data resides in some other buffer, whose
50 const char *Data;
68 /*implicit*/ StringRef() : Data(nullptr), Length(0) {}
72 : Data(Str) {
79 /*implicit*/ StringRef(const char *data, size_t length)
80 : Data(data), Length(length) {
81 assert((data || length == 0) &&
88 : Data(Str.data()), Length(Str.length()) {
112 const char *data() const { return Data; } function in class:llvm::StringRef
    [all...]
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 41 unsigned *Data;
50 Scoreboard():Data(nullptr), Depth(0), Head(0) { }
52 delete[] Data;
61 return Data[(Head + idx) & (Depth-1)];
65 if (!Data) {
67 Data = new unsigned[Depth];
70 memset(Data, 0, Depth * sizeof(Data[0]));
92 // Itinerary data for the target.
  /external/llvm/include/llvm/ExecutionEngine/Orc/
ExecutionUtils.h 46 Element(unsigned Priority, const Function *Func, const Value *Data)
47 : Priority(Priority), Func(Func), Data(Data) {}
51 const Value *Data;
  /external/llvm/include/llvm/LineEditor/
LineEditor.h 28 /// \param HistoryPath Path to the file in which to store history data, if
114 std::unique_ptr<InternalData> Data;
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 240 // If we can return a reference to the data, do so to avoid copying it.
268 uint64_t Data = ReadVBR64(5);
274 Data == 0) {
280 Data > MaxChunkSize)
284 Abbv->Add(BitCodeAbbrevOp(E, Data));
  /external/llvm/unittests/ProfileData/
SampleProfTest.cpp 30 std::string Data;
36 : Data(), OS(new raw_string_ostream(Data)), Writer(), Reader() {}
75 auto Profile = MemoryBuffer::getMemBufferCopy(Data);
  /external/sfntly/cpp/src/sfntly/table/
font_data_table.cc 19 #include "sfntly/data/font_output_stream.h"
27 FontDataTable::FontDataTable(ReadableFontData* data) {
28 data_ = data;
45 int32_t FontDataTable::Serialize(WritableFontData* data) {
46 return data_->CopyTo(data);
52 CALLER_ATTACH WritableFontData* FontDataTable::Builder::Data() {
65 ReadableFontDataPtr data = InternalReadData(); local
67 data != NULL ? data->Length() : 0));
68 if (data != NULL)
82 ReadableFontDataPtr data = InternalReadData(); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
AccelerationClassifier.java 32 private final HashMap<Stroke, Data> mStrokeMap = new HashMap<>();
55 mStrokeMap.put(stroke, new Data(point));
64 Data data = mStrokeMap.get(stroke); local
65 return 2 * SpeedRatioEvaluator.evaluate(data.maxSpeedRatio);
68 private static class Data {
76 public Data(Point point) {
86 // reject this segment and ensure we won't use data about it in the next round.
  /libcore/luni/src/test/java/libcore/java/util/
WeakHashMapTest.java 26 static Data[] data = new Data[100]; field in class:WeakHashMapTest
30 WeakHashMap<Data, String> map = new WeakHashMap<>();
31 for(int i = 0; i < data.length; i++) {
32 map.put(data[i], "");
36 for(int i = 0; i < data.length; i++) {
37 assertEquals(data[i].value, map.get(data[i]));
41 map.replaceAll(new java.util.function.BiFunction<Data, String, String>()
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
sort_test.cpp 77 struct Data {
78 Data(int index, int value)
81 bool operator == (const Data& other) const
83 bool operator < (const Data& other) const
93 Data datas[] = {
94 Data(0, 10),
95 Data(1, 8),
96 Data(2, 6),
97 Data(3, 6),
98 Data(4, 6)
    [all...]
  /ndk/tests/device/test-stlport/unit/
sort_test.cpp 77 struct Data {
78 Data(int index, int value)
81 bool operator == (const Data& other) const
83 bool operator < (const Data& other) const
93 Data datas[] = {
94 Data(0, 10),
95 Data(1, 8),
96 Data(2, 6),
97 Data(3, 6),
98 Data(4, 6)
    [all...]

Completed in 1351 milliseconds

1 23 4 5 6 7 8 91011>>