Searched refs:Value (Results 1 - 25 of 506) sorted by relevance

1234567891011>>

/haiku/src/kits/debugger/value/
H A DValue.cpp7 #include "Value.h"
10 Value::~Value()
/haiku/headers/private/kernel/util/
H A DKernelUtilsOrder.h15 template<typename Value>
18 inline int operator()(const Value &a, const Value &b) const
33 template<typename Value>
36 inline int operator()(const Value &a, const Value &b) const
H A DVector.h14 template<typename Value> class VectorIterator;
17 #define _VECTOR_TEMPLATE_LIST template<typename Value>
18 #define _VECTOR_CLASS_NAME Vector<Value>
19 #define _VECTOR_CLASS_TYPE typename Vector<Value>
25 template<typename Value>
28 typedef VectorIterator<Value> Iterator;
29 typedef VectorIterator<const Value> ConstIterator;
39 status_t PushFront(const Value &value);
40 status_t PushBack(const Value &value);
45 status_t Add(const Value
[all...]
/haiku/headers/private/debugger/value/
H A DValue.h14 class Value : public BReferenceable { class in inherits:BReferenceable
16 virtual ~Value();
21 virtual bool operator==(const Value& other) const = 0;
22 inline bool operator!=(const Value& other) const
/haiku/src/tests/add-ons/print/ppd/model/
H A DValue.cpp9 #include "Value.h"
13 Value::Value(BString* value, Type type) function in class:Value
20 Value::~Value()
26 void Value::SetType(Type type)
31 Value::Type Value::GetType()
36 void Value::SetValue(BString* value)
41 BString* Value
[all...]
H A DStatement.h13 #include "Value.h"
29 Value* fOption;
30 Value* fValue;
46 void SetOption(Value* value);
48 Value* GetOption();
50 void SetValue(Value* value);
52 Value* GetValue();
/haiku/headers/private/shared/
H A DRangeArray.h17 template<typename Value>
19 Value offset;
20 Value size;
22 Range(const Value& offset, const Value& size)
29 Value EndOffset() const
36 template<typename Value>
39 typedef Range<Value> RangeType;
43 inline RangeArray(const RangeArray<Value>& other);
53 bool AddRange(const Value
[all...]
H A DHashMap.h19 template<typename Key, typename Value>
22 typedef HashMapElement<Key, Value> Element;
33 HashMapElement(const Key& key, const Value& value)
42 Value fValue;
48 template<typename Key, typename Value>
51 typedef HashMapElement<Key, Value> ValueType;
65 template<typename Key, typename Value>
71 Entry(const Key& key, Value value) : key(key), value(value) {}
74 Value value;
79 typedef HashMapElement<Key, Value> Elemen
[all...]
/haiku/src/apps/debugger/user_interface/gui/value/value_handlers/
H A DBoolValueHandler.h19 virtual float SupportsValue(Value* value);
20 virtual status_t GetValueFormatter(Value* value,
22 virtual status_t GetTableCellValueRenderer(Value* value,
24 virtual status_t GetTableCellValueEditor(Value* _value,
H A DFloatValueHandler.h19 virtual float SupportsValue(Value* value);
20 virtual status_t GetValueFormatter(Value* value,
22 virtual status_t GetTableCellValueRenderer(Value* value,
24 virtual status_t GetTableCellValueEditor(Value* value,
H A DStringValueHandler.h19 virtual float SupportsValue(Value* value);
20 virtual status_t GetValueFormatter(Value* value,
22 virtual status_t GetTableCellValueRenderer(Value* value,
H A DAddressValueHandler.cpp13 AddressValueHandler::SupportsValue(Value* value)
/haiku/src/system/kernel/vm/
H A DVMUserArea.h32 typedef VMUserArea Value; typedef in struct:VMUserAreaTreeDefinition
34 AVLTreeNode* GetAVLTreeNode(Value* value) const
39 Value* GetValue(AVLTreeNode* node) const
41 return static_cast<Value*>(node);
44 int Compare(addr_t a, const Value* _b) const
52 int Compare(const Value* a, const Value* b) const
/haiku/src/apps/webpositive/support/
H A DHashKeys.h17 template<typename Value>
20 HashKey32(const Value& value) : value(value) {}
27 HashKey32<Value> operator=(const HashKey32<Value>& other)
33 bool operator==(const HashKey32<Value>& other) const
38 bool operator!=(const HashKey32<Value>& other) const
43 Value value;
48 template<typename Value>
51 HashKey64(const Value& value) : value(value) {}
59 HashKey64<Value> operato
[all...]
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A DL2capEndpointManager.h30 typedef L2capEndpoint Value; typedef in struct:L2capEndpointManager::EndpointTreeDefinitionBase
32 AVLTreeNode* GetAVLTreeNode(Value* value) const
37 Value* GetValue(AVLTreeNode* node) const
39 return static_cast<Value*>(node);
43 int Compare(const Key& a, const Value* b) const
48 int Compare(const Value* a, const Value* b) const
54 int Compare(const Key& a, const Value* b) const
59 int Compare(const Value* a, const Value*
[all...]
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellValueEditor.h14 class Value;
26 inline Value* InitialValue() const { return fInitialValue; }
27 void SetInitialValue(Value* value);
34 void NotifyEditCompleted(Value* newValue);
41 Value* fInitialValue;
52 virtual void TableCellEditEnded(Value* newValue);
H A DValueHandler.h17 class Value;
25 virtual float SupportsValue(Value* value) = 0;
26 virtual status_t GetValueFormatter(Value* value,
29 virtual status_t GetTableCellValueRenderer(Value* value,
32 virtual status_t GetTableCellValueEditor(Value* value,
38 virtual status_t CreateTableCellValueSettingsMenu(Value* value,
H A DTableCellValueRenderer.h17 class Value;
27 virtual void RenderValue(Value* value, bool valueChanged,
29 virtual float PreferredValueWidth(Value* value,
H A DTableCellIntegerEditor.h16 TableCellIntegerEditor(::Value* initialValue,
22 virtual status_t GetValueForInput(::Value*& _output) const;
H A DTableCellBoolEditor.h15 TableCellBoolEditor(::Value* initialValue,
22 virtual status_t GetSelectedValue(::Value*& _value) const;
H A DTableCellEnumerationEditor.h16 ::Value* initialValue,
23 virtual status_t GetSelectedValue(::Value*& _value) const;
H A DTableCellFloatEditor.h15 TableCellFloatEditor(::Value* initialValue,
21 virtual status_t GetValueForInput(::Value*& _output) const;
H A DValueHandler.cpp17 ValueHandler::CreateTableCellValueSettingsMenu(Value* value, Settings* settings,
26 ValueHandler::GetTableCellValueEditor(Value* value, Settings* settings,
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DVariableEditWindow.h15 class Value;
22 VariableEditWindow(Value* initialValue,
29 static VariableEditWindow* Create(Value* initialValue,
44 virtual void TableCellEditEnded(Value* newValue);
54 Value* fInitialValue;
55 Value* fNewValue;
/haiku/headers/private/debugger/value/value_formatters/
H A DFloatValueFormatter.h13 class Value;
24 virtual status_t FormatValue(Value* value, BString& _output);
34 Value*& _output) const;
39 ::Value*& _output,

Completed in 76 milliseconds

1234567891011>>