/external/libchrome/base/json/ |
json_reader_unittest.cc | 28 scoped_ptr<Value> root = JSONReader().ReadToValue(" null "); 30 EXPECT_TRUE(root->IsType(Value::TYPE_NULL)); 39 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 44 EXPECT_TRUE(root->IsType(Value::TYPE_NULL)); 47 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER)); 50 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 53 EXPECT_TRUE(root->IsType(Value::TYPE_STRING)); 54 std::string value; local 55 EXPECT_TRUE(root->GetAsString(&value)); 56 EXPECT_EQ("sample string", value); [all...] |
json_value_converter.h | 23 // JSONValueConverter converts a JSON value into a C++ struct in a 52 // Convert() returns false when it fails. Here "fail" means that the value is 53 // structurally different from expected, such like a string value appears 101 virtual bool ConvertField(const base::Value& value, StructType* obj) 114 virtual bool Convert(const base::Value& value, FieldType* field) const = 0; 128 bool ConvertField(const base::Value& value, StructType* dst) const override { 129 return value_converter_->Convert(value, &(dst->*field_pointer_)) [all...] |
/external/llvm/include/llvm/Object/ |
COFFYAML.h | 102 static void enumeration(IO &IO, COFFYAML::WeakExternalCharacteristics &Value); 107 static void enumeration(IO &IO, COFFYAML::AuxSymbolType &Value); 112 static void enumeration(IO &IO, COFFYAML::COMDATType &Value); 117 static void enumeration(IO &IO, COFF::MachineTypes &Value); 122 static void enumeration(IO &IO, COFF::SymbolBaseType &Value); 127 static void enumeration(IO &IO, COFF::SymbolStorageClass &Value); 132 static void enumeration(IO &IO, COFF::SymbolComplexType &Value); 137 static void enumeration(IO &IO, COFF::RelocationTypeI386 &Value); 142 static void enumeration(IO &IO, COFF::RelocationTypeAMD64 &Value); 147 static void enumeration(IO &IO, COFF::WindowsSubsystem &Value); [all...] |
/external/proguard/src/proguard/evaluation/ |
TracedStack.java | 23 import proguard.evaluation.value.Value; 29 * The stack stores a given producer Value along with each Value it stores. 30 * It then generalizes a given collected Value with the producer Value 31 * of each Value it loads. The producer Value and the initial collected Value 32 * can be set. The generalized collected Value can be retrieved, either takin 185 Value value = super.pop(); local 345 Value value = this.values[index]; local [all...] |
/external/libchrome/base/trace_event/ |
trace_event_argument.cc | 85 void TracedValue::SetInteger(const char* name, int value) { 88 pickle_.WriteInt(value); 92 void TracedValue::SetIntegerWithCopiedName(base::StringPiece name, int value) { 95 pickle_.WriteInt(value); 99 void TracedValue::SetDouble(const char* name, double value) { 102 pickle_.WriteDouble(value); 107 double value) { 110 pickle_.WriteDouble(value); 114 void TracedValue::SetBoolean(const char* name, bool value) { 117 pickle_.WriteBool(value); 402 bool value; local 405 cur_dict->SetBooleanWithoutPathExpansion(ReadKeyName(it), value); local 412 int value; local 415 cur_dict->SetIntegerWithoutPathExpansion(ReadKeyName(it), value); local 422 double value; local 425 cur_dict->SetDoubleWithoutPathExpansion(ReadKeyName(it), value); local 432 std::string value; local 435 cur_dict->SetStringWithoutPathExpansion(ReadKeyName(it), value); local [all...] |
trace_event_memory_overhead.h | 18 class Value; 42 void AddValue(const Value& value);
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldImpl.h | 320 void writeInt16BE(uint8_t *Addr, uint16_t Value) { 322 sys::swapByteOrder(Value); 323 *Addr = (Value >> 8) & 0xFF; 324 *(Addr + 1) = Value & 0xFF; 327 void writeInt32BE(uint8_t *Addr, uint32_t Value) { 329 sys::swapByteOrder(Value); 330 *Addr = (Value >> 24) & 0xFF; 331 *(Addr + 1) = (Value >> 16) & 0xFF; 332 *(Addr + 2) = (Value >> 8) & 0xFF; 333 *(Addr + 3) = Value & 0xFF [all...] |
/external/v8/test/unittests/interpreter/ |
bytecode-array-builder-unittest.cc | 117 builder.BinaryOperation(Token::Value::ADD, reg, Strength::WEAK) 118 .BinaryOperation(Token::Value::SUB, reg, Strength::WEAK) 119 .BinaryOperation(Token::Value::MUL, reg, Strength::WEAK) 120 .BinaryOperation(Token::Value::DIV, reg, Strength::WEAK) 121 .BinaryOperation(Token::Value::MOD, reg, Strength::WEAK); 124 builder.BinaryOperation(Token::Value::BIT_OR, reg, Strength::WEAK) 125 .BinaryOperation(Token::Value::BIT_XOR, reg, Strength::WEAK) 126 .BinaryOperation(Token::Value::BIT_AND, reg, Strength::WEAK); 129 builder.BinaryOperation(Token::Value::SHL, reg, Strength::WEAK) 130 .BinaryOperation(Token::Value::SAR, reg, Strength::WEAK [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
SLPVectorizer.cpp | 41 #include "llvm/IR/Value.h" 119 static BasicBlock *getSameBlock(ArrayRef<Value *> VL) { 136 static bool allConstant(ArrayRef<Value *> VL) { 144 static bool isSplat(ArrayRef<Value *> VL) { 179 static unsigned isAltInst(ArrayRef<Value *> VL) { 193 static unsigned getSameOpcode(ArrayRef<Value *> VL) { 212 static void propagateIRFlags(Value *I, ArrayRef<Value *> VL) { 227 static Instruction *propagateMetadata(Instruction *I, ArrayRef<Value *> VL) { 268 static Type* getSameType(ArrayRef<Value *> VL) [all...] |
BBVectorize.cpp | 219 typedef std::pair<Value *, Value *> ValuePair; 237 DenseMap<Value *, std::vector<Value *> > &CandidatePairs, 240 std::vector<Value *> &PairableInsts, bool NonPow2Len); 252 DenseMap<Value *, std::vector<Value *> > &CandidatePairs, 254 std::vector<Value *> &PairableInsts, 259 DenseMap<Value *, std::vector<Value *> > &CandidatePairs [all...] |
/external/libweave/third_party/chromium/base/ |
values_unittest.cc | 69 Value *value = NULL; local 75 ASSERT_FALSE(mixed_list->Get(4, &value)); 136 Value* narrow_value = binary.get(); 144 scoped_ptr<Value> narrow_value(new StringValue("narrow")); 146 ASSERT_TRUE(narrow_value->IsType(Value::TYPE_STRING)); 162 // This is a Value object that allows us to tell if it's been 163 // properly deleted by modifying the value of external flag on destruction. 164 class DeletionTestValue : public Value { 166 explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) 760 std::string value; local [all...] |
/build/kati/ |
dep.h | 28 class Value; 36 vector<Value*> cmds;
|
rule.h | 28 class Value; 44 vector<Value*> cmds;
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Parser.h | 189 VariantValue *Value, Diagnostics *Error); 191 VariantValue *Value, Diagnostics *Error) { 192 return parseExpression(Code, S, nullptr, Value, Error); 194 static bool parseExpression(StringRef Code, VariantValue *Value, 196 return parseExpression(Code, nullptr, Value, Error); 231 bool parseExpressionImpl(VariantValue *Value); 233 VariantValue *Value); 234 bool parseIdentifierPrefixImpl(VariantValue *Value);
|
/external/clang/test/CXX/except/except.spec/ |
canonical.cpp | 14 static const bool value = noexcept(_Tp(declval<_Args>()...)); member in struct:std::_is_nothrow_constructible 25 noexcept(_is_nothrow_constructible<allocator_type>::value); 33 noexcept(_is_nothrow_constructible<_Compare>::value); 48 basic_string<T, _Traits, _Allocator>::basic_string() noexcept(_is_nothrow_constructible<allocator_type>::value) {} 50 template <class T, class Value, class _Compare> 51 __map_value_compare<T, Value, _Compare>::__map_value_compare() 52 noexcept(_is_nothrow_constructible<_Compare>::value) {}
|
/external/compiler-rt/lib/profile/ |
InstrProfiling.h | 17 #define VALUE_PROF_KIND(Enumerator, Value) Enumerator = Value, 66 * \brief Counts the number of times a target value is seen. 68 * Records the target value for the CounterIndex if not seen before. Otherwise, 69 * increments the counter associated w/ the target value. 79 * \brief Prepares the value profiling data for output.
|
/external/harfbuzz_ng/src/ |
hb-gobject-enums.cc.tmpl | 47 /*** BEGIN value-header ***/ 55 static const G@Type@Value values[] = { 56 /*** END value-header ***/ 58 /*** BEGIN value-production ***/ 60 /*** END value-production ***/ 62 /*** BEGIN value-tail ***/ 73 /*** END value-tail ***/
|
/external/libbrillo/brillo/glib/ |
object_unittest.cc | 17 using brillo::glib::Value; 24 Value tmp(x); 30 void ModifyValue(Value* x) { 31 *x = 1.0 / 1231415926.0; // An unlikely value 36 Value tmp(x); 37 Value y = tmp; // copy-construction 72 Value x; // default construction 73 Value y = x; // copy with default value 74 x = y; // assignment with default value [all...] |
/external/libweave/third_party/chromium/base/json/ |
json_reader_unittest.cc | 23 scoped_ptr<Value> root = JSONReader().ReadToValue(" null "); 25 EXPECT_TRUE(root->IsType(Value::TYPE_NULL)); 34 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 39 EXPECT_TRUE(root->IsType(Value::TYPE_NULL)); 42 EXPECT_TRUE(root->IsType(Value::TYPE_INTEGER)); 45 EXPECT_TRUE(root->IsType(Value::TYPE_BOOLEAN)); 48 EXPECT_TRUE(root->IsType(Value::TYPE_STRING)); 49 std::string value; local 50 EXPECT_TRUE(root->GetAsString(&value)); 51 EXPECT_EQ("sample string", value); [all...] |
/external/libxml2/python/tests/ |
reader4.py | 24 reader.Value(), reader.IsEmptyElement()) 28 reader.Name(),reader.Value())
|
/external/llvm/examples/ModuleMaker/ |
ModuleMaker.cpp | 45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2); 46 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
|
/external/llvm/include/llvm/Analysis/ |
EHPersonalities.h | 20 class Value; 37 EHPersonality classifyEHPersonality(const Value *Pers);
|
/external/llvm/include/llvm/IR/ |
Argument.h | 20 #include "llvm/IR/Value.h" 29 /// argument, since it is ``formal'', does not contain an actual value but 32 /// argument of course represents the value of the actual argument that the 34 class Argument : public Value, public ilist_node<Argument> { 78 /// represent arguments being passed by value. 128 static inline bool classof(const Value *V) {
|
/external/llvm/include/llvm/MC/ |
MCDisassembler.h | 65 /// \param Size - A value to populate with the size of the instruction, or 92 int64_t Value, 96 void tryAddingPcLoadReferenceComment(int64_t Value, uint64_t Address) const;
|
MCExternalSymbolizer.h | 49 int64_t Value, uint64_t Address, bool IsBranch, 52 int64_t Value,
|