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

1 2 3 4

  /frameworks/compile/mclinker/include/mcld/ADT/
TypeTraits.h 19 template<typename DataType>
22 template<typename DataType>
25 typedef DataType value_type;
26 typedef const DataType* pointer;
27 typedef const DataType& reference;
29 typedef ConstTraits<DataType> const_traits;
30 typedef NonConstTraits<DataType> nonconst_traits;
33 template<typename DataType>
36 typedef DataType value_type;
37 typedef DataType* pointer
    [all...]
BinTree.h 27 template<class DataType>
100 template<class DataType, class Traits, class IteratorType>
104 typedef DataType value_type;
146 template<class DataType, class Traits, class IteratorType>
147 class PolicyIterator : public PolicyIteratorBase<DataType, Traits, IteratorType>
150 typedef PolicyIterator<DataType, Traits, IteratorType> Self;
151 typedef PolicyIteratorBase<DataType, Traits, IteratorType> Base;
152 typedef PolicyIterator<DataType, typename Traits::nonconst_traits, IteratorType> iterator;
153 typedef PolicyIterator<DataType, typename Traits::const_traits, IteratorType> const_iterator;
179 template<class DataType>
    [all...]
TreeAllocator.h 33 template<typename DataType>
34 class NodeFactory : public GCFactory<Node<DataType>, 64>
37 typedef GCFactory<Node<DataType>, 64> Alloc;
40 typedef Node<DataType> NodeType;
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactoryListTraits.h 27 template<typename DataType>
28 class GCFactoryListTraits : public llvm::ilist_default_traits<DataType> {
30 class SentinelNode : public llvm::ilist_node<DataType> {
32 SentinelNode() : llvm::ilist_node<DataType>() { }
38 DataType *createSentinel() const
39 { return reinterpret_cast<DataType*>(&mSentinel); }
41 static void destroySentinel(DataType*) { }
43 DataType *provideInitialHead() const
46 DataType *ensureHead(DataType*) cons
    [all...]
UniqueGCFactory.h 26 template<typename KeyType, typename DataType, size_t ChunkSize>
27 class UniqueGCFactoryBase : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
30 typedef GCFactoryBase<LinearAllocator<DataType, ChunkSize> > Alloc;
31 typedef std::map<KeyType, DataType*> KeyMap;
35 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >()
39 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >(pNum)
46 DataType* find(const KeyType& pKey) {
53 const DataType* find(const KeyType& pKey) const {
60 DataType* produce(const KeyType& pKey, bool& pExist) {
66 DataType* data = Alloc::allocate()
    [all...]
Allocators.h 30 template<typename DataType, size_t ChunkSize>
34 typedef DataType value_type;
45 DataType data[ChunkSize];
48 template<typename DataType>
49 struct Chunk<DataType, 0>
52 typedef DataType value_type;
58 data = (DataType*)malloc(sizeof(DataType)*m_Size);
74 DataType *data;
78 template<typename DataType>
    [all...]
GCFactory.h 210 template<typename DataType, size_t ChunkSize>
211 class GCFactory : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
215 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >()
219 template<typename DataType>
220 class GCFactory<DataType, 0> : public GCFactoryBase<LinearAllocator<DataType, 0> >
224 : GCFactoryBase<LinearAllocator<DataType, 0> >(pNum)
  /external/webkit/Source/JavaScriptCore/wtf/
MessageQueue.h 49 // Essentially, MessageQueue acts as a queue of OwnPtr<DataType>.
50 template<typename DataType>
57 void append(PassOwnPtr<DataType>);
58 bool appendAndCheckEmpty(PassOwnPtr<DataType>);
59 void prepend(PassOwnPtr<DataType>);
61 PassOwnPtr<DataType> waitForMessage();
62 PassOwnPtr<DataType> tryGetMessage();
64 PassOwnPtr<DataType> waitForMessageFilteredWithTimeout(MessageQueueWaitResult&, Predicate&, double absoluteTime);
78 static bool alwaysTruePredicate(DataType*) { return true; }
82 Deque<DataType*> m_queue
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/tools/
genapi.py 41 # Constants corresponding to the protobuf DataType.Type
42 class DataType:
47 if self.name == "pointer": # pointers map to the INT DataType
66 DataType.VOID = DataType("void")
67 DataType.CHAR = DataType("char")
68 DataType.BYTE = DataType("byte")
69 DataType.ENUM = DataType("enum"
    [all...]
testgenapi.py 22 from genapi import DataType, ApiCall, getApis, parseArgs
57 self.assertEqual(args, [("a", DataType.CHAR)])
60 self.assertEqual(args, [("a", DataType.POINTER)])
63 self.assertEqual(args, [("exponent", DataType.POINTER)])
  /external/proguard/src/proguard/ant/
ConfigurationElement.java 24 import org.apache.tools.ant.types.DataType;
28 * This DataType represents a reference to a ProGuard configuration in Ant.
32 public class ConfigurationElement extends DataType
FilterElement.java 23 import org.apache.tools.ant.types.DataType;
30 * This DataType represents a name filter in Ant.
34 public class FilterElement extends DataType
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ElementTest.java 20 import android.renderscript.Element.DataType;
28 DataType.UNSIGNED_8,
31 DataType.UNSIGNED_5_6_5,
34 DataType.UNSIGNED_8,
37 DataType.UNSIGNED_5_5_5_1,
40 DataType.UNSIGNED_4_4_4_4,
43 DataType.UNSIGNED_8,
51 assertTrue(Element.createVector(mRS, DataType.FLOAT_32, len) != null);
52 assertTrue(Element.createVector(mRS, DataType.FLOAT_64, len) != null);
53 assertTrue(Element.createVector(mRS, DataType.SIGNED_8, len) != null)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Element.java 59 DataType mType;
101 * DataType represents the basic type information for a basic element. The
116 public enum DataType {
154 DataType(int id, int size) {
282 public DataType getDataType() {
302 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN);
316 rs.mElement_U8 = createUser(rs, DataType.UNSIGNED_8);
330 rs.mElement_I8 = createUser(rs, DataType.SIGNED_8);
337 rs.mElement_U16 = createUser(rs, DataType.UNSIGNED_16);
344 rs.mElement_I16 = createUser(rs, DataType.SIGNED_16)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioBuffer.java 35 import com.jme3.audio.AudioData.DataType;
62 public DataType getDataType() {
63 return DataType.Buffer;
AudioData.java 51 public enum DataType {
67 public abstract DataType getDataType();
  /external/llvm/include/llvm/Support/
CommandLine.h 329 template<class DataType> struct OptionValue;
333 template<class DataType, bool isClass>
336 typedef OptionValue<DataType> WrapperType;
340 const DataType &getValue() const { llvm_unreachable("no default value"); }
346 bool compare(const DataType &/*V*/) const { return false; }
352 template<class DataType>
354 DataType Value;
361 const DataType &getValue() const {
366 void setValue(const DataType &V) { Valid = true; Value = V; }
368 bool compare(const DataType &V) const
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_api.cpp 42 arg_texture->set_type(GLMessage::DataType::ENUM);
70 arg_program->set_type(GLMessage::DataType::INT);
76 arg_shader->set_type(GLMessage::DataType::INT);
104 arg_program->set_type(GLMessage::DataType::INT);
110 arg_index->set_type(GLMessage::DataType::INT);
116 arg_name->set_type(GLMessage::DataType::INT);
145 arg_target->set_type(GLMessage::DataType::ENUM);
151 arg_buffer->set_type(GLMessage::DataType::INT);
179 arg_target->set_type(GLMessage::DataType::ENUM);
185 arg_framebuffer->set_type(GLMessage::DataType::INT)
    [all...]
gltrace_egl.cpp 38 arg_version->set_type(GLMessage::DataType::INT);
44 arg_context->set_type(GLMessage::DataType::INT);
64 arg_context->set_type(GLMessage::DataType::INT);
  /external/webrtc/src/system_wrappers/test/TestSort/
TestSort.cpp 30 template<typename DataType>
33 DataType dataX = (DataType)*(const DataType*)dataX;
34 DataType dataY = (DataType)*(const DataType*)dataY;
47 template<typename DataType, typename KeyType>
50 KeyType keyX = ((const DataType*)dataX)->key;
51 KeyType keyY = ((const DataType*)dataY)->key
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger.tests/src/com/android/ide/eclipse/gltrace/format/
GLMessageFormatterTest.java 24 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType;
25 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.Type;
143 private DataType createStringDataType(String retValue) {
144 return DataType.newBuilder()
151 private DataType createIntegerDataType(int val) {
152 return DataType.newBuilder()
159 private DataType createIntegerPointerDataType(int val) {
160 return DataType.newBuilder()
167 private DataType createEnumDataType(int val) {
168 return DataType.newBuilder(
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
AndroidAudioData.java 30 public DataType getDataType() {
31 return DataType.Buffer;
  /external/chromium/chrome/browser/chromeos/
language_preferences.h 18 template <typename DataType>
21 DataType default_pref_value;
26 DataType ibus_config_value;
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 66 RSExportPrimitiveType::DataType DT,
94 RSExportPrimitiveType::DataType *DT,
100 RSExportPrimitiveType::DataType DT,
120 RSExportPrimitiveType::DataType DT) {
130 RSExportPrimitiveType::DataType DT) {
slang_rs_export_type.h 209 // From graphics/java/android/renderscript/Element.java: Element.DataType
215 FirstPrimitiveType = DataType ## begin_type, \
216 LastPrimitiveType = DataType ## end_type,
219 FirstRSMatrixType = DataType ## begin_type, \
220 LastRSMatrixType = DataType ## end_type,
223 FirstRSObjectType = DataType ## begin_type, \
224 LastRSObjectType = DataType ## end_type,
227 DataType ## type,
232 } DataType;
240 DataType mType
    [all...]

Completed in 370 milliseconds

1 2 3 4