| /external/chromium-trace/catapult/third_party/jquery/ |
| jquery-2.1.4.js | 333 // Convert dashed to camelCase; used by the css and data modules 588 // Instance-specific data 860 * @returns {Function(string, Object)} Returns the Object data after storing it on itself with [all...] |
| /external/opencv3/3rdparty/openexr/IlmImf/ |
| ImfAcesFile.cpp | 28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 67 class AcesOutputFile::Data 71 Data(); 72 ~Data(); 78 AcesOutputFile::Data::Data (): 85 AcesOutputFile::Data::~Data () 121 _data (new Data) 144 _data (new Data) [all...] |
| ImfInputFile.cpp | 28 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 67 // Struct InputFile::Data stores things that will be 71 struct InputFile::Data: public Mutex 82 int minY; // data window's min y coord 83 int maxY; // data window's max x coord 93 Data (bool del, int numThreads); 94 ~Data (); 100 InputFile::Data::Data (bool del, int numThreads): 113 InputFile::Data::~Data ( [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| Statistics.java | 29 /** {@code non-null;} data about each type of item */ 30 private final HashMap<String, Data> dataMap; 36 dataMap = new HashMap<String, Data>(50); 46 Data data = dataMap.get(typeName); local 48 if (data == null) { 49 dataMap.put(typeName, new Data(item, typeName)); 51 data.add(item); 79 TreeMap<String, Data> sortedData = new TreeMap<String, Data>(); [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| Statistics.java | 28 /** {@code non-null;} data about each type of item */ 29 private final HashMap<String, Data> dataMap; 35 dataMap = new HashMap<String, Data>(50); 45 Data data = dataMap.get(typeName); local 47 if (data == null) { 48 dataMap.put(typeName, new Data(item, typeName)); 50 data.add(item); 78 TreeMap<String, Data> sortedData = new TreeMap<String, Data>(); [all...] |
| /external/clang/include/clang/AST/ |
| DeclContextInternals.h | 10 // This file defines the data structures used in the implementation 34 /// \brief When in vector form, this is what the Data pointer points to. 41 /// \brief The stored data, which will be either a pointer to a NamedDecl, 44 llvm::PointerUnion<NamedDecl*, DeclsAndHasExternalTy> Data; 49 StoredDeclsList(StoredDeclsList &&RHS) : Data(RHS.Data) { 50 RHS.Data = (NamedDecl *)nullptr; 62 Data = RHS.Data; 63 RHS.Data = (NamedDecl *)nullptr [all...] |
| /external/clang/include/clang/Rewrite/Core/ |
| RewriteRope.h | 31 /// heap, and represents a reference counted chunk of string data. When its 36 char Data[1]; // Variable sized. 52 /// This allows references to string data to be efficiently chopped up and 53 /// moved around without having to push around the string data itself. 71 return StrData->Data[Offset+StartOffs]; 74 return StrData->Data[Offset+StartOffs]; 168 /// We allocate space for string data out of a buffer of size AllocChunkSize.
|
| /external/clang/lib/AST/ |
| TypeLoc.cpp | 57 /// \brief Returns the alignment of the type source info data block. 75 /// \brief Returns the size of the type source info data block. 149 // If both data pointers are aligned to the maximum alignment, we 151 // layout of the data. 152 if (reinterpret_cast<uintptr_t>(Data) 153 == llvm::RoundUpToAlignment(reinterpret_cast<uintptr_t>(Data), 155 reinterpret_cast<uintptr_t>(other.Data) 156 == llvm::RoundUpToAlignment(reinterpret_cast<uintptr_t>(other.Data), 158 memcpy(Data, other.Data, getFullDataSize()) [all...] |
| /external/clang/test/Analysis/ |
| reinterpret-cast.cpp | 5 typedef struct Opaque *Data; 14 void test(Data data) { 15 Child *wrapper = reinterpret_cast<Child*>(data); 17 // We don't actually know if 'data' is a Child.
|
| /external/clang/test/SemaTemplate/ |
| instantiate-init.cpp | 59 // Instantiate out-of-line definitions of static data members which complete 81 integral_c<N> array_lengthof(T (&x)[N]) { return integral_c<N>(); } // expected-note 2{{candidate template ignored: could not match 'T [N]' against 'const Data<}} 84 struct Data { 90 static const Data<T> data[]; member in struct:PR7985::Description 94 const Data<T> Description<T>::data[] = {{ 1 }}; // expected-error{{cannot initialize a member subobject of type 'int *' with an rvalue of type 'int'}} member in class:PR7985::Description 97 const Data<float*> Description<float*>::data[]; member in class:PR7985::Description 100 integral_c<1> ic1 = array_lengthof(Description<int>::data); [all...] |
| /external/compiler-rt/test/profile/ |
| instrprof-value-prof.c | 19 void __llvm_profile_set_num_value_sites(__llvm_profile_data *Data, 23 __llvm_profile_iterate_data(const __llvm_profile_data *Data); 24 void *__llvm_get_function_addr(const __llvm_profile_data *Data); 25 void __llvm_profile_instrument_target(uint64_t TargetValue, void *Data, 62 const __llvm_profile_data *Data, *DataEnd; 70 /* We will synthesis value profile data for 128 callers functions. 74 Data = __llvm_profile_begin_data(); 77 for (; Data < DataEnd; Data = __llvm_profile_iterate_data(Data)) { [all...] |
| /external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
| Statistics.java | 29 /** {@code non-null;} data about each type of item */ 30 private final HashMap<String, Data> dataMap; 36 dataMap = new HashMap<String, Data>(50); 46 Data data = dataMap.get(typeName); local 48 if (data == null) { 49 dataMap.put(typeName, new Data(item, typeName)); 51 data.add(item); 79 TreeMap<String, Data> sortedData = new TreeMap<String, Data>(); [all...] |
| /external/jsilver/src/com/google/clearsilver/jsilver/data/ |
| Data.java | 17 package com.google.clearsilver.jsilver.data; 25 * Represents a hierarchical data set of primitives. 29 public interface Data { 31 // ******************* Node data ******************* 49 * value cannot be used to determine whether the data node exists or not. Note also that, when 50 * implementing a Data object that caches these values, care must be taken to ensure that a node 59 * value cannot be used to determine whether the data node exists or not. Note also that, when 60 * implementing a Data object that caches these values, care must be taken to ensure that a node 116 Data getRoot(); 121 Data getParent() [all...] |
| /external/libchrome/base/memory/ |
| scoped_ptr.h | 133 // Initializer for deleters that have data parameters. 208 struct Data : public D { 209 explicit Data(T* ptr_in) : ptr(ptr_in) {} 210 Data(T* ptr_in, const D& other) : D(other), ptr(ptr_in) {} 214 Data data_; 493 // Actually hold the data.
|
| /external/libweave/third_party/chromium/base/memory/ |
| scoped_ptr.h | 133 // Initializer for deleters that have data parameters. 208 struct Data : public D { 209 explicit Data(T* ptr_in) : ptr(ptr_in) {} 210 Data(T* ptr_in, const D& other) : D(other), ptr(ptr_in) {} 214 Data data_; 493 // Actually hold the data.
|
| /external/llvm/include/llvm/ADT/ |
| ArrayRef.h | 24 /// This class does not own the underlying data, it is expected to be used in 25 /// situations where the data resides in some other buffer, whose lifetime 42 const T *Data; 52 /*implicit*/ ArrayRef() : Data(nullptr), Length(0) {} 55 /*implicit*/ ArrayRef(NoneType) : Data(nullptr), Length(0) {} 59 : Data(&OneElt), Length(1) {} 62 /*implicit*/ ArrayRef(const T *data, size_t length) 63 : Data(data), Length(length) {} 67 : Data(begin), Length(end - begin) { 132 const T *data() const { return Data; } function in class:llvm::ArrayRef [all...] |
| /external/llvm/include/llvm/ProfileData/ |
| CoverageMappingReader.h | 10 // This file contains support for reading coverage mapping data for 42 /// \brief A file format agnostic iterator over coverage mapping data. 78 /// \brief Base class for the raw coverage mapping and filenames data readers. 81 StringRef Data; 83 RawCoverageReader(StringRef Data) : Data(Data) {} 100 RawCoverageFilenamesReader(StringRef Data, std::vector<StringRef> &Filenames) 101 : RawCoverageReader(Data), Filenames(Filenames) {} 106 /// \brief Reader for the raw coverage mapping data [all...] |
| SampleProfReader.h | 1 //===- SampleProfReader.h - Read LLVM sample profile data -----------------===// 212 /// For this to produce meaningful data, the program needs to be 306 : SampleProfileReader(std::move(B), C), Data(nullptr), End(nullptr) {} 338 bool at_eof() const { return Data >= End; } 344 const uint8_t *Data;
|
| /external/llvm/lib/LineEditor/ |
| LineEditor.cpp | 110 LineEditor::InternalData *Data; 111 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) 112 return Data->LE->getPrompt().c_str(); 121 LineEditor::InternalData *Data; 122 if (el_get(EL, EL_CLIENTDATA, &Data) == 0) { 123 if (!Data->ContinuationOutput.empty()) { 125 FILE *Out = Data->Out; 128 ::fwrite(Data->ContinuationOutput.c_str(), 129 Data->ContinuationOutput.size(), 1, Out); 133 std::string Prevs(Data->PrevCount, '\02') [all...] |
| /external/llvm/unittests/IR/ |
| ValueMapTest.cpp | 64 typename ValueMapConfig<TypeParam*>::ExtraData Data; 65 ValueMap<TypeParam*, int> VM3(Data, 16); (void)VM3; 187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) { 188 *Data.CalledRAUW = true; 189 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked."; 191 static void onDelete(const ExtraData &Data, KeyT Old) { 192 *Data.CalledDeleted = true; 193 EXPECT_FALSE(Data.M->try_lock()) << "Mutex should already be locked."; 195 static MutexT *getMutex(const ExtraData &Data) { return Data.M; [all...] |
| /external/llvm/utils/TableGen/ |
| PseudoLoweringEmitter.cpp | 34 } Data; 84 OperandMap[BaseIdx + i].Data.Reg = DI->getDef(); 98 // Source operand maps to destination operand. The Data element 106 OperandMap[BaseIdx + i].Data.Imm = II->getValue(); 188 OperandMap[Insn.Operands[i].MIOperandNo + I].Data.Operand = 229 << Source.Operands[Expansion.OperandMap[MIOpNo].Data 236 << Expansion.OperandMap[MIOpNo + i].Data.Imm << "));\n"; 239 Record *Reg = Expansion.OperandMap[MIOpNo + i].Data.Reg;
|
| /external/mesa3d/src/mesa/main/ |
| hash.c | 54 void *Data; /**< the entry's data */ 60 * The hash table data structure. 94 * the objects in the table (i.e. We don't free the entries' data pointer). 107 if (entry->Data) { 109 "In _mesa_DeleteHashTable, found non-freed data"); 139 return entry->Data; 153 * \return pointer to user's data or NULL if key not in table 173 * \param data pointer to user data [all...] |
| /external/vulkan-validation-layers/demos/smoke/ |
| Simulation.h | 41 struct Data { 53 Data current_;
|
| /external/vulkan-validation-layers/libs/glm/gtx/ |
| simd_vec4.hpp | 103 __m128 Data; 107 __m128 Data; 114 fvec4SIMD(__m128 const & Data);
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
| AnglesClassifier.java | 50 private HashMap<Stroke, Data> mStrokeMap = new HashMap<>(); 73 mStrokeMap.put(stroke, new Data()); 81 Data data = mStrokeMap.get(stroke); local 82 return AnglesVarianceEvaluator.evaluate(data.getAnglesVariance()) 83 + AnglesPercentageEvaluator.evaluate(data.getAnglesPercentage()); 86 private static class Data { 106 public Data() {
|