Searched refs:Value (Results 276 - 300 of 3761) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_tree.cc123 std::string ValueTypeAsString(base::Value::Type type) {
125 case base::Value::TYPE_NULL:
127 case base::Value::TYPE_BOOLEAN:
129 case base::Value::TYPE_INTEGER:
131 case base::Value::TYPE_DOUBLE:
133 case base::Value::TYPE_STRING:
135 case base::Value::TYPE_BINARY:
137 case base::Value::TYPE_DICTIONARY:
139 case base::Value::TYPE_LIST:
149 base::Value
[all...]
/external/chromium_org/tools/gn/
H A Dfunction_toolchain.cc32 const Value* v = scope->GetValue(var, true);
35 if (!v->VerifyTypeIs(Value::BOOLEAN, err))
49 const Value* v = scope->GetValue(var, true);
52 if (!v->VerifyTypeIs(Value::STRING, err))
63 const Value* origin,
83 const Value* value = scope->GetValue(name, true);
86 if (!value->VerifyTypeIs(Value::STRING, err))
100 const Value* value = scope->GetValue("default_output_extension", true);
103 if (!value->VerifyTypeIs(Value::STRING, err))
119 const Value* valu
[all...]
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AsmBackend.cpp69 uint64_t Value, bool IsPCRel) const override;
72 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
124 static unsigned AdrImmBits(unsigned Value) { argument
125 unsigned lo2 = Value & 0x3;
126 unsigned hi19 = (Value & 0x1ffffc) >> 2;
130 static uint64_t adjustFixupValue(unsigned Kind, uint64_t Value) { argument
131 int64_t SignedValue = static_cast<int64_t>(Value);
138 return AdrImmBits(Value & 0x1fffffULL);
140 return AdrImmBits((Value & 0x1fffff000ULL) >> 12);
147 return (Value >>
202 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
228 fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value, const MCRelaxableFragment *DF, const MCAsmLayout &Layout) const argument
511 processFixupValue( const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFixup &Fixup, const MCFragment *DF, const MCValue &Target, uint64_t &Value, bool &IsResolved) argument
531 applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize, uint64_t Value, bool IsPCRel) const argument
[all...]
/external/llvm/include/llvm/IR/
H A DInstrTypes.h79 static inline bool classof(const Value *V) {
93 UnaryInstruction(Type *Ty, unsigned iType, Value *V,
98 UnaryInstruction(Type *Ty, unsigned iType, Value *V, BasicBlock *IAE)
112 DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
122 static inline bool classof(const Value *V) {
132 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(UnaryInstruction, Value)
142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S
[all...]
H A DInstructions.h63 explicit AllocaInst(Type *Ty, Value *ArraySize = nullptr,
66 AllocaInst(Type *Ty, Value *ArraySize,
72 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
74 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
88 const Value *getArraySize() const { return getOperand(0); }
89 Value *getArraySize() { return getOperand(0); }
133 static inline bool classof(const Value *V) {
150 /// SubclassData field in Value to store whether or not the load is volatile.
157 LoadInst(Value *Ptr, const Twine &NameStr, Instruction *InsertBefore);
158 LoadInst(Value *Pt
2693 Create(Value *Value, BasicBlock *Default, unsigned NumCases, Instruction *InsertBefore = nullptr) argument
2698 Create(Value *Value, BasicBlock *Default, unsigned NumCases, BasicBlock *InsertAtEnd) argument
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tools.Tests.pas114 property Value: String read GetValue write SetValue;
139 Foo.Value := FValue;
163 Value: string;
165 Value := 'bar';
166 FIANTLRString.SetValue(Value);
167 CheckEquals(FIANTLRString.Value,'bar');
194 Foo.Value := 'original';
209 CheckEquals((ReturnValue as IFoo).Value,(FICloneable as IFoo).Value);
233 Value
[all...]
/external/chromium_org/base/containers/
H A Dscoped_ptr_hash_map.h22 template <typename Key, typename Value>
24 typedef base::hash_map<Key, Value*> Container;
37 void swap(ScopedPtrHashMap<Key, Value>& other) {
42 iterator set(const Key& key, scoped_ptr<Value> data) {
54 std::pair<iterator, bool> add(const Key& key, scoped_ptr<Value> data) {
75 scoped_ptr<Value> take(iterator it) {
78 return scoped_ptr<Value>();
80 scoped_ptr<Value> ret(it->second);
85 scoped_ptr<Value> take(const Key& k) {
88 return scoped_ptr<Value>();
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_argument.h17 class Value;
32 void SetValue(const char* name, Value* value);
51 scoped_ptr<base::Value> root_;
52 std::vector<Value*> stack_;
/external/chromium_org/base/json/
H A Djson_file_value_serializer.h32 // Attempt to serialize the data structure represented by Value into
35 virtual bool Serialize(const base::Value& root) OVERRIDE;
39 bool SerializeAndOmitBinaryValues(const base::Value& root);
42 // in to the constructor into a structure of Value objects. If the return
48 virtual base::Value* Deserialize(int* error_code,
75 bool SerializeInternal(const base::Value& root, bool omit_binary_values);
H A Djson_string_value_serializer.h38 // Attempt to serialize the data structure represented by Value into
41 virtual bool Serialize(const base::Value& root) OVERRIDE;
45 bool SerializeAndOmitBinaryValues(const base::Value& root);
48 // in to the constructor into a structure of Value objects. If the return
54 virtual base::Value* Deserialize(int* error_code,
65 bool SerializeInternal(const base::Value& root, bool omit_binary_values);
/external/chromium_org/cc/resources/
H A Draster_mode.h13 class Value;
/external/chromium_org/chrome/renderer/extensions/
H A Dtabs_custom_bindings.h19 void OpenChannelToTab(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dutil.cc10 std::string SerializeValue(const base::Value* value) {
/external/chromium_org/chromeos/settings/
H A Dcros_settings_provider.h14 class Value;
45 void Set(const std::string& path, const base::Value& in_value);
48 virtual const base::Value* Get(const std::string& path) const = 0;
71 const base::Value& in_value) = 0;
/external/chromium_org/components/url_matcher/
H A Durl_matcher_factory.h16 class Value;
49 const base::Value* value,
53 const base::Value* value, std::string* error);
56 const base::Value* value, std::string* error);
/external/chromium_org/extensions/common/
H A Devent_filtering_info.cc31 scoped_ptr<base::Value> EventFilteringInfo::AsValue() const {
33 return scoped_ptr<base::Value>(base::Value::CreateNullValue());
45 return result.PassAs<base::Value>();
/external/chromium_org/extensions/renderer/
H A Dprint_native_handler.h16 void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
H A Dtest_features_native_handler.h17 void GetAPIFeatures(const v8::FunctionCallbackInfo<v8::Value>& args);
/external/chromium_org/gin/modules/
H A Dconsole.h18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/gin/test/
H A Dfile.h15 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dgc.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dgtest.h18 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dmodule.h16 v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
/external/chromium_org/mojo/apps/js/bindings/
H A Dmonotonic_clock.h16 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);
H A Dthreading.h17 static v8::Local<v8::Value> GetModule(v8::Isolate* isolate);

Completed in 370 milliseconds

<<11121314151617181920>>