HomeSort by relevance Sort by last modified time
    Searched refs:Value (Results 176 - 200 of 2613) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libweave/third_party/chromium/base/
values.cc 24 scoped_ptr<Value> CopyWithoutEmptyChildren(const Value& node);
32 scoped_ptr<Value> child_copy = CopyWithoutEmptyChildren(**it);
46 scoped_ptr<Value> child_copy = CopyWithoutEmptyChildren(it.value());
56 scoped_ptr<Value> CopyWithoutEmptyChildren(const Value& node) {
58 case Value::TYPE_LIST:
61 case Value::TYPE_DICTIONARY:
73 // Pass the value against which all consecutive calls of the () operator wil
500 const Value* value; local
509 const Value* value; local
518 const Value* value; local
527 const Value* value; local
551 const Value* value; local
571 const Value* value; local
591 const Value* value; local
630 const Value* value; local
639 const Value* value; local
648 const Value* value; local
658 const Value* value; local
668 const Value* value; local
692 const Value* value; local
900 const Value* value; local
908 const Value* value; local
916 const Value* value; local
924 const Value* value; local
932 const Value* value; local
951 const Value* value; local
969 const Value* value; local
    [all...]
  /external/llvm/include/llvm/Analysis/
MemoryBuiltins.h 33 class Value;
36 /// \brief Tests if a value is a call or invoke to a library function that
39 bool isAllocationFn(const Value *V, const TargetLibraryInfo *TLI,
42 /// \brief Tests if a value is a call or invoke to a function that returns a
44 bool isNoAliasFn(const Value *V, const TargetLibraryInfo *TLI,
47 /// \brief Tests if a value is a call or invoke to a library function that
49 bool isMallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
52 /// \brief Tests if a value is a call or invoke to a library function that
54 bool isCallocLikeFn(const Value *V, const TargetLibraryInfo *TLI,
57 /// \brief Tests if a value is a call or invoke to a library function tha
    [all...]
CodeMetrics.h 30 class Value;
92 SmallPtrSetImpl<const Value*> &EphValues);
97 SmallPtrSetImpl<const Value *> &EphValues);
102 SmallPtrSetImpl<const Value *> &EphValues);
  /external/llvm/include/llvm/IR/
AutoUpgrade.h 27 class Value;
55 Instruction *UpgradeBitCastInst(unsigned Opc, Value *V, Type *DestTy,
61 Value *UpgradeBitCastExpr(unsigned Opc, Constant *C, Type *DestTy);
User.h 10 // This class defines the interface that one who uses a Value must implement.
11 // Each instance of the Value class keeps track of what User's have handles
25 #include "llvm/IR/Value.h"
37 class User : public Value {
69 : Value(ty, vty) {
132 Value *getOperand(unsigned i) const {
136 void setOperand(unsigned i, Value *Val) {
138 assert((!isa<Constant>((const Value*)this) ||
139 isa<GlobalValue>((const Value*)this)) &&
208 std::random_access_iterator_tag, Value *,
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
TracedBranchUnit.java 26 import proguard.evaluation.value.Value;
44 if (conditional == Value.ALWAYS)
49 else if (conditional != Value.NEVER)
  /external/v8/src/extensions/
trigger-failure-extension.h 19 const v8::FunctionCallbackInfo<v8::Value>& args);
21 const v8::FunctionCallbackInfo<v8::Value>& args);
23 const v8::FunctionCallbackInfo<v8::Value>& args);
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
SourceInterpreter.java 50 public Value newValue(final Type type) {
54 public Value newOperation(final AbstractInsnNode insn) {
76 public Value copyOperation(final AbstractInsnNode insn, final Value value) {
77 return new SourceValue(value.getSize(), insn);
80 public Value unaryOperation(final AbstractInsnNode insn, final Value value)
103 public Value binaryOperation(
    [all...]
  /external/webrtc/webrtc/base/
json_unittest.cc 19 static Json::Value in_s("foo");
20 static Json::Value in_sn("99");
21 static Json::Value in_si("-99");
22 static Json::Value in_sb("true");
23 static Json::Value in_sd("1.2");
24 static Json::Value in_n(12);
25 static Json::Value in_i(-12);
26 static Json::Value in_u(34U);
27 static Json::Value in_b(true);
28 static Json::Value in_d(1.2)
    [all...]
  /external/llvm/include/llvm/ADT/
PointerIntPair.h 44 intptr_t Value;
67 PointerIntPair() : Value(0) {}
77 reinterpret_cast<void*>(Value & PointerBitMask));
81 return (IntType)((Value >> IntShift) & IntMask);
90 Value = PtrWord | (Value & ~PointerBitMask);
98 Value &= ~ShiftedIntMask; // Remove integer field.
99 Value |= IntWord << IntShift; // Set new integer.
107 Value = PtrWord;
118 Value = PtrWord | (IntWord << IntShift)
    [all...]
StringSwitch.h 27 /// literals. The template type parameter \p T is the type of the value that
58 StringSwitch& Case(const char (&S)[N], const T& Value) {
61 Result = &Value;
69 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
72 Result = &Value;
80 StringSwitch& StartsWith(const char (&S)[N], const T &Value) {
83 Result = &Value;
92 const T& Value) {
96 Result = &Value;
105 const char (&S2)[N2], const T& Value) {
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64AsmBackend.cpp 71 uint64_t Value, bool IsPCRel) const override;
74 bool fixupNeedsRelaxation(const MCFixup &Fixup, uint64_t Value,
126 static unsigned AdrImmBits(unsigned Value) {
127 unsigned lo2 = Value & 0x3;
128 unsigned hi19 = (Value & 0x1ffffc) >> 2;
132 static uint64_t adjustFixupValue(unsigned Kind, uint64_t Value) {
133 int64_t SignedValue = static_cast<int64_t>(Value);
139 report_fatal_error("fixup value out of range");
140 return AdrImmBits(Value & 0x1fffffULL);
142 return AdrImmBits((Value & 0x1fffff000ULL) >> 12)
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 114 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: Integer
    [all...]
  /device/google/dragon/recovery/updater/
recovery_updater.cpp 26 Value* firmware_update(const char *name, State * state, int argc, Expr * argv[]) {
27 Value *firmware;
28 Value *ec;
30 Value *retval = NULL;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 5 struct Value {
7 void set(T value) {}
10 Value v;
16 Value v;
23 Value v;
p1.cpp 25 struct Value {
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}}
30 Value v;
36 Value v;
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
43 Value v;
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
34 * @return CRC-32 of string as number value
36 public Value execute(Value... args) {
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
FirstFunction.java 21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
32 * @return Boolean value.
34 public Value execute(Value... args) {
LastFunction.java 21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
32 * @return Boolean value.
34 public Value execute(Value... args) {
SubcountFunction.java 21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
31 * @param args A variable value referring to an HDF node
34 public Value execute(Value... args) {
  /external/libchrome/base/json/
json_string_value_serializer.h 25 // Attempt to serialize the data structure represented by Value into
26 // JSON. If the return value is true, the result will have been written
28 bool Serialize(const base::Value& root) override;
32 bool SerializeAndOmitBinaryValues(const base::Value& root);
38 bool SerializeInternal(const base::Value& root, bool omit_binary_values);
56 // in to the constructor into a structure of Value objects. If the return
57 // value is null, and if |error_code| is non-null, |error_code| will
61 // The caller takes ownership of the returned value.
62 scoped_ptr<base::Value> Deserialize(int* error_code,
  /external/libchrome/base/prefs/
writeable_pref_store.h 17 class Value;
36 // Sets a |value| for |key| in the store. |value| must be non-NULL. |flags| is
39 scoped_ptr<base::Value> value,
42 // Removes the value for |key|.
45 // Equivalent to PrefStore::GetValue but returns a mutable value.
47 base::Value** result) = 0;
49 // Triggers a value changed notification. This function needs to be called
51 // value. SetValue takes care of notifications itself. Note tha
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserUtils.h 22 /// Parse a value expression and return whether it can be assigned to a symbol
25 /// On success, returns false and sets the Symbol and Value output parameters.
28 const MCExpr *&Value);
  /external/llvm/lib/MC/MCDisassembler/
MCDisassembler.cpp 19 bool MCDisassembler::tryAddingSymbolicOperand(MCInst &Inst, int64_t Value,
25 return Symbolizer->tryAddingSymbolicOperand(Inst, cStream, Value, Address,
30 void MCDisassembler::tryAddingPcLoadReferenceComment(int64_t Value,
34 Symbolizer->tryAddingPcLoadReferenceComment(cStream, Value, Address);
  /external/llvm/lib/DebugInfo/DWARF/
DWARFFormValue.cpp 138 Value.data = nullptr;
139 // Read the value for the form into value and follow and DW_FORM_indirect
155 Value.uval = data.getUnsigned(offset_ptr, AddrSize) + R.second;
157 Value.uval = data.getUnsigned(offset_ptr, AddrSize);
162 Value.uval = data.getULEB128(offset_ptr);
166 Value.uval = data.getU8(offset_ptr);
170 Value.uval = data.getU16(offset_ptr);
174 Value.uval = data.getU32(offset_ptr);
180 Value.uval = data.getU8(offset_ptr)
    [all...]

Completed in 546 milliseconds

1 2 3 4 5 6 78 91011>>