Searched defs:Value (Results 226 - 250 of 527) sorted by relevance

1234567891011>>

/external/chromium_org/base/
H A Dvalues.cc26 Value* CopyWithoutEmptyChildren(const Value* node) {
29 case Value::TYPE_LIST: {
34 Value* child_copy = CopyWithoutEmptyChildren(*it);
45 case Value::TYPE_DICTIONARY: {
49 Value* child_copy = CopyWithoutEmptyChildren(&it.value());
70 // compare their argument to. This Value object must not be destroyed while
72 explicit ValueEquals(const Value* first) : first_(first) { }
74 bool operator ()(const Value* second) const {
79 const Value* first
153 Value::Value(Type type) : type_(type) {} function in class:base::Value
155 Value::Value(const Value& that) : type_(that.type_) {} function in class:base::Value
[all...]
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp29 // This is a walkaround to avoid the static initialization of Value::null.
37 static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = {0};
38 const Value& Value::null = reinterpret_cast<const Value&>(kNull);
40 const Int Value::minInt = Int( ~(UInt(-1)/2) );
41 const Int Value::maxInt = Int( UInt(-1)/2 );
42 const UInt Value::maxUInt = UInt(-1);
44 const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
45 const Int64 Value
280 Value::Value( ValueType type ) function in class:Json::Value
324 Value::Value( UInt value ) function in class:Json::Value
335 Value::Value( Int value ) function in class:Json::Value
348 Value::Value( Int64 value ) function in class:Json::Value
360 Value::Value( UInt64 value ) function in class:Json::Value
372 Value::Value( double value ) function in class:Json::Value
383 Value::Value( const char *value ) function in class:Json::Value
395 Value::Value( const char *beginValue, function in class:Json::Value
409 Value::Value( const std::string &value ) function in class:Json::Value
422 Value::Value( const StaticString &value ) function in class:Json::Value
435 Value::Value( const CppTL::ConstString &value ) function in class:Json::Value
447 Value::Value( bool value ) function in class:Json::Value
459 Value::Value( const Value &other ) function in class:Json::Value
[all...]
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp29 // This is a walkaround to avoid the static initialization of Value::null.
30 // const Value Value::null;
31 static const unsigned char kNull[sizeof(Value)] = { 0 };
32 const Value& Value::null = reinterpret_cast<const Value&>(kNull);
34 const Int Value::minInt = Int( ~(UInt(-1)/2) );
35 const Int Value::maxInt = Int( UInt(-1)/2 );
36 const UInt Value
274 Value::Value( ValueType type ) function in class:Json::Value
318 Value::Value( UInt value ) function in class:Json::Value
329 Value::Value( Int value ) function in class:Json::Value
342 Value::Value( Int64 value ) function in class:Json::Value
354 Value::Value( UInt64 value ) function in class:Json::Value
366 Value::Value( double value ) function in class:Json::Value
377 Value::Value( const char *value ) function in class:Json::Value
389 Value::Value( const char *beginValue, function in class:Json::Value
403 Value::Value( const std::string &value ) function in class:Json::Value
416 Value::Value( const StaticString &value ) function in class:Json::Value
429 Value::Value( const CppTL::ConstString &value ) function in class:Json::Value
441 Value::Value( bool value ) function in class:Json::Value
453 Value::Value( const Value &other ) function in class:Json::Value
[all...]
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp29 const Value Value::null;
30 const Int Value::minInt = Int( ~(UInt(-1)/2) );
31 const Int Value::maxInt = Int( UInt(-1)/2 );
32 const UInt Value::maxUInt = UInt(-1);
34 const Int64 Value::minInt64 = Int64( ~(UInt64(-1)/2) );
35 const Int64 Value::maxInt64 = Int64( UInt64(-1)/2 );
36 const UInt64 Value::maxUInt64 = UInt64(-1);
38 // converting Value::maxUInt64 to a double correctly (AIX/xlC).
42 const LargestInt Value
270 Value::Value( ValueType type ) function in class:Json::Value
314 Value::Value( UInt value ) function in class:Json::Value
325 Value::Value( Int value ) function in class:Json::Value
338 Value::Value( Int64 value ) function in class:Json::Value
350 Value::Value( UInt64 value ) function in class:Json::Value
362 Value::Value( double value ) function in class:Json::Value
373 Value::Value( const char *value ) function in class:Json::Value
385 Value::Value( const char *beginValue, function in class:Json::Value
399 Value::Value( const std::string &value ) function in class:Json::Value
412 Value::Value( const StaticString &value ) function in class:Json::Value
425 Value::Value( const CppTL::ConstString &value ) function in class:Json::Value
437 Value::Value( bool value ) function in class:Json::Value
449 Value::Value( const Value &other ) function in class:Json::Value
[all...]
/external/chromium_org/base/win/
H A Dpe_image_unittest.cc97 enum Value { enum in namespace:base::win
122 int GetExpectedValue(Value value, DWORD os) {
164 // Contains the expected value, for each enumerated property (Value), and the
165 // OS version: [Value][os_version]
/external/chromium_org/device/bluetooth/
H A Dbluetooth_low_energy_defs_win.h70 } Value; member in struct:_BTH_LE_UUID
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dcache.cc310 virtual void* Value(Handle* handle) { function in class:leveldb::__anon12466::ShardedLRUCache
/external/chromium_org/third_party/qcms/src/
H A Dtransform_util.c298 uint16_fract_t lut_inverse_interp16(uint16_t Value, uint16_t LutTable[], int length) argument
321 if (NumZeroes == 0 && Value == 0)
334 if (Value == 0) return 0;
335 // if (Value == 0xFFFF) return 0xFFFF;
355 if (res == Value) {
362 if (res > Value) r = x - 1;
389 f = ((Value - b) / a);
/external/chromium_org/tools/clang/blink_gc_plugin/
H A DEdge.h15 class Value;
27 virtual void VisitValue(Value*) {}
41 virtual void VisitValue(Value*) override;
58 virtual void AtValue(Value*);
97 class Value : public Edge { class in inherits:Edge
99 explicit Value(RecordInfo* value) : value_(value) {}; function in class:Value
/external/chromium_org/v8/src/
H A Deffects.h189 typedef Effect Value; typedef in struct:v8::internal::EffectsBase::SplayTreeConfig
/external/clang/include/clang/Lex/
H A DLiteralSupport.h155 uint64_t Value; member in class:clang::CharLiteralParser
172 uint64_t getValue() const { return Value; }
/external/deqp/modules/glshared/
H A DglsShaderLibraryCase.hpp68 struct Value struct in class:deqp::gls::sl::ShaderCase
99 std::vector<Value> values;
/external/libcxx/test/numerics/c.math/
H A Dcmath.disabled.cpp20 struct Value { struct
342 // static_assert((std::is_same<decltype(std::pow(Value<int>(), (int)0)), double>::value), "");
343 // static_assert((std::is_same<decltype(std::pow(Value<long double>(), (float)0)), long double>::value), "");
344 // static_assert((std::is_same<decltype(std::pow((float) 0, Value<float>())), float>::value), "");
346 // assert(std::pow(Value<int,1>(), Value<float,1>()) == 1);
347 // assert(std::pow(1.0f, Value<double,1>()) == 1);
348 // assert(std::pow(1.0, Value<int,1>()) == 1);
349 // assert(std::pow(Value<long double,1>(), 1LL) == 1);
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c297 *Value = String_val(Field(Field(Env, I), 1)); local
299 ValueLen = strlen(Value);
305 memcpy(Pos, Value, ValueLen);
/external/llvm/include/llvm/Analysis/
H A DMemoryDependenceAnalysis.h97 PairTy Value; member in class:llvm::MemDepResult
98 explicit MemDepResult(PairTy V) : Value(V) {}
100 MemDepResult() : Value(nullptr, Invalid) {}
127 bool isClobber() const { return Value.getInt() == Clobber; }
131 bool isDef() const { return Value.getInt() == Def; }
137 return Value.getInt() == Other
138 && Value.getPointer() == reinterpret_cast<Instruction*>(NonLocal);
144 return Value.getInt() == Other
145 && Value.getPointer() == reinterpret_cast<Instruction*>(NonFuncLocal);
151 return Value
[all...]
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h72 void WriteByte(unsigned char Value) { argument
73 Out.push_back(Value);
76 void WriteWord(unsigned Value) { argument
78 (unsigned char)(Value >> 0),
79 (unsigned char)(Value >> 8),
80 (unsigned char)(Value >> 16),
81 (unsigned char)(Value >> 24) };
385 "Value too large to emit as blob");
/external/llvm/include/llvm/Support/
H A Draw_ostream.h377 void SetUseAtomicWrites(bool Value) { argument
378 UseAtomicWrites = Value;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldImpl.h256 void writeInt16BE(uint8_t *Addr, uint16_t Value) { argument
258 sys::swapByteOrder(Value);
259 *Addr = (Value >> 8) & 0xFF;
260 *(Addr + 1) = Value & 0xFF;
263 void writeInt32BE(uint8_t *Addr, uint32_t Value) { argument
265 sys::swapByteOrder(Value);
266 *Addr = (Value >> 24) & 0xFF;
267 *(Addr + 1) = (Value >> 16) & 0xFF;
268 *(Addr + 2) = (Value >> 8) & 0xFF;
269 *(Addr + 3) = Value
272 writeInt64BE(uint8_t *Addr, uint64_t Value) argument
[all...]
/external/llvm/lib/MC/
H A DMCELFStreamer.cpp98 const MCExpr *Value = MCSymbolRefExpr::Create( local
100 Alias->setVariableValue(Value);
259 void MCELFStreamer::EmitELFSize(MCSymbol *Symbol, const MCExpr *Value) { argument
261 SD.setSize(Value);
274 void MCELFStreamer::EmitValueImpl(const MCExpr *Value, unsigned Size, argument
278 fixSymbolsInTLSFixups(Value);
279 MCObjectStreamer::EmitValueImpl(Value, Size, Loc);
283 int64_t Value,
288 MCObjectStreamer::EmitValueToAlignment(ByteAlignment, Value,
282 EmitValueToAlignment(unsigned ByteAlignment, int64_t Value, unsigned ValueSize, unsigned MaxBytesToEmit) argument
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp684 const MCExpr *Value = MCSymbolRefExpr::Create(Sym, getContext()); local
686 getStreamer().EmitAssignment(Alias, Value);
/external/llvm/lib/Target/AArch64/
H A DAArch64LoadStoreOptimizer.cpp81 int Value);
532 int Value = Update->getOperand(2).getImm(); local
536 Value = -Value;
544 .addImm(Value);
575 int Value = Update->getOperand(2).getImm(); local
579 Value = -Value;
587 .addImm(Value);
640 MachineBasicBlock::iterator I, unsigned Limit, int Value) {
639 findMatchingUpdateInsnForward( MachineBasicBlock::iterator I, unsigned Limit, int Value) argument
909 int Value = MI->getOperand(2).getImm() * local
[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/lib/Target/Mips/MCTargetDesc/
H A DMipsTargetStreamer.cpp174 static void printHex32(unsigned Value, raw_ostream &OS) { argument
177 OS.write_hex((Value & (0xF << (i * 4))) >> (i * 4));
220 MipsABIFlagsSection::FpABIKind Value, bool Is32BitABI) {
221 MipsTargetStreamer::emitDirectiveModuleFP(Value, Is32BitABI);
225 OS << ABIFlagsSection.getFpABIString(Value) << "\n";
229 MipsABIFlagsSection::FpABIKind Value) {
232 OS << ABIFlagsSection.getFpABIString(Value) << "\n";
363 const MCExpr *Value) {
365 if (Value->getKind() != MCExpr::SymbolRef)
368 static_cast<const MCSymbolRefExpr *>(Value)
219 emitDirectiveModuleFP( MipsABIFlagsSection::FpABIKind Value, bool Is32BitABI) argument
228 emitDirectiveSetFp( MipsABIFlagsSection::FpABIKind Value) argument
362 emitAssignment(MCSymbol *Symbol, const MCExpr *Value) argument
[all...]
/external/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp360 static bool tryAddingSymbolicOperand(int64_t Value, bool isBranch, argument
365 return Dis->tryAddingSymbolicOperand(MI, Value, Address, isBranch,
/external/llvm/lib/Transforms/Utils/
H A DBypassSlowDivision.cpp31 Value *Dividend;
32 Value *Divisor;
34 DivOpInfo(bool InSignedOp, Value *InDividend, Value *InDivisor)
86 Value *Dividend = Instr->getOperand(0);
87 Value *Divisor = Instr->getOperand(1);
106 Value *SlowQuotientV;
107 Value *SlowRemainderV;
122 Value *ShortDivisorV = FastBuilder.CreateCast(Instruction::Trunc, Divisor,
124 Value *ShortDividend
204 DivPhiNodes &Value = CacheI->second; local
[all...]

Completed in 2465 milliseconds

1234567891011>>